But the parameters are not being replaced in the final request. I still see the placeholders ?XXX?
I don't get any errors either.
Is there a known issue around this?
Here is my WSDL
`<?xml version="1.0" encoding="UTF-8"?>
`
And I am trying to add parameters to the map like so:
`HashMap formParams = new HashMap();
formParams.put("xpath:/sayThanksWithAdjective/adjective", "Handsome");
formParams.put("xpath:/sayThanksWithAdjective/name", "Vikram");`
The output I am getting is as below:
`?XXX??XXX?`
Here is the expected output
`**Handsome****Vikram**`
I have tried the example thats listed here.
But the parameters are not being replaced in the final request. I still see the placeholders ?XXX?
I don't get any errors either.
Is there a known issue around this?
Here is my WSDL `<?xml version="1.0" encoding="UTF-8"?>