If you have questions about using mojoPortal, you can post them here.
You may want to first review our site administration documentation to see if your question is answered there.
Joe, After a lot of arguing with the supposed "technical" support for my web hosting, they finally provided a solution. I am sharing here just in case anyone else experiences the same issue. Use the following in web.config to establish a connection to the proxy server: <system.net>
<defaultProxy>
<proxy usesystemdefault = "False" bypassonlocal="False" proxyaddress="http://myproxyaddress:port" />
</defaultProxy>
</system.net>
The bold, italic proxy address needs to be set to the appropriate proxy server address for your hosting company. Also, Visual Studio (2010 is the version I am using) complains if the False boolean starts with a lower case letter.
Thanks for that update! I've added some notes about that to the PayPal documentation to make it easier to find if someone else encounters similar issues with their host.
Best,
Joe
Thanks, Joe!