I'm making a soap web services in Java with JAX-WS (Metro stack) and GlassFish/Tomcat as container.
The web service works fine but in the server logs I see a warning:
Warning: WSP1021: Fault "null" not bound. Check names in port and binding definitions.
I have searched on google but I really can't understand what that means.
It seems to be relate of each web method that throws an exception.
Someone have some information ?
Well. The problem was in the "wsit-[package].[webServiceClass].xml" configuration file. There were old operation name with an empty <fault/>
tag.
These operations were renamed but NetBeans 8.0.2 didn't delete the entries in the wsit configuration file.
Once deleted these old operations the warnings disappear.