membrane / soa-model

Toolkit and Java API for WSDL, WADL and XML Schema.
http://www.membrane-soa.org/soa-model/
Apache License 2.0
94 stars 73 forks source link

creator.setFormParams(parameterMap) not binding the parameters. #278

Open VikramVasudevan opened 3 years ago

VikramVasudevan commented 3 years ago

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"?>

` 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** `