CBS error after configuring java 1.5 for CE builds

Hi,
I have some trouble with building my old projects on the CBS when I try to configure the CBS so that it can build java 1.5 applications. The guide I did use to configure the CBS was the "Setup_an_NWDI_Track_for_Composition_Environment_Developments.pdf".
There were only two things to do to change the CBS service:
I changed the following things in the Visual Administrator:
the 'BUILD_TOOL_JDK_HOME' from C:\j2sdk1.4.2_14-x64 to 'C:\jdk1.5.0_17-x64'
the 'JDK_HOME_PATH' from 'JDK1.3.1_HOME=C:\j2sdk1.4.2_14-x64;'
to 'JDK1.3.1_HOME=C:\j2sdk1.4.2_14-x64;default=C:\j2sdk1.4.2_14-x64;JDK1.5.0_HOME=C:\jdk1.5.0_17-x64'
after that I get the following error message when I try to build an old project:
Change request state from PROCESSING to FAILED
Error! The following problem(s) occurred during request processing:
Error! The following error occurred during request processing:An I/O error occurred on attempt to start an external process to perform the build. The arguments used the start the process are as follows:
Maybe someone had the same experience?
regards
Carsten

Hi,
I have some trouble with building my old projects on the CBS when I try to configure the CBS so that it can build java 1.5 applications. The guide I did use to configure the CBS was the "Setup_an_NWDI_Track_for_Composition_Environment_Developments.pdf".
There were only two things to do to change the CBS service:
I changed the following things in the Visual Administrator:
the 'BUILD_TOOL_JDK_HOME' from C:\j2sdk1.4.2_14-x64 to 'C:\jdk1.5.0_17-x64'
the 'JDK_HOME_PATH' from 'JDK1.3.1_HOME=C:\j2sdk1.4.2_14-x64;'
to 'JDK1.3.1_HOME=C:\j2sdk1.4.2_14-x64;default=C:\j2sdk1.4.2_14-x64;JDK1.5.0_HOME=C:\jdk1.5.0_17-x64'
after that I get the following error message when I try to build an old project:
Change request state from PROCESSING to FAILED
Error! The following problem(s) occurred during request processing:
Error! The following error occurred during request processing:An I/O error occurred on attempt to start an external process to perform the build. The arguments used the start the process are as follows:
Maybe someone had the same experience?
regards
Carsten

