WebWorks app and E - SSO

Hello, hoping someone can help me solve this little problem.  I have an app webworks running in the scope of work that makes a call to a webserver using Jquery ajax, the Web server expects the user to be authenticated, from what I've read about the Enterprise SSO, this should be available out of the box, but I do not get the login prompt?

E - SSO is configured on the BES/device and I tested it.  If I navigate to the same URL on the browser to work, I can authenticate and retrieve the data (JSON), the credentials are then cached and used on future attempts.

E - SSO is supported with Jquery? I need to enable/check all services within the Webworks app?

Thank you

Hello

Yes, it's a bug of the platform.  Thanks for bringing it to our attention.  I do not have exact time lines, but 10.3.2 will be out soon.

Thank you

Naveen M

Tags: BlackBerry Developers

Similar Questions

  • [Deployment Webworks App device]

    Hi friends,

    I have developed webworks app and create a plugin private by QNX Momentics IDE.

    I could config to run application on Dev Alpha Simulator BB10_1_X.

    But when I deploy to device Z10 and executed, an error has occurred:

    Need of that error cannot find usr/lib/webplatform/plugins/jnext/lib*Jnext.so.

     

    Please help me. If you need more information, please comment here.

    Thank you very much.

    Dennis.

    Dear friends,

    Thanks for your help. I thank all. Through your help, I found a solution for this problem.

    The problem is related to ' dependency or link"*.so (shared objects) or the excutable in UNIX-Like file.» I think BB10 filesystem is SYSTEM-V, a type of UNIX systemfile.

    With Simulator to create a link to a libbrary EX: libbtapi, I said to "Simulator-Debug". But when I built for the camera, I don't, it's problem. Messade error that gave me BB10, it was bad message. I stated a dependant on "libbtapi" for "release device". Everything was OK.

    By the way.

    Thank you for all.

    Thank you.

    Dennis Ritchie.

  • WebWorks app does not work on the device

    I am currently working on the webworks app and then I compiled the app on Mac environtment. My application get not problem with the compilation of the process, but it does not start on a real device.

    My smart phone BlackBerry say: cannot display the file

    Thanks for the help

    @andriansandi

    Solved now

  • BlackBerry Webworks App does not work on the Simulator after conditioning

    Hi everyone, I ' ve developed a webworks app and everything works fine on the emulator ripple, but when I load it on the Blackberry (9860 and 9930) Simulator... it loads successfully (I can see the icon, etc.), but when I open it, appears only a WHITE SCREEN...!

    I thought it was the Blackberry Simulator, so I changed it (does not work)

    I thought it was my application, so I leave my fair "index.html" with a BLACK background (does not work)

    the Validation of my config.xml file is fine, and I have not any idea on how to solve this problem!

    Help please, thank you

    http://mundourbanohn.com/Simulator1.jpg

    Hello, thanks for people, but I already solved this problem, I had a div with POSITION: FIXED; and apparently WebWorks does not support this CSS property, so I removed it and everything works fine. Thanks in any case. Concerning

  • Super App, link the calendar to my webworks app.

    Hello

    I was wondering if someone can suggest and approach to achieve the following objectives. I am writing a webworks app that will add appointments to the native blackberry calendar. In field notes would be a link that allows you to jump into the webworks app. for example

    http://MyApp.com/showclient/10

    This link should be webworks out of the background applications and bring to the foreground and then show customer number 10 details.

    I started to address this problem by using a httpfilter for the domain "myapp.com.

    HttpFilterRegistry.registerFilter ("myapp.com", "mypackage.filters", true);

    in the Protocol.java method of the file openFilter filter I can see the name of the url (for example the action and the customer number etc.), but where I'm stuck is to identify mechanisms to invoke the JavaScript on my webworks app to bring to the forefront and to charge the customer.

    My current setup is an app of webworks with a native extension that records the httpfilter. At this point, I tried store away a reference to the scripting engine, the reference to javascript to call as a parameter to the method of extension, but when the URL is intercepted and I try to read read the script engine or the javascript reference, they are zero. I suspect that the httpfilter is picked up in a space of different application or something? S

    If someone can tell me how to leave a httpfilter to call my webworks app and give him the necessary information to pass to the right pages.

    Managed to fix this using using the ApplicationManager and post a global event and have a global event listener in my webworks application manage just incase of anyone trying to do something similar

  • Start/Invoking third-party apps from the WebWorks app

    Hi all

    Just a quick question. Is it possible to start/call a third party on a blackberry java application 7 from a WebWorks app?

    I did some research and it seems that it is impossible. I did the opposite and opened a WebWorks app from java application successfully but hope that it is possible.

    Thank you all for your time.

    Rob

    Unfortunately BBOS was not as flexible as BlackBerry 10 invocation framework and what was available on the side of Java is not inherently available in WebWorks.

    You can use the ApplicationManager:
    http://www.BlackBerry.com/developers/docs/7.0.0api/NET/rim/device/API/system/ApplicationManager.html

    Launch an application, if you know the information on the module itself.

    launch
    http://www.BlackBerry.com/developers/docs/7.0.0api/NET/rim/device/API/system/ApplicationManager.html...

    launchApplication
    http://www.BlackBerry.com/developers/docs/7.0.0api/NET/rim/device/API/system/ApplicationManager.html...

    runApplication
    http://www.BlackBerry.com/developers/docs/7.0.0api/NET/rim/device/API/system/ApplicationManager.html...
    http://www.BlackBerry.com/developers/docs/7.0.0api/NET/rim/device/API/system/ApplicationManager.html...

    However, if you want to access these in WebWorks, you create a custom extension to call the native API (Java).
    https://github.com/BlackBerry/WebWorks-community-APIs/tree/master/Smartphone/template

  • How do I send the email from BB10 webworks app

    I want to have a module in my BB10 WebWorks app that will allow users to compose a message by entering the information in a form, which will then be sent by e-mail to an e-mail address.

    I guess this could be done by using the EmailComposerOptions API, but I don't know how to use it.

    Any help will be appreciated.

    Have you looked at the code example in the API document?

    https://developer.BlackBerry.com/HTML5/APIs/BlackBerry.Invoke.card.html#.invokeEmailComposer

    < script="text/javascript">
    //simply invoke email composer, with no options and callbacks
    blackberry.invoke.card.invokeEmailComposer();
    
    //invoke email composer with subject, body, to, cc and attachment options
    blackberry.invoke.card.invokeEmailComposer({
        subject: "Email subject",
        body: "Email body",
        to: ["[email protected]", "[email protected]"],
        cc: ["[email protected], [email protected]"],
        attachment: ["/path/to/an/attachment.txt", "path/to/another/attachment.txt"]
    }, function (done) {
        console.log(done);
    }, function (cancel) {
        console.log(cancel)
    }, function (invokeError) {
        console.log(invokeError);
    });
    
    

    Once the function is called, map of composer email will slip into the view with all pre-filled fields and the user can then click on send.

  • BlackBerry WebWorks app via a URL with the parameters of launch?

    I have an application of WebWorks I want to start with a URL to the browser and pass parameters to query URL to the application in this way. Is this possible? How? I would be happy to use HttpFilterRegistry or API call, but I don't see how to use these approaches to get my WebWorks App settings, even if I write a custom extension. Example of code would be very useful, especially to consume the parameters. Or at least an indication of which API (s) for this.

    This should be supported by the framework. What I would like to recoemmend is simply invoke the application according to the normal and placing the parameters in the URL to the standard '&' "?" rating.

    Then take advantage of the class UTIL. JS out of the parameters passed required...

    https://bdsc.webapps.BlackBerry.com/HTML5/APIs/BlackBerry.utils.URL.html

    (If you need help, citing the app, it is done as invoke any other java application on the device)

    R

  • can I submit a webworks App (blackberry 10) for approval, but only tested in the emulator in the vm player?

    can I submit a webworks App (blackberry 10) for approval, but only tested in emulator in the drive of the VM, since I don't have any blackberry Device?

    where to find the differences between the web of BB and phonegap works,... preparation & submission?

    Or otherwise if I have a html5/css3/js/jQmobile approx... How loan submit? Android App Phonegap already submitted in the game of Google... but as I see there are differences between the BB web works and phonegap.

    We understand that not all developers have access to a physical device, which is the Simulator comes in. The Simulator you usually gives a good idea of how your application will run on a physical device, and you can absolutely submit this application for review of the BlackBerry World. If problems arise, the BlackBerry World team will let you know of those that need to be corrected before the application can be approved for sale.

    This is true for WebWorks, Android, etc. The BlackBerry World team reviews your application and provide feedback if there are all the important issues which seem to be broken. If you have tested the application elsewhere however, generally you should not be from.

  • Using JSR 172 stubs in WebWorks app

    Hello
    I'm new to webworks. I need to know how to access the webworks app webservices. I have a .net Server, and I created the stubs using JSR172. Now, I need to know how to use those heels in Webworks BB applications. Extension of JavaScript is a solution? If so, how to convert my heels as Extension of Javascript?

    Thanks in advance...

    Creating a script JavaScript extension for stubs will be complicated and is not portable to other platforms or the PlayBook.

    There are some examples out there how to call a web service SOAP directly via JavaScript and AJAX.  Here are just a few examples

    http://www.TechRepublic.com/article/easily-consume-SOAP-Web-services-with-JavaScript/5887775

    http://javascriptsoapclient.codeplex.com/

  • BB10 webworks app broken after update OS

    My 10 Blackberry webworks app no longer works after the OS upgrade to the Version of the OS 10.1.0.4633 (4181 software version). I use BBUI. JS/CSS with my request.

    However, it still works in the Simulator with build 10.1.0.1483. At the opening of the application on the device it is just white. Nothing happens.

    Anyone, any idea what could be wrong?

    In the web Inspector, it seems that the bb.push does not work as there is no body.

    There may be some differences in timing between the two in terms of upload script.

    A recommendation is to build a debug version of the application and connect Web Inspector. Leave the application load and then in Inspector Web press CTRL + r to trigger a refresh and reload the application from the beginning. This ensures that you get the complete Console logs and it can check for errors.

    Some developers try to define document.addEventListener ('webworksready',...) before the load event triggered (i.e. just directly in a

  • Make the text selectable in WebWorks App

    I created a PlayBook application using WebWorks, HTML and CSS and the app offers a great HTML textarea. For some reason, the user cannot select text to copy or paste text in.

    Is there something special that needs to be done to enable text selection? I checked my code and see nothing that prohibits text selection.

    Thanks for any advice.

    I tracked the solution (thanks to geniuses behind the app preview PlayBook). Check it out here: http://www.willw.net/enabling-copy-and-paste-in-a-webworks-app-for-the-blackberry-playbook/

    This simple solution that I was kicking myself for not understanding earlier!

  • Application of the WebWorks App launch

    Hi all

    I'm still new to the development of BlackBerry, but I'll try to find a way that if I have a WebWorks app (application) and a native app B, I would like to launch Application B with data of Application. Once the Application B is done, it must then be able to transmit some data more back to Application A.

    I started to look around and read through the api blackberry.launch

    https://origin-bdsc.webapps.BlackBerry.com/HTML5/documentation/ww_webrefs/blackberry_launch_971534_1...

    but from there I see that you are able to launch specific applications.

    All advice is appreciated.

    Kind regards

    Michael

    Hi Michael,

    You can do this today on BlackBerry OS 5.0 - BlackBerry 7 (J2ME platform) using the blackberry.invoke.JavaArguments API:

    https://bdsc.webapps.BlackBerry.com/HTML5/APIs/BlackBerry.Invoke.JavaArguments.html

    You can also leverage plans.  In the J2ME platform, you can create a hyperlink with this beginning: or email: or by sms: to invoke the corresponding application when clicked.  Here's an example page:

    http://BlackBerry.github.com/WebWorks-samples/kitchenSink/HTML/browser/schemes.html

    Thus, some MIME types are supported.  For example, if you had a link to a file external doc of your WebWorks App (for Tablet OS), so your users have to click on it then it would launch the corresponding application (DocsToGo).

    See you soon,.

  • Customer open AppWorld of WebWorks apps?

    Hello

    To open the customer WebWorks apps AppWorld, currently I use cite web browser to open the URL of the Web AppWorld store and browser will then be automatic opening customer AppWorld for you.

    Is there a way to open the customer to AppWorld directly?

    Here's the code, I think it is possible by changing the target id, what is id target AppWorld customer?

    function goAppWorld () {}
    try {}
    () BlackBerry.Invoke.Invoke
    {target: 'sys.browser', uri: "http://appworld.blackberry.com/webstore/content/xxxxxxx/" ""},
    function (successEvt) {},
    {function (errorEvt)}
    );
    }
    {} catch (e)
    }
    }

    See the documentation of applications invoking core:

    https://developer.BlackBerry.com/HTML5/documentation/blackberry_world.html

    Your target is "sys.appworld" uri should be "appworld://XXXXX".

  • PlayBook webworks app, image link border

    I create a game in webworks.

    I use for my links, images. I set border = "0" to just about everything.

    For my images:

            
                
            
    

    and in my CSS:

    img a{ border:0px;}
    img a:hover{border:0px;}
    img a:link{ border:0px;}
    img a:active{border:0px;}
    img a:visited{border:0px;}
    

    However, when I press the link (image) in my webworks app, I always seem to get the standard blue border around the image, I'm pressing.

    How should I do to fix this?

    Thank you!!

    a{ border:none; outline:none;-moz-outline-style:none;}
    a:active{ border:none; outline:none;-moz-outline-style:none;}
    a:focus{ border:none; outline:none;-moz-outline-style:none;}
    
    img a{ border:none; outline:none;-moz-outline-style:none;}
    img a:active{border:none; outline:none;-moz-outline-style:none;}
    img a:focus{border:none; outline:none;-moz-outline-style:none;}
    

    This fixed the problem. Thanks for coming back

