[Mono-dev] Environment.GetEnvironmentVariable() not working in Linux ASP.NET app

Robert Jordan robertj at gmx.net
Wed Nov 9 12:52:26 EST 2011


Hi Martin,

please file a bug against MD's bugzilla. IIRC, MD has an integrated
bug reporting feature.

Robert

On 09.11.2011 18:36, H . wrote:
>
> Hi Robert,
>
> your suggestion is correct. It's not a problem of Mono itself but rather a problem with MonoDevelop's debugging session.
>
> I have extended my web app with two TextBoxes which are used to display the contents of http_proxy and no_proxy. When running the app from within MonoDevelop the TextBox associated with the no_proxy value is empty. However, if I start xsp2 from the command line, both TextBoxes are displaying the expected values. I have always used the Debug build option.
>
> MonoDevelop is not fully resetting the environment for debugging sessions. But it definitly "resets" the no_proxy variable.
>
> This is a very confusing and difficult to track down problem. It is especially annoying when trying to debug the new proxy support in Mono/master that I have added within the last months. It also means, that web apps which are using WebClient and it's proxy support will not work as expected within a debugging session of MonoDevelop. Maybe someone that knows more about the internals of MonoDevelop can fix this problem.
>
>
> Greetings,
> Martin
>
>
>
>> To: mono-devel-list at lists.ximian.com
>> From: robertj at gmx.net
>> Date: Wed, 9 Nov 2011 15:17:36 +0100
>> Subject: Re: [Mono-dev] Environment.GetEnvironmentVariable() not working in Linux ASP.NET app
>>
>> On 09.11.2011 13:51, H . wrote:
>>>
>>> Hi Robert,
>>>
>>> I have now debugged the issue using Ubuntu Maverick/ 32 bit. I did the following:
>>>
>>> (1) Configure system proxy settings and reboot machine
>>> (2) In terminal "echo $http_proxy" returns "http://http.proxy:8080/"; "echo $no_proxy" returns "localhost,127.0.0.0/8,*.local"
>>> (3) Created an ASP.NET project in MonoDevelop and entered the following code in Default.aspx.cs
>>>         protected void Page_Load(object Sender, EventArgs e)
>>>         {
>>>                string str1=Environment.GetEnvironmentVariable("http_proxy");
>>>                string str2=Environment.GetEnvironmentVariable("no_proxy");
>>>
>>>                string strBreak="stop";//put breakpoint at this line
>>>         }
>>> (4) After pressing F5, we can see that str1 contains it's expected value while str2 is null
>>
>> One more eventuality: Maybe MonoDevelop is resetting the environment
>> while invoking XSP in debug mode.
>>
>> You can check this by manually invoking XSP from a terminal where you
>> know that this env var is set.
>>
>> Robert
>>
>> _______________________________________________
>> Mono-devel-list mailing list
>> Mono-devel-list at lists.ximian.com
>> http://lists.ximian.com/mailman/listinfo/mono-devel-list
>   		 	   		
>
>
>
> _______________________________________________
> Mono-devel-list mailing list
> Mono-devel-list at lists.ximian.com
> http://lists.ximian.com/mailman/listinfo/mono-devel-list




More information about the Mono-devel-list mailing list