PlatinGUI 7.10 Error with GUIScripting in APPLET-mode

Hello !
In a manual mode recording and playing of a script works.
By transfer of a script through parameters of an applet there is mistake Java:
############################# ERROR #############################
19.12. 09:15:46.312 ERROR: GuiJavaScriptEventHandler.processGlobalScript() no global script handler available.
############################# ERROR #############################
############################# ERROR #############################
19.12. 09:15:46.328 ERROR: Exception occured: java.lang.reflect.InvocationTargetException
19.12. 09:15:46.328 ERROR: java.lang.reflect.InvocationTargetException
19.12. 09:15:46.328 ERROR:      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
19.12. 09:15:46.328 ERROR:      at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
19.12. 09:15:46.328 ERROR:      at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
19.12. 09:15:46.328 ERROR:      at java.lang.reflect.Method.invoke(Unknown Source)
19.12. 09:15:46.328 ERROR:      at com.sap.platin.micro.Dynamic.callMethod(Dynamic.java:155)
19.12. 09:15:46.328 ERROR:      at com.sap.platin.micro.Dynamic.callMethod(Dynamic.java:139)
19.12. 09:15:46.328 ERROR:      at com.sap.platin.GuiAppletBase2.initImpl(GuiAppletBase2.java:372)
19.12. 09:15:46.328 ERROR:      at com.sap.platin.GuiAppletBase2$AppletInit.run(GuiAppletBase2.java:456)
19.12. 09:15:46.328 ERROR:  caused by : java.lang.NullPointerException
19.12. 09:15:46.328 ERROR: java.lang.NullPointerException
19.12. 09:15:46.328 ERROR:      at com.sap.platin.base.scripting.javaScript.GuiJavaScriptEventHandler.processGlobalScript(GuiJavaScriptEventHandler.java:96)
19.12. 09:15:46.328 ERROR:      at com.sap.platin.base.connection.GuiConnection.processScript(GuiConnection.java:939)
19.12. 09:15:46.328 ERROR:      at com.sap.platin.base.logon.GuiImpl.processPlatinScript(GuiImpl.java:207)
19.12. 09:15:46.328 ERROR:      at com.sap.platin.base.logon.GuiImpl.init(GuiImpl.java:151)
19.12. 09:15:46.328 ERROR:      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
19.12. 09:15:46.328 ERROR:      at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
19.12. 09:15:46.328 ERROR:      at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
19.12. 09:15:46.328 ERROR:      at java.lang.reflect.Method.invoke(Unknown Source)
19.12. 09:15:46.328 ERROR:      at com.sap.platin.micro.Dynamic.callMethod(Dynamic.java:155)
19.12. 09:15:46.328 ERROR:      at com.sap.platin.micro.Dynamic.callMethod(Dynamic.java:139)
19.12. 09:15:46.328 ERROR:      at com.sap.platin.GuiAppletBase2.initImpl(GuiAppletBase2.java:372)
19.12. 09:15:46.328 ERROR:      at com.sap.platin.GuiAppletBase2$AppletInit.run(GuiAppletBase2.java:456)
############################# ERROR #############################

// user configurable part starts here
var pluginurl         = '';
var scriptable     = 'false';
var codebase         = '.';
var jnlp           = 'platin.jnlp';
var frog           = 'true';
var trace          = '';
var tracefile      = '';
var connectionData = 'conn=/H/SAPRouterIP/H/SAPHostIP/S/3200&clnt=400&user=username&pass=userpass';
var mscript = "// ---------------------------------------------------------------------------\n\r"+
               "// modus 0\n\r"+
               "// event dynpro SAPLSMTR_NAVIGATION.0100\n\r"+
               "// event title 'SAP Easy Access'\n\r"+
               "window.resizeWorkingPane(181,26,true);\n\r"+
               "window.findById('tbar[0]/okcd').text = '/nfb03';\n\r"+
               "window.sendVKey(0);\n\r"+
               "// ---------------------------------------------------------------------------\n\r"+
               "// modus 0\n\r"+
               "// event dynpro SAPMF05L.0100\n\r"+
               "// event title 'Document view: First screen'\n\r"+
               "userarea.findById('txtRF05L-BELNR').setFocus();\n\r"+
               "userarea.findById('txtRF05L-BELNR').caretPosition = 0;\n\r";
