AxisFault Error: WSE 99999

Hello,
i'm trying to make a jar file that encapsulates all logic to interact with the webservices of bo,
when i'm executing it from my intellij idea it works perfect, however when i package it and try to run it
via coldfusion (installing the jar and calling my custom class) i get this error in my logging
i've searched all over the internet but couldn't find any explanations for this one..
please help :]
org.apache.axis2.AxisFault: constructor exception (Error: WSE 99999)
     at com.businessobjects.dsws.Consumer.CreateAxisFault(Consumer.java:767)
     at com.businessobjects.dsws.Consumer.propagateAsDSWSException(Consumer.java:859)
     at com.businessobjects.dsws.Consumer.<init>(Consumer.java:129)
     at com.businessobjects.dsws.session.Session.<init>(Session.java:142)

ok i got it working, i now make a native connection and i see the "tree" structure,
i do my manual selects like this:
private HashMap<Integer, IInfoObject> getCategoryListFrom(String fn) {
        res = new HashMap<Integer, IInfoObject>();
        try {
            String sQuery = "SELECT SI_ID FROM CI_INFOOBJECTS WHERE SI_NAME='" + fn + "' AND SI_KIND='folder'";
            IInfoObjects categories = iStore.query(sQuery);
            if (!categories.isEmpty() && categories.size() == 1) {
                IInfoObject category = (IInfoObject) categories.get(0);
                res.put(category.getID(), category);
                getCategoryList(iStore, category.getID(), "");
            return res;
        } catch (Exception ex) {
            ex.printStackTrace();
            return res;
but now i want to download a report :] but without using webservices..
  public byte[] getReportPdf(IInfoObject oInfoObject) {
        byte[] report = new byte[0];
        try {
            ReportEngines engines = (ReportEngines) enterpriseSession.getService("ReportEngines");
            ReportEngine reportEngine = engines.getService(ReportEngines.ReportEngineType.WI_REPORT_ENGINE);
            DocumentInstance docInstance = reportEngine.openDocument(oInfoObject.getID());
            Properties props = new Properties();
            props.put("title", "this is a test title");
            docInstance.setProperties(props);
            BinaryView bv = (BinaryView) docInstance.getView(OutputFormatType.PDF);
            report = bv.getContent();
            docInstance.closeDocument();
            engines.close();
            reportEngine.close();
        } catch (Exception ex) {
            ex.printStackTrace();
        return report;

Similar Messages

  • Exception in thread "main" org.apache.axis2.AxisFault: Error in extracting

    I am getting this exception when I call the web service from the client. Please help me here.
    Exception in thread "main" org.apache.axis2.AxisFault: Error in extracting message properties
         at org.apache.rampart.handler.RampartSender.invoke(RampartSender.java:70)
         at org.apache.axis2.engine.Phase.invokeHandler(Phase.java:340)
         at org.apache.axis2.engine.Phase.invoke(Phase.java:313)
         at org.apache.axis2.engine.AxisEngine.invoke(AxisEngine.java:262)
         at org.apache.axis2.engine.AxisEngine.send(AxisEngine.java:427)
         at org.apache.axis2.description.OutInAxisOperationClient.send(OutInAxisOperation.java:406)
         at org.apache.axis2.description.OutInAxisOperationClient.executeImpl(OutInAxisOperation.java:229)
         at org.apache.axis2.client.OperationClient.execute(OperationClient.java:165)
         at com.ttdev.ss.SecureServiceStub.concat(SecureServiceStub.java:182)
         at com.ttdev.ss.SecureClient.main(SecureClient.java:29)
    Caused by: org.apache.rampart.RampartException: Error in extracting message properties
         at org.apache.rampart.RampartMessageData.<init>(RampartMessageData.java:386)
         at org.apache.rampart.MessageBuilder.build(MessageBuilder.java:61)
         at org.apache.rampart.handler.RampartSender.invoke(RampartSender.java:64)
         ... 9 more
    Caused by: org.apache.ws.security.WSSecurityException: Error in converting SOAP Envelope to Document; nested exception is:
         java.lang.UnsupportedOperationException: TODO
         at org.apache.rampart.util.Axis2Util.getDocumentFromSOAPEnvelope(Axis2Util.java:161)
         at org.apache.rampart.RampartMessageData.<init>(RampartMessageData.java:272)
         ... 11 more
    Caused by: java.lang.UnsupportedOperationException: TODO
         at org.apache.axiom.om.impl.dom.DocumentImpl.setStandalone(DocumentImpl.java:415)
         at org.apache.axiom.om.impl.builder.StAXOMBuilder.createDocument(StAXOMBuilder.java:190)
         at org.apache.axiom.om.impl.builder.StAXOMBuilder.<init>(StAXOMBuilder.java:105)
         at org.apache.axiom.soap.impl.builder.StAXSOAPModelBuilder.<init>(StAXSOAPModelBuilder.java:167)
         at org.apache.rampart.util.Axis2Util.getDocumentFromSOAPEnvelope(Axis2Util.java:130)
         ... 12 more
    Client WSDL:
    <?xml version="1.0" encoding="UTF-8"?>
    <wsdl:definitions name="SecureService"
    targetNamespace="http://ttdev.com/ss"
    xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200512"
    xmlns:wsp="http://www.w3.org/Submission/2006/SUBM-WS-Policy-20060425"
    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
    xmlns:tns="http://ttdev.com/ss"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurityutility-1.0.xsd">
    <wsdl:types>
    <xsd:schema targetNamespace="http://ttdev.com/ss">
    <xsd:element name="concat">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="s1" type="xsd:string"/>
    <xsd:element name="s2" type="xsd:string"/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    <xsd:element name="concatResponse">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="r" type="xsd:string">
    </xsd:element>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:schema>
    </wsdl:types>
    <wsdl:message name="concatResponse">
    <wsdl:part name="parameters" element="tns:concatResponse">
    </wsdl:part>
    </wsdl:message>
    <wsdl:message name="concatRequest">
    <wsdl:part name="parameters" element="tns:concat">
    </wsdl:part>
    </wsdl:message>
    <wsdl:portType name="SecureService">
    <wsdl:operation name="concat">
    <wsdl:input message="tns:concatRequest">
    </wsdl:input>
    <wsdl:output message="tns:concatResponse">
    </wsdl:output>
    </wsdl:operation>
    </wsdl:portType>
    <wsdl:binding name="SecureServiceSOAP" type="tns:SecureService">
    <wsp:PolicyReference URI="#p1" wsdl:required="true"/>
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <wsdl:operation name="concat">
    <soap:operation soapAction="http://ttdev.com/ss/NewOperation"/>
    <wsdl:input>
    <soap:body use="literal"/>
    </wsdl:input>
    <wsdl:output>
    <soap:body use="literal"/>
    </wsdl:output>
    </wsdl:operation>
    </wsdl:binding>
    <wsdl:service name="SecureService">
    <wsdl:port name="p1" binding="tns:SecureServiceSOAP">
    <soap:address location="http://localhost:8080/ss/p1"/>
    </wsdl:port>
    </wsdl:service>
    <wsp:Policy wsu:Id="p1">
    <sp:AsymmetricBinding>
    <wsp:Policy>
    <sp:InitiatorToken>
    <wsp:Policy>
    <sp:X509Token sp:IncludeToken="http://schemas.xmlsoap.org/ws/2005/12/securitypolicy/IncludeToken/AlwaysToRecipient">
    <wsp:Policy>
    <sp:WssX509V3Token10/>
    </wsp:Policy>
    </sp:X509Token>
    </wsp:Policy>
    </sp:InitiatorToken>
    <sp:RecipientToken>
    <wsp:Policy>
    <sp:X509Token sp:IncludeToken="http://schemas.xmlsoap.org/ws/2005/12/securitypolicy/IncludeToken/Never">
    <wsp:Policy>
    <sp:WssX509V3Token10/>
    </wsp:Policy>
    </sp:X509Token>
    </wsp:Policy>
    </sp:RecipientToken>
    <sp:AlgorithmSuite>
    <wsp:Policy>
    <sp:TripleDesRsa15/>
    </wsp:Policy>
    </sp:AlgorithmSuite>
    </wsp:Policy>
    </sp:AsymmetricBinding>
    <sp:Wss10>
    <wsp:Policy>
    <sp:MustSupportRefEmbeddedToken/>
    <sp:MustSupportRefIssuerSerial/>
    </wsp:Policy>
    </sp:Wss10>
    <sp:SignedParts>
    <sp:Body/>
    </sp:SignedParts>
    <sp:EncryptedParts>
    <sp:Body/>
    </sp:EncryptedParts>
    <sp:EncryptedElements>
    <sp:XPath>
    //*[local-name()='Signature']
    </sp:XPath>
    </sp:EncryptedElements>
    <sp:SignedSupportingTokens>
    <wsp:Policy>
    <sp:UsernameToken sp:IncludeToken="http://schemas.xmlsoap.org/ws/2005/12/securitypolicy/IncludeToken/AlwaysToRecipient"/>
    </wsp:Policy>
    </sp:SignedSupportingTokens>
    </wsp:Policy>
    </wsdl:definitions>

    I think you are asking this question not only on the wrong section but also on the wrong website.
    The error you are refering to is a Axis2 specific exception, you might get the best answer by posting your question to the Axis2 mailing list:
    http://axis.apache.org/axis2/java/core/mail-lists.html
    BTW your exception "java.lang.UnsupportedOperationException: TODO"
    => looks like you have some comment left over in your Web-Service invokation. Actually your WSDL has no Method "TODO" so where should this call route to? I guess you should debug your code that invokes the call. Is there really a method TODO.
    I am also a bit confused with "Client Side WSDL" actually only the server does create a WSDL file, client only reads it (maybe you have some code generator that uses the WSDL to generate some code .. but the client has no WSDL).
    Further you should post a complete working example that can be run by somebody else, espacially with such a specific problem. Otherwise I am afraid hardly anybody will push you to the right direction.
    Sebastian

  • ERROR FRM-99999 USING FORMS SERVER

    I'm trying to deploy new applications on the Web using OAS and
    Developer Server. When I am trying to connect via the browser or
    via the appletviewer to a simple form in Developer Server I get
    this error in the Oracle Developer Forms Runtime - Web window:
    FRM-99999: A network error ocurred, the client will not be able
    to continue
    Details...
    Java Exception:
    java.net.SocketException: Connection reset by peer
    at java.net.SocketInputStream.read(Compiled Code)
    at oracle.forms.net.EncryptedInputStream.fill(Compiled Code)
    at
    oracle.forms.net.EncryptedInputStream.read(EncryptedInputStream.j
    ava)
    at java.io.DataInputStream.readUnsignedByte(Compiled Code)
    at oracle.forms.engine.Message.readDetails(Compiled Code)
    at oracle.forms.engine.Message.readDetails(Message.java)
    at oracle.forms.net.StreamMessageReader.run(Compiled Code)
    I've installed and configurated the next two differents
    environments:
    OPTION #1
    Windows NT 4.0 with Service Pack 3
    Oracle RDBMS 7.3.4
    Oracle Application Server 4.0.7.0.0
    Oracle Developer 6.0.5.0.2
    Netscape 4.5 and Explorer 5
    Jinititator 1.1.7.11 and Jinitiator 1.1.5.3
    JDK Applet Viewer 1.1.7.11
    OPTION #2
    Windows NT 4.0 with Service Pack 5
    Patch for OAS (OAS_40710_Patch_40bit)
    Oracle RDBMS 8.0.5
    Oracle Application Server 4.0.7.0.0
    Oracle Developer 6.0.5.0.2
    Netscape 4.5 and Explorer 5
    Jinititator 1.1.7.11 and Jinitiator 1.1.5.3
    JDK Applet Viewer 1.1.7.11
    I've tried sockets and http-sockets for the Forms Server
    Listener, but I always get that error and sometimes the Applet
    window doesn3t respond and nothing seems to happen.
    I would like to know if somebody has go this situation throw.
    Thank you very much in advance.
    null

    Hi,
    To use the Webutil, you must sign the WEBUTIL.JAR and JACOB.JAR.
    Using Jarsigner, you have to define the JDK Home and the Jinitiator home.
    I used whe jdk version 1.4.2 and the Jinitiator version 1.3.1.17
    Don't forget to apply this modification.
    Insert the line
    <virtual-directory virtual-path="/webutil" real-path="D:\Forms9i\forms90\webutil" />
    in the file
    $ORACLE_HOME$\j2ee\Oracle9iDS\application-deployments\forms\forms90web\orion-web.xml
    Insert the line
    AliasMatch ^/forms90/webutil/(..*) "D:\Forms9i\forms90\webutil/$1"
    in the file
    $ORACLE_HOME$/forms90/server/forms90.conf
    Of course You have to replace D:\forms9i with your Oracle Home.
    L.

  • OAS 4.0.8 Error (FRM-99999,Registry.dat is missing

    Hi
    I installed OAS 4.0.8 on NT 4 SP5 and then configured. I ran all
    the services manually using command prompt and no error was
    detected, but when I tried to access my Developer 6 Forms files
    through browser, I got this Error after the Splash Screen was
    displayed :
    FRM-9999:<hostname>.<domain>/<virtual_path>/oracle/forms/registry
    /Registry.Dat is missing
    and file Registry.Dat is exist in this directory,
    E:\orant\forms60\java\oracle\forms\registry\
    Please advice me, I really appreciate.
    Thanks in advance.
    null

    Our users were experiencing this problem. It was related to the proxy exception list that our web browsers were using.
    In IE6, Tools > Internet Options > Connections > LAN Settings > Advanced (Proxy Server Settings) > Exceptions (bottom of screen).
    Ensure that these are set correctly, the browser may be trying to look out on the internet for the URL your web deployed application is running on, as it is not in your proxy exception list.
    I'd be interested in knowing if this resolves the issue for you, it's worked for us.
    Jayesh Kavia

  • Begin with new BO 4 Java sdk

    Hi all,
    I have to begin to use the new API 4.0 to upgrade our project which are using the API 3.x.
    It's my first use of the API.
    I simply will follow an example but I get an error (program on my local computer) :
    try {
                   URL boConURL = new URL("http://<Server>/dswsbobje/services/");
                   Connection boConnection = new Connection(boConURL);
                   EnterpriseCredential boCredential = EnterpriseCredential.Factory.newInstance();
                   boCredential.setLogin("user");
                   boCredential.setPassword("passwd");
                   Session boSession = new Session(boConnection);
                   SessionInfo boSI = boSession.login(boCredential);
              catch(Exception e) {
                   System.out.println(e.getMessage());
                   e.printStackTrace();
    I get the following error :
    login exception (Error: WSE 99999)
    org.apache.axis2.AxisFault: login exception (Error: WSE 99999)
         at com.businessobjects.dsws.Consumer.CreateAxisFault(Unknown Source)
         at com.businessobjects.dsws.Consumer.propagateAsDSWSException(Unknown Source)
         at com.businessobjects.dsws.session.Session.login(Unknown Source)
         at be.degroof.test.TestAPI.main(TestAPI.java:24)
    Do I miss something?
    In fact, it seems my collega was using the ReportEngine to refresh report and download them and it will be deprecated in the next API 4.0?
    Thanks in advance for all your help !

    Use:
    URL boConURL = new URL("http://<Server>/dswsbobje/services/Session");
    and not
    http://<Server>/dswsbobje/services/Session
    Also are you possibly missing the port in the address? If dswsbobje is deployed on default tomcat in 4.0, the address should be:
    http://servername:8080/dswsbobje/services/Session
    Also make sure you have added all the 4.0 WS consumer SDK Jar files to your project's classpath.
    Edited by: Aasavari Bhave on Nov 15, 2011 8:32 AM

  • Can't connect SAP BW via Live Office and Crystal Report

    Hi all,
    I got error when I tried to refreh with connection refresh button in below environment.
    Does anyone know the cause of this problem?
    <System Configuration in my environment>
    SAP BI Bex Query(Data Source) --> Crystal Report(in Infoview) --> Live Office --> Xcelsius
    <Error>
    LO 26608 (under Enterprise Authentication)
    LO 02010 (under SAP Authentication *1)
    *1 I followed the instruction of below blog.
    /people/ingo.hilgefort/blog/2008/10/07/businessobjects-and-sap-part-2-of-4--creating-a-xcelsius-dashboard-on-top-of-sap-bi
    <Environment>
    Xcelsius 2008 SP1 Fix Pack 3
    Crystal Report 2008
    Live Office XI 3.1 Version 12.1.0.882
    SAP BI 7.0 (SAPKW 70016)
    Regards,
    Hiroyasu

    Hi,
    Thanks for your response. Please see below answers to your question:
    When you say that you are not able to connect from Word Live office to server - in this are you able to see Live Office tab in word document?
    Yes, I can see the Live Office tab. When I try to connect to the server to insert a crystal report I get the message "constructor exception (error: WSE 99999) Unknown error "-1""
    Did the installation process was done properly?
    As far as I am aware, yes.
    Which version of Live office you are using? because it will help to proceed further.
    LIVE OFFICE XI 3.1 (version 12.1.0.882)
    Where exactly you are not getting the Crystal Reports Options? Are you facing any error message?If Yes then what is the error message.
    Please see above
    Are you able to login to server successfully?
    I can in Excel in Live office but not in Word. As per the first message, I cannot see an option in Crystal to publish a crystal report. Do you know how I can do this? As I understand I need to publish it to the server and then Live Office will be able to see it.
    Regards
    Asha.

  • Client found response content type of 'text/html;charset=iso-8859-1', but expected 'text/xml'.

    Hello All,
    I am on BI 4.0 SP6.
    I am login to Advance Analysis Office using sso with Authentication : Windows AD, but when i login errors occurs:
    Client found response content type of 'text/html;charset=iso-8859-1', but expected 'text/xml'.
    The request failed with the error message:
    I have done all settings and configuration for SSO as per following notes:
    http://service.sap.com/sap/support/notes/1631734
    http://service.sap.com/sap/support/notes/1646920
    http://service.sap.com/sap/support/notes/1794675
    Earlier i was getting Login Exception Error WSE : 99999, i did some changes, after that the above error is coming
    Does anybody knows the solution?
    KR,
    MD

    refer the below note
    1785270 - How to configure AD SSO for Advance Analysis for MS Office with Business Objects BI 4.0

  • Advanced Analysis MS Office 1.3 ramp-up: when and what ?

    Hello all,
    Is there any news about Advanced Analysis MS Office 1.3 ramp-up:
    when starting and what new functionality will be adding?

    Dear Diego Ferrary
    SBO Analysis 1.1/1.2 's Web service URL  WSURL is not resolved, hence not able to login to the server.
    The Error Log shows
    General .NET Exception:
    GetServerInfo exception (Error: WSE 99999)
       at BusinessObjects.DSWS.Session.Session.GetServerInfo()
       at com.sap.ip.bi.pioneer.core.boe.CrBoeInternalServiceBase.CheckBoeSystem(CoBoeSystemInfo iSystemInfo, ICrUrlValidatedResult& oUrlValidateResult, CrDSWSVersionEnum& oVersion, String& oErrorMessage)
         | 2012-02-29T18:08:42     |
    But the same WSURL is working in Live Office Connection.
    Am i missing something.
    kind regards
    Bala

  • FRM-99999 error: client will not be able to continue

    *) I am using deverloper 6.0 and deploying forms 6.0 on the web
    and using netscape browser 4.0.6 and oracle 8i as database.I have
    configured everything according to the help given in developers
    online documents.In the status bar of the browser it shows:
    Applet oracle.forms.engine.Main error: class
    oracle/forms/engine/Main got a security violation: method
    verification error
    *)While in the browser's java console it shows:
    Netscape Communications Corporation -- Java 1.1.5Type '?' for
    options.Symantec Java! ByteCode Compiler Version 210.065
    Copyright (C) 1996-97 Symantec Corporation
    # Error: Invalid Hash of this JAR entry (-7882)
    # jar file: C:\TEMP\jzip5HKR.TMP
    # path: oracle/ewt/alert/Alert.class
    # Error: Strange PKCS7 or RSA failure (-7881)
    # jar file: C:\TEMP\jzip5HKR.TMP
    # path: C:\TEMP\jzip5HKR.TMP
    # Error: loading of signatures has failed (-1)
    # jar file: C:\TEMP\jzip5HKR.TMP
    # path: /f60code/
    # Verifier error oracle/forms/engine/Main.init()V: Cannot find
    class sun/applet/AppletViewer
    # Applet exception: class oracle/forms/engine/Main got a security
    violation: method verification errorjava.lang.VerifyError:
    oracle/forms/engine/Main at
    java.lang.ClassLoader.resolveClass(Compiled Code) at
    netscape.applet.AppletClassLoader.loadClass1(Compiled Code)* at
    netscape.applet.AppletClassLoader.loadClass(Compiled Code) at
    netscape.applet.AppletClassLoader.loadClass(Compiled Code) at
    netscape.applet.DerivedAppletFrame$LoadAppletEvent.dispatch(Compi
    led Code) at
    java.awt.EventDispatchThread$EventPump.dispatchEvents(Compiled
    Code) at java.awt.EventDispatchThread.run(Compiled Code) at
    netscape.applet.DerivedAppletFrame$AppletEventDispatchThread.run(
    Compiled Code)
    *)Now having this problem if we reload the browser the applet
    appears in the browser and the form opens but after some time it
    gives the following error:
    FRM 99999 A network error occured the client will not be able
    to continue
    Details ... Java Exception:java.net SocketException: Socket
    closed
    *)While using forms 5.0, I succesfully deploy the forms on the
    web,but the same error occurs here also after some time:
    FRM 99999 A network error occured the client will not be able
    to continue
    Details ... Java Exception:java.net SocketException: Socket
    closed
    Please let me know if there is anything more i have to configure
    or any NT Service patch or any thing else to install.
    IF ANY ONE KNOWS ABOUT THIS ERROR PLEASE RESPOND
    HARJEET
    null

    Harjeet,
    The current implementation of java in either IE or NS are not
    able to run the classes of Oracle developper...
    You should install the Jinitiator that comes with the Dev6.
    Look for the Object or Embed syntax in the release note or the
    Online manual for the complete syntax.
    Here is a hint:
    <EMBED type="application/x-jinit-applet;version=1.1.7.11"
    width="10" height="10"
    code="oracle.forms.engine.Main" codebase="/form60code/"
    archive ="/form60code/f60small.jar"
    serverPort="9000"
    serverArgs="module=visaphone.fmx userid=use/pass@con"
    serverApp ="default"
    colorScheme="blue"
    separateFrame= "true"
    splashScreen="yes"
    background="no"
    pluginspage="http://new_age/unc-html/jinit_download.htm">
    </EMBED>
    harjeet bakshi (guest) wrote:
    : *) I am using deverloper 6.0 and deploying forms 6.0 on the web
    : and using netscape browser 4.0.6 and oracle 8i as database.I
    have
    : configured everything according to the help given in developers
    : online documents.In the status bar of the browser it shows:
    : Applet oracle.forms.engine.Main error: class
    : oracle/forms/engine/Main got a security violation: method
    : verification error
    : *)While in the browser's java console it shows:
    : Netscape Communications Corporation -- Java 1.1.5Type '?' for
    : options.Symantec Java! ByteCode Compiler Version 210.065
    : Copyright (C) 1996-97 Symantec Corporation
    : # Error: Invalid Hash of this JAR entry (-7882)
    : # jar file: C:\TEMP\jzip5HKR.TMP
    : # path: oracle/ewt/alert/Alert.class
    : # Error: Strange PKCS7 or RSA failure (-7881)
    : # jar file: C:\TEMP\jzip5HKR.TMP
    : # path: C:\TEMP\jzip5HKR.TMP
    : # Error: loading of signatures has failed (-1)
    : # jar file: C:\TEMP\jzip5HKR.TMP
    : # path: /f60code/
    : # Verifier error oracle/forms/engine/Main.init()V: Cannot find
    : class sun/applet/AppletViewer
    : # Applet exception: class oracle/forms/engine/Main got a
    security
    : violation: method verification errorjava.lang.VerifyError:
    : oracle/forms/engine/Main at
    : java.lang.ClassLoader.resolveClass(Compiled Code) at
    : netscape.applet.AppletClassLoader.loadClass1(Compiled Code)* at
    : netscape.applet.AppletClassLoader.loadClass(Compiled Code) at
    : netscape.applet.AppletClassLoader.loadClass(Compiled Code) at
    netscape.applet.DerivedAppletFrame$LoadAppletEvent.dispatch(Compi
    : led Code) at
    : java.awt.EventDispatchThread$EventPump.dispatchEvents(Compiled
    : Code) at java.awt.EventDispatchThread.run(Compiled Code) at
    netscape.applet.DerivedAppletFrame$AppletEventDispatchThread.run(
    : Compiled Code)
    : *)Now having this problem if we reload the browser the applet
    : appears in the browser and the form opens but after some time
    it
    : gives the following error:
    : FRM 99999 A network error occured the client will not be
    able
    : to continue
    : Details ... Java Exception:java.net SocketException: Socket
    : closed
    : *)While using forms 5.0, I succesfully deploy the forms on the
    : web,but the same error occurs here also after some time:
    : FRM 99999 A network error occured the client will not be
    able
    : to continue
    : Details ... Java Exception:java.net SocketException: Socket
    : closed
    : Please let me know if there is anything more i have to
    configure
    : or any NT Service patch or any thing else to install.
    : IF ANY ONE KNOWS ABOUT THIS ERROR PLEASE RESPOND
    : HARJEET
    null

  • FRM-99999 Error !8121

    hi dear all
    when i click on "Run Form Web" i received following error
    FRM-99999 Error 18121 please help me in this matter its urgent
    thanks

    nothing here in the forum is urgent !
    this is a little bit from google :
    http://ftp.unex.es/oradoc/oracle9ias_release_1/doc/a90460/toc.htm
    http://www.oracle.com/technology/documentation/forms/6idocs/relnotef_p17_s.pdf

  • FRM 99999 : Error 7343

    Hi all!
    I have this error,
    FRM 99999: Error 7343 ocurred. See the release notes file(relnotes) for information about this error,
    but I haven4t found information about this error in the release notes file.
    Thanks,
    Raquel
    null

    Hello, FRM-99999 Error 7343 check release relnotes
    I am having the same error message since I applied Patch 9 to 6i.In fact I tried other patches as well. Same Error Message. Put this problem did not occur before that. Base 6i. Message said relnotes but I cannot find where to go for relnotes. I know that this is a BUG but how do I let oracle development know about it.
    I would like to have this fixed ASAP.
    Thank you
    Dennis Aubrey. Dimplex North America

  • Error while installing NW7.3 ABAP for DB2 on z/OS Install DB CLI driver

    Dear Experts,
    i'm installing for the first time NW7.3 ABAP for DB2 on z/OS with AIX application server. Central Services was installed succesfull but next step Install Database on AIX stoped with error (establishConn.log):
    db2radm (release: "720", patch level: "000", version: "Jan 14 2012") begin:28.02.2012 10:54:39
    This is db2radm release: "720", patch level: "120", version: "Jan 14 2012".
    This is db2radm setting up DB2 Connect.
    Message file is /sapmnt/tmp/sapinst_instdir/NW73/INSTALL/NW73/DB2/HA/PI/DB/establishConn.log.
    db2radm called as: /usr/sap/DW8/SYS/exe/uc/rs6000_64/db2radm -m db2i -P 456 -L DW8DDF -S DW88 -H s10d1 -u SAPADM -p ******** -W primary_only -l /sapmnt/tmp/sapinst_instdir/NW73/INSTALL/NW73/DB2/HA/PI/DB/establishConn.log
    Adjusting environment
      dbs_db2_ssid=DW88
      SAPDBHOST=s10d1
      dbs_db2_user=SAPADM
      dbs_db2_schema=SAPADM
      dbs_db2_schema8=1
      dbs_db2_pw=********
    Checking environment
      DB host    = s10d1
      SSID       = DW88
      SAPSYSTEMNAME = DW8
    DB2Trc:    000000 CLI_ALLOC_ENV 1
    connect.ini file used: 'connect.ini.for.db2radm'
    Fail over connection list of this application server:
    NAME       = DW88_on_s10d1             
    USER       = SAPADM                    
    PASSWORD   = <***>                     
    SCHEMA     = SAPADM                    
    PS         = SAP0907U                  
    LOCATION   = DW8DDF                    
    SSID       = DW88                      
    HOST       = s10d1                     
    PORT       = 456                       
    RETRY_CNT  = 3                         
    SLEEP_TIME = 0                         
    DB2Trc: trace level of dbdb2cli set to 1
    COLLECTION ID used is "SAP0907U"
    DB2 Call 'SQLDriverConnectW' Warning: SQLCODE = 8007 : [IBM][CLI Driver][DB2] SQL8007W  There are "90" day(s) left in the evaluation period for the product "DB2 Connect". For evaluation license terms and conditions, refer to the License Agreement document located in the license directory in the installation path of this product. If you have licensed this product, ensure the license key is properly registered. You can register the license via the License Center or db2licm command line utility. The license key can be obtained from your licensed product CD.  SQL
    use lib_dbsl for DB2 version V9.
    Callback functions for dynamic profile parameter registered
    DbSl library successfully loaded.
    WARNING: schema with 8 bytes length allowed; shadow upgrate will not work
    dbs/db2/use_accounting != 1 -> DB2 accounting is switched off
    dbs/db2/use_drda_lob_handling != 1 -> SAP LOB handling is used
    dbs/db2/chaining = 20 -> CLI CHAIN optimization is switched on
    dbs/db2/opt2_hint = 1 -> implicit 'optimize for 1 rows' hint is switched off
    SQL DRIVER VERSION is "09.07.0003"
    DB2Connect driver identified as THIN CLIENT
    Now I'm connected to DW88_on_s10d1
    DB2 DBMS version 09.01.0005
    DB2 LOCATION name DW8DDF
    (HYB): Info: Using OLD dbsl support.
    DB2 connect shared library loaded successfully.
    09.07.0003DB2Connect driver identified as THIN CLIENT
    WARNING: schema with 8 bytes length allowed; shadow upgrate will not work
    dbs/db2/use_accounting != 1 -> DB2 accounting is switched off
    dbs/db2/use_drda_lob_handling != 1 -> SAP LOB handling is used
    dbs/db2/chaining = 20 -> CLI CHAIN optimization is switched on
    dbs/db2/opt2_hint = 1 -> implicit 'optimize for 1 rows' hint is switched off
    DBSLHA: Got Failover profile /usr/sap/DW8/SYS/global/connect.ini
    DBSLHA: Using new Failover Support
    DBSLHA: Using user(  SAPADM) and password(<pwd>) from profile.
    DBSLHA:
    DBSLHA:Connection List
    DBSLHA:
    DBSLHA:NAME      |HOST      |SSID|COLLECTION  |PLAN    |PORT             |SCHEMA  |OWNER   |LOCATION  |RETRY|SLEEP|                                                                               
    DBSLHA:--|||||||||-|---|                                                                               
    DBSLHA:DW88_on_s1|s10d1     |DW88|SAP<DB2Conne|        |                 |SAPADM  |SAPADM  |DW8DDF    |00003|00000|                                                                               
    DBSLHA:--|||||||||-|---|                                                                               
    GetHaProfile: GetHaProfile: found 1 connections in connection profile.
    GetHaProfile: found section DW88_on_s10d1, ssid DW88, port 456, location DW8DDF, host s10d1  in connection profile
    connection profile /usr/sap/DW8/SYS/global/connect.ini opened.
    >>>>>> dump of connection profile
    ADDED 20120228 103331 by DB2RADM RELEASE 720 PATHLEVEL 000
      [DEFAULT_GROUP]
      CON1=DW88_on_s10d1
      [DW88_on_s10d1]
      SSID=DW88
      HOST=s10d1
      PORT=456
      LOCATION=DW8DDF
    <<<<<< end of dump of connection profile
    ssid DW88 found in connection profile, section DW88_on_s10d1.
    >>> analyse line:  * ADDED 20120228 103331 by DB2RADM RELEASE 720 PATHLEVEL 000
    >>> analyse line:  [DEFAULT_GROUP]
    >>> analyse line:  CON1=DW88_on_s10d1
    >>> analyse line: 
    >>> analyse line:  [DW88_on_s10d1]
    section DW88_on_s10d1 found.
    >>> analyse line:  SSID=DW88
    >>> analyse line:  HOST=s10d1
    >>> analyse line:  PORT=456
    >>> analyse line:  LOCATION=DW8DDF
    >>> analyse line:  section DW88_on_s10d1 found and data matches.
    backup connection profile /usr/sap/DW8/SYS/global/connect.ini .
    switch connection profile /usr/sap/DW8/SYS/global/connect.ini .
    check for adapted connection profile.
    WARNING: schema with 8 bytes length allowed; shadow upgrate will not work
    dbs/db2/use_accounting != 1 -> DB2 accounting is switched off
    dbs/db2/use_drda_lob_handling != 1 -> SAP LOB handling is used
    dbs/db2/chaining = 20 -> CLI CHAIN optimization is switched on
    dbs/db2/opt2_hint = 1 -> implicit 'optimize for 1 rows' hint is switched off
    DBSLHA: Got Failover profile /usr/sap/DW8/SYS/global/connect.ini
    DBSLHA: Using new Failover Support
    DBSLHA: Using user(  SAPADM) and password(<pwd>) from profile.
    DBSLHA:
    DBSLHA:Connection List
    DBSLHA:
    DBSLHA:NAME      |HOST      |SSID|COLLECTION  |PLAN    |PORT             |SCHEMA  |OWNER   |LOCATION  |RETRY|SLEEP|                                                                               
    DBSLHA:--|||||||||-|---|                                                                               
    DBSLHA:DW88_on_s1|s10d1     |DW88|SAP<DB2Conne|        |                 |SAPADM  |SAPADM  |DW8DDF    |00003|00000|                                                                               
    DBSLHA:--|||||||||-|---|                                                                               
    GetHaProfile: GetHaProfile: found 1 connections in connection profile.
    GetHaProfile: found section DW88_on_s10d1, ssid DW88, port 456, location DW8DDF, host s10d1  in connection profile
    ssid DW88 found in connection profile, section DW88_on_s10d1.
    check for adapted connection profile passed.
    WARNING: schema with 8 bytes length allowed; shadow upgrate will not work
    dbs/db2/use_accounting != 1 -> DB2 accounting is switched off
    dbs/db2/use_drda_lob_handling != 1 -> SAP LOB handling is used
    dbs/db2/chaining = 20 -> CLI CHAIN optimization is switched on
    dbs/db2/opt2_hint = 1 -> implicit 'optimize for 1 rows' hint is switched off
    DBSLHA: Got Failover profile /usr/sap/DW8/SYS/global/connect.ini
    DBSLHA: Using new Failover Support
    DBSLHA: Using user(  SAPADM) and password(<pwd>) from profile.
    DBSLHA:
    DBSLHA:Connection List
    DBSLHA:
    DBSLHA:NAME      |HOST      |SSID|COLLECTION  |PLAN    |PORT             |SCHEMA  |OWNER   |LOCATION  |RETRY|SLEEP|                                                                               
    DBSLHA:--|||||||||-|---|                                                                               
    DBSLHA:DW88_on_s1|s10d1     |DW88|SAP<DB2Conne|        |                 |SAPADM  |SAPADM  |DW8DDF    |00003|00000|                                                                               
    DBSLHA:--|||||||||-|---|                                                                               
    GetHaProfile: GetHaProfile: found 1 connections in connection profile.
    GetHaProfile: found section DW88_on_s10d1, ssid DW88, port 456, location DW8DDF, host s10d1  in connection profile
    WARNING: schema with 8 bytes length allowed; shadow upgrate will not work
    dbs/db2/use_accounting != 1 -> DB2 accounting is switched off
    dbs/db2/use_drda_lob_handling != 1 -> SAP LOB handling is used
    dbs/db2/chaining = 20 -> CLI CHAIN optimization is switched on
    dbs/db2/opt2_hint = 1 -> implicit 'optimize for 1 rows' hint is switched off
    DBSLHA: Got Failover profile /usr/sap/DW8/SYS/global/connect.ini
    DBSLHA: Using new Failover Support
    DBSLHA: Using user(  SAPADM) and password(<pwd>) from profile.
    DBSLHA:
    DBSLHA:Connection List
    DBSLHA:
    DBSLHA:NAME      |HOST      |SSID|COLLECTION  |PLAN    |PORT             |SCHEMA  |OWNER   |LOCATION  |RETRY|SLEEP|                                                                               
    DBSLHA:--|||||||||-|---|                                                                               
    DBSLHA:DW88_on_s1|s10d1     |DW88|SAP<DB2Conne|        |                 |SAPADM  |SAPADM  |DW8DDF    |00003|00000|                                                                               
    DBSLHA:--|||||||||-|---|                                                                               
    SQL DRIVER VERSION is "09.07.0003"
    DB2Connect driver identified as THIN CLIENT
    DB2Trc: 00 000000 cli_get_cli_driver_bld_level 1 s101006
    SQL DRIVER NAME is "libdb2.a"
    SQL DBMS NAME is "DB2"
    SQL DBMS VERSION is "09.01.0005"
    DATABASE NAME(DB2 Connect DCS database name) is "DW8DDF"
    The bind is skipped since collection for ssid DW88 is already bound.
    To force the bind, use option "-B force".
    DB2TRC: 0000000000 00      000000   CLI_DISCONNECT
    DB2TRC: 0000000000 00      000000   CLI_FREE_DBC 1
    DB2TRC: 0000000000 00      000000   CLI_FREE_ENV 1
    DB VERSION is 09.01.0005.
    Starting Grants .
    DB2Trc:    000000 CLI_ALLOC_ENV 1
    COLLECTION ID used is "SAP0907U"
    DB2 Call 'SQLDriverConnectW' Warning: SQLCODE = 8007 : [IBM][CLI Driver][DB2] SQL8007W  There are "90" day(s) left in the evaluation period for the product "DB2 Connect". For evaluation license terms and conditions, refer to the License Agreement document located in the license directory in the installation path of this product. If you have licensed this product, ensure the license key is properly registered. You can register the license via the License Center or db2licm command line utility. The license key can be obtained from your licensed product CD.  SQL
    Connecting to <DW88_on_s10d1> on connection 0 ...
    Now I'm connected to DB2 (09.01.5)
    SQL DRIVER NAME is "libdb2.a"
    SQL DBMS NAME is "DB2"
    SQL DBMS VERSION is "09.01.0005"
    DATABASE NAME(DB2 Connect DCS database name) is "DW8DDF"
    New functions of DB2 V9 are switched on
    Profile parameter dbs/db2/cli_trace_dir is not set
    dbdb2dic.c 1709 INFO    Profile: SDB2_DEBUG=<UNSET>                                                                           
    dbdb2dic.c 1733 INFO    Envrmnt: sdb2_debug=<UNSET>                                                                           
    dbdb2dic.c 1733 INFO    Envrmnt: SDB2_DEBUG=<UNSET>                                                                           
    DB2 Call 'CLI_EXECUTE' Error: sqlcode = -204 : [IBM][CLI Driver][DB2] SQL0204N  "SAPADM.#LOBU" is an undefined name.  SQLSTATE=42704
    dbdb2dic.c 2251 INFO    rc=103,sqlcode=-204: ExeRead                                                                          
    dbdb2dic.c 1709 INFO    Profile: dbs/db2/max_retry=<UNSET>                                                                    
    dbdb2dic.c 1733 INFO    Envrmnt: DB2_MAX_RETRY=<UNSET>                                                                        
    dbdb2dic.c 1709 INFO    Profile: dbs/db2/retry_on_924=<UNSET>                                                                 
    dbdb2dic.c 1733 INFO    Envrmnt: DB2_RETRY_ON_924=<UNSET>                                                                     
    dbdb2dic.c 1709 INFO    Profile: dbs/db2/no_retry_on_10=<UNSET>                                                               
    dbdb2dic.c 1733 INFO    Envrmnt: dbs_db2_no_retry_on_10=<UNSET>                                                               
    dbdb2dic.c 1733 INFO    Envrmnt: DBS_DB2_NO_RETRY_ON_10=<UNSET>                                                               
    DB2 Call 'SQLEndTran' Error: sqlstate = 08003 : [IBM][CLI Driver] CLI0106E  Connection is closed. SQLSTATE=08003
    [dbdb2dic.c  1873:rc=99: COMMIT WORK failed]
    dbdb2dic.c 1873 ERROR   rc=99: COMMIT WORK failed                                                                             
    [dbdb2dic.c  2019:rc=99,sqlcode=268435455: ExecDDL failed (DB error)]
    dbdb2dic.c 2019 ERROR   rc=99,sqlcode=268435455: ExecDDL failed (DB error)                                                    
    DB2 Call 'SQLEndTran' Error: SQLCODE = -99999 : [IBM][CLI Driver] CLI0106E  Connection is closed. SQLSTATE=08003
    ROLLBACK failed with SQL error '-99999'
    ERROR: couldn't connect to DB
    rc = 99
    error message returned by DbSl:
    rc=99,sqlcode=268435455: ExecDDL failed (DB error)
    DB2RADM EXITCODE: 12
    db2radm finished (0012)
    db2radm stop:28.02.2012 10:54:39
    i've patched db2radm and sapinst to the latest version.
    May be i should manually create "SAPADM.#LOBU"?
    Please help to solve these issue.
    Best regards,
    Alexander V

    Hi ,
    Please check if Note 1581637 - Installing a System with DB2CODEPAGE other than the default is useful.
    Award points if useful.
    Thanks,
    Ravi

  • Forms 6i Run Form Web Preview Error

    Help! Help! Help! Help! Help! Help! Help!
    Nt 4.0, SP6A
    Forms and Reports 6i (installed first, Home0)
    Oracle 8i Client for database management
    (installed 2nd, Home1)
    Home selector selected for Home0
    When running web preview I get the following error: FRM-99999: Error 18114 occurred. See the release notes file (relnotes) for information about this error.
    Release notes suggestes the following
    FRM-18114: FORMS60_JAVADIR not set.
    Cause: For Web Preview from the Builder to work the Registry variable
    ORMS60_JAVADIR must point to the location
    that contains the Forms Java files. This
    varable should have been set by the Oracle Installer when Oracle Forms Developer was installed. A typical value for this variable is c:\orant\forms60\java.
    Action: Create or update the registry variable on NT, FORMS60_JAVADIR, and set its value to the location that contains the Forms Java files.
    I created a registry entry in HKEY_LOCAL_MACHINE, SOFTWARE, HOME0 containing the following: FORMS60_JAVADIR:REG_EXPAND_SZ:C:\Oracle\Dev6i\Forms60\java
    The error persists.
    Has anyone experiences this problem or have
    any ideas. Thanks in advance for help.
    null

    Theresa,
    More than likely, you need to change the properties of the Forms Runtime (ifrun60.exe) to run in Windows XP mode and run with Administrator privileges. Since Oracle Forms 6i is so old it does not work very well with the new security model of Windows 7.
    Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • Forms 6i Error FRM-18114

    Nt 4.0, SP6A
    Forms and Reports 6i (installed first, Home0)
    Oracle 8i Client for database management
    (installed 2nd, Home1)
    Home selector selected for Home0
    When running web preview I get the following error: FRM-99999: Error 18114 occurred. See the release notes file (relnotes) for information about this error.
    Release notes suggestes the following
    FRM-18114: FORMS60_JAVADIR not set.
    Cause: For Web Preview from the Builder to work the Registry variable
    ORMS60_JAVADIR must point to the location
    that contains the Forms Java files. This
    varable should have been set by the Oracle Installer when Oracle Forms Developer was installed. A typical value for this variable is c:\orant\forms60\java.
    Action: Create or update the registry variable on NT, FORMS60_JAVADIR, and set its value to the location that contains the Forms Java files.
    I created a registry entry in HKEY_LOCAL_MACHINE, SOFTWARE, HOME0 containing the following: FORMS60_JAVADIR:REG_EXPAND_SZ:C:\Oracle\Dev6i\Forms60\java
    The error persists.
    Has anyone experiences this problem or have
    any ideas. Thanks in advance for help.
    null

    You may be hitting Bug:1632441, which is fixed in patchset 12. If either form has a When-Window-Deactivated trigger, try disabling that and see if you still have the problem. If not, then as a workaround you may be able to put that logic in a when-form-navigate trigger instead. Or you can programmatically trap the error in an On-Error trigger if you are actually able to navigate out of the form. See the bug for more details.

  • FRM-99999: Failed to connect to the Server / UNIX

    Upon invoking
    http://hostname.domainname:1080/web_html/olftest.htm
    I am getting the following error:
    FRM-99999: Failed to connect to the Server:
    hostname.domainname:9000
    We are using the following:
    =========================
    Server:
    Unix : Sun Solaris 2.5.1
    Oracle Application Server 4.0.7 and Oracle Developer 6 Server
    are on the same machine
    Oracle Server 8.0.5
    Client machine:
    Windows NT 4 Workstation with SP3,
    Internet Explorer 4.0.1 SP1 with Jinitiator - 1.1.7.11
    We tried following commands to get the Developer 6 Server up and
    running on port 9000 under Unix:
    $ f60ctl start port=9000
    port=9000
    Choosing default pool 1 for this process...
    1
    Forms environment:
    ORACLE_HOME = /opt/oracle/805
    PATH =
    /opt/oracle/805/bin:/opt/oracle/805/ows/4.0/bin:/opt/oracle/805/o
    rb/4.0/admin/cgi:/opt/oracle/805/orb/4.0/bin:/opt/oracle/805/ots/
    1.0/bin:/opt/oracle/805/ows/4.0/jdk/bin:/opt/oracle/805/bin:/usr/
    bin:/usr/ucb:/usr/ccs/bin:/etc:/usr/sbin:/usr/openwin/bin:/usr/lo
    cal/bin:/opt/oracle/805/bin:/opt/bin:/usr/ccp/bin
    LD_LIBRARY_PATH =
    /opt/oracle/805/lib:/opt/oracle/805/orb/4.0/lib:/opt/oracle/805/o
    ws/4.0/lib:/opt/oracle/805/ots/1.0/lib:/opt/oracle/805/lib:/opt/o
    racle/805/lib:/usr/x11r5/lib:/usr/openwin/lib
    FORMS60_PATH = /opt/oracle/805/forms60/html:
    Forms listener started on port 9000.
    $ f60webm
    $ f60srvm
    Failed to bind Launcher to port 9000
    A Developer 6 Server under Windows NT is working fine.
    The Windows NT 4 workstation contains registry settings
    corresponding to this previous Developer Forms Server 6
    configuration on Windows NT. We configured the Developer 6
    Server under Windows NT using the tutorial in %
    ORACLE_HOME%/tools/devdem60/web/readme.htm.
    From a discussion with the Unix DBA team we concluded that this
    tutorial is Windows NT specific.
    Does anyone happen to have a tutorial on deploying Oracle Forms
    to the Web specifically for Developer 6 Server and OAS4 under
    UNIX.
    Which Unix Developer 6 Server environment variables do I have to
    set under Unix for deployment of forms 6.0 on the web?.
    olftest.htm
    <HTML>
    <HEAD>
    <TITLE>Oracle Developer Server and Oracle JInitiator</TITLE>
    <X-CLARIS-WINDOW TOP=25 BOTTOM=608 LEFT=4 RIGHT=927>
    </HEAD>
    <BODY BGCOLOR="#FFFFFF" BACKGROUND="web_bkgd.jpg">
    <TABLE BORDER=0>
    <TR>
    <TD WIDTH=234>
    <IMG SRC="web_anim.gif" WIDTH=230 HEIGHT=300
    ALIGN=bottom></P>
    </TD>
    <TD>
    <OBJECT classid="clsid:9F77a997-F0F3-11d1-9195-
    00C04FC990DC"
    WIDTH=700
    HEIGHT=550
    codebase="http://hostname.domainname:1080/web_html/Jinit.exe#Vers
    ion=1,1,7,11">
    <PARAM NAME="CODE"
    VALUE="oracle.forms.engine.Main" >
    <PARAM NAME="CODEBASE" VALUE="/web_code/"
    <PARAM NAME="ARCHIVE" VALUE="f60all.jar" >
    <PARAM NAME="type"
    VALUE="application/x-jinit-applet;version=1.1.7.11">
    <PARAM NAME="serverPort" VALUE="9000">
    <PARAM NAME="serverArgs"
    VALUE="module=/opt/oracle/805/tools/devdem60/web/start60.fmx
    userid=scott/tiger">
    <PARAM NAME="serverApp" VALUE="default">
    <COMMENT>
    <EMBED SRC="""
    PLUGINSPAGE="http:/hostname:1080/web_html/jinit_download.htm"
    WIDTH=700
    HEIGHT=550
    type="application/x-jinit-
    applet;version=1.1.7.11"
    java_code="oracle.forms.engine.Main"
    java_codebase="/web_code/"
    java_archive="f60all.jar"
    lookAndFeel="oracle"
    colorScheme="teal"
    serverport="9000"
    serverargs="module=start60.fmx
    userid=scott/tiger"
    serverapp=default>
    <NOEMBED>
    </COMMENT>
    </NOEMBED></EMBED>
    </OBJECT>
    </P>
    </TD>
    </TR>
    </TABLE>
    </P>
    </BODY>
    </HTML>
    Any help on this issue will be greatly appreciated,
    Erik
    null

    "NoRouteToHostException" => This looks like routing issues through the proxy server.
    You can involve network admin to take care of the settings at proxy , to allow connections through the proxy server.
    Cheers
    Rahul

Maybe you are looking for