Hi Mike,
Following on from your comments about partial trust...
I have managed to find a document written by Shaun Walker on the subject of "DotNetNuke Code Access Security"
http://www.dotnetnuke.com/LinkClick.aspx?fileticket=ko3NOxfqlno%3D&tabid=478&mid=857
In it he talks about making changes to the web.config file to allow access to a different URL - i quote:
"In Medium trust, web service permissions are limited. By default only calls to the current site are supported. See the next section for details on options for supporting additional site(s)."
Enabling non-local Web service access
Adding a single additional domain
It’s possible to add a single domain in your web.config file by utilising the originUrl=
attribute (note: this supports wildcards so you can use url’s such as
"http://feeds.moreover.com/*" to access multiple feeds).
<trust level=" " originUrl="http://feeds.moreover.com/*"/>
So, i started jumping up and down with excitement. I really thought this could be the answer to my problems.
So, I added the following to my web.config
<trust level="High" originUrl="http://staging.mappoint.net/*"/>
But, nothing changed, still the same error.
If Shaun's document is correct, the above setting should have opened up access to the MS MapPoint WebService. So, again, I ask myself, "Is this problem to do with something else and not the trust"?
Any thoughts anyone please?
Thanks
Trev