Reputation: 13585
How can I connect to my locally hosted restful service from my iPhone/Blackberry?
Upvotes: 0
Views: 123
Reputation:
It is possible to install BlackBerry simulator (with MDS simulator) and XAMPP (or Tomcat/JBOSS whatever, depending on your webservice implementation).
Modify hosts (on Windows computer) like that:
127.0.0.1 www.mycustomwebservice.com
Than launch your webservice implementation server, launch MDS simulator that comes with BlackBerry simulator and launch BlackBerry simulator with your application.
Your webservice will be availabe for your application running on simulator by this address: www.mycustomwebservice.com
Upvotes: 1