Hi,
I'm working on POC of using this library. And I have some questions which I was unable to find resources to refer.
Is it possible, and how to specify namespaces (using namespace prefix or any other method) in xpath when creating soap request as in the sample
[1].
In the sample [1] we can provide soap element values by using hash map as follows. My problem is how we can specify namespaces of the xpath and if we can use namespace prefix, how we can define matching namespace.
HashMap<String, String> formParams = new HashMap<String, String>(); formParams.put("xpath:/create/article/name", "foo");
formParams.put("xpath:/create/article/description", "bar");
SOARequestCreator creator = new SOARequestCreator(wsdl, new RequestCreator(), new MarkupBuilder(writer)); creator.setFormParams(formParams);
Does this support is provided by this library?Highly appreciate if you can share information regarding this.
[1]
http://www.membrane-soa.org/soa-model-doc/1.4/java-api/create-soap-request.htmThanks,
Milinda