Dear Wiki user, You have subscribed to a wiki page or wiki category on "Ws Wiki" for change notification.
The following page has been changed by JeanVincent: http://wiki.apache.org/ws/Bugs_and_Patches ------------------------------------------------------------------------------ WSDL2Ws Axis_DeSerialize_<type> functions generate the following code for type xsd_string: - - ---- /!\ '''Edit conflict - other version:''' ---- - xsd__string\* p_XXX = (pIWSDZ->getElementAsString(\"XXX\",0)); - param->XXX = \*p_XXX; - delete p_XXX; - You need to manually change this to (remove two \* and comment out the delete): - xsd__string p_XXX = (pIWSDZ->getElementAsString("XXX",0)); - param->XXX = p_XXX; - - ---- /!\ '''Edit conflict - your version:''' ---- xsd__string* p_XXX \= (pIWSDZ->getElementAsString("XXX",0)); param->XXX \= *p_XXX; delete p_XXX; You need to manually change this to (remove two * and comment out the delete): xsd__string p_XXX \= (pIWSDZ->getElementAsString("XXX",0)); param->XXX \= p_XXX; - - ---- /!\ '''End of edit conflict''' ---- // delete p_XXX; For type xsd_int, it generates: --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