// var mscript = 'C:\Users\Victor\scripts\test1.js';
// user configurable part ends here
// verify if Java Plugin as control in Internet Explorer or Java Plugin for Netscape or native JRE of browser must be used
var jre = 'control';
if(navigator.platform.indexOf("Mac") > -1)
   jre = 'native';
else if (navigator.appName.indexOf("Netscape") != -1)
   jre = 'plugin';
document.open();
switch (jre)
case 'control':
    document.writeln('<OBJECT CLASSID  = "clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"                               ');
    document.writeln('    ID       = "PlatinGUI"                                                                    ');
    document.writeln('    WIDTH    = "100%"                                                 ');
    document.writeln('    HEIGHT   = "100%"                                                 ');
    document.writeln('    BORDER   = 0>                                                      ');
    document.writeln('<PARAM NAME = "TYPE"           VALUE = "application/x-java-applet;jpi-version=1.5.0">         ');
    document.writeln('<PARAM NAME = "SCRIPTABLE"     VALUE = "', scriptable,'">                                ');
    document.writeln('<PARAM NAME = "code"           VALUE = "com.sap.platin.GuiApplet2">                   ');
    document.writeln('<PARAM NAME = "codebase"       VALUE = "', codebase,'">                             ');
    document.writeln('<PARAM NAME = "jnlp"           VALUE = "', jnlp,'">                             ');
    document.writeln('<PARAM NAME = "archive"        VALUE = "GuiStartS.jar">                             ');
    document.writeln('<PARAM NAME = "frog"           VALUE = "', frog,'">                             ');
    document.writeln('<PARAM NAME = "trace"          VALUE = "', trace,'">                             ');
    document.writeln('<PARAM NAME = "tracefile"      VALUE = "', tracefile,'">                             ');
    document.writeln('<PARAM NAME = "connectionData" VALUE = "', connectionData,'">                               '); 
    document.writeln('<PARAM NAME = "platinScript"   VALUE = "', mscript,'">                               '); 
    document.writeln('                                                                ');
    document.writeln('This page requires a Sun Java Plugin 1.5 and a SAPGUI for Java to view.                      ');
    document.writeln('                                                                ');
    document.writeln('</OBJECT>                                                           ');
    break;
case 'plugin':
    document.writeln('<EMBED TYPE        = "application/x-java-applet;version=1.5"                         ');
    document.writeln('    PLUGINURL      = "', pluginurl,'"                                          ');     
    document.writeln('    WIDTH          = "100%"                                            ');                                        
    document.writeln('    HEIGHT         = "100%"                                             ');
    document.writeln('    ALIGN          = "BASELINE"                                                ');
    document.writeln('    code           = "com.sap.platin.GuiApplet2"                                      ');
    document.writeln('    codebase       = "', codebase,'"                                        ');
    document.writeln('    jnlp           = "', jnlp,'"                                                ');
    document.writeln('    archive        = "GuiStartS.jar"                                       ');
    document.writeln('    frog           = "', frog,'"                                            ');
    document.writeln('    trace          = "', trace,'"                                            ');
    document.writeln('    tracefile      = "', tracefile,'"                                       ');
    document.writeln('    connectionData = "', connectionData,'"                                        ');
    document.writeln('    platinScript   = "', mscript,'"                                        ');
    document.writeln(' <NOEMBED>                                                      ');
    document.writeln(' </NOEMBED>                                                      ');
    document.writeln(' </EMBED>                                                              ');
    break;
