How to deploy WCF service on AWS - wcf

I have my WCF service on IIS which connects ios and android app. Now I want to deploy this service on AWS how to do it?

Related

Cannot reach service fabric service

I create a service fabric application on my local development machine with 3 statless services, one of the service (Service1) has an endpoint with a static port assigned , Service is a .net core web api hosted using kestrel
After deploying the application to my local cluster , I am not able to acess this service using the following URL
http://localhost:8641/api/values
but I can access it using the reverse proxy url
http://localhost:19081/ServiceFabricApplicationName/Service1/api/values
Any ides why I cannot reach the service with first url ?

Azure API App service hosting wcf service

I have created a wcf service and self hosted it. I want to push it over the azure cloud as API APP service and not a cloud service? Please guide.
I actually something similar: hosting REST endpoints and a WCF endpoint in an Azure deployed API App
There was nothing special to consider. Just created the WCF within my solution, configured basicHttpBinding correctly to work with https.
Let me know where exactly you're struggling.

WCF Services hosted in IIS is not accessing using mobile network?

WCF Services hosted in IIS is not accessing using mobile network???
I have WCF services hosted in IIS server and i have a windows 8 App as client for consuming the WCF service. when my laptop and mobile is Connected with Wifi. My Mobile app getting the data from Service but when i turned off the wifi for mobile only and trying to access the wcf service from mobile internet then i am not able to get the data.
Can anyone know how to expose the WCF service for any kind of network??

WCF on cloud is not working

I just created a WCF service and deployed in one of the machine's IIS and checked it works fine.
When I deploy the same service on Cloud VM's IIS I am not able to consume that service.
I am getting the error saying that "There is no listener with the endpoint".
Can i deploy normal WCF on cloud or do i need to create WCF cloud service?
Environment(IIS 8.5)
It could be several Things, most probably:
ASP.net not activated on IIS
Also check:
The url you are using
firewall problems
site not started

WCF service secure so that only my METRO APP Client can call it

I have a WCF service hosted on AZURE. Also I have a metro app client that consumes that WCF service.
I want to make my WCF service secure so that only my METRO APP Client can consume that WCF service i.e. NO other Metro app or any application except my ABC (metro app name) METRO APP be able to consume the WCF service. I am a newbie to Metro app and WCF. It would be grateful if any one could share some help.