I'm relatively new to Azure websites...
Have made a website that uses a proxy web service to retrieve data from another web service. When I publish the website to my Azure website I get the following error:
An attempt was made to access a socket in a way forbidden by its access permissions 127.0.0.1:53775
public string Result {
Line 250: get {
Line 251: this.RaiseExceptionIfNecessary();
Line 252: return ((string)(this.results[0]));
Line 253: }
Probably a configuration issue, but I do not know what is missing. Have seen similar during my research for this but the issues have been more related to databases.
Can anyone help me here?