Hi there!
Here's my situation:
Our extranet and intranet servers are separated by a firewall. We do not allow traffic from the internet to hit intranet servers. For applications that need it, we allow traffic between an extranet server and an intranet server over a configured port.
Example:
We have an extranet application called "MyWork" that can be accessed from the internet. When a user uses it, it retrieves data from a service that lives on an intranet server.
The Problem:
We are deploying a mobile version of the application. The application needs to talk to that service on the intranet to get the data it needs, but that violates our policies. Therefore, I need to create an extranet service that the mobile app can use to get the data it needs. That extranet service needs to talk to the intranet service. So basically it's a proxy service.
What I'm looking for is a quick and simple way to "duplicate" a web service. Ideally I could point a tool of some sort to my existing web service, and it would create a duplicate web service that I can put on my extranet server. Then, I could point my mobile app to the extranet service, which would just pass the request to the intranet service, and in turn return the intranet service response back to the mobile client.
Thoughts?
Thanks in advance!