PHP and ASP session

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Paul Boivin

    PHP and ASP session

    I have inherited of a ASP web application and would like to perform any
    additional work
    in PHP.

    If anyone has dealt successfully with this situation and can point me
    towards the path of least
    resistance I would appreciate it.

    Regards,

    - paul


  • Mike Peters

    #2
    Re: PHP and ASP session

    On 2004-03-28, Paul Boivin wrote:[color=blue]
    > I have inherited of a ASP web application and would like to perform any
    > additional work
    > in PHP.
    >
    > If anyone has dealt successfully with this situation and can point me
    > towards the path of least
    > resistance I would appreciate it.
    >[/color]
    Have you looked at asp2php? You can find it at:
    Mike Kohn's music, software, and electronics projects.


    --
    Mike Peters
    mike [-AT-] ice2o [-DOT-] com
    I am a DevOps and Cloud architecture consultant based in Northumberland in the UK. I provide consultancy on DevOps and private and public cloud solutions. I design and implement continous integration and continuous delivery solutions using Open Source, bespoke and commercial off the shelf software. I can also provide training and tuition for you or your team in DevOps best practices, tooling and solutions, OpenSource software, automation and cloud architecture solutions.

    Comment

    • Paul Boivin

      #3
      Re: PHP and ASP session

      Although never used it I am aware of it. Never talked to anyone that
      actually used it on a medium size project.

      Have you?

      If the current ASP code was decently written I would go right to that, but,
      I would rather hear a good scenario
      of gradual migration and session coexistence.

      Thank you,

      - paul
      "Mike Peters" <o0__mike__0oRE MOVE@THIShotmai l.com> wrote in message
      news:7491b16040 45940de7d315aac f196fdc@news.te ranews.com...[color=blue]
      > On 2004-03-28, Paul Boivin wrote:[color=green]
      > > I have inherited of a ASP web application and would like to perform any
      > > additional work
      > > in PHP.
      > >
      > > If anyone has dealt successfully with this situation and can point me
      > > towards the path of least
      > > resistance I would appreciate it.
      > >[/color]
      > Have you looked at asp2php? You can find it at:
      > http://asp2php.naken.cc/
      >
      > --
      > Mike Peters
      > mike [-AT-] ice2o [-DOT-] com
      > http://www.ice2o.com[/color]


      Comment

      • Mike Peters

        #4
        Re: PHP and ASP session

        On 2004-03-28, Paul Boivin wrote:[color=blue]
        > Although never used it I am aware of it. Never talked to anyone that
        > actually used it on a medium size project.
        >
        > Have you?
        >[/color]
        I've used it but only on fairly simple projects. It seems to do a
        reasonable job, if you're thinking of converting completely anyway,
        why not give it a test run and see?

        --
        Mike Peters
        mike [-AT-] ice2o [-DOT-] com
        I am a DevOps and Cloud architecture consultant based in Northumberland in the UK. I provide consultancy on DevOps and private and public cloud solutions. I design and implement continous integration and continuous delivery solutions using Open Source, bespoke and commercial off the shelf software. I can also provide training and tuition for you or your team in DevOps best practices, tooling and solutions, OpenSource software, automation and cloud architecture solutions.

        Comment

        • Paul Boivin

          #5
          Re: PHP and ASP session

          Thanks Mike, I am planning to take it for a spin but conversion will occur
          over a period of time
          so today we need to have a way for the users to jump from PHP and ASP areas
          keeping data
          held in session.

          - paul

          "Mike Peters" <o0__mike__0oRE MOVE@THIShotmai l.com> wrote in message
          news:7afee9baea ee623bc3b402ce7 1e681ba@news.te ranews.com...[color=blue]
          > On 2004-03-28, Paul Boivin wrote:[color=green]
          > > Although never used it I am aware of it. Never talked to anyone that
          > > actually used it on a medium size project.
          > >
          > > Have you?
          > >[/color]
          > I've used it but only on fairly simple projects. It seems to do a
          > reasonable job, if you're thinking of converting completely anyway,
          > why not give it a test run and see?
          >
          > --
          > Mike Peters
          > mike [-AT-] ice2o [-DOT-] com
          > http://www.ice2o.com[/color]


          Comment

          • Phil Roberts

            #6
            Re: PHP and ASP session

            With total disregard for any kind of safety measures "Paul Boivin"
            <info@paulboivi n.com> leapt forth and uttered:
            [color=blue]
            > I have inherited of a ASP web application and would like to
            > perform any additional work
            > in PHP.
            >
            > If anyone has dealt successfully with this situation and can
            > point me towards the path of least
            > resistance I would appreciate it.
            >
            > Regards,
            >
            > - paul
            >
            >[/color]

            I don't know how ASP handles sessions or stores session data, but
            it's possible to define custom session handlers for PHP that allow
            you to store your session data in a database. So if you can do
            something similar with ASP then in theory sharing session data
            should just be a matter of matching ID's and converting the data.

            --
            Phil Roberts | Dork Pretending To Be Hard | http://www.flatnet.net/

            Comment

            • Paul Boivin

              #7
              Re: PHP and ASP session

              Personally I don't see any other way but I thought I would ask the group
              anyway before
              starting the work.

              "Phil Roberts" <philrob@HOLYfl atnetSHIT.net> wrote in message
              news:Xns94BBBA2 F23477philrober ts@216.196.97.1 32...[color=blue]
              > With total disregard for any kind of safety measures "Paul Boivin"
              > <info@paulboivi n.com> leapt forth and uttered:
              >[color=green]
              > > I have inherited of a ASP web application and would like to
              > > perform any additional work
              > > in PHP.
              > >
              > > If anyone has dealt successfully with this situation and can
              > > point me towards the path of least
              > > resistance I would appreciate it.
              > >
              > > Regards,
              > >
              > > - paul
              > >
              > >[/color]
              >
              > I don't know how ASP handles sessions or stores session data, but
              > it's possible to define custom session handlers for PHP that allow
              > you to store your session data in a database. So if you can do
              > something similar with ASP then in theory sharing session data
              > should just be a matter of matching ID's and converting the data.
              >
              > --
              > Phil Roberts | Dork Pretending To Be Hard | http://www.flatnet.net/[/color]


              Comment

              Working...