Deploying in Unix

Our application server admin said that he cannot deploy projects created on JDeveloper 10.1.3.0.4. I deployed successfully the project on OracleAs 10.1.3.1.0 on Windows platform. But he said that it is not work for UNIX and ask me to redevelop my projects on JDeveloper 10.1.2. Does it make any sense?
Thank you,
Sergey Nikiforov

I'm guessing that he runs OAS 10.1.2 - in that case here are the instructions on how to deploy an application developed in JDev 10.1.3 to OAS 10.1.2
http://download.oracle.com/docs/html/B25947_01/deployment_topics006.htm#CIHDBHAA

Similar Messages

  • Display image in forms & reports developed on windows and deployed on Unix

    Hi,
    We are upgrading from Forms and reports 6i to forms10g.
    We need to insert image in forms and reports. Recompile and deploy on unix server.
    So can anyone let me know the exact steps to create jar file containing images, where to place the jar file.
    Corresponding folder, file and configuration changes required on windows and unix.
    Av.

    Hi Frank,
    thanks for the link it helped me in understanding how images work for forms.
    But my real concern is how this will work in reports?
    As we dont have any reportsweb.cfg nor any java path for reports?
    Can you help me in understanding how to embed image in reports that will be displayed even after porting the report on unix oas.
    Regards,
    Av.

  • Deploying the UNIX connector in OIM

    Hi All
    Am trying to deploy the UNIX connector for OIM. The connector is deployed to connect to Red hat Linux 3.0 but am having difficulties in confinguring ssh. Am using the documetation provided by the connector. But when i try to test for connectivity it is always asking for the passphrase and sometimes the root user password
    Is there another doc that i can use to configure the same?
    Or does any one know of a proper way?
    Please.
    Thank you.

    Thanks for the heads up atleast now after changing the shell to $ and not using the private key we were able to see some progress from jboss even though when try to provision the user, the user is not being created. The promising message we are getting from
    [STDOUT] Target Class = com.thortech.xl.integration.telnetssh.helper.SSHProvisioning
    [TELNETSSH] Setting targetEnglishLocale:export LANG=en_US.UTF-8
    [TELNETSSH] ***SSHRecon:Init: Entered Method
    [TELNETSSH] ***SSHRecon:execute: Entered Method
    [TELNETSSH] Setting targetEnglishLocale:export LANG=en_US.UTF-8
    [TELNETSSH] in ssh
    [TELNETSSH] TelnetSSHUtil/executeCommand :login success
    [TELNETSSH] in ssh
    [TELNETSSH] TelnetSSHUtil/executeCommand :login success
    [TELNETSSH] in ssh
    [TELNETSSH] TelnetSSHUtil/executeCommand :login success
    [TELNETSSH] in ssh
    [TELNETSSH] TelnetSSHUtil/executeCommand :login success
    [TELNETSSH] in ssh
    [TELNETSSH] TelnetSSHUtil/executeCommand :login success
    [TELNETSSH] Recon Ends
    [STDOUT] Running SSHCREATEUSER
    [STDOUT] Target Class = com.thortech.xl.integration.telnetssh.helper.SSHProvisioning
    [TELNETSSH] Setting targetEnglishLocale:export LANG=en_US.UTF-8
    [STDOUT] Running SSHCREATEUSER
    [STDOUT] Target Class = com.thortech.xl.integration.telnetssh.helper.SSHProvisioning
    [TELNETSSH] Setting targetEnglishLocale:export LANG=en_US.UTF-8
    But was unable to verify that the allow root login was set. How do i verify this and where?
    Thanks

  • Crystal Reports for eclipse 2.0 deployed on unix

    Hi,
    We have designed few crystal reports using u201CCrystal Reports for Eclipse 2.0u201D on windows platform. We have embedded this report into a J2EE Web application and deployed the web application on Tomcat 6.X server.
    We are able to generate the reports successfully on windows environment. But when deployed the web Application on to Tomcat server 6.X on Solaris environment we get runtime exception as below.
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKClientDocException: The document has not been opened.---- Error code:-2147215349.
    It is failing at At clientDoc.open(reportName, OpenReportOptions._openAsReadOnly) of the JSP whaich was shared where clientDoc is an object of ReportClientDocument. That is it is failing to open the .rpt.
    The eclipse generated JSP used to invoke the report sa follows.
    <%@ page contentType="text/html; charset=iso-8859-1" pageEncoding="ISO-8859-1" %><%@ page import="com.businessobjects.samples.CRJavaHelper,
    com.crystaldecisions.report.web.viewer.CrystalReportViewer,
    com.crystaldecisions.sdk.occa.report.application.OpenReportOptions,
    com.crystaldecisions.sdk.occa.report.application.ReportClientDocument,
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKExceptionBase,
    java.util.Calendar,
    java.util.Date,
    java.text.DateFormat,
    java.text.SimpleDateFormat" %><%
    // This sample code calls methods from the CRJavaHelper class, which
    // contains examples of how to use the BusinessObjects APIs. You are free to
    // modify and distribute the source code contained in the CRJavaHelper class.
    try {
      HttpSession sessionObj = request.getSession();
      String reportName = "reports/EmailDataReport.rpt";
      String attStartDate = (String)sessionObj.getAttribute("CalendarStartDate");
      String attEndDate = (String)sessionObj.getAttribute("CalendarEndDate");
      //attStartDate = "2/12/2004";
      //attEndDate = "2/17/2009";
      // spliting the start and end date
      String [] arrStDate = null;
      String [] arrEndDate = null;
      arrStDate = attStartDate.split("/");
      arrEndDate = attEndDate.split("/");
      ReportClientDocument clientDoc = (ReportClientDocument) session.getAttribute(reportName);
      if (clientDoc == null) {
       // Report can be opened from the relative location specified in the CRConfig.xml, or the report location
       // tag can be removed to open the reports as Java resources or using an absolute path
       // (absolute path not recommended for Web applications).
       clientDoc = new ReportClientDocument();
    try{
       clientDoc.setReportAppServer(ReportClientDocument.inprocConnectionString); 
       // Open report
       clientDoc.open(reportName, OpenReportOptions._openAsReadOnly);
       //DateFormat df = new SimpleDateFormat("dd/MM/yyyy");
    }catch(Exception e){
    out.println(" -
    Error while opening the report $$$$$$$$$$$"e.toString()"\n");
       // ****** BEGIN SET RUNTIME DATABASE CREDENTIALS **************** 
        String connectString = "XXXXXX
        String driverName = "oracle.jdbc.OracleDriver";
        String JNDIName = "";
        String userName = "YYYYY";   // TODO: Fill in database user
        String password = "ZZZZZZZZZ";  // TODO: Fill in password
        // Switch all tables on the main report and sub reports
        CRJavaHelper.changeDataSource(clientDoc,reportName,null,userName, password, connectString, driverName, JNDIName);
        // logon to database
        CRJavaHelper.logonDataSource(clientDoc, userName, password);
       // ****** END SET RUNTIME DATABASE CREDENTIALS ****************
       // ****** BEGIN CONNECT PARAMETERS SNIPPET **************** 
        // DATE VALUE PARAMETER.
        Calendar calendar = Calendar.getInstance();
        calendar.set(Integer.parseInt(arrStDate[2]), Integer.parseInt(arrStDate[0])-1, Integer.parseInt(arrStDate[1]));
        Date dateParamVal = calendar.getTime(); // TODO: Fill in value
        CRJavaHelper.addDiscreteParameterValue(clientDoc, "", "StartDate", dateParamVal);
        // DATE VALUE PARAMETER.
        Calendar calendar = Calendar.getInstance();
        calendar.set(Integer.parseInt(arrEndDate[2]), Integer.parseInt(arrEndDate[0])-1, Integer.parseInt(arrEndDate[1]));
        Date dateParamVal = calendar.getTime(); // TODO: Fill in value
        CRJavaHelper.addDiscreteParameterValue(clientDoc, "", "EndDate", dateParamVal);
       // ****** END CONNECT PARAMETERS SNIPPET ****************
       // Store the report document in session
       session.setAttribute(reportName, clientDoc);
      // ****** BEGIN CONNECT CRYSTALREPORTPAGEVIEWER SNIPPET **************** 
       // Create the CrystalReportViewer object
       CrystalReportViewer crystalReportPageViewer = new CrystalReportViewer();
       String reportSourceSessionKey = reportName+"ReportSource";
       Object reportSource = session.getAttribute(reportSourceSessionKey);
       if (reportSource == null)
        reportSource = clientDoc.getReportSource();
        session.setAttribute(reportSourceSessionKey, reportSource);
       // set the reportsource property of the viewer
       crystalReportPageViewer.setReportSource(reportSource);
       // Apply the viewer preference attributes
       // Process the report
       crystalReportPageViewer.processHttpRequest(request, response, application, null);
      // ****** END CONNECT CRYSTALREPORTPAGEVIEWER SNIPPET **************** 
    } catch (ReportSDKExceptionBase e) {
         out.println(e);
    %>
    Note : We have not installed any crystal report servers in both windows or UNIX environment.But we have deployed all the relavant crystal report jars for the java runtime environment.
    If anyone has come across such error please help. Also let me know if we need to have external RAS set up for this?By default the the RAS will be set to "inproc:jrc"  which works fine on windows environment.
    regards,
    Madhu

    I am having similar problems.  Environment works perfectly in Windows.  All JARS and config files moved to AIX UNIX machine.  I get nothing more than a Crystal Reports 'Error' on the screen!!!
    Any ideas since this was posted??

  • Accessing MSAccess DB mdb from java program deployed on Unix

    Could someone provide the solution for connecting MSAccess DB which is on a Windows Server
    from a java web application deployed on weblogic in Unix platform.
    Basically i would like to know how we can get access to the mdb file on windows.
    jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)};DBQ=c:/employee.mdb;DriverID=22;READONLY=true"
    Im using sun.jdbc.odbc.JdbcOdbcDriver.

    spectator wrote:
    Thanks for the reply ..
    This url given works perfectly for a java appln in windows as the .mdb path (c:/employee.mdb or from a shared drive \\shared\employee.mdb) is understood by the appln
    But my java application in Unix wants to call AccessDB in Windows.
    I wanted know how we can connect from java appln in Unix to an Access DB which is in Windows like any other database ie through a hostname port etc. or any other wayBasically you can't.
    You can start by reading the following.
    [http://forums.sun.com/thread.jspa?threadID=211735&start=2&forumID=48]
    There is an update to that post in that now there is a java only commercial (you must pay for it) driver that one can use for MS Access. So that option exists now.

  • WebLogic deployment on Unix or NT

    Hi,
    Does anybody have an idea of what is present percentage of
    Weblogic deployments on Unix and on NT. Curious to know what is
    most preferred platform for weblogic deployment. I appreciate
    your early response.
    thanks,
    Suresh.

    I don't have the exact numbers but the most popular development platform
    is Windows, the most popular deployment platform is Unix.
    Suresh wrote:
    Hi,
    Does anybody have an idea of what is present percentage of
    Weblogic deployments on Unix and on NT. Curious to know what is
    most preferred platform for weblogic deployment. I appreciate
    your early response.
    thanks,
    Suresh.

  • EAR Deployment Problem UNIX vs Windows

    Hi Experts,
    My WAS is 6.40. We are running on AIX Unix System. On my portal I need to deploy an EAR File. I can very well deploy that EAR file through the SDM but when I try to call the JSP, it throws an error "No calss def found". This error corresponds to a Class file which is inside a JAR. It is not able to locate that class file. We are using some external JARS. I have packages these JARS in my EAR.
    One point to notice is that If I deploy this EAR on a WINDOWS server. It  runs absolutely fine and it also is able to find the class in the JARS. The problem is with the AIX UNIX server only.
    Is there some config that I need to do on the UNIX system ? I think the EAR structure is giving the problem. But then It should not run on Windows also.
    Any suggestions ?
    Regards
    /sab

    HI Kedar,
    Thanks for your reply. Do u mean to say that the JARS for AIX have to be different ?
    One observation. The EAR works fine on SAP WAS (Windows) and TOMCAT (Windows) but refuses to run on AIX.
    Following is the error :
    Application error occurred during request processing.
      Details:   java.lang.NoClassDefFoundError: tellustech/licensing/ClientChecker
    Exception id: [001125A6424A0054000000060007608C00043ECE62BAC38A]
    What is it about the .SO files ? What is their role in this chain ? Can u pleaese help me undesrand that more ?
    <i>"3. As you have mentioned the problem causes if files mismatch between 32 bit & 64 bit."</i> what I had mentioned was a question asking that If my AIX box is 64 bit and I develop my application on a 32 bit laptop. Whould this kind of difference cause this problem ?
    So u mean to say that I should provide the following Info to my JAR provider for giving me JARS specific to AIX?
    1.Machine Type
    2.Operating System
    3.Processor
    4.System Type
    5.Operating System Version
    6.Release Level
    7.CPU Version
    8.Java Version
    9.Java Path
    10.Compiler Used
    11.Compiler Path
    Dont worry about the points U'll get the max. Help me resolve this ?
    Are u in India, can we talk on the phone for this. I really need to fix this ASAP.
    Regards
    /sab

  • Using wldeploy from NT to deploy over Unix

    WLS 8.1 sp2 / solaris
    I 'm using wldeploy ant task.
    quite good for undeploying, if I put the weblogic.jar in the classpath before
    calling ant.
    But I fail using deploy because my source file path is always converted from unix
    "/" to windows "\". So it always fails with a "java.io.FileNotFoundException:
    No such path".
    Thanks for any clue.
    My goal it to undeploy/redeploy from my NT workstation to my Unix WLS server.

    Rob/Philippe,
    It is a bug and a case has already been created.
    -shailesh
    Rob Woollen <[email protected]> wrote:
    Hmm, that sounds like a bug. Can you show me the stack trace or error
    message it emits?
    -- Rob
    Philippe MARSOLLIER wrote:
    Rob Woollen <[email protected]> wrote:
    Is the file that you are deploying on the local windows machine or
    on
    the remote machine?
    By default Deployer treats any path to be on the local machine. If
    you
    pass -remote, it uses the server's file system to resolve the path.
    -- RobYes, I use -remote but it convert / (unix separator) in \ (windowsseparator)
    >

  • Creating a WebService with Workshop on NT and deploying to UNIX

    Are there any problems with a webservice (created with Workshop on NT) being deployed(
    as an ear file) on a WL 7.0 instance? Does the instance have to be a Workshop
    type domain or not?

    Hello Ron,
    The EAR file generated on a Win NT machine, can be deployed on a Workshop
    enabled server running on a UNIX machine.
    Please refer to the link provided by Anurag for steps on Workshop enabling a
    WebLogic Domain.
    http://e-docs/workshop/docs70/help/guide/howdoi/howWLW-enableExistingWLSDoma
    in.html
    For information on supported platform please refer to the following URL.
    http://e-docs/platform/docs70/support/index.html
    Thanks
    Raj Alagumalai
    WebLogic Workshop Support
    "Anurag Pareek" <[email protected]> wrote in message
    news:[email protected]..
    Ron,
    A Workshop webservice EAR file should only be deployed on a Workshopenabled
    domain.
    Please refer the Workshop docs for 'How to Workshop enable an existing
    WebLogic Server domain', or 'How to create a new Workshop domain'.
    Let me know if you have further questions.
    Thanks,
    Anurag
    "Ron" <[email protected]> wrote in message
    news:3e8d9480$[email protected]..
    Are there any problems with a webservice (created with Workshop on NT)being deployed(
    as an ear file) on a WL 7.0 instance? Does the instance have to be aWorkshop
    type domain or not?

  • 9iAS version 1 EAR file deployment and UNIX directory permissions

    We are running version 1.0.2.2 of OC4J, the deployment
    directory seems to need world read/write to enable the
    EAR file to deploy. The 9iAS admin user is part of the
    group that owns the EAR file (and respective deployment
    directory) but still cannot write to the
    directory when permissions are set with chmod 755.
    Thank you for any suggestions.

    One thing to try is in the JAR deployment profile for the EJB - stand on the File Groups node and click new to add a library group and make sure it includes the libraries/jar you added to your project.
    If this doesn't help then you might want to try and cross post this on the OC4J forum:
    OC4J

  • Could not deploy my project in unix environment

    I am using windows for development environment, my code was deploying fine in windows environment. But when i tried to deploy in unix environment I got this error
    bpel_IRobo_Workflow1_1.0.jar failed to deploy.
    Error while loading process. The process domain encountered the following errors while loading the process "IRobo_Workflow1" (revision "1.0"): BPEL validation failed. BPEL source validation failed, the errors are: [Error ORABPEL-10902]: compilation failed [Description]: in "bpel.xml", XML parsing failed because "undefined part element. In WSDL at "file:/u01/app/oracle/product/AS10.1.3.3.0/bpel/domains/default/tmp/.bpel_IRobo_Workflow1_1.0_e580208857197172fe72bbfca5d9d8b6.tmp/workflow2.wsdl", message part element "{http://schemas.xmlsoap.org/ws/2003/03/addressing}RelatesTo" is not defined in any of the schemas. Please make sure the spelling of the element QName is correct and the WSDL import is complete. ". [Potential fix]: n/a. . . If you have installed a patch to the server, please check that the bpelcClasspath domain property includes the patch classes.
    Can any one knidly help. I have to fix this thing in a day so any help would be of great use thanks

    bpel.xml
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <BPELSuitcase>
    <BPELProcess id="IRobo_Workflow1" src="IRobo_Workflow1.bpel">
    <partnerLinkBindings>
    <partnerLinkBinding name="client">
    <property name="wsdlLocation">IRobo_Workflow1.wsdl</property>
    </partnerLinkBinding>
    <partnerLinkBinding name="combtecbsnk03NetworkInstallationsService">
    <property name="wsdlLocation">combtecbsnk03NetworkInstallationsServiceRef.wsdl</property>
    </partnerLinkBinding>
    <partnerLinkBinding name="fr_pots_dj_schedule">
    <property name="wsdlLocation">fr_pots_dj_schedule.wsdl</property>
    <property name="retryInterval">60</property>
    </partnerLinkBinding>
    <partnerLinkBinding name="fr_staa_response">
    <property name="wsdlLocation">fr_staa_response.wsdl</property>
    <property name="retryInterval">60</property>
    </partnerLinkBinding>
    <partnerLinkBinding name="fr_jumper_info">
    <property name="wsdlLocation">fr_jumper_info.wsdl</property>
    <property name="retryInterval">60</property>
    </partnerLinkBinding>
    <partnerLinkBinding name="eet_mismatch_correction">
    <property name="wsdlLocation">eet_mismatch_correction.wsdl</property>
    <property name="retryInterval">60</property>
    </partnerLinkBinding>
    <partnerLinkBinding name="TaskService">
    <property name="wsdlLocation">TaskServiceWSIF.wsdl</property>
    </partnerLinkBinding>
    <partnerLinkBinding name="IRobo_Workflow2">
    <property name="wsdlLocation">workflow2.wsdl</property>
    </partnerLinkBinding>
    </partnerLinkBindings>
    </BPELProcess>
    </BPELSuitcase>
    Workflow2 WSDL
    <?xml version="1.0" encoding="UTF-8"?>
    <definitions
    name="IRobo_Workflow2"
    targetNamespace="http://xmlns.oracle.com/IRobo_Workflow2"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:tns="http://xmlns.oracle.com/IRobo_Workflow2"
    xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing"
    xmlns:plnk="http://schemas.xmlsoap.org/ws/2003/05/partner-link/"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:client="http://xmlns.oracle.com/IRobo_Workflow2">
    <types>
    <schema xmlns="http://www.w3.org/2001/XMLSchema">
    <import namespace="http://xmlns.oracle.com/IRobo_Workflow2" schemaLocation="IRobo_Workflow2.xsd"/>
    </schema>
    <schema xmlns="http://www.w3.org/2001/XMLSchema">
    <import namespace="http://schemas.xmlsoap.org/ws/2003/03/addressing" schemaLocation="http://01hw127125.India.TCS.com:8888/orabpel/xmllib/ws-addressing.xsd"/>
    </schema>
    </types>
    <message name="IRobo_Workflow2ResponseMessage">
    <part name="payload" element="tns:IRobo_Workflow2ProcessResponse"/>
    </message>
    <message name="IRobo_Workflow2RequestMessage">
    <part name="payload" element="tns:IRobo_Workflow2ProcessRequest"/>
    </message>
    <message name="WSARelatesToHeader">
    <part name="RelatesTo" element="wsa:RelatesTo"/>
    </message>
    <message name="WSAReplyToHeader">
    <part name="ReplyTo" element="wsa:ReplyTo"/>
    </message>
    <message name="WSAMessageIDHeader">
    <part name="MessageID" element="wsa:MessageID"/>
    </message>
    <portType name="IRobo_Workflow2Callback">
    <operation name="onResult">
    <input message="tns:IRobo_Workflow2ResponseMessage"/>
    </operation>
    </portType>
    <portType name="IRobo_Workflow2">
    <operation name="initiate">
    <input message="tns:IRobo_Workflow2RequestMessage"/>
    </operation>
    </portType>
    <binding name="IRobo_Workflow2CallbackBinding" type="tns:IRobo_Workflow2Callback">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <operation name="onResult">
    <soap:operation style="document" soapAction="onResult"/>
    <input>
    <soap:header message="tns:WSARelatesToHeader" part="RelatesTo" use="literal" encodingStyle=""/>
    <soap:body use="literal"/>
    </input>
    </operation>
    </binding>
    <binding name="IRobo_Workflow2Binding" type="tns:IRobo_Workflow2">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <operation name="initiate">
    <soap:operation style="document" soapAction="initiate"/>
    <input>
    <soap:header message="tns:WSAReplyToHeader" part="ReplyTo" use="literal" encodingStyle=""/>
    <soap:header message="tns:WSAMessageIDHeader" part="MessageID" use="literal" encodingStyle=""/>
    <soap:body use="literal"/>
    </input>
    </operation>
    </binding>
    <service name="IRobo_Workflow2CallbackService">
    <port name="IRobo_Workflow2CallbackPort" binding="tns:IRobo_Workflow2CallbackBinding">
    <soap:address location="http://set.by.caller"/>
    </port>
    </service>
    <service name="IRobo_Workflow2">
    <port name="IRobo_Workflow2Port" binding="tns:IRobo_Workflow2Binding">
    <soap:address location="http://01hw127125.India.TCS.com:8888/orabpel/default/IRobo_Workflow2/1.0"/>
    </port>
    </service>
    <plnk:partnerLinkType name="IRobo_Workflow2">
    <plnk:role name="IRobo_Workflow2Provider">
    <plnk:portType name="tns:IRobo_Workflow2"/>
    </plnk:role>
    <plnk:role name="IRobo_Workflow2Requester">
    <plnk:portType name="tns:IRobo_Workflow2Callback"/>
    </plnk:role>
    </plnk:partnerLinkType>
    </definitions>
    James I am making the endpoint reference available at run time so I think I need not change it while deploying.I think this is the problem the problem.
    <schema xmlns="http://www.w3.org/2001/XMLSchema">
    <import namespace="http://schemas.xmlsoap.org/ws/2003/03/addressing" schemaLocation="http://01hw127125.India.TCS.com:8888/orabpel/xmllib/ws-addressing.xsd"/>
    </schema>

  • Deployment unsuccessful via UNIX box but Successful from windows

    Hi,
    I am able to deploy my ADF application on remote server by my ANT SCRIPT.
    But when I am trying to deploy my application through UNIX box, Its successfully making EAR File but that EAR file is smaller(in term of size) , which I am getting from Windows deployment from similar script. It not adding bc4j.xcfg file of AM and adfm.xml file also in EAR. If I am deploying this same EAR file from script on unix then its successfully deploying and when I am going to my application its showing blank page insist of contains.
    I am using same script for deployment on unix box also which I am using on Windows.
    Can anyone suggest me where I am lacking or something which I need to take care on Unix.
    Thanks in Advance
    Ramit Mathur

    Looks like your ant script is buggy...
    If your ant script does not produce the same EAR (I only mean the content, not the size) there must be something wrong either with your installation on the UNIX box or your ant script.
    If you know which files are missing thats the point to look at. As you wrote the script it should not be difficult to find the part of hte script which should copy the missing files into the resulting EAR file. May be you have a wrong path (windows like drive letters or '\' instead of '/') in your script.
    Timo

  • JVM Crash on Unix (Solaris)

    Hi,
    I have an application which works fine on Windows environment. If the ear prepared on Windows is deployed on Unix it works fine. But when the application is build in Unix, the application gets deployed but when accessing the application it crashes.
    I have pasted the crash details below
    0xf9540000      /anfield/opt/bea/wls/8.1sp3/jdk142_04/jre/lib/sparc/libioser12.so
    0xdf650000      /anfield/mqseries1/opt/mqm/java/lib/libmqjbnd05.so
    0xdf610000      /opt/mqm/lib/libmqm.so
    0xdbf80000      /opt/mqm/lib/libmqz.so
    0xdbe00000      /opt/mqm/lib/libmqmcs.so
    0xdf560000      /opt/mqm/lib/libmqmzse.so
    0xdf530000      /anfield/mqseries1/opt/mqm/java/lib/libmqjbdf02.so
    0xdf510000      /anfield/mqseries1/opt/mqm/java/lib/libMQXAi02.so
    Heap at VM Abort:
    Heap
    def new generation total 32768K, used 25924K [0xe4c00000, 0xe6cf0000, 0xe8ea0000)
    eden space 31808K, 81% used [0xe4c00000, 0xe65510f0, 0xe6b10000)
    from space 960K, 0% used [0xe6b10000, 0xe6b10000, 0xe6c00000)
    to space 960K, 0% used [0xe6c00000, 0xe6c00000, 0xe6cf0000)
    tenured generation total 67296K, used 40373K [0xe8ea0000, 0xed058000, 0xf1400000)
    the space 67296K, 59% used [0xe8ea0000, 0xeb60d7c0, 0xeb60d800, 0xed058000)
    compacting perm gen total 40960K, used 40910K [0xf1400000, 0xf3c00000, 0xf9400000)
    the space 40960K, 99% used [0xf1400000, 0xf3bf3818, 0xf3bf3a00, 0xf3c00000)
    Local Time = Tue Feb 21 06:58:18 2006
    Elapsed Time = 207
    # HotSpot Virtual Machine Error : 11
    # Error ID : 4F530E43505002EF 01
    # Please report this error at
    # http://java.sun.com/cgi-bin/bugreport.cgi
    # Java VM: Java HotSpot(TM) Server VM (1.4.2_04-b05 mixed mode)
    # An error report file has been saved as hs_err_pid7291.log.
    # Please refer to the file for further information.
    I think I have localised the crash to a section of the code where there is character comparison done. If I comment out this section, it works fine. I ahve pasted below the section:
    else if (getChar() == '\'' && getOffset() < getBuffer().length())
    { // Start of a Literal - so just copy until the end of the literal
    do
    sb.append(getChar());
    setChar(getNextChar());
    while (getChar() != '\'' && getOffset() < getBuffer().length());
    sb.append(getChar()); // Append the final single quote
    setChar(getNextChar());
    After substituting " ' "for it integer value, I started getting a JVM crash with a different error id.; pasted it below
    [Loaded javax.servlet.http.HttpServletResponseWrapper]
    [Loaded weblogic.servlet.internal.RemoveWrapperOnForward]
    [Loaded weblogic.servlet.jsp.NestedBodyResponse]
    [Loaded weblogic.servlet.jsp.BodyOutputStream]
    [Loaded java.io.CharArrayReader from /anfield/opt/bea/wls/8.1sp3/jdk142_04/jre/lib/rt.jar]
    [Loaded weblogic.servlet.internal.CharChunkOutput]
    [Loaded sun.io.ConversionBufferFullException from /anfield/opt/bea/wls/8.1sp3/jdk142_04/jre/lib/rt.jar]
    [Loaded org.apache.struts.taglib.html.SubmitTag]
    # HotSpot Virtual Machine Error, Internal Error
    # Please report this error at
    # http://java.sun.com/cgi-bin/bugreport.cgi
    # Java VM: Java HotSpot(TM) Server VM (1.4.2_04-b05 mixed mode)
    # Error ID: 4255494C442F4F502D41500E4350500107 01
    # Problematic Thread: prio=5 tid=0x000ea6f0 nid=0xa runnable
    Heap at VM Abort:
    Heap
    def new generation total 25088K, used 1933K [0xe4c00000, 0xe6530000, 0xe8ea0000)
    eden space 24384K, 5% used [0xe4c00000, 0xe4d33408, 0xe63d0000)
    from space 704K, 99% used [0xe6480000, 0xe652fff8, 0xe6530000)
    to space 704K, 0% used [0xe63d0000, 0xe63d0000, 0xe6480000)
    tenured generation total 51432K, used 43087K [0xe8ea0000, 0xec0da000, 0xf1400000)
    the space 51432K, 83% used [0xe8ea0000, 0xeb8b3e90, 0xeb8b4000, 0xec0da000)
    compacting perm gen total 40960K, used 40883K [0xf1400000, 0xf3c00000, 0xf9400000)
    the space 40960K, 99% used [0xf1400000, 0xf3becc48, 0xf3bece00, 0xf3c00000)
    Could you please help me to find out the cause? Also how do you make sense of the details(which I have pasted above) in the logs written at time of crash. Is there anyway to look at the core files other than dbx or gdb?
    Thanks,
    Ragesh

    Hi,
    I have an application which works fine on Windows environment. If the application prepared on Windows is deployed on Unix but when accessing it crashes.
    here by i am pasting the error.
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # SIGSEGV (0xb) at pc=0x2a6f5075, pid=5044, tid=8201
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_10-b03 mixed mode)
    # Problematic frame:
    # j e4p_DecisionMaker.makeDecision(Le4p_InitailArrayContainer;I)I+2668
    --------------- T H R E A D ---------------
    Current thread (0x082a3ed8): JavaThread "Thread-0" [_thread_in_Java, id=5330]
    siginfo:si_signo=11, si_errno=-1071498229, si_code=12, si_addr=0x00000000
    Registers:
    EAX=0x04000000, EBX=0x30797160, ECX=0x00000000, EDX=0x0c800002
    ESP=0xbe5ff960, EBP=0xbe5ff988, ESI=0x30ac7d44, EDI=0xbe5ff9b8
    EIP=0x2a6f5075, CR2=0xc580a700, EFLAGS=0x00010206
    Top of Stack: (sp=0xbe5ff960)
    0xbe5ff960: 2a6e8d43 30ac8950 00000000 be5ff96c
    0xbe5ff970: 30ac7d44 be5ff9b8 30ac80f0 00000000
    0xbe5ff980: 30ac7290 be5ff9b0 be5ff9d8 2a6e8def
    0xbe5ff990: 00000000 00000000 00000000 00000000
    0xbe5ff9a0: 00000000 00000001 00000000 00000000
    0xbe5ff9b0: 00000005 2cd46c58 2c798b58 be5ff9bc
    0xbe5ff9c0: 30a772f7 be5ffa1c 30a81da8 00000000
    0xbe5ff9d0: 30a771a0 be5ffa1c be5ffa3c 2a6e8e9b
    Instructions: (pc=0x2a6f5075)
    0x2a6f5065: 75 e8 8b c2 81 e0 00 00 00 04 0f 84 05 00 00 00
    0x2a6f5075: 3b 01 ff 63 3c 8b 41 04 8b 9c 98 dc 00 00 00 8b
    Stack: [0xbe40e000,0xbe600000), sp=0xbe5ff960, free space=1990k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    j e4p_DecisionMaker.makeDecision(Le4p_InitailArrayContainer;I)I+2668
    j e4p_Schedular.scheduleCaller()V+271
    j e4p_ModuleIterator.run()V+34
    j java.util.TimerThread.mainLoop()V+221
    j java.util.TimerThread.run()V+1
    v ~StubRoutines::call_stub
    V [libjvm.so+0x1a8aa4]
    V [libjvm.so+0x25e605]
    V [libjvm.so+0x1a8cf6]
    V [libjvm.so+0x1a85c6]
    V [libjvm.so+0x1a913f]
    V [libjvm.so+0x203695]
    V [libjvm.so+0x2aaa9a]
    V [libjvm.so+0x2a5f57]
    V [libjvm.so+0x260113]
    C [libpthread.so.0+0x5b85] pthread_detach+0x515
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x082922e8 JavaThread "Thread-5" [_thread_blocked, id=5335]
    0x0825a818 JavaThread "Thread-4" [_thread_blocked, id=5334]
    0x0828e8a0 JavaThread "Thread-3" [_thread_in_native, id=5333]
    0x082553d8 JavaThread "DestroyJavaVM" [_thread_blocked, id=5044]
    0x082a3980 JavaThread "Thread-2" [_thread_blocked, id=5332]
    0x082a3800 JavaThread "Thread-1" [_thread_blocked, id=5331]
    =>0x082a3ed8 JavaThread "Thread-0" [_thread_in_Java, id=5330]
    0x080995d0 JavaThread "CompilerThread0" daemon [_thread_blocked, id=5328]
    0x080987f8 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=5327]
    0x080954d8 JavaThread "Finalizer" daemon [_thread_blocked, id=5325]
    0x080939f8 JavaThread "Reference Handler" daemon [_thread_blocked, id=5324]
    Other Threads:
    0x08090880 VMThread [id=5323]
    0x080b45c8 WatcherThread [id=5329]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 576K, used 190K [0x2c790000, 0x2c830000, 0x2cc70000)
    eden space 512K, 24% used [0x2c790000, 0x2c7afbd8, 0x2c810000)
    from space 64K, 100% used [0x2c810000, 0x2c820000, 0x2c820000)
    to space 64K, 0% used [0x2c820000, 0x2c820000, 0x2c830000)
    tenured generation total 1408K, used 1105K [0x2cc70000, 0x2cdd0000, 0x30790000)
    the space 1408K, 78% used [0x2cc70000, 0x2cd845a0, 0x2cd84600, 0x2cdd0000)
    compacting perm gen total 4096K, used 3457K [0x30790000, 0x30b90000, 0x34790000)
    the space 4096K, 84% used [0x30790000, 0x30af0400, 0x30af0400, 0x30b90000)
    Dynamic libraries:

  • Oracle forms builder - windows or unix?

    Until recently we've been developing on Forms Builder 6i on our Sun/Solaris box. Now however, we want to move to developing using Forms 10g. We've already recompiled all our forms on the unix box, which has Application Server 10g and an 11g database. Do we stick to using the version of Form Builder on the unix box, or go with the Windows forms? I'm not keen on the unix version, never have been - it's rather clunky, but all our forms/libraries source code is on the server. What do people generally use? I've been ftp-ing files but this is no good longer term - is it best to go with a samba share?

    Thanks Tony,
    Yes we do still want to deploy on unix. Up until now we've been using unix source control to book modules in and out, as well as using the unix version of form builder. We don't have any other source control software so we'd still need to book in and out on unix. I'd still like to use the Windows forms builder, but we'd prefer to avoid having multiple copies of the source code on windows.

  • Obiee linux and unix

    Do you know how to open OBIEE on UNIX?
    How would you start and stop services in UNIX?
    Is it possible to open the OBIEE Admin Tool in UNIX platform?
    Is it possible to deploy the code (RPD) in UNIX platform?
    and also in linux

    ---Startup the BI services
    Set the BI_HOME to the Oracle BI Home path e.g. /opt/oracle/product/OracleBI
    $export BI_HOME=/opt/oracle/product/OracleBI
    #Start the BI sever
    $$BI_HOME/setup/run-sa.sh start
    #Start the presentation service
    $$BI_HOME/setup/run-saw.sh-start
    #Start the scheduler
    $$BI_HOME/setup/run-sch.sh start
    #Start the cluster controller – only required when BI servers clustered
    $$BI_HOME/setup/run-ccs.sh start
    Shutdown the BI services
    $export BI_HOME=/opt/oracle/product/OracleBI
    #Stop the cluster controller – only required when BI servers clustered
    $$BI_HOME/setup/run-ccs.sh stop
    #Stop the BI sever
    $$BI_HOME/setup/run-sa.sh stop
    #Stop the presentation service
    $$BI_HOME/setup/run-saw.sh stop
    #Stop the scheduler
    $$BI_HOME/setup/run-sch.sh stop
    Using Windows as client we open Unix' Box RPD or we do dev work in Windows and migrate/deploy to Unix box.
    Pls mark correct or helpful if helps

Maybe you are looking for

  • Can no longer get Illustrator CS2 to launch

    I was having problems launching programs in CS2, like In Design, Photoshop and Illustrator. So I reinstalled from the CDs, but I did not remove the old install first. Now all the applications run fine except for Illustrator. When I try to lunch it, t

  • HOW do I download my purchased ringtone to my Iphone5

    How do I download my purchased ringtones to my Iphone5?

  • Set up Cluster with D1000

    Im trying to set up a cluster configuration only with two Ultra5. I don't know if it is mandatory to get storage array, or only to have a spare shared disk plus private disk is enough. I am about to buy D1000 storage array but the seller just told me

  • Help !!! It doesn't works.....

    import javax.swing.JOptionPane; import java.io.*; public class Check_FileSystem{      public static void main( String []args ){           String cmd;           cmd = "df -k";           try{                Process process = Runtime.getRuntime().exec(c

  • Headset connection to HP PAVILION 15-E003

    Hi!  I have an HP PAVILION 15-E003 and this computer just have one headset connection. In the description says that this connection can run Áudio and Microphone at the same time but i can't... I just can connect headset sound and not the microphone.