I am sure it must be me, but I am calling a node.js app running on my server and I need to pass a parameter. Since the server is running RESTIFY (obviously a REST server), if I pass a parameter with a get it should have a "/" not a ? so I would want it to look like 'APIcall/1234'. If I set the param to 1234 and I use a get, Aware sends APIcall?1234
So, plan B, I will use POST and send the data as a JSON string. I added a header "contentType : application/json", I change my parameter to "{orderNumber : 1234}" but it does not seem to make it to Node.
Any help will be greatly appreciated!
Bruce
BTW, I don't know if there is any interest, but I am doing this because of a need to automatically save the output of a JasperReport to PDF and then email it to the recipient. I will be happy to share this logic with anyone else who has a similar need.
Bruce