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

New page:
WSDL2Ws Axis_DeSerialize_<type> functions generate the following code for type 
xsd_string:
        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;
        // delete p_XXX;

For type xsd_int, it generates:
        xsd__int* p_XXX = (pIWSDZ->getElementAsInt("XXX",1));
        param->XXX = *p_XXX;
        delete p_XXX;
You need to manually change this to (remove one * on second expression and 
comment out last line):
        xsd__int* p_BEN_NAI_DRI = (pIWSDZ->getElementAsInt("BEN_NAI_DRI",1));
        param->BEN_NAI_DRI = p_BEN_NAI_DRI;
        // delete p_BEN_NAI_DRI;

There are probably better fixes...

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

Reply via email to