How to call Window service(web service) from iPAD device

Hello,

Here I need to call Window service(Web Service) i.e installed on windows machine from iPAD decvice.
If I hit the URL from browser i got response from window service but when I call through xojo iPAD application ,there is no response from webservice . I can not figure out that the request is sent or not from iPAD xojo app.

To send request here i used xojo.net.httpsocket and i preferred following code-

dim socket as new HttpSocket1 dim params as text params="xxx="+txtfield1.Caption dim postData as xojo.Core.MemoryBlock = Xojo.core.TextEncoding.UTF8.ConvertTextToData(params) socket.SetRequestContent(postData, "application/x-www-form-urlencoded") socket.Send("POST","http://ip address:8585/Test")

Can you please help to find out what i am doing wrong or missing anything ?

Thank in advance

Apple made a change recently which requires urls to be secure by default. There’s a plist entry you can make to exempt your app.

Thanks for the reply . now it works