User SevDer - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T18:50:19Zhttp://stackoverflow.com/feeds/user/82095http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/853513/how-to-overwrite-response-redirect-to-prevent-port-coming-with-it0How to overwrite Response.Redirect to prevent port coming with itSevDer2009-05-12T15:54:12Z2009-05-26T13:27:27Z
<p>Hi,</p>
<p>I have a scenario that my load balancer translates port 80 from outside into port 801 which is local. And When it comes to server, server obviously sees port 801 and in Response.Redirect it tries to inject port 801 into the URL it redirects to but this is not the desired solution for me.</p>
<p>What I am thinking is to:
1. Overwrite Response.Redirect so that I remove the port from it.
2. Have some kind of configuration in web.config to ignore that port.
3. The most nasty way of fixing the problem is to change the whole application to use full URL's inside Response.Redirect which is a big pain.</p>
<p>Is there a good solution to this problem?</p>
<p>Environment:
Windows Vista, Windows 2003 Server, Windows 2008 Server
IIS 6, IIS 7
ASP.NET
C# & VB.NET</p>
http://stackoverflow.com/questions/853513/how-to-overwrite-response-redirect-to-prevent-port-coming-with-it/910678#9106781Answer by SevDer for How to overwrite Response.Redirect to prevent port coming with itSevDer2009-05-26T13:27:27Z2009-05-26T13:27:27Z<p>Ok,</p>
<p>I got the answer myself. I hope this solution will be useful for others too.</p>
<p>Well, the answer is within the web.config.
Under </p>
<pre><code><system.web>
<httpRuntime useFullyQualifiedRedirectUrl="false" maxRequestLength="2526" requestLengthDiskThreshold="2526"/>
</system.web>
</code></pre>
<p>where the important part is the following to be false.</p>
<pre><code>useFullyQualifiedRedirectUrl="false"
</code></pre>
<p>This is true by default.</p>
http://stackoverflow.com/questions/820821/how-to-get-operating-ip-address-of-the-web-instance-on-iis7/853561#8535610Answer by SevDer for How to get operating IP Address of the WEB instance on IIS7SevDer2009-05-12T16:03:21Z2009-05-12T16:03:21Z<p>By coincidence I find out the solution.
It is hidden in the hosts file.</p>
<p>It was written in the hosts file as</p>
<pre><code>127.0.0.1 localhost
::1 localhost
</code></pre>
<p>and now I changed it to</p>
<pre><code>127.0.0.1 localhost
#::1 localhost
</code></pre>
<p>Works great now.</p>
http://stackoverflow.com/questions/820821/how-to-get-operating-ip-address-of-the-web-instance-on-iis70How to get operating IP Address of the WEB instance on IIS7SevDer2009-05-04T16:34:21Z2009-05-12T16:03:21Z
<p>Hi,</p>
<p>I have Vista x64 IIS7 running on my dev. machine.</p>
<p>I used to use <strong>Request.ServerVariables.Get("LOCAL_ADDR")</strong> to get the operating instance IP address of the website which was resolving into like 192.168.1.89, however after switching to <strong>Vista & IIS7</strong>, I started to get ::1 which people say that it is IPv6.</p>
<p><strong>How can I get it the old way?</strong> We use this to monitor if the instance actually is displaying the correct content. (It is difficult to change that monitoring method)</p>
<p>So golden question is how can I get <strong>running web app's Local IP Address?</strong> </p>
http://stackoverflow.com/questions/708323/visual-studio-2008-with-asp-net-3-5-debuging-using-attach-to-process-is-not-worki0Visual Studio 2008 with ASP.NET 3.5 debuging using attach to process is not workingSevDer2009-04-02T04:36:47Z2009-04-05T12:11:34Z
<p>Hi,</p>
<p>I am so used to attach a process when debugging ASP.NET application in .NET 2.0 and VS.NET 2005. I don't know what happened to this functionality in VS.NET 2008.</p>
<p>I also don't want to do debugging by starting from the start page because when the application is big enough you don't want it to be compiled and you sometimes cannot catch a case from start and you want to catch that case during that time.</p>
<p>I could't figure this one out. </p>
<p>I am running Vista Ultimate x64 with VS.NET 2008 Team Suite. </p>
<p>Also in the start options of the WebSite Propery pages Server is selected as "Use Default Web Server" and custom server is grayed out which I cannot check. (I don't know if I need some change here but I can't even try that)</p>
<p>On top of it, I tried debugging from default page but in that case what I got is "Unable to start debugging on the web server. Mixed mode debugging is not supported on Windows 64-bit platforms". What???? Anyway I get into the configuration manager of the solution and changed the mixed mode to ANY CPU, however no luck.</p>
<p>This time MS made me really crazy.</p>
<p>Seeking urgent help as going without the help of debugging brings down ASP.NET to the level of PHP or other kinds.</p>
<p>Additional notes:
1. I am using DotNetNuke 5.0.1 and building modules under that.
2. IIS 7 is used with Integrated mode.</p>
http://stackoverflow.com/questions/708323/visual-studio-2008-with-asp-net-3-5-debuging-using-attach-to-process-is-not-worki/718822#718822-1Answer by SevDer for Visual Studio 2008 with ASP.NET 3.5 debuging using attach to process is not workingSevDer2009-04-05T11:50:35Z2009-04-05T12:11:34Z<p>Help came from Mitchel Sellers.
He pointed out that the debug mode was ok however while attaching to the process, the "Attach To" was "Automatic:Native Code".</p>
<p>After changing to only "Managed Code" or simply by selecting "Managed Code" it started working.</p>
<p>Thanks Mitchel.</p>
<p>And here is the final words from Mitchel:</p>
<p>The "Script" option, is for classic ASP scripts, which ALWAYS run in 32 bit mode, thus debugging T-SQL and Script at the same time results in the "mixed mode", as T-SQL is 64 bit by default. Additionally without the "Managed" option selected, you would never be able to debug anyway.</p>
<p>Now, as to why it was different? I'm not sure, but once you change it you should be set to go for the future.</p>
http://stackoverflow.com/questions/369040/monitoring-load-on-asp-net-application/712333#7123330Answer by SevDer for Monitoring load on ASP.NET ApplicationSevDer2009-04-03T02:17:09Z2009-04-03T02:17:09Z<p>We are using an expensive solution which is AVICode but it is great. You can monitor so many thing with that.</p>
http://stackoverflow.com/questions/693050/implementing-observer-pattern-using-wcf/709733#7097330Answer by SevDer for Implementing observer pattern using WCFSevDer2009-04-02T13:33:06Z2009-04-02T13:33:06Z<p>The absolute best way to archive in your scenario and technology would be having some kind of token between your web app / library against your web service and your controller needs to have a thread to check if there are new results etc. However please note that you will require to get the complete data back from your WS as it's merge can result in removed items from the initial response.</p>
<p>Or I still think that handling threads would be better from controller with the use of WCF Webservices</p>
http://stackoverflow.com/questions/686873/allowing-session-in-a-web-farm-is-stateserver-good-enough/708457#7084571Answer by SevDer for Allowing Session in a Web Farm? Is StateServer Good Enough?SevDer2009-04-02T05:57:08Z2009-04-02T05:57:08Z<p>In my experience we've found out that native state server or even using SQL Server for sessions is a very scary scenario as both have issues (mainly performance). By the way, we are also using sticky sessions.</p>
<p>I think you can explore other products for this to achive the absolute best. A free option would be <a href="http://msdn.microsoft.com/en-us/library/cc645013.aspx" rel="nofollow">Velocity</a> but it is still not released.
And another comprehensive but proven product will be (Very expensive actually) <a href="http://www.alachisoft.com/ncache/" rel="nofollow">NCache</a>. THis will even help in your serilizations with less cost, If you use their API's it will be even better results. </p>
<p>Take a look and see which looks best for you.</p>
<p>About SQL Server, you server will die very soon if you have enough number of hits coming in (I belive you have some hits already which yielded you to do Web Farm or you do it just for the sake of redundancy)</p>
<p>Bottom line: We are evaluating Velocity because NCAchce is really expensive. However advantages are huge. </p>
http://stackoverflow.com/questions/540857/problems-with-asp-net-state-service/708380#7083800Answer by SevDer for Problems with ASP.Net State ServiceSevDer2009-04-02T05:12:04Z2009-04-02T05:12:04Z<p>In my experience we've found out that native state server or even using SQL Server for sessions is a very scary scenario as both have issues.</p>
<p>I think you can explore other products for this to achive the absolute best.
A free option would be <a href="http://msdn.microsoft.com/en-us/library/cc645013.aspx" rel="nofollow">Velocity</a> but it is still not released.<br>
And another comprehensive but proven product will be (Very expensive actually) <a href="http://www.alachisoft.com/ncache/" rel="nofollow">NCache</a></p>
<p>Take a look and see which looks best for you.</p>
<p>About SQL Server, you server will die very soon if you have enough number of hits coming in (I belive you have some hits already which yielded you to do Web Farm or you do it just for the sake of redundancy)</p>
http://stackoverflow.com/questions/678087/how-to-achieve-multiple-active-read-and-write-sitesdatacenters-with-continuos0How to achieve multiple Active (read and write) sites(datacenters) with continuos datareplication using SQL Server 2008?SevDer2009-03-24T16:03:04Z2009-03-29T23:06:52Z
<p>Hello,</p>
<p>I need SQL to be running on 2 data centers(DC) active/active.
There are tonnes of challanges to be done here and below are my requirements.</p>
<ol>
<li>Data synchronization must be async. (For higher performance)</li>
<li>I need to be able to read/write on both DC</li>
<li>When Site1 goes down, all the traffic will be routed to Site2 and when Site1 comes back live, traffic will be shared again. In this case, data must sync back within 1-2 hours (based on down time obviously)</li>
<li>SQL Transactional replication or other SQL replications seems not a good option because of the following.
a. If replication breaks, building back the replication will require 500GB to be transferred to the other Site.
b. We need to break the repl sometimes to make changes such as adding new tables or changing primary keys.
c. Sometimes for what ever the reason, that replication breaks by itself and even MS cannot find solution to that.
d. I am not sure if peer to peer replication will resolve this.
e. Merge replication seems scary and we don't know its implications that much and we don't want to carry extra GUIDs.</li>
<li>Today it will be 2 DCs but tomorrow we will add some more DCs and with possibility having one in Europe and one in Asia. </li>
<li>Desirable latency in replication is MAX 15 mins. </li>
<li>Most of all, I need a solution without a headache or with minimal.</li>
<li>We are getting EMC recovery point but that does not help me in ACTIVE/ACTIVE scenario as it is only DR.</li>
<li>I've evaluated the following productions and none provide me workable DB on the other end.</li>
</ol>
<p>I will appreciate your help on this issue.
Thanks in advance</p>
http://stackoverflow.com/questions/853513/how-to-overwrite-response-redirect-to-prevent-port-coming-with-it/853570#853570Comment by SevDer on How to overwrite Response.Redirect to prevent port coming with itSevDer2009-05-12T16:12:25Z2009-05-12T16:12:25ZThat is what we are doing anyway but port gets into the picture. And I have so many redirects already (hundreds of them)http://stackoverflow.com/questions/853513/how-to-overwrite-response-redirect-to-prevent-port-coming-with-it/853534#853534Comment by SevDer on How to overwrite Response.Redirect to prevent port coming with itSevDer2009-05-12T16:04:41Z2009-05-12T16:04:41ZI needed to be redirected actually.http://stackoverflow.com/questions/708323/visual-studio-2008-with-asp-net-3-5-debuging-using-attach-to-process-is-not-worki/718822#718822Comment by SevDer on Visual Studio 2008 with ASP.NET 3.5 debuging using attach to process is not workingSevDer2009-04-12T03:23:35Z2009-04-12T03:23:35ZI would love to give it to Mitchel, but at the same time I would like to show what the real answer is to everyone else. Plust ticking yourself does not give you any points. At least in my case it didn't :).http://stackoverflow.com/questions/708323/visual-studio-2008-with-asp-net-3-5-debuging-using-attach-to-process-is-not-workiComment by SevDer on Visual Studio 2008 with ASP.NET 3.5 debuging using attach to process is not workingSevDer2009-04-03T01:57:41Z2009-04-03T01:57:41ZThanks, until now I had so many successes with DNN.http://stackoverflow.com/questions/708323/visual-studio-2008-with-asp-net-3-5-debuging-using-attach-to-process-is-not-worki/708340#708340Comment by SevDer on Visual Studio 2008 with ASP.NET 3.5 debuging using attach to process is not workingSevDer2009-04-03T01:55:44Z2009-04-03T01:55:44ZHi Mitchel, I've not done that. It is running purely under 64 bit.
Actually everything works as expected except that debugging which is like a nightmare now.http://stackoverflow.com/questions/708323/visual-studio-2008-with-asp-net-3-5-debuging-using-attach-to-process-is-not-worki/708345#708345Comment by SevDer on Visual Studio 2008 with ASP.NET 3.5 debuging using attach to process is not workingSevDer2009-04-02T05:48:53Z2009-04-02T05:48:53ZAt least I've found that the "ASP.NET Development server" is starting because of a webservice I was having in the project. After disabling that feature I am ok with it. However still cannot debug.http://stackoverflow.com/questions/708323/visual-studio-2008-with-asp-net-3-5-debuging-using-attach-to-process-is-not-worki/708345#708345Comment by SevDer on Visual Studio 2008 with ASP.NET 3.5 debuging using attach to process is not workingSevDer2009-04-02T05:14:12Z2009-04-02T05:14:12ZI have a solution with class libraries and a web project.http://stackoverflow.com/questions/708323/visual-studio-2008-with-asp-net-3-5-debuging-using-attach-to-process-is-not-worki/708345#708345Comment by SevDer on Visual Studio 2008 with ASP.NET 3.5 debuging using attach to process is not workingSevDer2009-04-02T05:02:13Z2009-04-02T05:02:13Z1. I don't have such option actually. I simply have "Project File" and "Project Folder". For the web project I have "Full Path" and "Opened URL" and all are grayed out.
2. Yes I am doing int in IIS and I always did. Debugging is also enabled.
2. http://stackoverflow.com/questions/708323/visual-studio-2008-with-asp-net-3-5-debuging-using-attach-to-process-is-not-worki/708340#708340Comment by SevDer on Visual Studio 2008 with ASP.NET 3.5 debuging using attach to process is not workingSevDer2009-04-02T04:55:10Z2009-04-02T04:55:10ZIf this is the problem, how to resolve it? What are your suggestions? http://stackoverflow.com/questions/708323/visual-studio-2008-with-asp-net-3-5-debuging-using-attach-to-process-is-not-worki/708340#708340Comment by SevDer on Visual Studio 2008 with ASP.NET 3.5 debuging using attach to process is not workingSevDer2009-04-02T04:54:27Z2009-04-02T04:54:27ZHi Mitchel,
I didn't understand the Cassini part.
Actually I've modified my hosts file and added the following mysite 127.0.0.2 and setup the IIS for that (new site) and have this in Solution and opening that site <a href="http://mysite" rel="nofollow">mysite</a> and then trying to attach that. Do you think this is the problem?