Hi @Ahmed Alsofi ,
You can try these methods:
1.Check if it is a firewall issue. Create inbound and outbound rules in the firewall settings to open ports.
2.Try to use the local IP of the server hosting the website.
3. Try to configure proxy settings in the Web.config file.
<system.net>
<defaultProxy>
<proxy usesystemdefault = "false" proxyaddress="http://address:port" bypassonlocal="false"/>
</defaultProxy>
</system.net>
https://learn.microsoft.com/en-us/dotnet/framework/configure-apps/file-schema/network/defaultproxy-element-network-settings
Best regards,
Lan Huang
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.