I am generating a SMS through online website so in my program i need to execute that URL
so anyone can help me how to execute that url & I dont want any urlwindow to open i need to just execute it.
use a http socket and query it?
have you tried anything yet? Have you considered SHOWURL
yes i have tried showurl but i dont want a window to open
show url open chrome & that i dont want to
This is really easy and here is all you need to do it: http://developer.xojo.com/httpsocket
Can you please change the Subject of this Post to something more meaningful?
In the most simple form, it’s something like this:
Dim http As New HTTPSocket
Dim s As String = http.Get("<YOUR FULL URL>", 30)
It’s Not working. My link is not Executing
Check the HTTPStatus property. If it’s 304, the Location header will give you a new url to call.
Seeing your code would be helpful though.
[quote=264789:@Greg O’Lone]Check the HTTPStatus property. If it’s 304, the Location header will give you a new url to call.
Seeing your code would be helpful though.[/quote]
302? Or even 301? Redirects.