473,411 Members | 2,083 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,411 software developers and data experts.

No One Has the Solution Seems..

hi,
I had posted a query
Subj:Integrating ASP.NET Web Projects to share session variables

But it seems no one has the answer to the problem
very strange......

--
Thanks and Regards,

Amit Agarwal
Software Programmer(.NET)
Nov 18 '05 #1
5 1342
I do not think you can specfically share a Session but you can share a
cookie across subdomains/folders. This might be able to do what you need it
to do. You would need to give more specific details as to exactly what you
are attempting to accomplish.



".NET Follower" <am*************@SoftHome.net> wrote in message
news:eC**************@TK2MSFTNGP10.phx.gbl...
hi,
I had posted a query
Subj:Integrating ASP.NET Web Projects to share session variables

But it seems no one has the answer to the problem
very strange......

--
Thanks and Regards,

Amit Agarwal
Software Programmer(.NET)

Nov 18 '05 #2
Hi,

I have solution
in which there are two ASP.NET Web Projects.

i want to share session variables between the two web projects in the same
solution....

anyone....?

actually we cannot share session state between two application in IIS
normally .

but there should be some methods to accomplih this...i guess.


--
Thanks and Regards,

Amit Agarwal
Software Programmer(.NET)
<jo*****@driver.net> wrote in message
news:uJ**************@TK2MSFTNGP09.phx.gbl...
I do not think you can specfically share a Session but you can share a
cookie across subdomains/folders. This might be able to do what you need it to do. You would need to give more specific details as to exactly what you
are attempting to accomplish.



".NET Follower" <am*************@SoftHome.net> wrote in message
news:eC**************@TK2MSFTNGP10.phx.gbl...
hi,
I had posted a query
Subj:Integrating ASP.NET Web Projects to share session variables

But it seems no one has the answer to the problem
very strange......

--
Thanks and Regards,

Amit Agarwal
Software Programmer(.NET)


Nov 18 '05 #3
Well since you still were unable to give any details to what you "really"
want to do I can only suggest my prior suggestion.
Use A cookie to store a unique session Identifier. If the projects span
multiple domains then you will have to work out authrozing the cookie for
multiple domains. You will also probably need to do your own serialization
and deserialization. Without more specific information though it is
impossible to tell what is really the right solution for this situation


".NET Follower" <am*************@SoftHome.net> wrote in message
news:uJ**************@TK2MSFTNGP12.phx.gbl...
Hi,

I have solution
in which there are two ASP.NET Web Projects.

i want to share session variables between the two web projects in the same
solution....

anyone....?

actually we cannot share session state between two application in IIS
normally .

but there should be some methods to accomplih this...i guess.


--
Thanks and Regards,

Amit Agarwal
Software Programmer(.NET)
<jo*****@driver.net> wrote in message
news:uJ**************@TK2MSFTNGP09.phx.gbl...
I do not think you can specfically share a Session but you can share
a
cookie across subdomains/folders. This might be able to do what you need

it
to do. You would need to give more specific details as to exactly what
you
are attempting to accomplish.



".NET Follower" <am*************@SoftHome.net> wrote in message
news:eC**************@TK2MSFTNGP10.phx.gbl...
> hi,
> I had posted a query
> Subj:Integrating ASP.NET Web Projects to share session variables
>
> But it seems no one has the answer to the problem
> very strange......
>
> --
> Thanks and Regards,
>
> Amit Agarwal
> Software Programmer(.NET)
>
>



Nov 18 '05 #4
Read this :
http://msdn.microsoft.com/library/en...rttoaspnet.asp

Can help you!

Brun
".NET Follower" <am*************@SoftHome.net> wrote in message
news:eC**************@TK2MSFTNGP10.phx.gbl...
hi,
I had posted a query
Subj:Integrating ASP.NET Web Projects to share session variables

But it seems no one has the answer to the problem
very strange......

--
Thanks and Regards,

Amit Agarwal
Software Programmer(.NET)

Nov 18 '05 #5
This is simply a matter of thinking correctly. You don't want to share
Session variables between applications. A variable is simply a storage
mechanism for data. What you want is to share DATA between applications.
Once you start thinking that way, the possible answers should begin flooding
into your mind (Messaging, Web Services, Remoting, Page request via form
post, query string, etc). As the memory in one app (where Session resides)
is not avaialble to the other, the data must be passed via something else.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

".NET Follower" <am*************@SoftHome.net> wrote in message
news:uJ**************@TK2MSFTNGP12.phx.gbl...
Hi,

I have solution
in which there are two ASP.NET Web Projects.

i want to share session variables between the two web projects in the same
solution....

anyone....?

actually we cannot share session state between two application in IIS
normally .

but there should be some methods to accomplih this...i guess.


--
Thanks and Regards,

Amit Agarwal
Software Programmer(.NET)
<jo*****@driver.net> wrote in message
news:uJ**************@TK2MSFTNGP09.phx.gbl...
I do not think you can specfically share a Session but you can share a cookie across subdomains/folders. This might be able to do what you need

it
to do. You would need to give more specific details as to exactly what you are attempting to accomplish.



".NET Follower" <am*************@SoftHome.net> wrote in message
news:eC**************@TK2MSFTNGP10.phx.gbl...
hi,
I had posted a query
Subj:Integrating ASP.NET Web Projects to share session variables

But it seems no one has the answer to the problem
very strange......

--
Thanks and Regards,

Amit Agarwal
Software Programmer(.NET)



Nov 18 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Dave | last post by:
I have a Solution with two projects. I am trying to reference a class in project2 from project1. When I right click on the project1 references (in Solutions explorer)and attempt to add a...
5
by: Dave L | last post by:
This is a strange problem that's plagued me for years using the .NET tools. The problem is this: ..NET applications installed on a virgin machine (framework installed, but no ..NET tools...
0
by: Vani | last post by:
Has anyone come across this issue? There seems to be a behavioral difference (and possible bug) in visual strudio 2003 when building a vc.net solution through IDE and building the same solution...
13
by: Pete | last post by:
I'm cross posting from mscom.webservices.general as I have received no answer there: There has been a number of recent posts requesting how to satisfactorily enable BASIC authorization at the...
3
by: musosdev | last post by:
Hi guys Okay, I've setup my projects to open and compile fine in VS2005 using FPSE and remote web, but it's *really* slow. So I thought I'd have a go at doing it the normal way, by loading from...
5
by: cmay | last post by:
I have a big solution filled with a bunch of projects. I add a project to the solution (not adding any references mind you). Now, if I close down everything and try to just open that single...
0
by: GroupReader | last post by:
We have a shared solution that is in VSS. The solution contains several projects in addition to the main website "project". The solution seems to work fine. All developers can open the solution...
1
by: Hans Kesting | last post by:
Hi, I can't get a vs2008 solution to compile. I have copied the source from a (compiling) 2.0 web-application to a new directory (I didn't want to change the old code), and tried to compile...
6
by: David Mark | last post by:
On Jul 27, 9:37 pm, Jonas Smith <jonas.sm...@yahoo.comwrote: Here somebody has regurgitated a lot of bad examples in a very bad color scheme, but there are a couple of useful ideas to be found: ...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.