Maybe you are looking for

  • No information on my new Toshiba TV programm

    HelloJust bought a new Toshiba TV to connect to a portable ariel that works well, but I don't have information on what I'm watching now and whats Next. Used the same previous TV way and got the info. Space so that it is i.e. two boxes but they are em

  • Satellite A11-998: fatal error Power Saver - code: 0x7e

    I recently bought a Toshiba Satellite A11-998. I upgraded the operating system of Windows XP MCE to Windows XP Professional. As some of the drivers were not picked up, I was download the latest drivers from the Toshiba site, but when I install the To

  • Serial number fainted faded from years of use

    I have a Canon EOS 60 d camera and I want to have Cannon to perform maintenance on it. To do this, I need to enter my serial number, which for the most part disappeared. Is there another way for me to get this information or to circumvent this requir

  • I can't uninstall or reinstall itunes

    When I try to open itunes, my dell says that I:\Program Files\iTunes\iTunes.exe is not a Win32 application invalid. I tried to uninstall it or reinstall by going to control panel and then click on uninstall a program. Everything was fine until the su

  • TrojanDownloader / OpenConnection.OU, how to remove

    I tried several times to remove - TrojanDownloader / OpenConnectionOU. I tried MSE, only partially removed. Analysis of security etc. I'm not a computer expert, but I like to try to understand things. I have Vista Home premium. 64. Withdrawal has bee