10-29-2012 07:37 AM
I am using ajax with json to call webservice but its working only with localhost url in ripple emulator. if i am using either ip address or external url is not calling the webservice.
I have tried with blackberry device also, webservice is not working.
can any one guide me how to call the webservice?
Thanks
Sundaram
Solved! Go to Solution.
10-29-2012 08:08 AM
Your config.xml needs to have the ip address or url "whitelisted". Use the access tag for that. eg:
<access uri="*" subdomains="true"></access>
The above piece is not secure because it whitelists ALL \ * domains. You can put your url in the uri.
10-29-2012 03:58 PM
If you're writing for BB10 you can't use the * wildcard for ajax/xhr requests anymore. You'd have to do something like this instead:
<access uri="*" subdomains="true" />
<access uri="https://twitter.com" subdomains="true" />
<access uri="http://twitter.com" subdomains="true" />