Hi all,

I'm writing a client which communicates via XML-RPC to an embedded hardware
server that supports it.  My client.execute requests are failing because
AXML-RPC wraps each parameter in type tags, whereas it appears that the
server is expecting bare values.

Just to make sure I'm clear, I'm currently sending requests including
something like this (asterisks are to prevent the forum from interpreting
the tags):

<*param>
<value>
<string>
foo
</string>
</value>
</*param>

Whereas the server is expecting:

<*param>
<value>
foo
</value>
</*param>

I suspect that I should be accessing the StringSerializer.STRING_TAG field
and changing it to an empty string or perhaps null, but I'd appreciate some
input.  Custom ContentHandler?  Point me in the right direction.

Thanks,
Mick
-- 
View this message in context: 
http://old.nabble.com/Customizing-XML-markup-tp29231900p29231900.html
Sent from the Apache Xml-RPC - Dev mailing list archive at Nabble.com.

Reply via email to