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:
-         xsd__string* p_XXX = (pIWSDZ->getElementAsString("XXX",0));
+         xsd__string\* p_XXX = (pIWSDZ->getElementAsString(\"XXX\",0));
-         param->XXX = *p_XXX;
+         param->XXX = \*p_XXX;
          delete p_XXX;
- You need to manually change this to (remove two * and comment out the delete):
+ 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;
          // delete p_XXX;

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to