Cannot connect to App Store

1
When I try to connect to App Store it fails. When I try logging in via he modeller I get the this error: There was no endpoint listening at https://mxid.mendix.com/ws/ModelerService/ that could accept the message Is there something I am missing? Do I need a new version of the modeller or something? Thanks Faizel
asked
2 answers
2

see this or this for more info on how to use the appstore from behind a proxy.

answered
2

Thank you for your assistance. I implemented this

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

as per Frank Nieuwhuis post and it worked.

answered