Hi, users of stackoverflow.
My server setup is as follows: Web server with access to http / 80, running on www.domain.com Application server with access to the internal network (db, etc.) Using webservice
I have this simple problem with server setup.
Now I want to call my web service from ajax script from a website on my web server. But since my application server does not have access to the Internet, this will (in my opinion) be impossible, since javascript (works in the end-user browser) has access to this web service.
I came up with a solution by inventing a web service on a web server that calls a web service on my application server, but this is a weird solution. Do any of you have an idea how to solve this?
source share