Embedded Browser in 13.0.1 or 13.1

Does anyone know how to make the Embedded Browswer into ORPOS 13.0.1 or 13.1 ?
Also, what browser works best with ORPOS POS application besides ICE Browser?

Never mind, I found it in Metalink site....there is a PDF which shows you how to do it with IE 6 and Firefox 2.0X.
Here's the link.
https://metalink.oracle.com/CSP/ui/flash.html#tab=KBHome(page=KBHome&id=()),(page=KBNavigator&id=(bmDocTitle=Configuring%20the%20%3Cb%3EBrowser%3C/b%3E%20Foundation%20on%20the%20Oracle%20Stack%20and%20IBM%20Stack&viewingMode=1143&bmDocID=879313.1&from=BOOKMARK&bmDocType=WHITE%20PAPER&bmDocDsrc=KB))

Similar Messages

  • How to use Embedded browser in Java using Linux Platform?(Very urgent.....)

    Hi,
    I'm trying to use the embedded browser in Linux, but it fails with the following error:
    Can't execute the native embedded browser. Error message:
    when I use it on a Windows machine, it works fine.
    i get this
    org.jdesktop.jdic.init.JdicInitException: java.lang.UnsatisfiedLinkError: no jdic in java.library.path
    at org.jdesktop.jdic.init.JdicManager.initBrowserNative(Unknown Source)
    at org.jdesktop.jdic.browser.WebBrowser.<clinit>(Unknown Source)
    at netsim.NetSimBasics.<init>(NetSimBasics.java:40)
    at netsim.NetSimBasics.main(NetSimBasics.java:64)
    Caused by: java.lang.UnsatisfiedLinkError: no jdic in java.library.path
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1682)
    at java.lang.Runtime.loadLibrary0(Runtime.java:823)
    at java.lang.System.loadLibrary(System.java:1030)
    at org.jdesktop.jdic.init.InitUtility.<clinit>(Unknown Source)
    ... 4 more
    Exception in thread "main" java.lang.UnsatisfiedLinkError: no jdic in java.library.path
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1682)
    at java.lang.Runtime.loadLibrary0(Runtime.java:823)
    at java.lang.System.loadLibrary(System.java:1030)
    at org.jdesktop.jdic.browser.internal.WebBrowserUtil.<clinit>(Unknown Source)
    at org.jdesktop.jdic.browser.MsgClient.<init>(Unknown Source)
    at org.jdesktop.jdic.browser.NativeEventThread.<init>(Unknown Source)
    at org.jdesktop.jdic.browser.WebBrowser.<clinit>(Unknown Source)
    at netsim.NetSimBasics.<init>(NetSimBasics.java:40)
    at netsim.NetSimBasics.main(NetSimBasics.java:64)

    use JComboBox
    JComboBox liste = new JComboBox(new Object[]{"azerty","qwerty});the api documentation :
    http://java.sun.com/j2se/1.4.2/docs/api/javax/swing/JComboBox.html
    the turotial on combobox :
    http://java.sun.com/docs/books/tutorial/uiswing/components/combobox.html

  • Can I execute a program (like embedding browser) in J2ME program?

    Excuse me~
    can I use any function to execute embedding browser on the cell phone in a midlet?
    thanks for reply.

    Hi,
    No you can't. The basic CLDC / MIDP specification does not specify anything about instantiating and executing other (native or Java) applications.
    Cheers,
    Jasper

  • Problem in display file in java applet embeded browser

    hi, i am facing problem to display the file from local drive in java applet embeded browser. here is the error message i get:
    Exception loading file from path:java.security.AccessControlException: access denied (java.util.PropertyPermission user.dir read)
    i think it should be the java security problem and i have try to get the solution from internet. i try to solve by using the fllowing method:
    keytool -genkey -keyalg rsa -alias yourkey
    keytool -export -alias yourkey -file yourcert.crt
    javac yourapplet.java
    jar cvf yourapplet.jar yourapplet.class
    jarsigner yourapplet.jar yourkey
    but the command prompt ask me to enter the keystore password. i try to enter any password. but i show me the error:
    keytool error: java.io.IOException: Keystore was tampered with, or password was incorrect.
    So may i know what is the problem actually?Thanks a lot.

    Hi,
    here is the sample coding :
    import java.applet.Applet;
    import java.awt.*;
    import java.awt.event.*;
    import com.sun.j3d.utils.geometry.ColorCube;
    import com.sun.j3d.utils.applet.MainFrame;
    import com.sun.j3d.utils.universe.*;
    import com.sun.j3d.utils.behaviors.mouse.MouseRotate;
    import com.sun.j3d.utils.behaviors.mouse.MouseZoom;
    import com.sun.j3d.utils.behaviors.mouse.MouseTranslate;
    import javax.media.j3d.*;
    import javax.vecmath.*;
    import java.net.URL;
    import java.net.MalformedURLException;
    import org.web3d.j3d.loaders.VRML97Loader;
    import com.sun.j3d.loaders.Scene;
    public class SimpleVrml extends Applet implements ActionListener {
    String           location;
    String           initLocation;
    Canvas3D     canvas;
    SimpleUniverse     universe;
    TransformGroup     vpTransGroup;
    VRML97Loader     loader;
    View          view;
    Panel          panel;
    Label          label;
    BranchGroup     sceneRoot;
    TransformGroup     examineGroup;
    BranchGroup     sceneGroup;
    BoundingSphere     sceneBounds;
    DirectionalLight     headLight;
    AmbientLight     ambLight;
    TextField      textField;
    Cursor          waitCursor;
    Cursor          handCursor;
    public SimpleVrml() {
    initLocation="cylinder.wrl";     
         setLayout(new BorderLayout());
         GraphicsConfiguration config =SimpleUniverse.getPreferredConfiguration();     
         setLayout(new BorderLayout());
         canvas = new Canvas3D(config);
         add("Center",canvas);
         panel = new Panel();
         panel.setLayout(new FlowLayout(FlowLayout.LEFT));
         textField = new TextField(initLocation,60);     
         textField.addActionListener(this);
         label = new Label("Location:");
         panel.add(label);
         panel.add(textField);
         add("North",panel);
         waitCursor = new Cursor(Cursor.WAIT_CURSOR);
         handCursor = new Cursor(Cursor.HAND_CURSOR);
         universe = new SimpleUniverse(canvas);
         ViewingPlatform viewingPlatform = universe.getViewingPlatform();
         vpTransGroup = viewingPlatform.getViewPlatformTransform();
         Viewer viewer = universe.getViewer();
         view = viewer.getView();
         setupBehavior();
         loader = new VRML97Loader();
         gotoLocation(initLocation);
    public void actionPerformed(ActionEvent ae) {
         gotoLocation(textField.getText());
    void gotoLocation(String location) {
         canvas.setCursor(waitCursor);
         if (sceneGroup != null) {
         sceneGroup.detach();
         Scene scene = null;
         try {
         URL loadUrl = new URL(location);
         try {
              // load the scene
              scene = loader.load(new URL(location));
         } catch (Exception e) {
              System.out.println("Exception loading URL:" + e);
         } catch (MalformedURLException badUrl) {
         // location may be a path name     
         try {
              // load the scene
              scene = loader.load(location);
         } catch (Exception e) {
              System.out.println("Exception loading file from path:" + e);
         if (scene != null) {
         // get the scene group
         sceneGroup = scene.getSceneGroup();
         sceneGroup.setCapability(BranchGroup.ALLOW_DETACH);
         sceneGroup.setCapability(BranchGroup.ALLOW_BOUNDS_READ);
         // add the scene group to the scene
         examineGroup.addChild(sceneGroup);
         // now that the scene group is "live" we can inquire the bounds
         sceneBounds = (BoundingSphere)sceneGroup.getBounds();
         // set up a viewpoint to include the bounds
         setViewpoint();
         canvas.setCursor(handCursor);
    void setViewpoint() {
         Transform3D viewTrans = new Transform3D();
         Transform3D eyeTrans = new Transform3D();
         // point the view at the center of the object
         Point3d center = new Point3d();
         sceneBounds.getCenter(center);
         double radius = sceneBounds.getRadius();
         Vector3d temp = new Vector3d(center);
         viewTrans.set(temp);
         // pull the eye back far enough to see the whole object
         double eyeDist = 1.4*radius / Math.tan(view.getFieldOfView() / 2.0);
         temp.x = 0.0;
         temp.y = 0.0;
         temp.z = eyeDist;
         eyeTrans.set(temp);
         viewTrans.mul(eyeTrans);
         // set the view transform
         vpTransGroup.setTransform(viewTrans);
    private void setupBehavior() {
         sceneRoot = new BranchGroup();
         examineGroup = new TransformGroup();
         examineGroup.setCapability(TransformGroup.ALLOW_CHILDREN_EXTEND);
         examineGroup.setCapability(TransformGroup.ALLOW_CHILDREN_READ);
         examineGroup.setCapability(TransformGroup.ALLOW_CHILDREN_WRITE);
         examineGroup.setCapability(TransformGroup.ALLOW_TRANSFORM_READ);
         examineGroup.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
         sceneRoot.addChild(examineGroup);
         BoundingSphere behaviorBounds = new BoundingSphere(new Point3d(),
              Double.MAX_VALUE);
         MouseRotate mr = new MouseRotate();
         mr.setTransformGroup(examineGroup);
         mr.setSchedulingBounds(behaviorBounds);
         sceneRoot.addChild(mr);
         MouseTranslate mt = new MouseTranslate();
         mt.setTransformGroup(examineGroup);
         mt.setSchedulingBounds(behaviorBounds);
         sceneRoot.addChild(mt);
         MouseZoom mz = new MouseZoom();
         mz.setTransformGroup(examineGroup);
         mz.setSchedulingBounds(behaviorBounds);
         sceneRoot.addChild(mz);
         BoundingSphere lightBounds =
         new BoundingSphere(new Point3d(), Double.MAX_VALUE);
    ambLight = new AmbientLight(true, new Color3f(1.0f, 1.0f, 1.0f));
    ambLight.setInfluencingBounds(lightBounds);
    ambLight.setCapability(Light.ALLOW_STATE_WRITE);
    sceneRoot.addChild(ambLight);
    headLight = new DirectionalLight();
    headLight.setCapability(Light.ALLOW_STATE_WRITE);
    headLight.setInfluencingBounds(lightBounds);
    sceneRoot.addChild(headLight);
         universe.addBranchGraph(sceneRoot);
    public static void main(String[] args) {
    new MainFrame(new SimpleVrml(), 780, 780);
    cylinder.wrl :
    #VRML V2.0 utf8
    # A cylinder
    Shape {
    appearance Appearance {
    material Material { }
    geometry Cylinder {
    height 2.0
    radius 1.5
    view.html:
    <html>
    <applet code="SimpleVrml.class" width=600 height=600>
    </applet>
    </html>
    error msg that i get :
    Exception loading file from path:java.security.AccessControlException: access denied (java.util.PropertyPermission user.dir read)
    i can display the wrl file in applet itself but i can't display in the browser.is it any problem with my code?Urgent, please help me. Thanks.

  • FlashPlayer loading failed in third_party IE embedding browser(maxthon2, theworld2 etc)

    Dear FlashPlayer team..
    Hello there!
    In recently I have a some problem in flash loading at customized IE embedding web-browser( include VistualStudio internal browser, MSDN browser, default MFC program(using CHtmlView), maxthon, and so on). If your team will concern my problem, I appreciate it.
    TEST url: http://imagesearch.naver.com/search.naver?where=idetail&rev=10&query=%BE%C8%B5%E5%B7%CE%C0 %CC%B5%E5%C4%B8%C3%B3&from=image&ac=1&sort=0&res_fr=0&res_to=0&merge=0&spq=1&start=1&img_i d=cafe19608183%7C10%7C63_2&font=d
    TEST enviorment
    1. Windows xp sp3(kor,32bit), IE8 + flash 10,1,102,64
    12 Win7(kor, 32bit) + IE8 + flash 10,1,102,64
    Test url display Flash image gallery of keyword('Android phone'), in Korean major portal service NAVER. In IE8, make any tab, and paste this url, and press ENTER, then you always can see photo gallery navigation page(flash page). But IE embedding browser can not see gallery flash, you can see blank flash. Sometimes, in first tab you can see gallery flash(after delete URL cache), but after second tab, you can see blank flash.
    I tested this problem in default MFC MDI project(using Htmlview). This problem also appears. I tested it more, I deleted all IE browser cache, then first tab displayed gallery flash, but second tab displayed blank falsh.
    I thinks, it is a crossdomain problem or sandbox model problem.
    I researched this problem in googling, in MSDN, in BBS, but I can't found solution. In finally I hope your team's advisement.
    Thanks for reading, I want any idea, keyword, API name, or COM interface name.
    Thank you.

    kim512 wrote:
    Dear FlashPlayer team..
    Please note that this is a user-to-user forum; Adobe staff may or may not see your post here.

  • Embedded browser not working

    I have developed a native application in blackberry,  which uses embedded  browser. I am able to view browser on simulator but when I install my app on device (curve 8900) browser doesn't run.
    Please help me.

    I have this same problem. You can reproduce it on simulator if you use the exact same OS version, 4.6.1.133 in my case.
    Did you solve this problem?

  • Want embedded Browser on my App by Project siena

    how can i add embedded Browser on my App by Project siena ?

    This version of Siena does not support an imbedded browser, however they are constantly updating Siena.   You can still use Launch, which will split the window:
    Launch(“http://www.bing.com”)
    -Bruton

  • Flash Player trust file not working with Embedded browser on linux

    Hi,
    I have an application which embeds a browser based on
    Xulrunner inside it. I have couple of flash swf files I need to
    load in the browser. The swf files talk with a javascript to change
    the page title and also to change the URL when I am browsing
    through the content in the URL. I need the URL change because I
    need to remember where I was in the flash content so that I can go
    directly to that place in the flash file when I open my browser the
    next time.
    To let the swf file do this I created a cfg file and placed
    it into the Flash Player Trust folder( I tried both the local one
    at /home/user/.macromedia/Flash_Player/#Security/FlasPlayerTrust
    and global trust file location at /etc/adobe/FlashPlayerTrust ) ,
    but I didn't get the expected result. I debugged into my app and
    found that the swf never reset the Title of the page( which
    indicates that the javascript was blocked) . It works fine from a
    firefox browser but not from inside my embedded browser. My app
    also works fine on windows and Mac . This is observed only on
    Linux. Can any body think of what else I need to do get my
    javascript embedded in the flash file working?
    Thanks
    jbsp72

    I tried out a few more things since nobody on this forum was
    responding. I tried installing another application which also
    embeds xulrunner browser. So I downloaded Prism which is a simple
    xulrunner based browser. The flash works fine with that and the URL
    gets set appropriately. So is there any setting I need to do to get
    it working. Or could somebody atleast point me to the right place
    to ask this question? :(

  • Embedded Browser

    I haven't done much with Swing but am researching the following:
    I would like to embed a web browser on a dialog in my Swing application. Should I use the Gecko library or is there something in the Swing library that can be used?
    My application needs to do the following:
    - navigate to and display various web pages that contain JavaScript and DHTML
    - be able to "scrape" the contents of the web page and find certain <DIV> tags embedded within the page
    In the Windows world, I can do the equivalent by embedding the Microsoft Web Browser ActiveX control on a dialog and program against the IWebBrowser2 COM interface.
    But my client has told me that they plan on switching their VC++ application over to Swing very soon.
    Please advise. ..

    Either would do. As long as you are connecting to the internet and interracting as you would with a browser (selecting links, clicking buttons, and, as a result, posting requests to the internet).
    It would be acceptible to simply bring up a browser , size it , and place it on top of our application, but not nearly as elegant and user friendly. So I'm trying to go the extra mile if I find out it is possible.

  • Embedded/browser-based PDFs slow to open in Acrobat Pro 9

    I'm trying to load PDFs inside my browser using Acrobat Pro 9 but they take a really long time to open. I've done a repair of Acrobat and rebooted but to no avail. Does anyone know what could be causing this?

    Had the same problem on Windows XP after Installing Patch 9.3.3.
    The problem could be solved by reseting the user settings.
    Rename the following REGKEYS:
    HKEY_CURRENT_USER \ Software \ Adobe \ Acrobat Reader
    HKEY_CURRENT_USER \ Software \ Adobe \ Adobe Acrobat
    to
    HKEY_CURRENT_USER \ Software \ Adobe \ Acrobat Reader_Old
    HKEY_CURRENT_USER \ Software \ Adobe \ Adobe Acrobat_Old
    The keys are created at the next start with the basic settings.

  • Call forwarding with CAD embedded browser

    Hello,
    I trying to implement call forwarding for a link in UCCX CAD browser. I can dial a 91234567 number with a link "http://#*91234567" but I need to forward a call coming from CSQ. How can I do this?
    Finally I want to initiate a outgoing calls to a sequence of numbers by clicking a link in CAD browser and when the call will be answered I need to connect incoming call to answered outgoing call. The agent should be disconnected after clicking a hyperlink. Is it possible? I have no idea how to associate hyperlink with a UCCX script. Can you suggest me where to look?
    Maxim

    Hi
    Geoff's correct - the click to dial stuff in CAD is basically click to 'start a call', not transfer. So you'd have to start a second call using that hyperlink and then complete the transfer using the Join from the handset. Which gives you two problems:
    - You're juggling two methods of controlling the phone (CAD and phone UI) which makes it very unfriendly
    - Join is an 'unsupported agent action' meaning your reports will probably go wobbly
    I have experimented with this a little and the best I could come up with for transfers was populating the CAD phone book with the user/number info for transfers so they can just use CAD, doing simple consult transfers using the phone control buttons. Still a little clunky, and probably not what you are looking for if the content you intended to supply to CAD was dynamic...
    Aaron

  • Embedding browser into VI, using NI1772 smart camera

    I'm using a custom VI which creates a web browser window in my VI. I am accessing the NI1772 camera through this method, but I get some strange windows.
    I get three buttons (red, green, blue) and when clicking them gives me the activeX error. The Plug-In window loading is always shown, but it does nothing.
    I'm expecting only to see a camera Acquisiton and that is all
    See attachments.
    Looks like something related to the activeX controls in labview.  Standard Internet Explorer works fine, but this does not.
    Attachments:
    Capture.PNG ‏39 KB
    Capture2.PNG ‏33 KB
    browser.vi ‏8 KB

    HI jstamour802,
    Is there a reason you aren't just using an Imaq Display control to show the images?
    Rahul B.
    Applications Engineer
    National Instruments

  • Some thing wrong with HANA Studio embedded browser setting?

    i have hana studio 1.50.1, and sap.hana.admin.roles:Monitoring role, but when i try to open 'resource utilization', 'memory overview editor' or 'memory allocation statistics editor' , all shown as blank without any error, what 's wrong here?

    Version 1.50 would indicate that you are running an SAP internal only build of the HANA Studio. Please do not post SAP internal questions on the public forums. If you are having problems with an internal build, I would suggest you uninstall and re-install an officially supported revision of the HANA Studio. Latest supported versions of the HANA Studio are available in the corporate software corner.

  • Java embedded browser has glitchy load

    I'm using the "easy way" javascript method of adding a QT movie to a web page:
    script src=AC_QuickTime.js language=javascript
    script language=javascript
    QT_WriteOBJECT
    'MyMovie.mov' , '320', '240' , '','autoplay','true'
    Sometimes the page hangs for a moment before fully loading. During this hang, only the part of the quicktime controller bar (the part containing the scroll bar/download progress bar) appears. The icons on either side of it pop up after the hang, and the movie abruptly starts playing a few seconds into the clip (as if it had started during the hang but was not visible)
    It seems to only happen when the movie has been previously viewed and cached - therefore ready to play.
    Hope this makes sense - is there a neat line of code that can get the page fully loaded before the movie starts?
    Any suggestions appreciated!

    I saw no issue as you described and your file plays without any when viewed on my Mac using Safari beta 3.
    You page code is missing some elements:
    http://validator.w3.org/check?uri=http%3A%2F%2Fwww.postmark.tv%2Freel%2Fqequints %2Findex.htm&charset=%28detect+automatically%29&doctype=Inline&group=0
    Sorry for the long URL.

  • Twitter4j AccesToken with JavaFX Browser

    I want to authentificate a user using an embedded browser with javafx. I can get the PIN (String) that twitter gives me but when I try to create the AccesToken it does not create it correctly. (I can't get my token or tokenSecret, both null).
    I use other browser such as djnativeswing ,it can get AccesToken,but javafx can't.what's the problem?Is it javafx can't support it ? If you know about it ,please tell me,
    thank you very much!

    Hello user,
    The problem may causes from below reasons:
    -Clean the cache of java.
    -Adjust your date and time of your computer
    -Sign the jar
    Thanks
    Narayan

Maybe you are looking for

  • Query help with OITM & OITG

    I am trying to make a query that will list items and the property names that have been checked from the properties tab, but can't seem to find a way to link them correctly. Anyone ever done it successfully?  If so please help on how I can do it. Than

  • PMON: terminating instance due to error 600

    Hi all, Our instance was terminated by giving following message: PMON: terminating instance due to error 600 OS: W2k sp4 Part of alert log: Thu Sep 21 03:00:42 2006 Errors in file d:\oracle\admin\ropprod\udump\ropprod_ora_3388.trc: ORA-00600: interna

  • Safari 5.1 quits immediately on one user account

    After updating this morning (still on Snow Leapord - latest updates installed) Safari 5.1 quits immediately upon opening in my main user account. The "testuser" account works fine. Can't cut and paste the log details between accounts. Sorry

  • Are Merge Fields gone in iWork 2013?

    My previous version of Pages had an Insert for Merge Fields. I created Address Headers and went into Contacts, dragged and dropped, the information fell into place. No extra typing needed. I'm using my Templates from before. Has this handy feature be

  • Methods? Classes? Objects?

    Well, I just started my Java Class here at Cal Poly Poly Pomona, and im afraid that im a little lost :( What is confusing me is the Terms "class", "object" and "method". Their paticular meaning was never really explained thuroughly enough, and I dont