hi,
i got a webservice which takes in xml string format from another webservice in c#.
the xml string input will probably looks like this:
<Entity key="John" value="helloworld">
<Item value="a"/>
<Item value="b"/>
<Item value="c"/>
</Entity>
afterwhich i need to output a specific xml like this to the calling webservice:
<?xml version="1.0" encoding="UTF-8"?>
<Result message="success">
<Item value="Ia" ></Item>
</Result>
how do i do that with Nusoap