No One Has the Solution Seems..

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • .NET Follower

    No One Has the Solution Seems..

    hi,
    I had posted a query
    Subj:Integratin g 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 )


  • Guest's Avatar

    #2
    Re: No One Has the Solution Seems..

    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" <amitagarwal-NET@SoftHome.ne t> wrote in message
    news:eCeJeteHEH A.4088@TK2MSFTN GP10.phx.gbl...[color=blue]
    > hi,
    > I had posted a query
    > Subj:Integratin g 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 )
    >
    >[/color]


    Comment

    • .NET Follower

      #3
      Re: No One Has the Solution Seems..

      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 )
      <johndoe@driver .net> wrote in message
      news:uJGaH8eHEH A.3536@TK2MSFTN GP09.phx.gbl...[color=blue]
      > 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[/color]
      it[color=blue]
      > to do. You would need to give more specific details as to exactly what you
      > are attempting to accomplish.
      >
      >
      >
      >
      >
      >
      >
      > ".NET Follower" <amitagarwal-NET@SoftHome.ne t> wrote in message
      > news:eCeJeteHEH A.4088@TK2MSFTN GP10.phx.gbl...[color=green]
      > > hi,
      > > I had posted a query
      > > Subj:Integratin g 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 )
      > >
      > >[/color]
      >
      >[/color]


      Comment

      • Guest's Avatar

        #4
        Re: No One Has the Solution Seems..

        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" <amitagarwal-NET@SoftHome.ne t> wrote in message
        news:uJMcLKgHEH A.2164@TK2MSFTN GP12.phx.gbl...[color=blue]
        > 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 )
        > <johndoe@driver .net> wrote in message
        > news:uJGaH8eHEH A.3536@TK2MSFTN GP09.phx.gbl...[color=green]
        >> 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[/color]
        > it[color=green]
        >> to do. You would need to give more specific details as to exactly what
        >> you
        >> are attempting to accomplish.
        >>
        >>
        >>
        >>
        >>
        >>
        >>
        >> ".NET Follower" <amitagarwal-NET@SoftHome.ne t> wrote in message
        >> news:eCeJeteHEH A.4088@TK2MSFTN GP10.phx.gbl...[color=darkred]
        >> > hi,
        >> > I had posted a query
        >> > Subj:Integratin g 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 )
        >> >
        >> >[/color]
        >>
        >>[/color]
        >
        >[/color]


        Comment

        • Bruno Sirianni

          #5
          Re: No One Has the Solution Seems..

          Read this :
          Find official documentation, practical know-how, and expert guidance for builders working and troubleshooting in Microsoft products.


          Can help you!

          Brun


          ".NET Follower" <amitagarwal-NET@SoftHome.ne t> wrote in message
          news:eCeJeteHEH A.4088@TK2MSFTN GP10.phx.gbl...[color=blue]
          > hi,
          > I had posted a query
          > Subj:Integratin g 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 )
          >
          >[/color]


          Comment

          • Kevin Spencer

            #6
            Re: No One Has the Solution Seems..

            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" <amitagarwal-NET@SoftHome.ne t> wrote in message
            news:uJMcLKgHEH A.2164@TK2MSFTN GP12.phx.gbl...[color=blue]
            > 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 )
            > <johndoe@driver .net> wrote in message
            > news:uJGaH8eHEH A.3536@TK2MSFTN GP09.phx.gbl...[color=green]
            > > I do not think you can specfically share a Session but you can share[/color][/color]
            a[color=blue][color=green]
            > > cookie across subdomains/folders. This might be able to do what you need[/color]
            > it[color=green]
            > > to do. You would need to give more specific details as to exactly what[/color][/color]
            you[color=blue][color=green]
            > > are attempting to accomplish.
            > >
            > >
            > >
            > >
            > >
            > >
            > >
            > > ".NET Follower" <amitagarwal-NET@SoftHome.ne t> wrote in message
            > > news:eCeJeteHEH A.4088@TK2MSFTN GP10.phx.gbl...[color=darkred]
            > > > hi,
            > > > I had posted a query
            > > > Subj:Integratin g 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 )
            > > >
            > > >[/color]
            > >
            > >[/color]
            >
            >[/color]


            Comment

            Working...