SUP Hybrid Web container Offline Mode

Hello,
I tried out a workflow example on blackberry simulator(using hybrid web container),but when i am in offline mode,the example doesnot work,so i had a doubt whether hybrid webcontainer supports offline mode,or do we need to do anything in the code,to support this.
regards
kaushik

in the SUP documentation it is mentioned that offline support is provided,refer the link
http://infocenter.sybase.com/help/topic/com.sybase.infocenter.dc01203.0200/doc/html/apr1300926372606.html)

Similar Messages

  • SUP - Hybrid Web Container - Development / Customization on Custom.js file

    Hi experts,
    1. To perform customization on the Hybrid Web Container from SUP 2.1, we usually edit the Custom.js file.
    2. Now in the development tool which is our Sybase Unwired Workspace, it uses Eclipse and that is where we usually edit the Custom.js file.
    3. However, to test out the changes in the file, we have to re-deploy the package to the SUP and then see the difference in the device.
    4. Is there a way to debug the Custom.js file, or to put a breakpoint to track and troubleshoot if there is a bug?
    5. Has anyone done customization and used some tool that can allow developers to debug their changes?
    6. It would be very difficult to fix bugs if there is no way to use breakpoints or debug.
    Please advise.
    Thank you.

    Hi Hari,
    Try checking out [this video from sybase|http://t.co/qTJHzUGI] on how to debug the JS part of the Hybrid web container. Should help you out.
    Cheers,
    Brenton.

  • Hybrid Web Container(sup) example

    Hi,
    can any one explain how to create a SUP Hybrid Web Container Application example..
    Thanks in Advance.....

    Hi Vinaykumar
    Try this link.
    [How to Implement a Simple Application using Sybase Unwired Platform 2.0|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/90b94038-3877-2e10-aa81-e021d6ffd0cc?quicklink=index&overridelayout=true]
    Hope this will help you.
    Thanks and regards,
    Rinzy Deena Mathews

  • Screencasts on SUP 2.0 Mobile Workflows (Hybrid Web Container)

    http://blogs.sybase.com/himagiri/
    I've started posting screencasts for SUP 2.0 focusing on the Mobile Workflow/Hybrid Web Container functionality. Feel free to comment with any other topics you are interested in hearing about.

    Posted a new screencast.
    http://blogs.sybase.com/himagiri/2011/06/screencast-debugging-server-initiated-workflows-on-desktop/

  • Changing the Header in a Hybrid Web Container app on BlackBerry

    Hello Experts!
    I am trying to add a custom header to Hybrid Web Container Apps on SUP 2.0.  It would be nice to add branding or additional text - even the ability to center the text would be nice.  I have tried various jQuery approaches and can see the changes working when I test via Chrome.  However when deploying to my BlackBerry simulator the changes are not reflected.  If I had to guess - it would appear the entire Header area is not modifiable.  To add more context to the problem review the generated code below from workflow_jQueryMobileLookAndFeel.html
    <div data-role="page" data-theme='a' id="ErrorDetailScreenDiv">      
          <div data-role="header" data-position="inline">
           <h1>ErrorDetail</h1>
         </div>
    Recall that each screen is a div with the data-role attribute page; similarly the div with data-role header is the area in question that I am trying to modify.
    Here is the jQuery I am using in the customBeforeWorkflowLoad method in the Custom.js file.
    $('[data-role="header"]').each(function() {
              var dvHeader = $(this);     
              var elem = dvHeader.find('h1');
              var h1Str = elem.text();
              elem.empty();
              dvHeader.remove('h1');
                    //function buildHeader returns html text of a div etc
              var txt = buildHeader(h1Str);
              dvNewHeader = $(txt);
              dvHeader.append(dvNewHeader);     
    Again when testing in chrome the text is removed and the new header is added.
    If I had to guess - I would say the Workflow application which wraps around the Hybrid Web Container App is interfering;  I assume the workflow (native) application reads the h1 tags and the header we see on the device is the workflow app and not the Hybrid Web Container.  My other guess would be the Header area is somehow locked in the BlackBerry scenario.
    Thanks.
    Edited by: JUSTIN MCGREW on Sep 22, 2011 5:18 PM
    Edited by: JUSTIN MCGREW on Sep 22, 2011 5:21 PM
    Edited by: JUSTIN MCGREW on Sep 22, 2011 5:22 PM

    Hello,
    Yes I was aware of the customBeforeShowScreen method of adding a screen header.  I believe in my testing I determined for ListView-based screens and credential screens the dynamic header is not shown and only works on pages with an HTMLView.
    Doesnt it seem a little silly to have two headers?
    Example:
    Login Page
    Logo \ Login Page \ Custom Text
    Screen Body
    I will accept that there is not a method to replace the header at the very top of the screen.
    Thanks for your time and help!
    -Justin

  • Hybrid web container Broswer : hwc.showUrlInBrowser

    Hi Guys
    SMP 2.2
    HWC(2.2.4)
    iOS (os7)
    I am using the above method (hwc.showUrlInBrowser) to display a website inside a hybrid app using Hybrid Web Container.
    It works great for websites that do NOT require basic authentication.
    The issue I am having is that if the website requires basic authentication then the hwc browser hangs on loading.
    Another issue I have is that the browser session does not pick up the authentication for the hybrid web container.
    I am already logged into a back end system using the HWC, but when I access a url in the back end using showUrlInBrowser, authentication fails.
    Any ideas/views greatly appreciated.
    Thanks
    Andrew

    Hi there,
    There is some good documentation from Sybase on how to format a DCN from the SAP side [Here|http://infocenter.sybase.com/help/index.jsp?topic=/com.sybase.infocenter.dc01284.0210/doc/html/title.html]. Its probably easier to follow that documentation and relate it specifically to your requirement than to write out a long example here.
    On the SUP side you will need a rule in your workflow to detect and act on the notification but that is also covered in the documentation above.
    Hope that helps,
    Brenton.

  • Hybrid Web Container: Overriding Generated Files

    Hey Experts.
    I am working with SUP 2.1 Mobile Workflow or Hybrid Web Container applications.  I was curious if anyone out there has been able to modify the template files for when a Mobile Worklfow is generated? 
    Specifically my use case is to display header and footer in Android and Blackberry.  These by default are not shown.  For example in the generated workflow_jQueryMobileLookAndFeel.html file string on line 1821 we have the following JavaScript:
                $('div[data-role="header"]').css('display', 'none');
                $('div[data-role="footer"]').css('display', 'none');
    I of course can undo this in the customBeforeShowScreen method but prefer modifying the template for generation of the html file as it is arguably 'cleaner'.
    There is an instance where an override wont work such as the above example.  I also want to show my headers without the default back button.  In the jquery.mobile-1.0a4.1.js file on line 1607 there is an option that enables the back button by default when there are no other buttons.  Again I want to show the header on the login screen but dont want to show a back button - its not relevant:
    $.widget( "mobile.page", $.mobile.widget, ,
              keepNative: null
    Any ideas?  Thanks.

    There are a few approaches you can take.  When using the designer, you can inject the changes via JavaScript, as you have noted.  You can also include the changes in files jquery.mobile.fix.js or jquery.mobile.fix.css that will get included after the jquery mobile files are included.  You can also include changes in files that don't get overridden like API.js or Utils.js.
    Another approach is to turn the Generate checkbox off.  Doing so will break the lnk between changes made in the designer and the generated code, but it will leave with a nice easy way to continue to repackage and redeploy your changes.
    Finally, you can stop using the designer altogether and manually create the .zip file and its contents.

  • Hybrid Web Container support of HTML5 Drag and Drop

    Good Morning Experts!
    Testing HTML5 drag and drop capabilities on iOS devices and simulators
    it doesnt appear to work. Searching Sybase/SAP documentation and
    unable to find whether Drag and Drop is supported in the Hybrid Web
    Container.
    I did test a jQuery plugin for drag and drop and it tested successfully on a BlackBerry Simulator (but not on iOS):
    http://www.stevefenton.co.uk/Content/Jquery-Mobile-Drag-And-Drop/
    Does the Hybrid Web Container support HTML5 Drag and Drop
    capabilities?
    Is there available documentation on HTML5 support for the Hybrid Web
    Container?
    Thanks!

    Bob do you know which one is the source? The link goes to a whole directory
    http://appliness.com/code/
    Haeme Ulrich
    ulrich-media GmbH <http://www.ulrich-media.ch>
    Unser Wissen, Ihr Können: Schulungen für Publishing.

  • IFrame in Hybrid Web Container / Sybase Unwired Platform

    Hi,
    I'm completely new to this and have a hopefully simple question:
    I'd like to display additional content in an SUP on mobile devices.
    Is it possible to add an iframe and display content from a web server?
    if this is possible can i communicate with this frame using JavaScript?
    regards
      Ralf

    I believe this is possible.  Have you tried it? 
    If not, add an htmlview to your screen, create a key for it and assign it to have a default value such as <iframe src="http://www.sybase.com" style="width:300px;height:400px"></iframe>
    Regards,
    Dan van Leeuwen

  • SMP 2.3.3 Hybrid Web container testing with iOS 8 beta

    Hi Experts,
    Our HWC container version is 2.3.3.6966 and our SMP version is 2.3.3
    Any help will be much appreciated.
    Thanks and Regards,
    Sreeni Jayapal.
    Message was edited by: jitendra kansal

    In SAP support portal, we can only see up to SMP 2.3 SP04PL01, from where we can download this patch?
    Is this patch (SMP 2.3 SP04PL02) solve the HWC application compatibility issue with iOS8?
    Thanks
    Fibeesh

  • Implementing DCN Programming in HWC(Hybrid Web Container) Application.

    Hi,
       Can any one explain how to programme DCN in a HWC application with a good example.
    Thanks And Regards,
             Sudheendra.Kalakeri.

    Hi there,
    There is some good documentation from Sybase on how to format a DCN from the SAP side [Here|http://infocenter.sybase.com/help/index.jsp?topic=/com.sybase.infocenter.dc01284.0210/doc/html/title.html]. Its probably easier to follow that documentation and relate it specifically to your requirement than to write out a long example here.
    On the SUP side you will need a rule in your workflow to detect and act on the notification but that is also covered in the documentation above.
    Hope that helps,
    Brenton.

  • SUP - Hybrid Web Containers - Workflow - White Screen At Start Up

    Hi All,
    I am using the hybrid workflow concept of sybase.
    Now when I open a workflow i first get a white screen for 3/4seconds and then my "app/workflow" loads.
    Does somebody knows how i can add a splash screen instead off the white screen?
    Thanks!

    Hi,
    Yes, We can add splash screen to Workflow application.
    Thanks
    Edited by: tulasidhar on Jan 16, 2012 9:56 AM

  • I just updated to 4.0.1 on my mac and now it says "Firefox is currently in offline mode and can't browse the web". It is not my internet since I am using Safari just fine. Any suggestions? I sure wish I wouldn't have updated!

    I just updated to 4.0.1 on my mac and now it says "Firefox is currently in offline mode and can't browse the web". It is not my internet since I am using Safari just fine. Any suggestions? I sure wish I wouldn't have updated!

    Make sure that Work Offline is unchecked: File > [] Work Offline

  • Java Web Start(the program itself) doesn't start in offline mode

    Hi,
    My Java Web Start doesn't start when my internet connection is not on??? I have a program that needs also offline access so it's crucial to get JWS work without internet connection as well.
    The problem might be in those sun's example programs you can't remove? Maybe the program crashes when trying to get some information for those programs?
    (please read the question well. My problem IS NOT in the .jnlp-files <offline-allowed/>)
    And by the way those sun's demo programs that are supposed to start in offline mode(Internet connection not required) don't start even if you have started them once with the connection on.....
    -orainio

    I have the SAME problem -
    BUT....
    it NEVER works for me (online & offline)
    this stupid logon pops up and after a while disappears and nothing happens!
    got no fire wall, proxy etc...
    (win XP)
    plz helppppppppp

  • Trying to log into firefox but keep getting firefox is in offline mode and can't browse the web, I've unchecked the work offline in the file menu but still get error message...

    trying to log into firefox but keep getting firefox is in offline mode and can't browse the web, I've unchecked the work offline in the file menu but still get error message...

    The work offline option can be found from Firefox button -> Web developer or from the menubar toolbar -> Work offline (Or at least thats what happens in Windows).
    Have you any other reason for being offline; router off, firefox not dialing up or whatever. Or is security software or a firewall blocking firefox, or a network connection, or firefox setting etc set wrongly.
    See also
    *[[cannot connect after upgrading firefox]]
    *[[options window - advanced panel]]
    * [[error loading web sites]]

Maybe you are looking for

  • PO Creation - Queries

    Hi , I m using BAPI_PO_CREATE1  for standard PO creation in UI /Module Pool programming., wherein I fill in all details aliongwith item details except for PO Number and try to save it. But on debugging the part after saving it ,following errors are o

  • Creating dynamic text in the picture

    I created a picture where the background has a gradient color and i putting some data base information in between the picture? i try using firework to slice out as a HTML so in order for me to put the text but i will not have the background color.. c

  • IPad AV adapter to 47' Vizio TV resolution ?

    From my iPad I'm getting a 1080p signal but no matter how I adjust screen size it's still only using middle of my screen. Can the iPad only run at 720p therefore I'm unable to have a full screen?

  • Some more points on sql developer

    Starting to use sql developer more and more now. There are a few reasons why I end up back on sqlplus etc. 1) If you run a sql query in sqlplus and there is an error it tells you the line number. In sql developer you just get a pop up error message w

  • PVC2300 - Video Monitoring System (3 urgent questions)

    Hi there, I'm pretty sure these questions have been asked before - but could not find answers to these. Setup: When running a Video Surveillance setup, with up to 16, PVC2300 cameras connected to the Video Monitoring System (LBAVMS16): 1. Does the PC