copenndthagen
copenndthagen

Reputation: 50722

Access localhost on iPad

I want to access my web application on iPad for local testing (http://myMachine_Name). But here is the problem;

  1. I am having a local copy on my Windows machine with a Weblogic server running and the app server requires a VPN connection
  2. Is there any way by which I can access http://myMachine_Name on the iPad , and given that my local machine would be connected to VPN.
  3. Is there any iPad app which can help in testing..My main purpose is to have the fastest way to test any changes I make on the iPad and that I think would be to directly access http://myMachine_Name on the iPad Safari. But I do not know how.

Note: By VPN, I mean it is connected to another network at a remote location. Also the iPad is connected to the internet via a Wifi connection on MAC which is on the same local network as my Windows machine..

I think having VPN connectivity on the iPad might be an option, but I'll want to avoid that as that would require paying huge licensing fee.

Please let me know if I need to provide any other clarifications..

Thank you.

Upvotes: 2

Views: 5405

Answers (2)

Chris22
Chris22

Reputation: 2033

Check the link below for iPhone and iPad configuration using Fiddler (windows). It is a possible solution listed here on StackOverflow. Solution here

Upvotes: 0

Scott Stevens
Scott Stevens

Reputation: 2651

To access the file via the iPad, your Windows computer must be running a web server, Apache or similar.

Once it is up and running, you have two options:

  1. Configure your iPad to use VPN and connect to the remote network. From there, enter the Windows Computer's local network IP address into the iPad, and you should be able to view the pages if everything is correctly configured.

  2. Portforward port 80 from the router to your Windows computer. This is most likely done through the router settings (the router that the Windows machine connects through). Then enter the public IP address of the Windows Computer's network into your iPad, and again, assuming correct configurations, you will be able to view the webpage.

Upvotes: 2

Related Questions