How to call a parameterized Web Service (SOAP) from apigee edge proxy

abhinabanag92
Participant III

I have a Login Web service (asmx) that takes UserID and Password as inputs.

I want to call an apigee proxy from my application code, passing UserID and Password, which in turn will call the Login Web Service (asmx) passing those UserID and Password.

0 1 269
1 REPLY 1

sidd-harth
Participant V

Try this in a step wise manner, follow the below tutorial and create a proxy first.

https://community.apigee.com/articles/18200/tutorial-convert-your-web-service-from-soap-to-res.html

By default in some cases, apigee assigns these request params as query params. You can change these as required. Then call the proxy with the url - https://url.com?username=sss&password=aaaa

Start doing it and post here for any blockers.