case 'native': 
    document.writeln('<APPLET CODEBASE  = "', codebase,'"                                                           ');
    document.writeln('        ARCHIVE   = "GuiStartS.jar"                                                           ');
    document.writeln('        CODE      = "com.sap.platin.GuiApplet2"                                               ');
    document.writeln('        WIDTH     = "100%"                                                                    ');
    document.writeln('        HEIGHT    = "100%">                                                                   ');
    document.writeln('<PARAM NAME = "SCRIPTABLE"     VALUE = "', scriptable, '">                                    ');
    document.writeln('<PARAM NAME = "jnlp"           VALUE = "', jnlp, '">                                          ');
    document.writeln('<PARAM NAME = "frog"           VALUE = "', frog, '">                                          ');
    document.writeln('<PARAM NAME = "trace"          VALUE = "', trace, '">                                         ');
    document.writeln('<PARAM NAME = "tracefile"      VALUE = "', tracefile, '">                                     ');
    document.writeln('<PARAM NAME = "connectionData" VALUE = "', connectionData, '">                                ');
    document.writeln('<PARAM NAME = "platinScript"   VALUE = "', mscript, '">                                ');
    document.writeln('</APPLET>                                                                                ');
    break;
document.close();

Similar Messages

  • Potential error with published JavaFX applet?

    Hi there
    This is a "strange" request. I have recently published a JavaFX app on-line and broadcast a link to it via my blog. Before doing so I successfully tested it on my machines at home (OS X and Win XP) and at work (Win XP and OS X). However I have had a complaint, via the comments, that it does not work? I have emailed the commenter requesting further info regarding OS etc, but am yet to hear anything.
    Could you try this link and tell me if it does NOT work, along with OS, Browser, JVM version and error message? It is signed so you will be prompted to trust the source, I had to sign it because I am interfacing with the Twitter API.
    Blog post: http://itssmee.wordpress.com/2010/05/25/javafx-1-3-twitter4j-twitter-api-basic-javafx-twitter-client-and-tweet-cloud-generator/
    Applet url: http://bikefacts.co.uk/javafx/TweetCloud/index.html
    I am very confused as to why it works for me (in two locations) but not for this other person (you can see the comments on the posting).
    Thank you.

    Ah, some hours ago, I couldn't even get the page. Now it works (from another computer).
    WinXP Pro SP3, Java 1.6.0_20
    I had to accept twice the security dialog. You mention it in your blog, but it is worth repeating here that one must have a Twitter account to use your applet.
    I am uneasy to give my password to an applet, BTW, even if I trust you... :-)
    Even on my slow computer, it was quite reactive (perhaps _jesuino has the same issue than me some time ago).
    The cloud is nice, but we should be able to zoom, the small words are unreadable.

  • ESSO Error with IE 9 Compatibility Mode

    Can anyone help? We are implementing eSSO with OIM 11.1.2.. When testing the system, we receive an error that Compatibility Mode should be turned off. We can turn off Compatibility mode and the user can access the site fine while they are logged in. But when we try to access the site from a locked screen, we get the following error. "The current compatibility setting is not supported. Disable Compatibility View before running this web page." If you click OK, the page loads fine.
    We have applied GPO's to force the Compatibility Mode Off.

    Hi JimmyWeise,
    Can you try to download Microsoft SilverLight Browser Plugin and install into IE9. Then try to validate the same.

  • BIC mapping error with Text as trasnfer mode & File type

    Hi guys,
    I am using ftp adapter in my sender channel and also using BIC mapping in the sender side.
    When i specify "Binary" as my transfer mode as well as File type, It is working fine.
    When i specify "Text" as my transfer mode as well as File type, i am getting the below BIC mapping error. According to client requirement i am supposed to use Binary. Can anyone help me on this.
    SEEBURGER BICXIADAPTER --- CONVERSION ERROR ---Error: [Error:ID=2023;LEVEL=1] InhouseDocReader readNextSegment(): offset[12(read Segment : BILLINGHEADER)]: caught ReadingException: only whitespaces as fill characters allowed!, Trace: [com.seeburger.jucon.dochandler.util.WrongFormatException: only whitespaces as fill characters allowed! at com.seeburger.jucon.dochandler.inhousereader.InhouseSegmentReader.readNextSegment(InhouseSegmentReader.java:384) at com.seeburger.jucon.dochandler.inhousereader.InhouseSegmentReader.readNextSegment(InhouseSegmentReader.java:193) at com.seeburger.jucon.dochandler.InhouseDocReader.readNextSegment(InhouseDocReader.java:2399) at com.seeburger.jucon.dochandler.InhouseDocReader.moveNext(InhouseDocReader.java:1818) at com.seeburger.jucon.mapping.E2X_DT_BILLINGDATA_2.main(E2X_DT_BILLINGDATA_2.java:991) at com.seeburger.jucon.mapping.Mapping.run(Mapping.java:2313) at com.seeburger.jucon.seebicapi.BICMapping.runMapping(BICMapping.java:1636) at com.seeburger.jucon.seebicapi.BICMapping.run(BICMapping.java:2386) at com.seeburger.jucon.seebicapi.BICMapping.startSyncMapping(BICMapping.java:1343) at com.seeburger.bicxiadapter.CCIInteraction.convert(CCIInteraction.java:1167) at com.seeburger.bicxiadapter.CCIInteraction.convertCalledFromModule(CCIInteraction.java:873) at com.seeburger.bicxiadapter.CCIInteraction.execute(CCIInteraction.java:294) at com.seeburger.bicxiadapter.module.CallBicXIRaBean.process(CallBicXIRaBean.java:363) at com.sap.aii.af.mp.module.ModuleLocalLocalObjectImpl0_0.process(ModuleLocalLocalObjectImpl0_0.java:102) at com.sap.aii.af.mp.ejb.ModuleProcessorBean.process(ModuleProcessorBean.java:292) at com.sap.aii.af.mp.processor.ModuleProcessorLocalLocalObjectImpl0_0.process(ModuleProcessorLocalLocalObjectImpl0_0.java:103) at com.sap.aii.adapter.file.File2XI.send(File2XI.java:3672) at com.sap.aii.adapter.file.File2XI.processFtpList(File2XI.java:2408) at com.sap.aii.adapter.file.File2XI.invoke(File2XI.java:630) at com.sap.aii.af.service.scheduler.JobBroker$Worker.run(JobBroker.java:513) at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37) at java.security.AccessController.doPrivileged(AccessController.java:219) at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102) at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172) ] DESCRIPTION: InhouseDocReader causes an ReadingException while trying to read the next segment of current file, abort

    Hi Pratichi,
    in my point of view having text as the file type,the file will be having characters that are used for Segment separators or Element separators ( like space ) in the standard EDI format message.  Hence it is throwing exception in X2E mapping. It is just my point of view but not sure.
    Thanks,
    Shabbir.

  • Error with applets in Firefox

    Hello
    Whenever I open any page with a Java applet, I an error message pops up with java.lang.NullPointerException and Firefox more or less freezes. This has been occurring since I installed JDK (it worked fine before) and it doesn't happen with IE. Does anyone know what could be causing this? Thank you.
    java.lang.NullPointerException
         at com.sun.deploy.net.proxy.DynamicProxyManager.reset(Unknown Source)
         at com.sun.deploy.net.proxy.DeployProxySelector.reset(Unknown Source)
         at sun.plugin.AppletViewer.initEnvironment(Unknown Source)

    Which version of Java are you using?
    Can you post the output of 'java -version' ?
    -Roger

  • "Class Formatting Error" in a java applet? (Solved)

    (This problem is completely my fault and it would be hard to provide enough information to request and answer. Disregard this message.)
    I've been developing a java applet to go on my website, but when running it tosses a "java.lang.ClassFormatError: rendering/ImageObserverClass" to the console. When I looked into the code I thought of java compliance levels. (Earlier I had to set Eclipse to a higher compliance level to make it accept new ArrayList<Renderable>();)
    Is this not my problem? In my html code I have the following:
    <applet
    code="main/GalacticConflict.class"
    codebase="code/"
    width="640" height="480">
    </applet>In Eclipse the program compiles and runs fine, so it most likely is a deeper issue. Thanks for any help!
    EDIT:
    Heh, that was stupid of me.... Just decided to try removing the <Renderable> from there, but it still doesn't work. The line number the console refers to is commented code, making it even more strange. If you have insight, feel free to post it here, but I'm going to make sure my new code is even being passed to my server properly.
    Edited by: Durnus on Dec 26, 2008 9:45 AM
    EDIT2:
    It appears to be an error with my copying process -- when I view the .html file with Firefox in the workspace folder, it works fine. Sorry for the trouble.
    Edited by: Durnus on Dec 26, 2008 9:54 AM

    Hi,
    Refer the URL :http://help.sap.com/javadocs/pi/SP3/xpi/com/sap/aii/mapping/api/AbstractTransformation.html
    regards,
    ganga

  • Help with class in applet

    So im just starting java, about 12 weeks in.
    So in my class we are getting started with objects. What i want to do is create a class called car, and have it create a new car and draw images loaded, and then have the tires rotate, there are 2 images,
    the car base and the tires.
    I know how to display images in applets, but i dont know how to define the images in the objects class and then draw them from the class.

    I get errors with this code from my car class
    import java.applet.*;
    public class car extends Applet{
          * @param args
         private String model;
         private int passangers;
         private double gas,speed;
         private Image tire;
         private MediaTracker tr;
         tr = new MediaTracker(this);
         tire = getImage(getCodeBase(), "tire.png");
         tr.addImage(tire,0);
         public car(String id, int pass, double tank)
              model=id;
              passangers=pass;
              gas=tank;
         public car()
              model="";
              passangers=0;
              gas=0;
         }I get errors on these lines
         private Image tire;
         private MediaTracker tr;
         tr = new MediaTracker(this);
         tire = getImage(getCodeBase(), "tire.png");
         tr.addImage(tire,0);errors
    Severity and Description     Path     Resource     Location     Creation Time     Id
    Image cannot be resolved to a type     Car Game     car.java     line 13     1197077768237     1745
    MediaTracker cannot be resolved to a type     Car Game     car.java     line 14     1197077768238     1746
    Return type for the method is missing     Car Game     car.java     line 16     1197077768239     1750
    Syntax error on token ";", { expected after this token     Car Game     car.java     line 14     1197077768238     1747
    Syntax error on token "(", delete this token     Car Game     car.java     line 17     1197077768239     1752
    Syntax error on token "0", invalid FormalParameter     Car Game     car.java     line 17     1197077768239     1753
    Syntax error on token(s), misplaced construct(s)     Car Game     car.java     line 15     1197077768238     1748
    Syntax error on token(s), misplaced construct(s)     Car Game     car.java     line 16     1197077768239     1749
    Syntax error on tokens, delete these tokens     Car Game     car.java     line 16     1197077768239     1751
    The serializable class car does not declare a static final serialVersionUID field of type long     Car Game     car.java     line 4     1197077768237     1744
    The serializable class main does not declare a static final serialVersionUID field of type long     Applet     main.java     line 5     1196990860997     1682
    The serializable class main does not declare a static final serialVersionUID field of type long     Car Game     main.java     line 5     1197077768196     1743
    The serializable class ShowImage does not declare a static final serialVersionUID field of type long     Display JPEG/src     ShowImage.java     line 4     1196488911896     1393Edited by: jasonpeinko on Dec 7, 2007 5:42 PM

  • Problem with a signed applet and a user machine.

    Hello. I´m having some problems with a signed applet with some dependences.
    In one particular computer the applet doesn´t load.
    The java version installed in that computer is 1.6.0_25.
    The invocation tag:
    <applet name=applet id="applet" code=Applet/RequestApplet.class width=155 height=21 archive="RequestApplet.jar " MAYSCRIPT>
       <param id="parametro1" name="usuario" value="<Computed Value>">
    </applet>The RequestApplet.jar and dependences:
       bcmail-jdk13-145.jar(signed by bouncy castle), jce-ext-jdk13-145.jar(signed by bouncy castle), AbsoluteLayout.jar, plugin.jar, RequestApplet.jar(signed by me)*this files are all in the same folder.
    The requestApplet.jar manifest:
    Manifest-Version: 1.0
    Ant-Version: Apache Ant 1.7.1
    X-COMMENT: Main-Class will be added automatically by build
    Class-Path: bcmail-jdk13-145.jar jce-ext-jdk13-145.jar plugin.jar Abso
    luteLayout.jar
    Created-By: 10.0-b23 (Sun Microsystems Inc.)
    Main-Class: Applet.RequestApplet
    Name: Applet/ResponseApplet$1.class
    SHA1-Digest: fO5IPiwEH3OhvlprhBecmMIAVJI=
    Name: Applet/NewJApplet.class
    SHA1-Digest: 6XSpm7lQEQRi39TegoUYv2aFJrk=
    Name: Applet/ResponseApplet.class
    SHA1-Digest: v1EbKUFB+QdvO05xx8UzAMNIyRs=
    Name: Applet/ResponseApplet$4.class
    SHA1-Digest: XH4I67psXZTelpz0AMAYc/Ej8QY=
    Name: Applet/RequestApplet$1.class
    SHA1-Digest: KAP5sAC4Thv/6GClkFAdGUVzgYA=
    Name: Applet/ResponseApplet$5.class
    SHA1-Digest: CVPnKrW2SgNEkRzYnVnQe3KGrIU=
    Name: Applet/ResponseApplet$3.class
    SHA1-Digest: SjfW1k1K7BA9m3AxmHi+jvRE+9o=
    Name: Applet/ResponseApplet$2.class
    SHA1-Digest: 3Pu18CZMLuEh7/n3y7XxFSkuNQY=
    Name: Applet/RequestApplet.class
    SHA1-Digest: Tky85es5+o371adetH9XVEI2Z+o=The error:
    java.lang.RuntimeException: java.lang.NoClassDefFoundError: org/bouncycastle/jce/provider/BouncyCastleProvider
         at sun.plugin2.applet.Plugin2Manager.createApplet(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.lang.NoClassDefFoundError: org/bouncycastle/jce/provider/BouncyCastleProvider
         at java.lang.Class.getDeclaredConstructors0(Native Method)
         at java.lang.Class.privateGetDeclaredConstructors(Unknown Source)
         at java.lang.Class.getConstructor0(Unknown Source)
         at java.lang.Class.newInstance0(Unknown Source)
         at java.lang.Class.newInstance(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$12.run(Unknown Source)
         at java.awt.event.InvocationEvent.dispatch(Unknown Source)
         at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
         at java.awt.EventQueue.access$000(Unknown Source)
         at java.awt.EventQueue$1.run(Unknown Source)
         at java.awt.EventQueue$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.security.AccessControlContext$1.doIntersectionPrivilege(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    Caused by: java.lang.ClassNotFoundException: org.bouncycastle.jce.provider.BouncyCastleProvider
         at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass0(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         ... 20 more

    Thanks. I´ll try with your tips. But if i put all the dependences in archive I get this error.
    The tag:
    <applet name=applet id="applet" CODEBASE="." code="Applet/RequestApplet.class" width=155 height=21 archive="bcmail-jdk13-145.jar, jce-ext-jdk13-145.jar, AbsoluteLayout.jar, plugin.jar, RequestApplet.jar " MAYSCRIPT>
       <param id="parametro1" name="usuario" value="<Computed Value>">
    </applet>The error:
    Java Plug-in 1.6.0_25
    Usar versión JRE 1.6.0_25-b06 Java HotSpot(TM) Client VM
    Directorio local del usuario = C:\Documents and Settings\Administrator
    c:   borrar ventana de consola
    f:   finalizar objetos en la cola de finalización
    g:   liberación de recursos
    h:   presentar este mensaje de ayuda
    l:   volcar lista del cargador de clases
    m:   imprimir sintaxis de memoria
    o:   activar registro
    q:   ocultar consola
    r:   recargar configuración de norma
    s:   volcar propiedades del sistema y de despliegue
    t:   volcar lista de subprocesos
    v:   volcar pila de subprocesos
    x:   borrar antememoria del cargador de clases
    0-5: establecer nivel de rastreo en <n>
    basic: Receptor de progreso agregado: sun.plugin.util.GrayBoxPainter$GrayBoxProgressListener@f39b3a
    basic: Plugin2ClassLoader.addURL parent called for http://desarrollo.isaltda.com.uy/CertReq.nsf/bcmail-jdk13-145.jar
    basic: Plugin2ClassLoader.addURL parent called for http://desarrollo.isaltda.com.uy/CertReq.nsf/jce-ext-jdk13-145.jar
    basic: Plugin2ClassLoader.addURL parent called for http://desarrollo.isaltda.com.uy/CertReq.nsf/AbsoluteLayout.jar
    basic: Plugin2ClassLoader.addURL parent called for http://desarrollo.isaltda.com.uy/CertReq.nsf/plugin.jar
    basic: Plugin2ClassLoader.addURL parent called for http://desarrollo.isaltda.com.uy/CertReq.nsf/RequestApplet.jar

  • Problems with (selfcompiled) gnome-applets

    I have experienced problems with gnome-applets. Those that come with a basic gnome installation work fine and there is no problem adding them to the panel. However, when I use selfcompiled applets I always get the following error when trying to add them.
    The panel encountered a problem while loading "OAFIID:GNOME_HDAPS_STATUSApplet".
    (Where OAFIID: is followed by the applets name.)
    I tried pkgbuilds from the AUR like 'ontv' and 'gnome-hdaps-applet' and I've tried compile applets manually. Always the same issue. I don't know what's wrong. I've found threads where people get that error message on any applet but I didn't find a solution to my problem, as all my other applets work fine. Any ideas?

    Have you done any Gnome updates since this applet was compiled? I seem to recall having a similar problem with an applet I built and, falling back to the Windows days, did a reboot, rebuilt the applet, and then all was well after I reinstalled the applet.
    Not sure if this will help, but it cannot hurt.
    Bob

  • RE: [Adobe Reader] when i open pdf file it open all the pages but some pages give error massage (there was error processing a page,there was a problem reading this document 110) but if i open this page which give me error with google chrome it's work ? i

    HelloThank's for your helpsI hope this document is helpfulBest Regards,
    Date: Sun, 22 Jun 2014 17:10:17 -0700
    From: [email protected]
    To: [email protected]
    Subject:  when i open pdf file it open all the pages but some pages give error massage (there was error processing a page,there was a problem reading this document 110) but if i open this page which give me error with google chrome it's work ? if you can help me th
        when i open pdf file it open all the pages but some pages give error massage (there was error processing a page,there was a problem reading this document 110) but if i open this page which give me error with google chrome it's work ? if you can help m
        created by Anoop9178 in Adobe Reader - View the full discussion
    Hi,
    Would it be possible for you to share the document?
    Regards,
    Anoop
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at https://forums.adobe.com/message/6485431#6485431
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
         To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Adobe Reader by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

    thank's for reply and your help
    i did the step's that you told me but  i still have the same problem
                                     i have the latest v.11.0.7
    i
    i disable the protected mode

  • Odd Error with decode function in Order By Clause

    I am trying to compile a procedure and can't get around an error with a dynamic order by that doesn't make much sense to me. I can repoduce the error with a plain select statment in sql plus so I can rule out a declaration error. Here is an example with 2 numeric columns and a date column.
    select task_id, display_date, remark_id from task_list
    where task_id > 1000
    order by decode('Task_ID', 'Task_ID',Task_ID, 'Display_Date', Display_Date, 'Remark_ID',Remark_ID)
    returns the error:
    select task_id, display_date, remark_id from task_list
    ERROR at line 1:
    ORA-00932: inconsistent datatypes: expected NUMBER got DATE
    I'm not sure why this error is occuring, because it doesn't even hit the Display_Date field in the Decode statment. If I take the Display_date out of the statement, it runs properly. If I change Display_Date to To_Char(Display_Date) it also runs fine, but the sorting is incorrect. Also I'm running 9.2, and do not want to use dynamic sql to build my query. Any Ideas out there as to the cause of this error?

    I did find a workaround to this issue by breaking the decode statment into three separate statement, but I still think that the way it is written above should work, and may be a bug, or an error that I don't understand fully.
    The Order by was rewritten like this:
    order by decode(pSort, 'Task_ID',Task_ID), decode(pSort, 'Display_Date', Display_Date),
    decode(pSort, 'Remark_ID',Remark_ID);
    Thanks

  • XML Publisher Error with reports published in XML publisher

    Hi All,
    I am geting the following error with a report published using XML Publisher
    The XML page cannot be displayed
    Cannot view XML input using style sheet. Please correct the error and then click the Refresh button, or try again later.
    The system cannot locate the resource specified. Error processing resource 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.d...
    How can i Rectify this?

    Hi Ark,
    In order to generate a report using xml publisher. we need the following.
    1. XML Data
    2. Template file (RTF/PDF/..)
    XML data will not be created by the template file.
    We will be required to create XML data. One of the easiest way to create xml output is using the RDF. We can change the rdf output type in the concurrent program to XML.
    Once the xml and the template is available, "XML Report Publisher" will be able to generate the output in the required format.
    Thanks,
    K.Nataraja Suthan,

  • Graphic problems/errors with Mainstage 3 and MBP (15'' 2011)

    Hi,
    I bought Mainstage 3 for my MBP (15'' 2011).
    When i click con "perform" i get graphic errors.
    I have the same issue with the old Mainstage version since Mountain Lion.
    Also a fresh installation didn't help.
    I think i'm not the only one with this issue!
    I don't know how to report a bug?
    Perhaps someone can help me.
    (and  I'm probably not the only one (see feedback in Apple Store) If you also have this problem, please add a comment with your configuration (Hardware, Software))
    /forgotten ebi
    So, here an example how it looks like when i click on "perform":

    Same configuration,same problem. BUT I found a workaround.
    Mainstage has this error with the AMD video card and/or a second monitor connected.
    With a little app (http://gfx.io)  it's possible to really force the MBPro to use the Intel Graphics card.
    This will work only with the internal screen, not with a second screen connected.
    And sometimes you need to restart, to really make the Intel video card free.
    This works fine...In the meantime of a fix.

  • Error with an infoset in BI

    HI BI gurus,
    we have a problem with an infoset.
    We create an infoset in RSA1 linked to a cube and a DSO.
    We activate it in english without problems and I can create a query with no errors (with a english logon).
    If I try to create a query in italian language the query designer show mw this error: " unexpected error - RCF_SYSTEM_FAILURE. You must restart the query designer."
    Do you have any idea how to fix and solve this problem? We try to activete the infoset in Italian but the error remains.
    Thanks for any help.
    SB

    Hi,
    is italien installed as a language in your system?
    Siggi

  • I am trying to download my photos from my iphone to my mac-iphoto. It keeps trying but about halfway through it says there is an error with a photo therefore it wont download any of my pictures or videos.  It wont tell me which picture is the issue.

    I took a lot of pictures and video on my recent trip to Ireland.  Now I am trying to download the photos and videos from my iphone to my mac - iphoto.  I have tried 3 times and each time (at a different point) I get a message telling me that there was an error with one of my photos and it wont load the pictures.  Help!!

    Try using Image Capture to download to a folder on the Desktop.  If there's a damaged file on the iPhone that's preventing the download you can isolate it with Image Capture and then delete it from the iPhone.

Maybe you are looking for

  • Pdf document setup for print issues

    Hey all, I just happened to have a friend who is getting married asking me to make their invitations. I am not at all familiar with the print process (I'm a noob, just getting started), but managed myself to go with a print house that offers me guide

  • Java Apps don't start automaticaly after system restart

    Hi, Since a few days ago when restarting Java application servers of SAP Portal, the applications deployed don't start for itselfs. When starting the instance, the memory stops to increase at 500mb. The only way to start the applications is by the ma

  • Mouse disconects

    My wireless super mouse disconects-reconects sporadically.  The pointer will lag and be in accurate.  I have a 21.5 mid-2011 i5core 4gb iMac running lion.

  • Is there Camera RAW support for Lightroom 4.4 and Canon 7D Mark ii?

    I need Camera RAW support for Lightroom 4.4 and Canon 7D Mark ii.  Is there a Camera RAW version for me? 

  • XML-20108: (Fatal Error) Start of root element expected. - jdev 11.1.2.3

    Hello: I created a simple ADF Fusion Web app using HR schema based on Employees table. I am trying to get Contextual Events working and I did the following: Created two taskflows: TaskFlowA and TaskFlowB. TaskFlowA has a form based on employees and T