At 10:17 PM 7/4/2001 +0530, Tarun Garg wrote:
....
>How can I make a client which serializes both an xml literal and a string ??
You want different encoding styles for your parameters.
Consider the addressbook client parameter creation:
params.addElement(new Parameter("nameToLookup", String.class,
nameToLookup, null));
That constructor, in the javadocs, is described as
Parameter(String name, Class type, Object value, String encodingStyleURI);
and the last argument doesn't actually have to be null. Does this help?
Tom Myers