I have a HTTPCaller Transformer with Post method question. This will take Input addresses and then compare them to an address standardizer web service.
I’ve had success using GET method (with a concatened URL). But in my scenario there is an advantage to the Post Method. Does any have an example of using POST in the HttpCaller Transformer?
Below is a sample of what I’d hope todo –
POST /addresscorrection/service.asmx/Getstandardizedaddress HTTP/1.1
Host: test.testing.com
Content-Type: application/x-www-form-urlencoded
address=1125+Washington+St+SE+%23200&address2=&city=olympia&zip=98501&zip4=&state=wa
address: 1125 Washington St SE #200
address2:
city: Olympia
zip: 98501
zip4:
state: wa
Any help is appreciated:
Ian