Welcome!

Welcome to the Official BlackBerry Support Community Forums. This is your resource to discuss support topics with your peers, and learn from each other. New to the forum? Please visit the ‘Getting Started’ link below.
inside custom component

Web and WebWorks Development

Reply
New Developer
sundaram
Posts: 7
Registered: ‎10-29-2012
My Carrier: etisalat
Accepted Solution

Problem with web service calling

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

 

Please use plain text.
Developer
The_Anomaly
Posts: 317
Registered: ‎08-06-2012

Re: Problem with web service calling

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.

If it helped you, click like. :smileyhappy:
Please use plain text.
BlackBerry Development Advisor
chadtatro
Posts: 387
Registered: ‎10-01-2009
My Carrier: Bell

Re: Problem with web service calling

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" />

 

Chad Tetreault | App Development Consultant | BlackBerry Developer Relations | developer.blackberry.com | @chadtatro
Please use plain text.