Mendix modeler behind proxy not working

1
Hi, I'm trying to get mendix modeler running behind a isa proxy. this is not working. In IE8 internetsettings I insert our isa proxy. -On isa with only windows-domain authentication enabled. I can see that the mendix modeler is trying to connect with an anonymous useraccount. which should be the current logged-on user. so this is not working. -On isa with anonymous authentication enabled. I can see, that the software is connecting to the isa server. but mendix modeler is not trying to open any mendix website. How to get mendix modeler running with a proxy server? Should something be changed in the "Modeler.exe.config". In "Modeler.exe.config" the authentication/credential type is "None". The issue seems like http://support.microsoft.com/kb/330221 (option 4) Tried version 2.5.2.1 an 2.5.1.1 Thanx for any reply's in this issue. D.
asked
2 answers
4

Found it. It is indeed a code error. workaround is as followed.

In the "Modeler.exe.config" add the following:

<system.net> <defaultproxy enabled="true" usedefaultcredentials="true"> <bypasslist> <add address="localhost"/> </bypasslist> <proxy usesystemdefault="True" proxyaddress="http://1.1.1.1:8080/" bypassonlocal="True"/> </defaultproxy> </system.net>

answered
3

We had similar issues with this. Now we are using Apache which is working perfect.

answered