Wrox Home  
Search P2P Archive for: Go

  Return to Index  

aspx thread: Server.Transfer()


Message #1 by "Albert Davis" <albertdavis@h...> on Wed, 13 Feb 2002 10:41:19 -0500
This might have been covered in a previous message but were their any 

significant changes to the Transfer() functionality in ASP.NET than what was 

defined by IIS 5.0...  More specifically are you able to now Transfer 

Application & Session information to DIFFERENT server's in a web farm?  If 

not, are we stuck with creating our own architecture to do this by using 

state management via sql or the asp.net state service?



Thanks,

Al



_________________________________________________________________

MSN Photos is the easiest way to share and print your photos: 

http://photos.msn.com/support/worldwide.aspx



Message #2 by "John Wormald" <johnswormald@h...> on Thu, 14 Feb 2002 15:51:06
Al



If you are referring to the "Invalid View State" error when using 

Server.Transfer with the second parameter set to true (preserve 

querystring and form collections) then check out the following article:



http://support.microsoft.com/default.aspx?scid=kb;en-us;Q316920



This article also gives a few alternative solutions for transferring 

values from one page to another. But unforunately does not offer a 

solution for the possibility of transferring values from multiple forms to 

one target form.



John





> This might have been covered in a previous message but were their any 

> significant changes to the Transfer() functionality in ASP.NET than what 

was 

> defined by IIS 5.0...  More specifically are you able to now Transfer 

> Application & Session information to DIFFERENT server's in a web farm?  

If 

> not, are we stuck with creating our own architecture to do this by using 

> state management via sql or the asp.net state service?

> 

> Thanks,

> Al

> 

> _________________________________________________________________

> MSN Photos is the easiest way to share and print your photos: 

> http://photos.msn.com/support/worldwide.aspx

> 

Message #3 by "Albert Davis" <albertdavis@h...> on Thu, 14 Feb 2002 10:53:25 -0500
Yea I am familiar with that issue...  Thanks...  My question is really about 

functionality more than detail of the how.  Is it possible to do call 

Server.Tranfer("http://webserver2/accepttransfer.aspx") in where I am 

transferring from http://webserver1/transfer.aspx.  So I want to transfer 

all app and session stored varibles from one server to another server within 

a web farm.



Thanks again...





>From: "John Wormald" <johnswormald@h...>

>Reply-To: "ASP+" <aspx@p...>

>To: "ASP+" <aspx@p...>

>Subject: [aspx] Re: Server.Transfer()

>Date: Thu, 14 Feb 2002 15:51:06

>

>Al

>

>If you are referring to the "Invalid View State" error when using

>Server.Transfer with the second parameter set to true (preserve

>querystring and form collections) then check out the following article:

>

>http://support.microsoft.com/default.aspx?scid=kb;en-us;Q316920

>

>This article also gives a few alternative solutions for transferring

>values from one page to another. But unforunately does not offer a

>solution for the possibility of transferring values from multiple forms to

>one target form.

>

>John

>

>

> > This might have been covered in a previous message but were their any

> > significant changes to the Transfer() functionality in ASP.NET than what

>was

> > defined by IIS 5.0...  More specifically are you able to now Transfer

> > Application & Session information to DIFFERENT server's in a web farm?

>If

> > not, are we stuck with creating our own architecture to do this by using

> > state management via sql or the asp.net state service?

> >

> > Thanks,

> > Al

> >

> > _________________________________________________________________

> > MSN Photos is the easiest way to share and print your photos:

> > http://photos.msn.com/support/worldwide.aspx

> >

>












_________________________________________________________________

Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp.



Message #4 by "Douglas J. Badin" <DJBadin@m...> on Thu, 14 Feb 2002 12:18:31 -0500
You don't need to transfer them, just store them on a StateServer or in

SQL Server by updating the .config file in the <sessionState> element.



Look at:



http://msdn.microsoft.com/library/en-us/cpgenref/html/gngrfsessionstates

ection.asp?frame=true





Doug

 





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

From: Albert Davis [mailto:albertdavis@h...] 

Sent: Thursday, February 14, 2002 10:53 AM

To: ASP+

Subject: [aspx] Re: Server.Transfer()





Yea I am familiar with that issue...  Thanks...  My question is really

about functionality more than detail of the how.  Is it possible to do

call

Server.Tranfer("http://webserver2/accepttransfer.aspx") in where I am

transferring from http://webserver1/transfer.aspx.  So I want to

transfer all app and session stored varibles from one server to another

server within a web farm.



Thanks again...





>From: "John Wormald" <johnswormald@h...>

>Reply-To: "ASP+" <aspx@p...>

>To: "ASP+" <aspx@p...>

>Subject: [aspx] Re: Server.Transfer()

>Date: Thu, 14 Feb 2002 15:51:06

>

>Al

>

>If you are referring to the "Invalid View State" error when using 

