Posted on: 8/14/2014 12:27:16 PM | Views : 355

<div>
I tried the code below.  I received an error in the response from the site.  After talking to the tech side of the client, they are showing illegal characters in the escape pattern which they say is being caused by a % or & sign.  Since the only & sign being sent is in the postdata - is there another way to format the data?
Is it possible it is the contenttype causing this?
Also, I also do not see how after the handshaking is done, will the user be re-directed to the required page.
Thank you in advance.
    Sub ConnectHTTP()         ' Create a request using a URL that can receive a post.         Dim request As WebRequest = WebRequest.Create("https://demo.site.com/relay/verify.do")         ' Set the Method property of the request to POST.    & ...

Go to the complete details ...