Could some one tell me what I am doing wrong?
I trying to output the following XML tag:
<return xmlns="">
<licenseNumber>0282500615</licenseNumber>
</return>
I tried the following Clarion Group Declarations:
ReturnG GROUP,PRE(),NAME('return')
xmlns CSTRING(32),NAME('xmlns | attribute(return)')
LicenseNumber CSTRING(64),NAME('licenseNumber')
END
ReturnG GROUP,PRE(),NAME('return')
xmlns CSTRING(32),NAME('xmlns | attribute')
LicenseNumber CSTRING(64),NAME('licenseNumber')
END
Both of them resulted in the following:
<return><xmlns/><licenseNumber>0282500615</licenseNumber></return>
The is part of the return parameters in a WebServiceMethod Template. I cannot tell what I am doing wrong because I was able to set the xmlns attribute in another service method.
Regards,
Edward