Hi All!
I have web-service which accepts any application/xml
<request>
<param name="xml" type="xsd:string" style="query"/>
<param name="xsd" type="xsd:string" style="query"/>
<param name="xsl" type="xsd:string" style="query"/>
<representation mediaType="application/xml"/>
</request>
Can I describe it using java-interface which is acceptable by
JAXRSClientFactory to create proxy?
I know that interfaces with jaxb-beans as params works without problem, they
are simply serialized to application/xml and posted.
But is there possibility to do it with String, XMLSource or any other type, not
jaxb bean ?