I am posting a request as a string to my server:
Sub CallSyncServ(request As String)
Dim jobSync As HttpJob
jobSync.Initialize("JobSyncServ", Me)
Dim sServer As String = "http://myserver/mypage.aspx"
jobSync.PostString(sServer, request)
End Sub
In my Tests some chars in the request-string are changed on the server. So the '=' (Ascii 61) becomes a Ascii 17 or 18
Can I use every Byte in the string for transfer? Do I have to escape some Bytes? What can I do, that the '=' stays a '=' on the server?
Sub CallSyncServ(request As String)
Dim jobSync As HttpJob
jobSync.Initialize("JobSyncServ", Me)
Dim sServer As String = "http://myserver/mypage.aspx"
jobSync.PostString(sServer, request)
End Sub
In my Tests some chars in the request-string are changed on the server. So the '=' (Ascii 61) becomes a Ascii 17 or 18
Can I use every Byte in the string for transfer? Do I have to escape some Bytes? What can I do, that the '=' stays a '=' on the server?