Issuetracker and ASP.Net 2.0?

Last post 10-23-2008 12:07 PM by JonF. 14 replies.

Sort Posts:

  • Issuetracker and ASP.Net 2.0?

    05-11-2006, 11:51 AM
    • Member
      109 point Member
    • Dycacian
    • Member since 02-27-2006, 6:51 PM
    • Posts 23

    I am at a point where I would like to upgrade to .Net 2.0, but I don't want to break IssueTracker.  Has anyone has issues with this?  If so what were the issues.  Any info would be great.

     

    Thanks,

    Dycacian

    -Dycacian
  • Re: Issuetracker and ASP.Net 2.0?

    05-20-2006, 5:16 PM
    • Contributor
      5,962 point Contributor
    • Xanderno
    • Member since 06-17-2002, 3:24 PM
    • Plano, TX
    • Posts 1,181
    Nope....I recently upgraded and it went off fairly painlessly. 
  • Re: Issuetracker and ASP.Net 2.0?

    05-22-2006, 11:06 AM
    • Member
      109 point Member
    • Dycacian
    • Member since 02-27-2006, 6:51 PM
    • Posts 23

    Thanks,

    I upgraded, and i didn't find any problems.  So at least I know it is still working. 

    -Dycacian
  • Re: Issuetracker and ASP.Net 2.0?

    06-03-2006, 11:17 AM
    • Member
      30 point Member
    • DarrenC
    • Member since 05-25-2006, 5:38 PM
    • Newmarket, Ont. Canada
    • Posts 6
    Quick question, guys ... If I upgrade to ASP.NET 2.0, will I need to port my database to SQL Server 2005?
  • Re: Issuetracker and ASP.Net 2.0?

    06-03-2006, 12:52 PM
    • Contributor
      5,962 point Contributor
    • Xanderno
    • Member since 06-17-2002, 3:24 PM
    • Plano, TX
    • Posts 1,181
    DarrenC:
    Quick question, guys ... If I upgrade to ASP.NET 2.0, will I need to port my database to SQL Server 2005?


    Nope....No worries there.  SQL Server 2000 (or Access, for that matter) will still work just fine.  
  • Re: Issuetracker and ASP.Net 2.0?

    06-03-2006, 5:43 PM
    • Member
      30 point Member
    • DarrenC
    • Member since 05-25-2006, 5:38 PM
    • Newmarket, Ont. Canada
    • Posts 6

    Xanderno:
    DarrenC:
    Quick question, guys ... If I upgrade to ASP.NET 2.0, will I need to port my database to SQL Server 2005?


    Nope....No worries there.  SQL Server 2000 (or Access, for that matter) will still work just fine.  

    Great... many thanks.

  • Re: Issuetracker and ASP.Net 2.0?

    07-08-2006, 5:19 PM
    • Member
      84 point Member
    • Xiaoth
    • Member since 07-29-2002, 3:44 AM
    • Scottsdale, Arizona
    • Posts 17

    Dycacian:
    I am at a point where I would like to upgrade to .Net 2.0, but I don't want to break IssueTracker.  Has anyone has issues with this?  If so what were the issues.  Any info would be great.

    Yes. Persisted authentication credentials via encrypted cookies broke after updating the site to run on ASP.NET 2.0. Resolution was to either delete the cookies on the web browser or have an error handling routine to reset the cookies. We chose the latter, but now the cookie doesn't persist longer than 30 min... still looking into it.

    Jon

  • Re: Issuetracker and ASP.Net 2.0?

    07-10-2006, 11:21 AM
    • Member
      109 point Member
    • Dycacian
    • Member since 02-27-2006, 6:51 PM
    • Posts 23
    Aaah  good to know.  I will take a look at it as well.  Might be a good place to learn more about the cookies. :D
    -Dycacian
  • Re: Issuetracker and ASP.Net 2.0?

    07-10-2006, 12:13 PM
    • Contributor
      5,962 point Contributor
    • Xanderno
    • Member since 06-17-2002, 3:24 PM
    • Plano, TX
    • Posts 1,181
    Xiaoth:

    Dycacian:
    I am at a point where I would like to upgrade to .Net 2.0, but I don't want to break IssueTracker.  Has anyone has issues with this?  If so what were the issues.  Any info would be great.

    Yes. Persisted authentication credentials via encrypted cookies broke after updating the site to run on ASP.NET 2.0. Resolution was to either delete the cookies on the web browser or have an error handling routine to reset the cookies. We chose the latter, but now the cookie doesn't persist longer than 30 min... still looking into it.

    Jon

    To be fair though (and pedantic, while I'm at it :-) ) that's not an issue with Issue Tracker...That's an issue with changing the runtime environment from ASP.Net v1.1 to ASP.Net v2.0.   You'll see this most any time you have an existing ASP.Net 1.1 application using form auth, where you've persisted the forms auth cookies, and you switch it to run under ASP.Net 2.0.  

    Not that it's not a valid issue to look out for, but it's an issue to look out for anytime you update an existing 1.x forms auth app to 2.0. 


    BTW...Your issue with the cookie not persisting longer than 30 minutes is due to a change in how ASP.Net 2.0 determines the timeout of persistant forms authentication cookies.   You can make them persist longer by increasing the "timeout" attribute of the forms element in the authentication node of web.config.

    Hope this helps,

    Xander

     

     

  • Re: Issuetracker and ASP.Net 2.0?

    07-11-2006, 3:38 AM
    • Member
      84 point Member
    • Xiaoth
    • Member since 07-29-2002, 3:44 AM
    • Scottsdale, Arizona
    • Posts 17
    Xanderno:
    Xiaoth:
    Yes. Persisted authentication credentials via encrypted cookies broke after updating the site to run on ASP.NET 2.0. Resolution was to either delete the cookies on the web browser or have an error handling routine to reset the cookies. We chose the latter, but now the cookie doesn't persist longer than 30 min... still looking into it.

    To be fair though (and pedantic, while I'm at it :-) ) that's not an issue with Issue Tracker...That's an issue with changing the runtime environment from ASP.Net v1.1 to ASP.Net v2.0.   You'll see this most any time you have an existing ASP.Net 1.1 application using form auth, where you've persisted the forms auth cookies, and you switch it to run under ASP.Net 2.0.  

    Not that it's not a valid issue to look out for, but it's an issue to look out for anytime you update an existing 1.x forms auth app to 2.0.

    Perhaps I consider it an Issue Tracker issue because Issue Tracker persisted the auth cookies in the way that it did. This would not happen if the peristence method used did not use the Crypto libraries that changed between .NET versions; just storing username/password as a cookie using the cookie collection manually does not break, but in this case it did.

    Xanderno:
    BTW...Your issue with the cookie not persisting longer than 30 minutes is due to a change in how ASP.Net 2.0 determines the timeout of persistant forms authentication cookies.   You can make them persist longer by increasing the "timeout" attribute of the forms element in the authentication node of web.config.

    Hope this helps,

    Indeed it does, thank you. I wasn't sure what to do about this; thought it was due to a change I made but now I see it's not, and also now know where to go to fix it. Thanks so much.

    Jon

  • Re: Issuetracker and ASP.Net 2.0?

    09-26-2006, 4:55 PM
    • Member
      10 point Member
    • RoyalJack
    • Member since 09-21-2006, 9:12 PM
    • Posts 2

    Do we have Issue Tracker Starter Kit for .net 2.0.

  • Re: Issuetracker and ASP.Net 2.0?

    09-08-2008, 11:14 AM
    • Member
      5 point Member
    • eryn
    • Member since 12-10-2007, 6:54 AM
    • Posts 10

    hello there people, sorry to wake this thread.

    the 2.0 project is missing the .sql script files and i can't open the 1.1 tracker on my vista machine, can somebody please email me the database script, i'd like to get this running please...

    will have to create a XP VM to run the msi in the mean time...

     thank you.

  • Re: Issuetracker and ASP.Net 2.0?

    10-22-2008, 9:43 PM
    • Member
      55 point Member
    • asp2go
    • Member since 08-26-2008, 11:42 PM
    • Posts 61

    There is a 2.0 C# version on Codeplex. If anyone has a VB version converted to 2.0 I'd love to get a copy.

     Thanks

  • Re: Issuetracker and ASP.Net 2.0?

    10-23-2008, 11:19 AM
    • Member
      41 point Member
    • JonF
    • Member since 03-28-2005, 11:59 AM
    • Idaho
    • Posts 19

    Did this project get removed from the asp.net list?  There is a link to axo soft but the starter kit is gone.  Did I miss something? 

  • Re: Issuetracker and ASP.Net 2.0?

    10-23-2008, 12:07 PM
    • Member
      41 point Member
    • JonF
    • Member since 03-28-2005, 11:59 AM
    • Idaho
    • Posts 19

    I found it in the asp.net 1.x archive.  The axo soft app is totally overkill for what I need. 

Page 1 of 1 (15 items)