>Server.Transfer with the second parameter set to true (preserve 

>querystring and form collections) then check out the following article:

>

>http://support.microsoft.com/default.aspx?scid=kb;en-us;Q316920

>

>This article also gives a few alternative solutions for transferring 

>values from one page to another. But unforunately does not offer a 

>solution for the possibility of transferring values from multiple forms



>to one target form.

>

>John

>

>

> > This might have been covered in a previous message but were their 

> > any significant changes to the Transfer() functionality in ASP.NET 

> > than what

>was

> > defined by IIS 5.0...  More specifically are you able to now 

> > Transfer Application & Session information to DIFFERENT server's in 

> > a web farm?

>If

> > not, are we stuck with creating our own architecture to do this by 

> > using state management via sql or the asp.net state service?

> >

> > Thanks,

> > Al

> >

> > _________________________________________________________________

> > MSN Photos is the easiest way to share and print your photos: 

> > http://photos.msn.com/support/worldwide.aspx

> >

>

>---

>Change your mail options at http://p2p.wrox.com/manager.asp or to 

>unsubscribe send a blank email to $subst('Email.Unsub').









_________________________________________________________________

Get your FREE download of MSN Explorer at

http://explorer.msn.com/intl.asp.





---

Change your mail options at http://p2p.wrox.com/manager.asp or to

unsubscribe send a blank email to $subst('Email.Unsub').

Message #5 by "Albert Davis" <albertdavis@h...> on Thu, 14 Feb 2002 15:20:30 -0500
As I mentioned in my first message "If not, are we stuck with creating our 

own architecture to do this by using state management via sql or the asp.net 

state service?" I was wondering if the Transfer() function can interoperate 

between servers in a web farm...



Thanks for your help,

Al







>From: "Douglas J. Badin" <DJBadin@m...>

>Reply-To: "ASP+" <aspx@p...>

>To: "ASP+" <aspx@p...>

>Subject: [aspx] Re: Server.Transfer()

>Date: Thu, 14 Feb 2002 12:18:31 -0500

>

>You don't need to transfer them, just store them on a StateServer or in

>SQL Server by updating the .config file in the <sessionState> element.

>

>Look at:

>

>http://msdn.microsoft.com/library/en-us/cpgenref/html/gngrfsessionstates

>ection.asp?frame=true

>

>

>Doug

>

>

>

>-----Original Message-----

>From: Albert Davis [mailto:albertdavis@h...]

>Sent: Thursday, February 14, 2002 10:53 AM

>To: ASP+

>Subject: [aspx] Re: Server.Transfer()

>

>

>Yea I am familiar with that issue...  Thanks...  My question is really

>about functionality more than detail of the how.  Is it possible to do

>call

>Server.Tranfer("http://webserver2/accepttransfer.aspx") in where I am

>transferring from http://webserver1/transfer.aspx.  So I want to

>transfer all app and session stored varibles from one server to another

>server within a web farm.

>

>Thanks again...

>

>

> >From: "John Wormald" <johnswormald@h...>

> >Reply-To: "ASP+" <aspx@p...>

> >To: "ASP+" <aspx@p...>

> >Subject: [aspx] Re: Server.Transfer()

> >Date: Thu, 14 Feb 2002 15:51:06

> >

> >Al

> >

> >If you are referring to the "Invalid View State" error when using

> >Server.Transfer with the second parameter set to true (preserve

> >querystring and form collections) then check out the following article:

> >

> >http://support.microsoft.com/default.aspx?scid=kb;en-us;Q316920

> >

> >This article also gives a few alternative solutions for transferring

> >values from one page to another. But unforunately does not offer a

> >solution for the possibility of transferring values from multiple forms

>

> >to one target form.

> >

> >John

> >

> >

> > > This might have been covered in a previous message but were their

> > > any significant changes to the Transfer() functionality in ASP.NET

> > > than what

> >was

> > > defined by IIS 5.0...  More specifically are you able to now

> > > Transfer Application & Session information to DIFFERENT server's in

> > > a web farm?

> >If

> > > not, are we stuck with creating our own architecture to do this by

> > > using state management via sql or the asp.net state service?

> > >

> > > Thanks,

> > > Al

> > >

> > > _________________________________________________________________

> > > MSN Photos is the easiest way to share and print your photos:

> > > http://photos.msn.com/support/worldwide.aspx

> > >

> >

> >---

> >Change your mail options at http://p2p.wrox.com/manager.asp or to

> >unsubscribe send a blank email to $subst('Email.Unsub').

>

>

>

>

>_________________________________________________________________

>Get your FREE download of MSN Explorer at

>http://explorer.msn.com/intl.asp.

>

>

>---

>Change your mail options at http://p2p.wrox.com/manager.asp or to

>unsubscribe send a blank email to $subst('Email.Unsub').

>












_________________________________________________________________

Send and receive Hotmail on your mobile device: http://mobile.msn.com




  Return to Index