Hi,
I would like to create a HTTP Action notification and send postdata with it. I already know it can be done in Notifications -> Add new notification -> select Execute HTTP Action. In the URL I put my own site that will retrieve the Postdata given. The postdata in this case will be only the placeholder %message.
My question is how can I retrieve the Postdata that I put in before with vb.net.
Thanks in advance!
Article Comments
You can use the notification test button to test the notification. When testing, placeholders are send as plain text, so in the example above you would expect to get '%message' in your myMessage variable.
Aug, 2014 - Permalink
Asuming you have put
in the sensor's post data field, you can retreive this value in VB (ASP.NET) with the code snippet below. (to be placed in the page load event.)
Aug, 2014 - Permalink