Similar Messages

  • Infinite loop error after using Java Sun Tutorial for Learning Swing

    I have been attempting to create a GUI following Sun's learning swing by example (example two): http://java.sun.com/docs/books/tutorial/uiswing/learn/example2.html
    In particular, the following lines were used almost word-for-word to avoid a non-static method call problem:
    SwingApplication app = new SwingApplication();
    Component contents = app.createComponents();
    frame.getContentPane().add(contents, BorderLayout.CENTER);I believe that I am accidentally creating a new instance of the gui class repeatedly (since it shows new GUI's constantly and then crashes my computer), possibly because I am creating an instance in the main class, but creating another instance in the GUI itself. I am not sure how to avoid this, given that the tutorials I have seen do not deal with having a main class as well as the GUI. I have googled (a nice new verb) this problem and have been through the rest of the swing by example tutorials, although I am sure I am simply missing a website that details this problem. Any pointers on websites to study to avoid this problem would be appreciated.
    Thanks for your time-
    Danielle
    /** GUI for MicroMerger program
    * Created July/06 at IARC
    *@ author Danielle
    package micromerger;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.BufferedWriter;
    import java.io.File;
    import java.io.FileWriter;
    import java.io.IOException;
    import java.io.PrintWriter;
    import javax.swing.JFileChooser;
    import java.lang.Object;
    public class MGui
         private static File inputFile1, inputFile2;
         private static File sfile1, sfile2;
         private static String file1Name, file2Name;
         private String currFile1, currFile2;
         private JButton enterFile1, enterFile2;
         private JLabel enterLabel1, enterLabel2;
         private static MGui app;
         public MGui()
              javax.swing.SwingUtilities.invokeLater(new Runnable()
                   public void run()
                        System.out.println("About to run create GUI method");
                        app = new MGui();
                        System.out.println("declared a new MGui....");
                        createAndShowGUI();
         //initialize look and feel of program
         private static void initLookAndFeel() {
            String lookAndFeel = null;
         lookAndFeel = UIManager.getSystemLookAndFeelClassName();
         try
              UIManager.setLookAndFeel(lookAndFeel);
         catch (ClassNotFoundException e) {
                    System.err.println("Couldn't find class for specified look and feel:"
                                       + lookAndFeel);
                    System.err.println("Did you include the L&F library in the class path?");
                    System.err.println("Using the default look and feel.");
                } catch (UnsupportedLookAndFeelException e) {
                    System.err.println("Can't use the specified look and feel ("
                                       + lookAndFeel
                                       + ") on this platform.");
                    System.err.println("Using the default look and feel.");
                } catch (Exception e) {
                    System.err.println("Couldn't get specified look and feel ("
                                       + lookAndFeel
                                       + "), for some reason.");
                    System.err.println("Using the default look and feel.");
                    e.printStackTrace();
         // Make Components--
         private Component createLeftComponents()
              // Make panel-- grid layout
         JPanel pane = new JPanel(new GridLayout(0,1));
            //Add label
            JLabel welcomeLabel = new JLabel("Welcome to MicroMerger.  Please Enter your files.");
            pane.add(welcomeLabel);
         //Add buttons to enter files:
         enterFile1 = new JButton("Please click to enter the first file.");
         enterFile1.addActionListener(new enterFile1Action());
         pane.add(enterFile1);
         enterLabel1 = new JLabel("");
         pane.add(enterLabel1);
         enterFile2 = new JButton("Please click to enter the second file.");
         enterFile2.addActionListener(new enterFile2Action());
         pane.add(enterFile2);
         enterLabel2 = new JLabel("");
         pane.add(enterLabel2);
         return pane;
         /** Make GUI:
         private static void createAndShowGUI()
         System.out.println("Creating a gui...");
            JFrame.setDefaultLookAndFeelDecorated(true);
            //Create and set up the window.
            JFrame frame = new JFrame("MicroMerger");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         //Add stuff to the frame
         //MGui app = new MGui();
         Component leftContents = app.createLeftComponents();
         frame.getContentPane().add(leftContents, BorderLayout.WEST);
            //Display the window.
            frame.pack();
            frame.setVisible(true);
    private class enterFile1Action implements ActionListener
         public void actionPerformed(ActionEvent evt)
              JFileChooser chooser = new JFileChooser();
              int rVal = chooser.showOpenDialog(enterFile1);
              if(rVal == JFileChooser.APPROVE_OPTION)
                   inputFile1 = chooser.getSelectedFile();
                   PrintWriter outputStream;
                   file1Name = inputFile1.getName();
                   enterLabel1.setText(file1Name);
    private class enterFile2Action implements ActionListener
         public void actionPerformed(ActionEvent evt)
              JFileChooser chooser = new JFileChooser();
              int rVal = chooser.showOpenDialog(enterFile1);
              if(rVal == JFileChooser.APPROVE_OPTION)
                   inputFile2 = chooser.getSelectedFile();
                   PrintWriter outputStream;
                   file2Name = inputFile2.getName();
                   enterLabel2.setText(file2Name);
    } // end classAnd now the main class:
    * Main.java
    * Created on June 13, 2006, 2:29 PM
    * @author Danielle
    package micromerger;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.io.*;
    public class Main
        /** Creates a new instance of Main */
        public Main()
         * @param args the command line arguments
        public static void main(String[] args)
            MGui mainScreen = new MGui();
            //mainScreen.setVisible(true);
            /**Starting to get file choices and moving them into GPR Handler:
             System.out.println("into main method");
         String file1Name = new String("");
             file1Name = MGui.get1Name();
         System.out.println("good so far- have MGui.get1Name()");
        }// end main(String[] args)
    }// end class Main

    um, yeah, you definitely have a recursion problem, that's going to create an infinite loop. you will eventually end up an out of memory error, if you don't first get the OS telling you you have too many windows. interestingly, because you are deferring execution, you won't get a stack overflow error, which you expect in an infinite recursion.
    lets examine why this is happening:
    in main, you call new MGui().
    new MGui() creates a runnable object which will be run on the event dispatch thread. That method ALSO calls new MGui(), which in turn ALSO creates a new object which will be run on the event dispatch thead. That obejct ALSO calls new MGui(), which ...
    well, hopefully you get the picture.
    you should never unconditionally call a method from within itself. that code that you have put in the constructor for MGui should REALLY be in the main method, and the first time you create the MGui in the main method as it currently exists is unnecessary.
    here's what you do: get rid of the MGui constructor altogether. since it is the implicit constructor anyway, if it doesn't do anything, you don't need to provide it.
    now, your main method should actually look like this:
    public static void main( String [] args ) {
      SwingUtilities.invokeLater( new Runnable() {
        public void run() {
          MGui app = new MGui();
          app.createAndShowGUI();
    }// end mainyou could also declare app and call the constructor before creating the Runnable, as many prefer, because you would have access to it from outside of the Runnable object. The catch there, though, is that app would need to be declared final.
    - Adam

  • I/O error after adding Java 1.5 to CBS

    Hi,
    I have some trouble with building my old projects on the CBS when I try to configure the CBS so that it can build java 1.5 applications. The guide I did use to configure the CBS was the "Setup_an_NWDI_Track_for_Composition_Environment_Developments.pdf".
    There were only two things to do to change the CBS service:
    I changed the following things in the Visual Administrator:
    the 'BUILD_TOOL_JDK_HOME' from C:\j2sdk1.4.2_14-x64 to 'C:\jdk1.5.0_17-x64'
    the 'JDK_HOME_PATH' from 'JDK1.3.1_HOME=C:\j2sdk1.4.2_14-x64;'
    to 'JDK1.3.1_HOME=C:\j2sdk1.4.2_14-x64;default=C:\j2sdk1.4.2_14-x64;JDK1.5.0_HOME=C:\jdk1.5.0_17-x64'
    after that I get the following error message when I try to build an old project:
    Change request state from PROCESSING to FAILED
            Error! The following problem(s) occurred  during request processing:
            Error! The following error occurred during request processing:An I/O error occurred on attempt to start an external process to perform the build. The arguments used the start the process are as follows:
    Maybe someone had the same experience?
    regards
    Carsten

    Here is the procedure that I have how this should be done. make sure you keep up to the prerequisites for NWDI on 7.0 minimum sp13, and updated SLD with last possible content.
    During development, you can decide that you want your track to be reserved for concrete types of development. For example, if you know that your application is used only for pure Java development, you can create a track that supports only Java development. Then you can exclude all the other standard software components (SCs) provided by default in a standard track. This allows you to have a simpler development landscape. You do this track setup inside the SAP NetWeaver Administratoru2019s Configuration Wizard.
    Setting Up a Track for Composition Development in SAP NetWeaver 7.0 System
    Instead of using a track from your SAP NetWeaver 7.1 CE development infrastructure, you can connect your SAP NetWeaver CE to an existing installation of SAP NetWeaver 7.0 with its own SAP NetWeaver Development Infrastructure (NWDI) and use this already set up infrastructure. The configuration template allows you to connect to an existing SAP NetWeaver 7.0 system, and directly configures the track in the Change Management Service (CMS) for the type of development you want. The available track configurations in this case are marked with <type of development> 7.0in the wizard (for example CAF Application for 7.0).
    General Prerequisites
    You must have permissions in the Change Management Service (CMS) of the SAP NetWeaver Development Infrastructure (NWDI) to create and maintain tracks.
    You have a valid location that contain the required Software Component Archive (SCA) files for your desired type of development.
    You work in the SAP NetWeaver Administrator.
    Prerequisites for Setting Up a Track for Composition Development in SAP NetWeaver 7.0 System
    You have to:
    SAP NetWeaver 7.0 you plan to use must have minimum SP level SP13. SAP NetWeaver Composition Environment requires JDK 1.5 or higher version while usage type NWDI of SAP NetWeaver 7.0 requires JDK 1.4. Make sure you have both JDK versions installed in your system."
    Update the CIM in the SLD so that current versions of the dependent software component (SC) definitions are available. The CR content of the SLD of the SAP NetWeaver 7.0 must be up-to-date.
    Note that the CR Content is independent from the SLD release. Therefore, you must always import the latest CR Content into each SLD. For more information about how to update the CR content, see SAP Note 669669.
    Create a product and SC meant to be developed and define the SC dependencies within the SLD.
    Enable the Component Build Service (CBS) to use a Java 5 SDK to compile the Java source files.
    Create a track for CE development within the Change Management Service (CMS).
    Configure the track to trigger CBS to use the Java 5 SDK (in the tracks XML configuration file).
    Procedure
    Log on to the SAP NetWeaver Administrator of the CE. Open  Confighuration Management  Scenarios  tab page and choose Configuration Wizard.
    Under the Configuration Tasks list, select the Change Management Service (CMS): Create an Application Skeleton task.
    Choose Start and follow the steps of the wizard.
    In the Software Component step, you can specify a concrete type of development that you want to be performed inside the track. You can choose between:
    J2EE Application for NetWeaver 7.0
    J2EE Application for NetWeaver 7.1
    Web Dynpro Application for NetWeaver 7.0
    Web Dynpro Application for NetWeaver 7.1
    Portal Application for NetWeaver 7.0
    CAF Application for 7.0
    Composite Application 7.1
    Composite Application 7.1 (with Composite Voice)
    Composite Application 7.1 (with Guided Procedures)
    Composite Application 7.1 (with Business Process Management)
    Business Process Management Application for NetWeaver 7.1
    Sandbox 7.0
    Sandbox 7.1
    Set the Enhancement Package number.
    To reflect the Enhancement Package strategy of SAP in the configuration of track templates it was necessary to introduce an additional input parameter. During the configuration of a software component you need to specify certain required relations for build time so that the central build environment can do its work. The central build environment (CBS) is depending on the release of the build archives that are imported into the build environment. Therefore it is necessary to add this release information to the required software components of a track. Since the release number is derived from the Enhancement Package of the major release, the input in the Enhancement Package field adds this variable information. Thus leaving the default 0 in the enhancement package field will result in a required software component release 7.10, while an entry of 1 will result in release 7.11.
    Complete the wizard.
    For more information about the dependant SCs used for each type of development, see SAP Note1080927 .

  • Error in JSF  - java.lang.NumberFormatException: For input string:

    Nice day friends,
    I am sure that this is one stupid question by newbie like me, but I already lost hope since there no many post on this error especially in JSF at Google.
    Here the full error I've got :
    executePhase(RENDER_RESPONSE 6,com.sun.faces.context.FacesContextImpl@12bb287) threw exception
    java.lang.NumberFormatException: For input string: "id"
    at java.lang.NumberFormatException.forInputString(NumberFormatException.java:48)
    at java.lang.Integer.parseInt(Integer.java:447)
    at java.lang.Integer.parseInt(Integer.java:497)
    at javax.el.ListELResolver.toInteger(ListELResolver.java:373)
    at javax.el.ListELResolver.getValue(ListELResolver.java:167)
    Here my snippet of code :
    NationalityDO.java (managed bean)
    public class NationalityDO implements Serializable {
    @Id
    @Column(name = "ID", nullable = false)
    private String id;
    private List nationalityList;
    public NationalityDO() {
    public NationalityDO(String id) {
    this.id = id;
    public String getId() {
    return this.id;
    public void setId(String id) {
    this.id = id;
    public List getNationalityList(){
    NationalityDA da=new NationalityDA();
    if(nationalityList==null){
    System.out.println("if(nationalityList==null)");
    try {
    nationalityList=da.retrieveNationalityList();
    } catch (Exception ex) {
    ex.printStackTrace();
    return nationalityList;
    public void setNationalityList(){
    this.nationalityList=nationalityList;
    This is my NationalityDA (used to retrieve data)
    public class NationalityDA {
    public NationalityDA() {
    public List retrieveNationalityList() throws Exception{
    ArrayList ls=new ArrayList();
    Connection con = null;
    PreparedStatement ps = null;
    ResultSet rsReturn = null;
    try {
    con = DBManager.getDBConnection();
    String sql="select id,descr,setup_date,change_date from nationality order by id asc" ;
    ps = con.prepareStatement(sql);
    rsReturn = ps.executeQuery();
    while(rsReturn.next()){
    List lsNationality =new ArrayList();
    lsNationality.add(rsReturn.getString(1));//id
    lsNationality.add(rsReturn.getString(2));//descr
    ls.add(lsNationality);
    } catch(SQLException sqlex) {
    sqlex.printStackTrace();
    } finally {
    con.close();
    ps.close();
    return ls;
    Here my nationality.jsp
    <h:dataTable value='#{nationality.nationalityList}' var='item' border="1" cellpadding="2" cellspacing="0">
    <h:column>
    <f:facet name="header">
    <h:outputText value="Id"/>
    </f:facet>
    <h:outputText value="#{item.id}"/>
    </h:column>
    <h:column>
    <f:facet name="header">
    <h:outputText value="Descr"/>
    </f:facet>
    <h:outputText value="#{item.descr}"/>
    </h:column>
    </h:dataTable>
    Here my face-config.xml
    <managed-bean>
    <managed-bean-name>nationality</managed-bean-name>
    <managed-bean-class>com.dataobject.nationality.NationalityDO</managed-bean-class>
    <managed-bean-scope>session</managed-bean-scope>
    </managed-bean>
    <navigation-rule>
    <navigation-case>
    <from-outcome>success</from-outcome>
    <to-view-id>/nationality/testNationality.jsp</to-view-id>
    </navigation-case>
    <navigation-case>
    <from-outcome>fail</from-outcome>
    <to-view-id>/nationality/testNationality.jsp</to-view-id>
    </navigation-case>
    </navigation-rule>
    For your information, the retrieve of data work successfully, this is the table description in oracle database which is varchar for id,
    SQL> desc nationality
    Name Null? Type
    ID NOT NULL VARCHAR2(4)
    DESCR VARCHAR2(20)
    SETUP_DATE TIMESTAMP(6)
    CHANGE_DATE TIMESTAMP(6)
    *If you feel that I should improve my writing in forum, I am really happy to know
    Thanks,
    unid

    thanks....
    Actually I already view the site many times before but after you told me then I get the idea,that's y working together is better, because i sometimes won't realize my mistake even it was the easiest one...
    So i just change my code in NationalityDA.java as
    while(rsReturn.next()){
    NationalityDO n=new NationalityDO();
    n.setId(rsReturn.getString(1));
    System.out.println("rsReturn.getString(1)"+ rsReturn.getString(1));
    n.setDescr(rsReturn.getString(2));
    System.out.println("rsReturn.getString(2)"+ rsReturn.getString(2));
    n.setSetupDate(rsReturn.getDate(3));
    System.out.println("rsReturn.getString(3)"+ rsReturn.getString(3));
    n.setChangeDate(rsReturn.getDate(4));
    System.out.println("rsReturn.getString(4)"+ rsReturn.getString(4));
    ls.add(n);
    Once again, thanks..and my 3 dukes are yours..
    -unid

  • License error after configuring sapcrypto library

    I'm running ECC 6.0 (IDES).  After configuring SAP for HTTPS using SAPCRYPTO library, I get an "error in license check" when trying to login.  Here are my steps:
    1.Copy SAPCRYPTO.dll to kernel directory
    2. Add these parameters to instance profile:
    ssl/ssl_lib                   E:\usr\sap\NWD\SYS\exe\uc\NTI386\sapcrypto.dll
    sec/libsapsecu            E:\usr\sap\NWD\SYS\exe\uc\NTI386\sapcrypto.dll
    ssf/ssfapi_lib               E:\usr\sap\NWD\SYS\exe\uc\NTI386\sapcrypto.dll
    ssf/name                     SAPSECULIB
    icm/server_port_2         PROT=HTTPS,PORT=8443
    3.  Bounce SAP
    When I try to login, I get the error, "Logon not possible (error in license check)"
    Has anyone run into this?  Thank you.

    Yes... thank you... but i also noticed the response of the user "Srikishan D". Meanwhile we solved the issue.
    Our solution is very strange but it works: after the installation we added the parameters in the following order, two by two and doing everytime an istance restart.
    FIRST TIME
    icm/server_port_X = PROT=HTTPS,PORT=<Port number of the HTTPS log>
    icm/HTTPS/verify_client=1
    SECOND TIME
    sec/libsapsecu = <Path and file name of the SAPCRYPTOLIB>
    ssl/ssl_lib = <Path and file name of the SAPCRYPTOLIB>
    THIRD TIME
    ssf/name = SAPSECULIB
    ssf/ssfapi_lib = <Path and file name of the SAPCRYPTOLIB>
    After that passage we noticed that the STRUST shows the SSL Server so we have the proof that the CryptoLib was in use.

  • Error : inavalid option - 'java'  in cmdLine for Java

    Hi friends,
    I have just started working with the "Oracle Discoverer EUL Command Line for Java". I have windows XP as an operating system and version 9.0.4 as a tool.
    I have already used -connect, -refresh comands.
    when I tried to use -cmdfile with -connect in the following way :
    java - jar eulbuilder.jar -connect username/password@database_name_with_domain -cmdfile f:\import.txt
    It displays the error
    Inavalid option - 'Java'.
    I have import.txt file in F: drive and the command in the file is also valid. But the system is not recognizing the -cmdfile option for java.
    Pls guide me in above problem.

    I got the solution from the document itself.
    My error was that I was repeating the part
    java - jar eulbuilder.jar
    again in the file.

  • Error CIM_ERR_FAILED - Configure the integration server for sld

    Hi,
    I´m running the Configuration Wizard SLD in "PI_00_This wizard will execute Postinstall steps of technical configuration for the PI Usage". In step 33/142 Configure the integration server for sld, I got following error:
    Error: CIM_ERR_FAILED: Qualifier MAX(1) violated for property reference SAP_XIIntegrationServerLogicalIdentity.SameElement
    Someone help me?
    Regards,

    The version is 7.0. I skip this step and finished with sucess. No run the step:
    PI_00_This wizard will execute Postinstall steps of technical configuration for the PI Usage  Cancelled
    PI_01_This template checks if the necessary services are started                                         Cancelled
    PI_05_This wizard will configure the integration server for sld                                                 Incompletely executed
    These steps are with the same error.
    Error: CIM_ERR_FAILED: Qualifier MAX(1) violated for property reference SAP_XIIntegrationServerLogicalIdentity.SameElement

  • Error after implementing SP11 Patch 5 for 7.5 MS

    After implementing SP11 Patch 5 for BPC 7.5 the SPRunConversion function (which worked find under SP07) no longer works.  Every time that the function runs an error FX-160 is generated indicating that there is No Entity selected.
    I have modified all of the applications, optimized all of the applications, and reprocessed all of the rate related dimension files.
    Has anyone else run into this issue with the stored procedure after upgrading to patch 5 on SP11?

    Hey Experts,
    other templates working fine (personell admin. personell time, organizational management, travelmngt.)!
    The templates running in the 3.5 BW....but since the update of our testsystem the e-recruiting templates give back these errors.
    We dont wanna initialize the migration of templates and other objects to 7.0 now. Maybe in a few months.
    Could it be that several (in my case the e-Recruiting Templates/Queries) 3.5 objects never be running without migration?
    Thx for your answers!!!
    kind regards,
    moriz

  • I'm trying to update to iOS 5 and it keeps showing an error "this device isn't eligible for this build" What can I do?

    I have restored my iPod touch 4G to the iOS 4.3.5, then I tryed to update/restore with the iOS 5 and it pops an error saying my device isn't eligible for this build, how can I solve this issue?

    Here's what I found about the error you mentioned, copied from http://support.apple.com/kb/TS3694
    This device is not eligible for the requested build: Also sometimes displayed as an "error 3194." If you receive this alert, update to the latest version of iTunes. Third-party security software or router security settings can also cause this issue. To resolve this, follow Troubleshooting security software issues.
    Downgrading to a previous version of iOS is not supported. If you have installed software to performunauthorized modifications to your iOS device, that software may have redirected connections to the update server (gs.apple.com) within the Hosts file. First you must uninstall the unauthorized modification software from the computer, then edit out the "gs.apple.com" redirect from the hosts file, and then restart the computer for the host file changes to take affect.  For steps to edit the Hosts file and allow iTunes to communicate with the update server, see iTunes: Troubleshooting iTunes Store on your computer, iPhone, iPad, or iPod—follow steps under the heading Blocked by configuration (Mac OS X / Windows) > Rebuild network information > The hosts file may also be blocking the iTunes Store. If you do not uninstall the unauthorized modification software prior to editing the hosts file, that software may automatically modify the hosts file again on restart. Also, using an older or modified .ipsw file can cause this issue. Try moving the current .ipsw file, or try restoring in a new user to ensure that iTunes downloads a new .ipsw.

  • ORABPEL-05250 - Deployment error after embedding java code

    hi i am getting the following error when deploying my composite i added embedded java and imported the necessary classes i think but if i take the embedded java out it deploys succsefully :
    [09:17:17 PM] Received HTTP response from the server, response code=500
    [09:17:17 PM] Error deploying archive sca_getPickFile_rev1.0.jar to partition "default" on server SANDPIT_SOA
    [09:17:17 PM] HTTP error code returned [500]
    [09:17:17 PM] Error message from server:
    There was an error deploying the composite on SANDPIT_SOA: Error occurred during deployment of component: processGetPckFile to service engine: implementation.bpel, for composite: getPickFile: ORABPEL-05250
    Error deploying BPEL suitcase.
    error while attempting to deploy the BPEL component file "/u01/oracle/FSOAS/product/fmw/user_projects/domains/FSOAS_domain/servers/SANDPIT_SOA/dc/soa_e76b434b-6704-4820-b544-ad56277e0fd9"; the exception reported is: java.lang.RuntimeException: failed to compile execlets of processGetPckFile
    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).
    [09:17:17 PM] Check server log for more details.
    [09:17:17 PM] Error deploying archive sca_getPickFile_rev1.0.jar to partition "default" on server SANDPIT_SOA
    [09:17:17 PM] #### Deployment incomplete. ####
    [09:17:17 PM] Error deploying archive file:/C:/JDeveloper/mywork/pdfService/getPickFile/deploy/sca_getPickFile_rev1.0.jar
    (oracle.tip.tools.ide.fabric.deploy.common.SOARemoteDeployer)

    Hi
    some times this error comes if the Packages for using JAVA are not i mported into BPEL Weused to get same error but after importing the packages the error usually used to be solved please check whether if the class files which you are using are correctly imported or not
    ex
    <import location="java.util.Properties"
    importType="http://schemas.oracle.com/bpel/extension/java"/>
    <import location="java.io.*"
    importType="http://schemas.oracle.com/bpel/extension/java"/>

  • GX Error - after - Install Web Connector Plugin for iWS

    After custom installation from web connector plugin in iWS, the
    browser shows
    GX Error
    socket result code missing !!!
    Is seems the plugin can't call the remote web application.
    I see a establised connection between the web server and die application
    server port 10818 (Exec Proc)
    and to the LDAP server port 50505.
    If I connect directly the web server installed lokaly the appilkation runs
    (fortune).
    Any idee ?
    Sven Kirsten

    Okay, lets say more about the scenario:
    server1 server2
    |---------------- ---------------------------
    | iWeb Server | | iApplication Server (Exec
    Port 10818) |
    | with plugin |---------------------|LDAP Server (Port 50505)
    |
    |---------------| | iWeb Server with Plugin
    |
    If I go to server 2:
    http://server2/NASApp/fortune/fortune
    fortune runs
    If I go to server1
    http://server1/NASApp/fortune/fortune
    I got the message on the browser
    GX Error
    socket result code missing !!!
    Thats meens, the application servers runs fine.
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    If I run from server 1:
    In the kxs_0_CCS0 log on the server2 I find the following:
    [04/Okt/2001 10:57:25:7] info: NSAPICLI-012: plugin reqstart, tickct:
    1002185845s 794005us
    [04/Okt/2001 10:57:25:7] warning: UTIL-013: GXGUID: NameTrans lookup failed
    (Applogic Servlet fortune_fortune)
    [04/Okt/2001 10:57:25:7] warning: NSAPICLI-011: socket result code
    missing!!!
    [04/Okt/2001 10:57:25:7] info: NSAPICLI-009: plugin reqexit: 0s 1828us
    In the kjs_1_CCS0 log on server 2 I find the following.
    [02/Okt/2001 17:30:18:1] error: Exception: SERVLET-execution_failed: Error
    in executing servlet JSPRunner: java.lang.NullPointer
    Exception
    Exception Stack Trace:
    java.lang.NullPointerException
    at com.netscape.server.servlet.jsp.JSPRunner.service(Unknown Source)
    at javax.servlet.http.HttpServlet.service(Compiled Code)
    at
    com.netscape.server.servlet.servletrunner.ServletInfo.service(Compiled Code)
    at
    com.netscape.server.servlet.servletrunner.ServletRunner.execute(Compiled
    Code)
    at com.kivasoft.applogic.AppLogic.execute(Compiled Code)
    at com.kivasoft.applogic.AppLogic.execute(Compiled Code)
    at com.kivasoft.thread.ThreadBasic.run(Native Method)
    at com.kivasoft.thread.ThreadBasic.run(Native Method)
    at com.kivasoft.thread.ThreadBasic.run(Native Method)
    at com.kivasoft.thread.ThreadBasic.run(Native Method)
    at com.kivasoft.thread.ThreadBasic.run(Compiled Code)
    at java.lang.Thread.run(Compiled Code)
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    If I run from server 2:
    In the kxs_0_CCS0 log on the server2 I find the following:
    [04/Okt/2001 11:08:58:1] info: NSAPICLI-012: plugin reqstart, tickct:
    1002186538s 187717us
    [04/Okt/2001 11:08:58:3] info: NSAPICLI-009: plugin reqexit: 0s 113269us
    In the kjs_1_CCS0 log on server 2 I find the following.
    [04/Okt/2001 11:05:55:8] info: --------------------------------------
    [04/Okt/2001 11:05:55:8] info: FortuneServlet: init
    [04/Okt/2001 11:05:55:8] info: --------------------------------------
    [04/Okt/2001 11:05:56:0] info: --------------------------------------
    [04/Okt/2001 11:05:56:0] info: jsp.APPS.fortune.fortune: init
    [04/Okt/2001 11:05:56:0] info: --------------------------------------
    ++++++++++++++++++
    In the error case there is a NameTrans Lookup failure for the web
    application.
    The naming service from the application server can't locate the fortune
    application.
    I hope it helps you the locate more detailed the problem.
    Thanks,
    Sven K
    "Sven Kirsten" <[email protected]> schrieb im Newsbeitrag
    news:[email protected]...
    After custom installation from web connector plugin in iWS, the
    browser shows
    GX Error
    socket result code missing !!!
    Is seems the plugin can't call the remote web application.
    I see a establised connection between the web server and die application
    server port 10818 (Exec Proc)
    and to the LDAP server port 50505.
    If I connect directly the web server installed lokaly the appilkation runs
    (fortune).
    Any idee ?
    Sven Kirsten

  • Error after configure webutil

    hi all
    I configured webutill will but i still receive error in this form GET_FILE_NAME_WEBUTIL_DEMO in CLIENT_GET_FILE_NAME
    could some help plz
    thanks

    Perhaps it is time to "clear the air," so to speak, and focus on your issue.
    user10947262 - Posted: Nov 9, 2010 12:32 PM you still keep saying i did not mentioned my error Haaaaay wake up there is a new topic here >
    Could you please provide more information about the error you are getting? Are you actually getting an error, such as a WUB-600 or WUC-10 or does nothing happen when you run your form? If nothing happens, then we need to see the output from the Java Console as the error will be listed there. Please post the following information so we can better help you.
    <ol>
    <li>Any error code and message you have received
    <li>Oracle Forms version (eg: 10.1.2.0.2 versus 10g)
    <li>Jinitiator or Sun JRE version
    <li>Browser version
    <li>Operating System (OS) version
    <li>Output from the Java Console
    </ol>
    user10947262 - Posted: Nov 9, 2010 12:32 PM right for JOKING because this forum was not build for joking and you have to no if some write something in this forum that's mean he serious>
    With respects to this statement, you are both right and wrong. You are right, in that the Forum is meant to help people and it can be serious. However, I feel you are wrong about the joking. Humor is a wonderful thing and sometimes you can ask a very serious and complicated question in a humorous way and get and be offered solutions by twice as many people than if you had asked the question seriously. What makes forums like this one work is volunteers willing to spend some of their time helping others. Therefore, it is important to ask the right questions (as Denis Segard tried to point out with the links he provided) and give as much information as you can about an issue so we can offer solutions.
    If you look at all of us who participate in the forums; Andreas, Francois, Manu, Ammad, myself and many others, we have all used humor in our responses at different times. Humor does not lessen the value of anyone's question or solution. In my humble opinion, humor can enhance an offered solution.
    The last thing humor should do is incite the "Flamming" of people in the forum. As I said in the beginning of my response, lets "Clear the Air" and focus on the problem and solution. However, I can't guarantee there won't be any light-hearted humor along the way! ;)
    Please post the answers to my questions and we (the community) will try and offer you some solutions.
    Craig...
    Edited by: CraigB on Nov 9, 2010 1:06 PM

  • New error after recent java update on Mac

    Hi,
    We run a learning management system that uses LiveConnect to communicate between the elearning module and the LMS.
    Recently all sorts of things started going wrong, around the time of the latest update.
    I just tried it from my Leopard-OS imac running Safari 3.1.2
    Learning modules will no longer launch, and the following errors show up in the console.
    If I launch from Safari, I get:
    Java Plug-in 1.5.0
    Using JRE version 1.5.0_13 Java HotSpot(TM) Client VM
    User home directory = /Users/ellenm1
    network: Loading user-defined proxy configuration…
    network: Done.
    network: Loading proxy configuration from Netscape Navigator…
    network: Done.
    network: Loading direct proxy configuration…
    network: Done.
    network: Proxy Configuration: No proxy
    basic: Cache is enabled
    basic: Location: /Users/ellenm1/Library/Caches/Java/cache/javapi/v1.0
    basic: Maximum size: unlimited
    basic: Compression level: 0
    basic: Referencing classloader: sun.plugin.ClassLoaderInfo@9444d1, refcount=1
    basic: Loading applet/u2026
    basic: Added progress listener: sun.plugin.util.GrayBoxPainter@4ac216
    basic: Initializing applet/u2026
    basic: Referencing classloader: sun.plugin.ClassLoaderInfo@9444d1, refcount=2
    basic: Releasing classloader: sun.plugin.ClassLoaderInfo@9444d1, refcount=1
    basic: Starting applet…
    basic: Loading http://lmserver.com/pathto/apiadapter_lms.jar from cache
    basic: No certificate info, this is unsigned JAR file.
    java.net.MalformedURLException
         at java.net.URL.<init>(URL.java:601)
         at java.net.URL.<init>(URL.java:464)
         at java.net.URL.<init>(URL.java:413)
         at org.adl.lms.client.DocentAPIAdapterApplet.initServlet(Unknown Source)
         at org.adl.lms.client.APIAdapterApplet.init(Unknown Source)
         at org.adl.lms.client.DocentAPIAdapterApplet.init(Unknown Source)
         at sun.applet.AppletPanel.run(AppletPanel.java:380)
         at java.lang.Thread.run(Thread.java:613)
    liveconnect: Java: Obj is <org.adl.lms.client.DocentAPIAdapterApplet>
    liveconnect: Java: method is <public java.util.Properties org.adl.lms.client.DocentAPIAdapterApplet.pingLMS()>
    liveconnect: Java:  method has 0 arguments.
    liveconnect: JavaScript: caller and callee have same origin
    liveconnect: JavaScript: default security policy = http://lmserver.com/pathto/docentisapi.dll/lms,APPSERVER01.ourserver.com,2151/SQN%3D-57596664/
    Exception caught In DocentServletProxy::DoHACPRequest()
    null
    liveconnect: Java: Returning a null

    We're facing the same trouble, we have a very similar stack trace and the error occurs only with Safari v 3.2.1; no firewalls and no domains, the issue is related with this snippet of java applet code compiled against jdk v 1.4.12:
    new PropertyResourceBundle(MyToolbar.class.getResourceAsStream("toolbar.properties"));
    where the execution of getResourceAsStream throws a NPE.
    "toolbar.properties" is a property file within the applet jar, the applet tries to acces such file with the execution of this line but fails.
    This error happens with Safari and Google Chrome,
    while it works fine with IE7, Firefox 2 and 3
    the stacktrace contains the following lines:
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at sun.plugin.javascript.JSInvoke.invoke(Unknown Source)
         at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at sun.plugin.javascript.JSClassLoader.invoke(Unknown Source)
         at sun.plugin.liveconnect.PrivilegedCallMethodAction.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.plugin.liveconnect.SecureInvocation$2.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.plugin.liveconnect.SecureInvocation.CallMethod(Unknown Source)
    hope someone can help
    thanks,
    Paolo

  • Error while configuring the application server for ESB on Jdeveloper

    While i try to configure a application server connection on Jdeveloper for a remote installation of ESB (advanced mode with all the three components together and not in a cluster mode) i get the following error :
    Error getting OC4J Process for: opmn-home+oc4j-10.10.36.21-6003-default:
    Error connecting to OPMN (is it running?): Connection refused: connect
    All the OC4J processes are running on the server as i get the following output for the ./opmnctl status command :
    [oraclesoa@esboid2 bin]$ ./opmnctl status
    Processes in Instance: home.localhost.localdomain
    --------------------------------------------------------------+---------
    ias-component | process-type | pid | status
    --------------------------------------------------------------+---------
    OC4JGroup:default_group | OC4J:oc4j_soa | 10000 | Alive
    OC4JGroup:default_group | OC4J:home | 9999 | Alive
    ASG | ASG | N/A | Down
    HTTP_Server | HTTP_Server | 9998 | Alive
    The installation is on a Linux box.
    I give the following details in the connection properties box in Jdeveloper :
    host : 10.10.36.21
    opmn port : 6003
    oc4j instance : home
    Also the opmn port is correct :
    [oraclesoa@esboid2 bin]$ ./opmnctl status -port
    esboid2:6003
    Any ideas on this?
    Message was edited by:
    Nilay

    i tried with taht.....same error.......is this an issue with port 6003 on the server........it is a linux server and I cannot telnet to it......i can use SSH though.......how to know whether the opmn port(6003) is open or not?.....

  • Error in Configuring the EBS Adapter for WebCenter

    Hi All,
    when I'm configuring EBS Adapter for Web Center I'm getting the below Error while running the sql script AXF_EBS_SOLUTION_DATA.sql ,and I check the AXF_CONFIGS table is not available in db schema, not sure when this table will create. please find the error log detail below and give me some hint or link to overcome from this issue.
    Error Log:
    SQL> @AXF_EBS_SOLUTION_DATA.sql
    49  /
      v_formId AXF_CONFIGS.FORMID%TYPE;
    ERROR at line 2:
    ORA-06550: line 2, column 12:
    PLS-00201: identifier 'AXF_CONFIGS.FORMID' must be declared
    ORA-06550: line 2, column 12:
    PL/SQL: Item ignored
    ORA-06550: line 3, column 26:
    PLS-00302: component 'EVENTID' must be declared
    ORA-06550: line 3, column 13:
    PL/SQL: Item ignored
    ORA-06550: line 6, column 8:
    PL/SQL: ORA-02289: sequence does not exist
    ORA-06550: line 6, column 1:
    PL/SQL: SQL Statement ignored
    ORA-06550: line 7, column 13:
    PL/SQL: ORA-00942: table or view does not exist
    ORA-06550: line 7, column 1:
    PL/SQL: SQL Statement ignored
    ORA-06550: line 9, column 8:
    PL/SQL: ORA-02289: sequence does not exist
    ORA-06550: line 9, column 1:
    PL/SQL: SQL Statement ignored
    ORA-06550: line 10, column 254:
    PLS-00320: the declaration of the type of this expression is incomplete or
    malformed
    ORA-06550: line 10, column 254:
    PL/SQL: ORA-00904: "V_FORMID": invalid identifier
    ORA-06550: line 10, column 1:
    PL/SQL: SQL Statement ignored
    ORA-06550: line 11, column 13:
    PL/SQL: ORA-00942: table or view does not exist
    ORA-06550: line 11, column 1:
    PL/SQL: SQL Statement ignored
    ORA-06550: line 13, column 8:
    PL/SQL: ORA-02289: sequence does not exist
    ORA-06550: line 13, column 1:
    PL/SQL: SQL Statement ignored
    ORA-06550: line 14, column 254:
    PLS-00320: the declaration of the type of this expression is incomplete or
    malformed
    ORA-06550: line 14, column 254:
    PL/SQL: ORA-00904: "V_FORMID": invalid identifier
    ORA-06550: line 14, column 1:
    PL/SQL: SQL Statement ignored
    Thanks in advance
    Sanjeev

    Hi Sanjeev,
    You need to check if you have access to AXF_CONFIGS table. Check if you have ran GRANT_ACCESS.sql script which has below grant commands.
    grant execute any type to apps;
    grant create type to AXF;
    grant select on AXF.AXF_CONFIGS to apps;
    v_formId AXF_CONFIGS.FORMID%TYPE; means tableName.columnName%type;
    so looks like when you are running AXF_EBS_SOLUTION_DATA.sql you are not able to access AXF_CONFIGS table.
    Hope this helps.
    Regards,
    Amol Gavali.

Maybe you are looking for

  • Where do I go on iCloud to view my photos and videos?

    Where do I go on iCloud to view my photos and videos? I have my iCloud account open but there is no shortcut for the camera roll?

  • MM41/MM42/(MM43) - Sales view: How to add own input validation for CALP-END

    Hello. I am looking for an easy way, if any to create an own input validation for a certain field in the article master on the sales view tab. In addition to any standard input validation I would a like to add an own validation (for CALP-ENDPR) depen

  • Problem uploading attachments with Safari 4 & gmail.

    I didn't have this problem with the beta, but with the release version whenever I upload an attachment, after I select the file nothing happens. Anyone else have this problem, or is this a pebcak problem?

  • Faults in BPEL when invoked from a Custom built Web Application

    Hello there, I have developed a BPEL flow for a HealthCare demo and it works fine and all is well when it is invoked from the BPEL Console's initiate screen. I developed a webapplication to invoke the same (using the regular com.collaxa api for invok

  • 3.1.2 Has Ruined my Wifi

    When i first got my 3GS i had a problem with wifi where after about 10mins it would need to be reset (either renew lease or disconnect and reconnect) That was with OS 3.0.1 Then when 3.1 was released this appeared to have been fixed and i didn't have