Connecting Tech Pros Worldwide Forums | Help | Site Map

ASP HTTP GET method problem

SIMON GARE
Guest
 
Posts: n/a
#1: Mar 19 '06

Hi

I have a service provider that's sends sms messages from clients mobile
phones to my asp page, problem is I don't know how to show the data and they
are not being helpful.
The process is simple as outlined below (instructions from service provider)



Example: If you provide this: http://www.yourdomain.com/sms/sms.asp then we
will do a post via a standard HTTP GET as follow:

http://www.yourdomain.com/sms/sms.as...SO-8859-1&udh=



How do I receive the url with the parameters in the address bar? the service
provider wont help anymore

Thanks in advance

Regards

Simon







Martin Honnen
Guest
 
Posts: n/a
#2: Mar 19 '06

re: ASP HTTP GET method problem




SIMON GARE wrote:
[color=blue]
> Example: If you provide this: http://www.yourdomain.com/sms/sms.asp then we
> will do a post via a standard HTTP GET as follow:
>
> http://www.yourdomain.com/sms/sms.as...SO-8859-1&udh=
>
>
>
> How do I receive the url with the parameters in the address bar? the service
> provider wont help anymore[/color]

What exactly is the problem? If you author sms.asp then all you need to
do is read e.g.
Request.QueryString("from")
Request.QueryString("to")
to read out the values passed in the query string of the HTTP GET request.


--

Martin Honnen --- MVP XML
http://JavaScript.FAQTs.com/
SIMON GARE
Guest
 
Posts: n/a
#3: Mar 19 '06

re: ASP HTTP GET method problem


Hi martin,

if I could see the URL I would be ok but even though the sms.asp page is
open the url doesn't change even on refresh, I know they say that they post
the data but how do I receive it?

Simon


"Martin Honnen" <mahotrash@yahoo.de> wrote in message
news:%23zqmhw1SGHA.2300@TK2MSFTNGP11.phx.gbl...[color=blue]
>
>
> SIMON GARE wrote:
>[color=green]
> > Example: If you provide this: http://www.yourdomain.com/sms/sms.asp then[/color][/color]
we[color=blue][color=green]
> > will do a post via a standard HTTP GET as follow:
> >
> >[/color][/color]
http://www.yourdomain.com/sms/sms.as...SO-8859-1&udh=[color=blue][color=green]
> >
> >
> >
> > How do I receive the url with the parameters in the address bar? the[/color][/color]
service[color=blue][color=green]
> > provider wont help anymore[/color]
>
> What exactly is the problem? If you author sms.asp then all you need to
> do is read e.g.
> Request.QueryString("from")
> Request.QueryString("to")
> to read out the values passed in the query string of the HTTP GET request.
>
>
> --
>
> Martin Honnen --- MVP XML
> http://JavaScript.FAQTs.com/[/color]


Martin Honnen
Guest
 
Posts: n/a
#4: Mar 19 '06

re: ASP HTTP GET method problem




SIMON GARE wrote:
[color=blue]
> if I could see the URL I would be ok but even though the sms.asp page is
> open the url doesn't change even on refresh, I know they say that they post
> the data but how do I receive it?[/color]

It sounds to me that they want you set up an ASP page called sms.asp on
your server which they call. As for reading out values, I have already
posted that you can read e.g.
Request.QueryString("from")

--

Martin Honnen --- MVP XML
http://JavaScript.FAQTs.com/
McKirahan
Guest
 
Posts: n/a
#5: Mar 19 '06

re: ASP HTTP GET method problem


"SIMON GARE" <sg@simongare.com> wrote in message
news:uiYkwr1SGHA.5104@TK2MSFTNGP10.phx.gbl...[color=blue]
>
> Hi
>
> I have a service provider that's sends sms messages from clients mobile
> phones to my asp page, problem is I don't know how to show the data and[/color]
they[color=blue]
> are not being helpful.
> The process is simple as outlined below (instructions from service[/color]
provider)

[snip]

http://www.aspfaq.com/5003


Closed Thread