How to debug embedded Java in BPEL

Is there a way to figure out why Java code embedded in a BPEL does not work?
JDev 11.1.1.4

What's not working??

Similar Messages

  • Using embedded Java in BPEL 2.0

    I have found a lot of write ups but am having difficulty.
    My problem is a failure to deploy by composite. I get the message below:
    Redeploying on /Farm_soadev_domain/soadev_domain/AdminServer ...
    Redeploying on "/Farm_soadev_domain/soadev_domain/AdminServer" failed!
    There was an error deploying/undeploying composite on AdminServer: Error occurred during deployment of component: formatDate to service engine: implementation.bpel for composite: formatData: ORABPEL-05250
    Error deploying BPEL suitcase.
    error while attempting to deploy the BPEL component file "E:\Oracle\Middleware\user_projects\domains\soadev_domain\servers\AdminServer\dc\soa_c8abc64b-8475-4479-b54b-b36e4f44c37a"; the exception reported is: java.lang.RuntimeException: failed to compile execlets of formatDate
    This error contained an exception thrown by the underlying deployment module.
    Verify the exception trace in the log (with logging level set to debug mode).
    To simplify the issue I have reduced my code snippet to:
    /*Write your java code below e.g.
      System.out.println("Hello, World");
    String testOne = "Hi Mom";
    The embedded section looks like:
        <extensionActivity>
          <bpelx:exec name="decodeBinary" language="java">
            <![CDATA[
    /*Write your java code below e.g. 
      System.out.println("Hello, World");
    String testOne = "Hi Mom";]]>
          </bpelx:exec>
        </extensionActivity>

    I read the blog post here
    Embedding Java in BPEL process
    Based on that I created this test class to help write code:
    The bolded code is the snippet I actually want to implement when I can solve the problem above.
    package com.f17.customfunction;
    import com.collaxa.cube.engine.ext.bpel.v1.nodes.BPELXExecLet;
    public class codeTyper extends BPELXExecLet {
        public codeTyper() {
            super();
        public void exec(){
         // below code gets pasted in here
    String input = (String)getVariableData("testfile");
    oracle.soa.common.util.Base64Decoder Decoder = new oracle.soa.common.util.Base64Decoder(); 
    try { 
    byte[] decodedByteArray = oracle.soa.common.util.Base64Decoder.decode(input.getBytes());
    setVariableData("compANDstore_merge_InputVariable.AusCreditCollection/ns2:AusCredit/ns2:fileData,decodedByteArray",decodedByteArray);
    } catch(Exception e) {
    e.printStackTrace();

  • Error while embedding java into BPEL

    Hi Guys,
    I am getting the following error while embedding Java into BPEL.
    Error: C:\unzipjdev\jdev\system\oracle.j2ee.10.1.3.41.57\embedded-oc4j\.client (The system cannot find the file specified)
    i checked for .client content , it is not available in the directory.
    Does anybody know about this?

    could you please provide the java exec code snippet that you use in bpel? there is a sample under samples/references/JavaExec

  • Embedded Java And BPEL

    Hi All
    I need some very urgent help. I had been working on TIBCO and XI till now and in a project currently using Oracle Fusion. I need to query a data from an LDAP service and post a collection of employees into a JMS Queue as an XML. Now I tried using Embedded java to query the LDAP service and that works fine and it returns me the employee details. I have an XSD file that represents how the data needs to be presented. I imported the XSD file into my project and created a variable of element type and chose the schema to be the XSD which I am pasting below. I tried all kinds of ways to populate the data but I always get a selection failure error.
    I then just tried a simple setVariableData method to set the username and again i get the same error. How can I set the variable so that it returns me a collection back. Please help. I am pasting both the XSD as well as the java code that I tried to use. It would be great if someone could let me know what I have done wrong or is there any ways of doing this.
    Thanks so much
    <?xml version="1.0" encoding="windows-1252" ?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns="http://www.macerich.com/o2c"
    targetNamespace="http://www.macerich.com/o2c"
    elementFormDefault="qualified">
    <xsd:complexType name="LDAPEmployeeType">
    <xsd:sequence>
    <xsd:element name="UserId" type="xsd:string"/>
    <xsd:element name="firstName" type="xsd:string"/>
    <xsd:element name="lastName" type="xsd:string"/>
    <xsd:element name="operation" type="xsd:string"/>
    <xsd:element name="effectiveStartDate" type="xsd:date"/>
    <xsd:element name="effectiveEndDate" type="xsd:date"/>
    <xsd:element name="email" type="xsd:string"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:element name="LDAPEmployeeCollection">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="LDAPEmployee" type="LDAPEmployeeType" minOccurs="0" maxOccurs="unbounded"/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    <xsd:element name="Status" type="xsd:string"/>
    </xsd:schema>
    Java Code I have written
    try
    setVariableData("Variable_1","LDAPEmployeeCollection","/ns1:LDAPEmployee/ns1:UserId")
    catch(Exception e)
    setVariableData("Variable_2",e.toString());
    addAuditTrailEntry(e);
    }

    Hi Marc
    I tried what you had suggested but i always get a BPEL error stating a selection failure.
    Im pasting my Java Code here with
    try
    java.util.Hashtable env = new java.util.Hashtable();
    env.put(javax.naming.Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory");
    env.put(javax.naming.Context.PROVIDER_URL, "ldap://saturn:389");
    env.put(javax.naming.Context.SECURITY_AUTHENTICATION, "simple");
    env.put(javax.naming.Context.SECURITY_PRINCIPAL, "serenecorp\\rmohammed");
    env.put(javax.naming.Context.SECURITY_CREDENTIALS, "s3r3n3!");
    // Create initial context
    javax.naming.directory.DirContext ctx = new javax.naming.directory.InitialDirContext(env);
    //System.out.println(ctx.lookup("OU=Consultants,DC=serenecorp,DC=com "));
    // Specify the ids of the attributes to return
    String[] attrIDs = {"sn", "givenName", "mail", "createTimeStamp"};
    javax.naming.directory.SearchControls ctrls = new javax.naming.directory.SearchControls();
    ctrls.setReturningAttributes(attrIDs);
    // Specify the attributes to match
    //Attributes matchAttrs = new BasicAttributes(true);
    //matchAttrs.put(new BasicAttribute("sAMAccountName", "jale*"));
    String filter = "(&(sAMAccountName=*)(createTimeStamp>=20061116221624.0Z ))";
    //matchAttrs.put(new BasicAttribute("createTimeStamp", "> 20061115221624.0Z"));
    setVariableData("Variable_3","test2");
    // Search for objects that have those matching attributes
    //NamingEnumeration answer = ctx.search("OU=Consultants,DC=serenecorp,DC=com", matchAttrs, attrIDs);
    javax.naming.NamingEnumeration answer = ctx.search("OU=Consultants,DC=serenecorp,DC=com", filter, ctrls);
    javax.xml.parsers.DocumentBuilderFactory domFactory = null;
         javax.xml.parsers.DocumentBuilder domBuilder = null;
         domFactory = javax.xml.parsers.DocumentBuilderFactory.newInstance();
    domBuilder = domFactory.newDocumentBuilder();
         org.w3c.dom.Document newDoc = domBuilder.newDocument();
         org.w3c.dom.Element rootElement = newDoc.createElement("LDAPEmployeeCollection");
    rootElement.setAttributeNS("ns1","ns1","http://www.macerich.com/o2c");
    newDoc.appendChild(rootElement);
    while (answer.hasMore())
    setVariableData("Variable_3","test3");
    javax.naming.directory.SearchResult sr = (javax.naming.directory.SearchResult)answer.next();
    System.out.println(">>>" + sr.getName());
              javax.naming.directory.Attributes attrs = sr.getAttributes();
    if (attrs == null)
    System.out.println("No attributes");
              else
    org.w3c.dom.Element rowElement = newDoc.createElement("LDAPEmployeeType");
    rowElement.setAttributeNS("ns1","ns1","http://www.macerich.com/o2c");
                   /* Print each attribute */
                   for (javax.naming.NamingEnumeration ae = attrs.getAll(); ae.hasMore();)
    javax.naming.directory.Attribute attr = (javax.naming.directory.Attribute)ae.next();
    String id =attr.getID().toString();
    if(id.equals("sn"))
    id = "UserId";
    else if(id.equals("givenName"))
    id ="firstName";
    else if(id.equals("mail"))
    id ="email";
    else if(id.equals("createTimeStamp"))
    id="effectiveStartDate";
    System.out.println("attribute: " + attr.getID());
    System.out.println("Value: " + attr.get());
    org.w3c.dom.Element curElement = newDoc.createElement(id);
    curElement.appendChild(newDoc.createTextNode(attr.get().toString()));
    rowElement.appendChild(curElement);
    setVariableData("Variable_3","test4");
    rootElement.appendChild(rowElement);
    // Print the answer
    //printSearchEnumeration(answer);
    javax.xml.transform.TransformerFactory tranFactory = javax.xml.transform.TransformerFactory.newInstance();
    javax.xml.transform.Transformer aTransformer = tranFactory.newTransformer();
         javax.xml.transform.Source src = new javax.xml.transform.dom.DOMSource(newDoc);
    javax.xml.transform.Result dest = new javax.xml.transform.stream.StreamResult(new java.io.File("c:/test.xml"));
    aTransformer.transform(src, dest);
    org.w3c.dom.NodeList nl = newDoc.getElementsByTagName("LDAPEmployeeCollection");
    org.w3c.dom.Node nd = nl.item(0);
    System.out.println("XML---"+rootElement.toString());
    setVariableData("Variable_1","LDAPEmployeeCollection",newDoc);
    // Close the context when we're done
    ctx.close();
    catch (Exception e)
    setVariableData("Variable_3",e.toString());
    addAuditTrailEntry(e);
    I tried numerous things and today is the final day for my code completion. So i am in a bit of trouble. I just cant figure out what I have done wrong here. I have created a DOM document as you had suggested and then done a setVariableData onto the Variable_1 that i had created selecting the xsd that I had pasted in my previous post as the schema for the variable. I have the namespace set corretly as well. Any suggestions.
    Thanks so much in advance
    Message was edited by:
    user593748

  • Embedded Java in BPEL and exception handling

    Hello everybody,
    i want to use some embedded java code in my BPEL process (bpelx:exec). This code would sometimes throw exceptions. How can i deal with these exceptions to control my BPEL process? I would like, in a sense, to do some catching of java exceptions but at the BPEL level... for example, my java code would throw an exception, that my BPEL process would "catch" and react the way i want. Is it possible to do that?
    Thanks for your help!
    Nicolas

    you need to throw a com.oracle.bpel.client.BPELFault ..
    from the code
    * This class represents a standard fault that may be thrown by the server
    * during run-time. A BPEL fault has defined, minimally, a QName that
    * corresponds to the fault name (there are several standard faults that
    * are supported, please refer to Appendix A - Standard Faults in the BPEL
    * 1.1 specification for a complete list).
    * <p>
    * This class can only be used from within a <code>bpelx:exec</code> activity;
    * the <code>throw</code> activity can be used from BPEL code.
    * <p>
    * Additional information (such as a fault variable) can be passed through
    * as a part. Currently, internal system errors populate error codes and
    * summary messages via parts.
    hth clemens

  • How to Debug a Java Project in Eclipse using Tomcat6.0

    Hi
    Can anybody help me with the following questions.
    1.How to create a java project in eclipse(I am using jsp,servlets,jsf,spring,jasper,struts).
    2.How to debug my application in Eclipse Europa by putting break points.
    3.how should i add Tomcat6.0 to my project in order to debug my application so that i can put break points while running the applications and observe the values.
    Thanks
    Bala

    You may find this tutorial useful regarding to JSF, Eclipse and Tomcat: http://balusc.blogspot.com/2008/01/jsf-tutorial-with-eclipse-and-tomcat.html
    To put breakpoints, just doubleclick on the left gray rule of the code, you'll get blue bullets at the left rule, indicating a break point. Run Tomcat in debug modus (rightclick Tomcat � debug). Use the Eclipse debug perspective to step in the code (window � open perspective � debug).

  • How to Debug a Java bean In Jdeveloper 3.2

    I want to debug my java Bean in Jdeveloper Environment.
    When I click on debug option Nothing happens .can some body provide me some guidance here

    Sameera,
    You can create a "Custom Project" which is equivalent to "Generic Project".
    -Arun

  • How to use the Java embedding activity in BPel

    hi all,
    How to use the java embedding activity in BPEL
    pls can u provide sample example

    1 Use [Oracle BPEL Process Manager Client Java API Reference|http://download-uk.oracle.com/docs/cd/B31017_01/integrate.1013/b28986/overview-summary.html] and especially [com.collaxa.cube.engine.ext|http://download-uk.oracle.com/docs/cd/B31017_01/integrate.1013/b28986/com/collaxa/cube/engine/ext/BaseBPELXExecLet.html]
    Instead of System.Out.println use addAuditTrailEntry(java.lang.String message)
    2. If you want to import a package write in code (Source View) of bpel process
    +<bpelx:exec import="package_name"/>+ for example +<bpelx:exec import="java.util.regex.Matcher"/>+
    example 1:
    String bodyAsString;
    StringBuffer myStringBuffer = new StringBuffer();
    try {
    bodyAsString = (String)getVariableData("BodyString");
    addAuditTrailEntry("bodyAsString1: "+ bodyAsString);
    Pattern pattern = Pattern.compile("goodDay");
    Matcher matcher= pattern.matcher(bodyAsString);
    while (matcher.find()) {   
    matcher.appendReplacement(myStringBuffer, "shitDay");
    matcher.appendTail(myStringBuffer);
    bodyAsString = myStringBuffer.toString();
    addAuditTrailEntry("bodyAsString2: "+ bodyAsString);
    } catch (Exception ex) {
    addAuditTrailEntry("Failed+bodyAsString",ex.getMessage());
    I put in code (Source View) the following
    <bpelx:exec import="java.util.regex.Matcher"/>
    <bpelx:exec import="java.util.regex.Pattern"/>
    example2:
    Object temp;
    try {
    temp = ((XMLElement)getVariableData("inputVariable","payload","/ns2:FiscalisMessage/ns2:Body")).getChildNodes().item(1);
    setVariableData("AdjReceipt",temp);
    addAuditTrailEntry("ok",temp.toString());
    catch (Exception ex) {
    addAuditTrailEntry("Failed :",ex);
    I put in code (Source View) the following
    <bpelx:exec import="oracle.xml.parser.v2.XMLElement"/>

  • Pass the BPEL Input Payload to Embedded Java Program

    Please let me know how can we pass the Input to a BPEL process to the embedded Java Program.
    Requirement:
    To pass the payload recieved by the BPEL process to a Java method using embedded java activity where we can parse/modify this payload
    I tried this approach
    Object obj = (Object)getVariableData('variableName');
    //call to java method with obj as argument
    //In java method
    XMLElement xmlElement = (XMLElement)obj;
    thereafter I am trying to read the nodes of this element but this is not working.
    Please point me to any document/tutorial/examples in this context.
    Thanks

    Hi
    the getVariableData() method returns a org.w3c.dom.Element object (10.1.3 version).
    So I believe you should use something like:
    Object obj = (Object)getVariableData('variableName');
    //call to java method with obj as argument
    //In java method
    org.w3c.dom.Element xmlElement = (org.w3c.dom.Element)obj;
    And to read a node use this:
    org.w3c.dom.Node node = xmlElement.getFirstChild().getNodeValue();
    However I never tried getVariableData('variableName'), I tried getVariableData('variableName','partName','query') so I don´t know the diferences between these two methods, but I hope this helps you.

  • How to debug BPEL in Oracle 10G / Oracle 11G

    Hi All,
    How can we debug BPEL in Oracle 10G / Oracle 11G .
    We are working on RosettaNet conversion in BPEL. We would like to debug BPEL
    Appreciate your help.
    Regards
    Vijay

    Hi
    I need to debug BPEL code in same manner how we debug Java Code ( Line by Line ) .
    We are working with Java CAPS and Glassfish ESB for last 5 yrs. In NetBeans we debug BPEL in the same manner how debug Plain Java CODE.
    Have a look at below link
    http://wiki.open-esb.java.net/Wiki.jsp?page=TestingAndDebuggingBPELProcesses
    I am looking for same sort of options to debug BPEL using Jdeveloper.
    Regards
    Vijay

  • Invocation error in Java Embedding activity of BPEL process in 10g

    Hi,
    I am facing an issue as below in Java embedding activity of BPEL process in 10g...
    Could not invoke: "GTM servlet URL" with verb: POST and context: null
    and the code in java embedding activity is as below...
    // create a new rest invoker stub
    RestInvocation invocation = new RestInvocation();
    org.w3c.dom.Element callOtm_process_InputVariable = (org.w3c.dom.Element)getVariableData("Variable_GTMTransmission");
    // get the result el - so we can derive the namespace needed
    org.w3c.dom.Element callOtm_process_OutputVariable = (org.w3c.dom.Element)getVariableData("Variable_GTMTransmissionAck");
    String GTMURL = "GTM servlet URL";
    try
    callOtm_process_OutputVariable = invocation.invoke
    (callOtm_process_InputVariable, "GET", GTMURL, null,
    callOtm_process_OutputVariable.getNamespaceURI());
    setVariableData("Variable_GTMTransmissionAck", callOtm_process_OutputVariable);
    } finally
    addAuditTrailEntry(invocation.getAuditAsString());
    If anybody is aware of this error, please help me to resolve this issue.
    Thanks in advance.

    Try copy the code from java embedding and paste it to eclipse and run it from there. you will find the exact issue.
    Thanks

  • How to debug XSLT in BPEL

    Hello,
    I am getting issue in BPEL code while executing XSLT file. If I have performed the 10 mappings in XSLT file and one of them has error in assigning source to target values. Its just mentioned that following XSLT file has error and doesn't mention the exact line where the error has been occured.
    Any best way to debug XSLT so it can provide the exact error ?
    Thanks

    Yes, It is the part of BPEL. But I am using Oracle SOA 10 g. Can you please elaborate how can I debug the XSLT is BPEL using BPEL Console in 10g ?? Actually when I am getting issue in XSLT, it's hard to find out where I am having the problem. If I am performing more than 20 transformation in XSLT file it's impossible for me to highlight the exact line where I have an issue.
    Thanks

  • Unable to call Java class method within Embedding Java Activity in BPEL

    Hi ,
    I have written Java Class named 'Class3' .
    When I am creating and trying to call these classes whithin Embedding Java Activity , compile time error is coming. Compiler is not finding class . Error message is like this one.
    uildfile: C:\Oracle\Middleware\jdeveloper\bin\ant-sca-compile.xml
    scac:
    [scac] Validating composite : 'C:\JDeveloper\mywork\Application7\Embedded15\composite.xml'
    [scac] C:\JDeveloper\mywork\Application7\Embedded15\SCA-INF\bpel\BPELEmbedded15\src\orabpel\bpelembedded15\ExecLetBxExe0.java:73: cannot find symbol
    [scac] symbol : class Class3
    [scac] location: class orabpel.bpelembedded15.ExecLetBxExe0
    [scac] C:\JDeveloper\mywork\Application7\Embedded15\SCA-INF\bpel\BPELEmbedded15\src\orabpel\bpelembedded15\ExecLetBxExe0.java:73: cannot find symbol
    [scac] symbol : class Class3
    [scac] location: class orabpel.bpelembedded15.ExecLetBxExe0
    [scac] Note: C:\JDeveloper\mywork\Application7\Embedded15\SCA-INF\bpel\BPELEmbedded15\src\orabpel\bpelembedded15\BPEL_BIN.java uses unchecked or unsafe operations.
    [scac] Note: Recompile with -Xlint:unchecked for details.
    [scac] FATAL_ERROR: location {ns:composite/ns:component[@name='BPELEmbedded15']}(20,36): Failed to compile bpel generated classes.
    [scac] failure to compile the generated BPEL classes for BPEL process "BPELEmbedded15" of composite "default/Embedded15!1.0"
    [scac] The class path setting is incorrect.
    [scac] Ensure that the class path is set correctly. If this happens on the server side, verify that the custom classes or jars which this BPEL process is depending on are deployed correctly. Also verify that the run time is using the same release/version.
    [scac]
    BUILD FAILED
    C:\Oracle\Middleware\jdeveloper\bin\ant-sca-compile.xml:264: Java returned: 1 Check log file : C:\JDeveloper\mywork\Application7\Embedded15\SCA-INF\classes\scac.log for errors
    Total time: 8 seconds
    I am creating Class3 directly in Application Resources folder indide Project Folder in Jdeveloper without creating any package. Code of the class is .......
    public class Class3 {
    public Class3() {
    super();
    public String getValue(){
    return "BBBBBBB";
    Can any one help?
    Regards
    Yogendra Rishishwar
    9867927087

    Hi ,
    In your java project frm jdev..right click and choose general and then choose deployment profiles and then choose Jar ..and then give some appropriate name(abc) and then click ok.
    Then under resources file u get a abc.deploy file right click and say deploy to jar ..u will find the jar in that director.Now include this jar in your prjct libraries.
    have a look at the link http://niallcblogs.blogspot.com/search/label/embedded%20Java

  • How can I debug webdynpro java application?

    hi,
    How can I debug webdynpro java application?
    Thanks

    Check this document
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/d0cb32c5-36a7-2910-2c9b-ba4a5bbdbb56
    Also check this sdn thread Re: DeBugginng The WebDynPro Application particularly shailesh kumar posting
    /padmanaban
    Edited by: Padmanaban on Sep 26, 2008 1:55 AM

  • ANNOUNCEMENT:  New How-To on Debugging Pluggable Java Components

    Forms Product Management are pleased to announce a new How-To document demonstrating how you can debug Forms Pluggable Java Components running "live" in a Form, from within JDeveloper.
    The direct URL is:
    http://otn.oracle.com/products/forms/htdocs/howto_debug_pjc.html
    Or from the OTN Forms Homepage:
    http://otn.oracle.com/products/forms

    How to debug pjc by passing Different config otpion
    I have separate config for webutil so my forms with runs like localhost:8889/forms/f90servlet?config=webutil.......
    I want to debug pjc used in one of the webutil form how do i achive that
    when I run with abouve example look like is not usign frmwebutil.jar which i try to place all over and i gets error "frm-47023 No such parameter name WEBUTILCONFIG exists in form <formname>."
    here is my debug_pjc.html
    <HTML>
    <!-- FILE: debug_pjc.htm (Oracle Forms) -->
    <!-- -->
    <!-- This is a HTML file used for debugging Pluggable Java Components -->
    <!-- update the serverArgs parameter to include your test module -->
    <!-- name and any other required Forms arguments -->
    <!-- Amend references of localhost:8889 to the correct server and -->
    <!-- Port number if you are using a remote server -->
    <HEAD><TITLE>Debug My PJC</TITLE></HEAD>
    <BODY>
    <APPLET CODEBASE="http://localhost:8889/forms90/java"
    CODE="oracle.forms.engine.Main" WIDTH="1040"
    HEIGHT="738"
    HSPACE="0"
    VSPACE="0">
    <PARAM NAME="serverURL" VALUE="http://localhost:8889/forms90/l90servlet">
    <PARAM NAME="serverArgs" VALUE="module=gzipidc">
    <PARAM NAME="ARCHIVE" VALUE="banicons.jar,bannerui.jar,banspecial.jar,banorep.jar,f90all_jinit.jar,frmwebutil.jar" >
    <PARAM NAME="serverURL" VALUE="http://localhost:8889/forms90/l90servlet?ifcfs=http://localhost:8889/forms90/f90servlet?config=dvl&separateFrame=false&acceptLanguage=en-us">
    <PARAM NAME="networkRetries" VALUE="30">
    <PARAM NAME="lookAndFeel" VALUE="Oracle">
    <PARAM NAME="colorScheme" VALUE="blaf">
    <PARAM NAME="serverApp" VALUE="default">
    <PARAM NAME="logo" VALUE="no">
    <PARAM NAME="imageBase" VALUE="codeBase">
    <PARAM NAME="heartBeat" VALUE="1">
    <PARAM NAME="formsMessageListener" VALUE="">
    <PARAM NAME="recordFileName" VALUE="">
    <PARAM NAME="config" VALUE="webutil">
    <PARAM NAME="WebUtilArchive" VALUE="frmwebutil.jar,jacob.jar,fjtable.jar ">
    <PARAM NAME="WebUtilLogging" VALUE="server">
    <PARAM NAME="WebUtilLoggingDetail" VALUE="Detailed">
    <PARAM NAME="WebUtilErrorMode" VALUE="server">
    <PARAM NAME="archive_jini" VALUE="banspecial.jar,f90all_jinit.jar,banicons.jar,bannerui.jar,frmwebutil.jar,jacob.jar,fjtable.jar">
    <PARAM NAME="baseHTML" VALUE="webutilbase.htm">
    <PARAM NAME="baseHTMLjinitiator" VALUE="webutiljini.htm">
    <PARAM NAME="baseHTMLjpi" VALUE="webutiljpi.htm">
    <PARAM NAME="pageTitle" VALUE="Vipul's forms server-webutil">
    <PARAM NAME="escapeparams" VALUE="true">
    <PARAM NAME="form" VALUE="gzipidc.fmx">
    <PARAM NAME="envFile" VALUE="webutil.env">
    <PARAM NAME="WebUtilMaxTransferSize" VALUE="16384">
    </APPLET>
    </BODY>
    </HTML>

Maybe you are looking for

  • MS-RDP black screen connecting to VDI

    I just finished configuring a new install of VDA 3.4. Everything went well, no issues. VDI runs on a OEL 5.7 box, and VBox is running on a secondary OEL 5.7 box. I have one XP install, one Pool and one user accessed via LDAP. I've setup the pool and

  • Problem with MIRO Transaction while posting Un planned Delivery cost

    Hi all, We have entered all the details including unplanned delivery cost in transaction MIRO. When we are trying to post the same by using post button directly with out simulation, system is asking for plant details. For first time we have entered w

  • Deleting "purchased" items

    A while back I downloaded a free music album through itunes, but it wasn't until after I downloaded it that I realized that it was something that I didn't want at all. So I deleted it from my itunes. But the problem now is that every time I click to

  • When starting J2EE server .....

    I have installed j2sdk 1.4 & j2sdkee1.3 on Windows XP. I have set Environment variables. When I start j2ee server COMMAN PROMPT SAYS C:\>j2ee Warning: This J2EE SDK release has only been tested on J2SE v1.3 J2EE server listen port: 1050 Redirecting t

  • Pages Document can't be opened

    I am using pages on my iPad. I have been working for several weeks on a document. I tried to open the document on my iPad and it says "document can't not be opened". When I go to pages for iCloud and try to open the document I get the message "You ne