You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a bug in DefaultWsdl11Definition.setFaultSuffix
It should be
/** Sets the suffix used to detect fault elements in the schema. */
public void setFaultSuffix(String faultSuffix) {
portTypesProvider.setFaultSuffix(faultSuffix);
//messagesProvider.setResponseSuffix(faultSuffix);
messagesProvider.setFaultSuffix(faultSuffix);
}