I have two Azure webApps and want to Courier from one to the other. They are in different tenancies, so, what port and protocol do I need to open in the firewall of the target site?
The apps can communicate with each other using webservices. The simple configuration consist of:
Url
User Id
Password
No need to open a port or a protocol. If your app has ip restrictions then you need to add outbound ip addresses to the list of ip addresses you allow.
Courier & Azure
Hi,
I have two Azure webApps and want to Courier from one to the other. They are in different tenancies, so, what port and protocol do I need to open in the firewall of the target site?
Thanks,
Will
The apps can communicate with each other using webservices. The simple configuration consist of:
No need to open a port or a protocol. If your app has ip restrictions then you need to add outbound ip addresses to the list of ip addresses you allow.
I hope it helps !
Giuliano
Hi Giuliano
I'm on the same situation, but on both azure web app i've no ip restriction configured.
From my borwser i'm able to access to curier web server, but on umbraco backeend courier cannot connect to the destination asmx web service.
In my opition it's seems that the web app can't resolve the host name...
Maybe with configuration on Azure can resolve this issue, do you have any idea?
Thnaks in advance
It's possible that this is a TLS/SSL issue, and one at the .NET framework level.
If you've configured your Azure sites to use a minimum TLS Version of 1.1 or higher, you'll need to tell .NET about that.
In your
OnApplicationStarting
method, you'll need to add the following line:This will force the .NET framework for your application to use TLS 1.2 for all secure connections.
For more details see the Remarks section of the SecurityProtocol docs.
is working on a reply...