We need to transfer a image to an webservice.
sParameter is an XML-file encrypted with base64. The above code works... without the image.
The XML-file should also include the image. If we encrypt an image (240x139 px) and add this to the XML-file (sParameter) the asp-url becomes more than 2000 chars which isn't supported by the browsers.
Any thoughts how to transfer the XML-file? Or how to shrink the size of the url?
B4X:
Soap.PostString(Main.ASPUrl&"Status.asp", "pd="& Main.uniqueID & "&pw=" & Main.wachtwoord & "&px=" &sParameter)
sParameter is an XML-file encrypted with base64. The above code works... without the image.
The XML-file should also include the image. If we encrypt an image (240x139 px) and add this to the XML-file (sParameter) the asp-url becomes more than 2000 chars which isn't supported by the browsers.
Any thoughts how to transfer the XML-file? Or how to shrink the size of the url?