Cause
It is possible that the WSDL uses
reserved characters in the assignation of names. (e.g. The dot character is reserved by Bizagi in order to separate names in the XPaths). See next example:
Wrong
assignation: <xs:element
name="StatusUpdate_v1.0">
Correct assignation: <xs:element
name="StatusUpdate_v1_0">
In
this particular example, Bizagi tries to divide the name of the method
because of the dot after number 1.
|