Search

You searched for the word(s): userid:667651

Matching Posts

  • Re: Reverse Proxy

    If you want to add their users and computers to your domain, you'll have to set up a VPN tunnel between your two networks. After you have a network link between the two offices, you can "trust" their domain and then begin to grant permissions to users and computers on their domain (You'll be able to reference THEIRDOMAIN\jsmith in your database, web.config, security groups, etc). Setting up a VPN tunnel also eliminates the need to set up SSL, as any traffic passing between your
    Posted to Security (Forum) by Idgaf on 7/21/2008
  • Re: Reverse Proxy

    You can buy a new domain or add a record to your existing domain but it's not a requirement, as your external users could access the site by IP. The easiest way is to open port 443 (SSL) through your firewall, and forward that port to your internal web server. Adding an SSL Cert to IIS is easy and you can get them for less than $20 from GoDaddy. You can allow them to log in by enabling Basic Authentication in IIS' Security tab. Basic Authentication should only be enabled if the external users
    Posted to Security (Forum) by Idgaf on 7/21/2008
  • Re: how to set name for download files

    Response.AddHeader "content-disposition","attachment; filename=fname.ext" http://support.microsoft.com/kb/260519
    Posted to Getting Started (Forum) by Idgaf on 7/20/2008
  • Re: Cookie/session state dropping from xxx.is to www.xxx.is

    I'm not aware of a way to globally set the cookie domain in config, but you should be able to set the domain on the cookie directly in the response. http://www.velocityreviews.com/forums/t108519-session-cookie-not-accessible-across-subdomains.html may help.
    Posted to State Management (Forum) by Idgaf on 7/20/2008
  • Re: How to update application variables on the Servers under NLB environment?

    Almost all load balancing appliances support "sticky sessions" which keep a user tied to the same server throughout their session. Windows NLB also supports Single Affinity which may help you: http://technet2.microsoft.com/windowsserver/en/library/884c727d-6083-4265-ac1d-b5e66b68281a1033.mspx?mfr=true Are you storing user-data in Application? Using the Session state services or putting Session state in a database might also help.
    Posted to State Management (Forum) by Idgaf on 7/20/2008
  • Re: how to interact between diffent DB servers and fetch data on a predefined Condition...

    If they are on the same domain, you could try writing an ecnrypted cookie to the user's machine that only your site(s) can decrypt. If they are not on the same domain, you'll have you have some sort of landing page that passes an encrypted "token" or something to the other sites to let them know this person is already logged in. If you use a cookie/query string, make sure you validate one or two pieces of information (such as IP and user-agent) to make sure nobody has stolen someone
    Posted to Security (Forum) by Idgaf on 7/20/2008
  • Re: using AES Enhanced for encrypting query string

    Did you try URL encoding the value? ab+c would read "ab%2Bc" in the query string and should come across correctly.
    Posted to Security (Forum) by Idgaf on 7/20/2008
  • Re: authenticate asp.net web application using IBM WebShpere portal credentials

    I've done something similar. Maybe someone else can suggest something better, but this was pretty simple and it worked really well for me. This technique also assumes both applications are on the same domain. From Application A (WebSphere), you concatenate their User Id, IP Address, and User Agent and encrypt it using something strong like AES and put it on the user's machine as a cookie. Redirect them from Application A to Application B. From Application B (ASP.NET), you check for this cookie
    Posted to Security (Forum) by Idgaf on 7/20/2008
  • Re: Reverse Proxy

    Have you considered other alternatives? Open ports 80 and/or 443 through your firewall for external users and possibly restrict access to those ports by IP? Depending on the device at the edge of your network, maybe set up VPN connections with restricted access to the app? Just a thought.
    Posted to Security (Forum) by Idgaf on 7/20/2008
  • Re: Changing focus on a page in response to user input

    FYI, the Page.SmartNavigation Property is deprecated .
    Posted to Getting Started (Forum) by Idgaf on 5/19/2007
Page 1 of 3 (24 items) 1 2 3 Next >