Skip to content
⌘ NSIS Forum Archive

html post using inetc

6 posts

dfranklin72#

html post using inetc

Im using web services to capture data from my installer. what would be the best way to post data eg


POST /WebServices/ShoppingService.asmx/GetEntyInfo HTTP/1.1
Host: localhost
Content-Type: application/x-www-form-urlencoded
Content-Length: length

entyid=string
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<string xmlns="http://tempuri.org/">string</string>

thx
dfranklin72#
Yes I have but cant seem to get it working. I have no problems using a VBscript. works like a dream but i would like to use the installer for this funcrionality. I just get the connecting popup or URL parts error but not the responce im expecting.
Afrow UK#
If the plugin does not provide the functionality just output to the file and then read it with the FileOpen, FileRead and FileClose functions.

Stu