Wrox Home  
Search P2P Archive for: Go

  Return to Index  

asp_web_howto thread: send http getstring to off site and still stay on my site


Message #1 by dont worry <aspmailbox@y...> on Thu, 25 Jan 2001 08:49:08 -0800 (PST)
I grab form values into variables.  then I need to

send a getstring with those variables to another site

other than mine.

ex.http://www.othersite.com?var1=var1&var2=var2, BUT i

need to also keep processing the rest of my script on

my site and continue.  SO the person does NOT leave my

site, but the string is sent in the "background" to a

different site.

thanks





__________________________________________________

Do You Yahoo!?

Yahoo! Auctions - Buy the things you want at great prices. 

http://auctions.yahoo.com/

Message #2 by "Walter Burrough" <lists@c...> on Thu, 25 Jan 2001 17:54:02 -0000
I _think_ you need a componant like winsockets to do that.

walter



-----Original Message-----

From: dont worry [mailto:aspmailbox@y...]

Sent: 25 January 2001 16:49

To: ASP Web HowTo

Subject: [asp_web_howto] send http getstring to off site and still stay

on my site





I grab form values into variables.  then I need to

send a getstring with those variables to another site

other than mine.

ex.http://www.othersite.com?var1=var1&var2=var2, BUT i

need to also keep processing the rest of my script on

my site and continue.  SO the person does NOT leave my

site, but the string is sent in the "background" to a

different site.

thanks







Message #3 by "Peter Lanoie" <planoie@e...> on Thu, 25 Jan 2001 13:02:46 -0500
Take a look at http://www.serverobjects.com/products.htm#asphttp

They have an object that you can use to call a URL, and it will return the

output of that URL/Page.

You can pass variables (like you want to) to that URL.

It looks like in your case that you don't care what the output is however,

you just need to push some data to somewhere else.

Of course, you need to take into concideration the time for prosession that

request.

But your page would continue processing after that request is complete.

Simply ignor the resulting page that the object returns.

We've used this object. It's proven handy for doing basic communications

between sites. You can use it for handshaking to be able to pass information

between sites or webs that don't share cookies but need the cookie values.



-Peter L



-----Original Message-----

From: dont worry [mailto:aspmailbox@y...]

Sent: Thursday, January 25, 2001 11:49 AM

To: ASP Web HowTo

Subject: [asp_web_howto] send http getstring to off site and still stay

on my site





I grab form values into variables.  then I need to

send a getstring with those variables to another site

other than mine.

ex.http://www.othersite.com?var1=var1&var2=var2, BUT i

need to also keep processing the rest of my script on

my site and continue.  SO the person does NOT leave my

site, but the string is sent in the "background" to a

different site.

thanks





Message #4 by "Whitmore, Todd x78046" <WhitmorT@b...> on Thu, 25 Jan 2001 13:46:45 -0500
This message is in MIME format. Since your mail reader does not understand

this format, some or all of this message may not be legible.



------_=_NextPart_001_01C086FF.AB2C612E

Content-Type: text/plain;

	charset="iso-8859-1"



We got around this by writing a custom WinINET-based COM component. It is

certainly easier to write to the WinINET API than doing all of the HTTP

processing at the sockets level.



-----Original Message-----

From: Walter Burrough [mailto:lists@c...]

Sent: Thursday, January 25, 2001 12:54 PM

To: ASP Web HowTo

Subject: [asp_web_howto] RE: send http getstring to off site and still

stay on my site





I _think_ you need a componant like winsockets to do that.

walter



-----Original Message-----

From: dont worry [mailto:aspmailbox@y...]

Sent: 25 January 2001 16:49

To: ASP Web HowTo

Subject: [asp_web_howto] send http getstring to off site and still stay

on my site





I grab form values into variables.  then I need to

send a getstring with those variables to another site

other than mine.

ex.http://www.othersite.com?var1=var1&var2=var2, BUT i

need to also keep processing the rest of my script on

my site and continue.  SO the person does NOT leave my

site, but the string is sent in the "background" to a

different site.

thanks









---

MaximumASP offers enhanced hosting solutions on the Windows 2000 platform.

Dedicated processor, RAM, and server resources provide dedicated server

performance at virtual server prices. Commercial components provided; custom

components allowed.




$subst('Email.Unsub')




Message #5 by Radi Shourbaji <RShourbaji@p...> on Thu, 25 Jan 2001 18:55:55 -0800
I use Hexillion's HexTCPQuery and it work's GREAT!  The support I've

received from them on Q&A issues has been superb as well.  Check out

http://www.hexillion.com



Radi Shourbaji

Sr. Product Manager

ProactiveNet, Inc.

"Insight so timely, it's proactive."

---------------------

Phone:  xxx-xxx-xxxx

Fax:  xxx-xxx-xxxx  

Mobile:  xxx-xxx-xxxx

---------------------

Email: mailto: radi@p...

Web: http://www.proactivenet.com/







-----Original Message-----

From: dont worry [mailto:aspmailbox@y...]

Sent: Thursday, January 25, 2001 8:49 AM

To: ASP Web HowTo

Subject: [asp_web_howto] send http getstring to off site and still stay

on my site





I grab form values into variables.  then I need to

send a getstring with those variables to another site

other than mine.

ex.http://www.othersite.com?var1=var1&var2=var2, BUT i

need to also keep processing the rest of my script on

my site and continue.  SO the person does NOT leave my

site, but the string is sent in the "background" to a

different site.

thanks





__________________________________________________




  Return to Index