BlackBerry Cross-Domain Phone Mail Error

When I create my application from the phone screen saver. It works on iPhone, iPad, Android, but does not work on blackberries.

I am calling the cross-domain domain WSDL API.

In blackberry this gives an error

 URL (exmple :- http://google.com)- could not be retrieved because it was not found in config.xml.

 Please verify the <access> elements in the WebWorks config. Contact your service provider if the problem persists.

I need to use in config.xml

<access subdomains="true" uri="*" /> OR <access origin="*" />

?

+3
source share
1 answer

The last time I had this problem, it seems that all URLs should be explicit to BB. If your URL is unknown at runtime (for example, the user entered the URL), the only way around it is

<feature id="blackberry.app" >
    <param name="websecurity" value="disable" />

0
source

All Articles