JCAPS 5.1.3 ED com.stc.importexport.module.STCNodePasteUsingImportExportAct

When I start ED I see the following exceptions.
java.lang.ClassNotFoundException: com.stc.importexport.module.STCNodePasteUsingImportExportAction
at java.net.URLClassLoader$1.run(URLClassLoader.java:199)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:187)
at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:274)
at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
at org.netbeans.core.modules.ProxyClassLoader.loadInOrder(ProxyClassLoader.java:472)
at org.netbeans.core.modules.ProxyClassLoader.smartLoadClass(ProxyClassLoader.java:452)
at org.netbeans.core.modules.ProxyClassLoader.loadClass(ProxyClassLoader.java:124)
at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
at com.stc.egate.gui.projectexplorer.ProjectExplorer.buildActionDataBase(ProjectExplorer.java:501)
at com.stc.egate.gui.projectexplorer.ProjectExplorer.init(ProjectExplorer.java:426)
at com.stc.egate.gui.projectexplorer.LoadExplorerAction.loadExplorer(LoadExplorerAction.java:90)
at com.stc.egate.gui.projectexplorer.LoadExplorerAction.performAction(LoadExplorerAction.java:76)
at com.stc.login.module.LaunchLoginAction.launchExplorer(LaunchLoginAction.java:208)
at com.stc.login.module.LaunchLoginAction.access$200(LaunchLoginAction.java:72)
at com.stc.login.module.LaunchLoginAction$3.construct(LaunchLoginAction.java:290)
at com.stc.login.module.SwingWorker$2.run(SwingWorker.java:124)
[catch] at java.lang.Thread.run(Thread.java:534)
when I press
java.lang.NullPointerException
at com.stc.egate.gui.projectexplorer.ProjectTree.buildSubMenu(ProjectTree.java:1913)
at com.stc.egate.gui.projectexplorer.ProjectTree.buildNewActions(ProjectTree.java:1848)
at com.stc.egate.gui.projectexplorer.ProjectTree.<init>(ProjectTree.java:922)
at com.stc.egate.gui.projectexplorer.ProjectExplorer.createTree(ProjectExplorer.java:617)
at com.stc.egate.gui.projectexplorer.ProjectExplorer.init(ProjectExplorer.java:428)
at com.stc.egate.gui.projectexplorer.LoadExplorerAction.loadExplorer(LoadExplorerAction.java:90)
at com.stc.egate.gui.projectexplorer.LoadExplorerAction.performAction(LoadExplorerAction.java:76)
at com.stc.login.module.LaunchLoginAction.launchExplorer(LaunchLoginAction.java:208)
at com.stc.login.module.LaunchLoginAction.access$200(LaunchLoginAction.java:72)
at com.stc.login.module.LaunchLoginAction$3.construct(LaunchLoginAction.java:290)
at com.stc.login.module.SwingWorker$2.run(SwingWorker.java:124)
[catch] at java.lang.Thread.run(Thread.java:534)
and next gives me the following exception.
java.lang.ClassNotFoundException: com.stc.importexport.module.STCNodePasteUsingImportExportAction
at java.net.URLClassLoader$1.run(URLClassLoader.java:199)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:187)
at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:274)
at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
at org.netbeans.core.modules.ProxyClassLoader.loadInOrder(ProxyClassLoader.java:472)
at org.netbeans.core.modules.ProxyClassLoader.smartLoadClass(ProxyClassLoader.java:452)
at org.netbeans.core.modules.ProxyClassLoader.loadClass(ProxyClassLoader.java:124)
at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
at com.stc.egate.environmentexplorer.gui.EnvironmentExplorer.buildActionDataBase(EnvironmentExplorer.java:415)
at com.stc.egate.environmentexplorer.gui.EnvironmentExplorer.init(EnvironmentExplorer.java:349)
at com.stc.egate.environmentexplorer.gui.LoadExplorerAction.loadExplorer(LoadExplorerAction.java:76)
at com.stc.egate.environmentexplorer.gui.LoadExplorerAction.performAction(LoadExplorerAction.java:66)
at com.stc.login.module.LaunchLoginAction.launchExplorer(LaunchLoginAction.java:208)
at com.stc.login.module.LaunchLoginAction.access$200(LaunchLoginAction.java:72)
at com.stc.login.module.LaunchLoginAction$3.construct(LaunchLoginAction.java:296)
at com.stc.login.module.SwingWorker$2.run(SwingWorker.java:124)
[catch] at java.lang.Thread.run(Thread.java:534)
==>
Any help appreciated.

On a technical note this exception occurs when:
&bull;It
occurs during the loading phase while loading the class "Explicitly"
&bull;According
to JLS (Java Language Specification)
-The forName() method in class Class.
-The findSystemClass method() in class ClassLoader.
-The loadClass() method in class ClassLoader.
&bull;By
throwing a ClassNotFoundException, the class loader informs you that the bytecode
required to define the class is simply not present in the locations where the
class loader is looking for it.
So some of the nbms or the sar files that are having the class(es) com.stc.importexport.module.STCNodePasteUsingImportExportAction is not present in the Enterprise Designer. Please install the NBMs in the Enterprise Designer by connecting to the repository.

Similar Messages

  • Problem with System.getProperty( "com.stc.application.dataroot" ) in JCAPS6

    Hello everybody,
    I'm using JCAPS 6 but I have to follow a guideline of projects implemented with JCAPS 5.1.3.
    The project for example, has written for the logs-directory in method user initialize this code:
    // JCAPS uses JVM version 1.5
    logger.info( "--- BEGIN ------ JCAPS userInitialize" );
    String currRoot = System.getProperty( "com.stc.application.dataroot" );
    String log4j_props = currRoot + "/../../NameDirectory/" + collabContext.getProjectPath() + "/" +
    collabContext.getCollaborationName() + "_log4j.properties";
    With JCAPS 6 I don't know how to substitute "System.getProperty( "com.stc.application.dataroot" );" because with it don't function.
    Somebody can help me?
    Thanx!
    Fabrizio

    This is the correct code:
    // JCAPS uses JVM version 1.5
    logger.info( "--- BEGIN ------ JCAPS userInitialize" );
    String currRoot = System.getProperty( "com.stc.application.dataroot" );
    String log4j_props = currRoot + "/../../NoemaLife/" + collabContext.getProjectPath() + "/" + collabContext.getCollaborationName() + "_log4j.properties";
    but I have the same problem...

  • Convert String to com.stc.runtime.dt.Date

    Hi every one
    I need to convert a String to com.stc.runtime.dt.Date.
    Can you please guide me?
    thanks.

    String to UtilDate:
    import java.text.SimpleDateFormat;
    import java.util.Date;
    import java.util.Calendar;
    public class ttest
        private static SimpleDateFormat sdf1 = new SimpleDateFormat("yyyyMMddHHmmssZ");
        private static SimpleDateFormat sdf2 = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'");
        public static void main(String[] args) {
         Date dt = null;
         try {
             dt = sdf1.parse("20040921124448+0200");
             System.out.println(dt.toString());
         catch(java.text.ParseException pe) {
             System.err.println("Incorrect Date Format!");
         Calendar cdr = Calendar.getInstance();
         cdr.setTime(dt);
         System.out.println("Year is: " + cdr.get(Calendar.YEAR));
         System.out.println("Zone Offset is: " + cdr.get(Calendar.ZONE_OFFSET));
         Date dt = new Date();
         System.out.println(sdf.format(dt));
         try {
             String sUTC = sdf2.format(dt);
             System.out.println("UTC: " + sUTC);
         catch(IllegalArgumentException pe) {
             System.err.println("Incorrect Date Format 2!");
    }UtilDate and RuntimeDates
    import com.stc.runtime.dt.Date;
    import com.stc.runtime.dt.Time;
    import com.stc.runtime.dt.DateTimeFactory;
    import com.stc.otd.xsd.datatype.Date2001;
    import com.stc.otd.xsd.datatype.Time2001;
    import com.stc.otd.xsd.datatype.DateTime;
    import java.util.Calendar;
    import java.util.GregorianCalendar;
    public class dates
        public static void main (String[] parameters)
         dates tq1 = new dates();
         return;
        private dates()
         java.util.Date dtUtil = new java.util.Date();
         Date2001  d2001 = utilDate2xsdDate(dtUtil);
         System.out.println("Current date is: " + d2001.toString());
         com.stc.runtime.dt.Date dt = d2001;
         Time2001 t2001 = utilDate2xsdTime(dtUtil);
         System.out.println("Current time is: " + t2001.toString());
         com.stc.runtime.dt.Time tm = t2001;
         com.stc.runtime.dt.DateTime dttm = new DateTimeFactory().createDateTime();
         //     java.sql.Timestamp dt1 = xsdDateTime2utilTimestamp(new DateTime());
         java.sql.Timestamp dt1 = xsdDateTime2utilTimestamp(dttm);
         System.out.println("Current timestamp is: " +
                      dt1.toString());
         return;
        private java.sql.Timestamp xsdDateTime2utilTimestamp(com.stc.runtime.dt.DateTime dt1)
         Calendar c = dt1.getCal();
         return new java.sql.Timestamp(c.getTime().getTime());
        private Date2001 utilDate2xsdDate(java.util.Date d1) {
         Date2001 dt = new Date2001();
         Calendar c = Calendar.getInstance();
         c.setTime(d1);
         dt.setYear(c.get(Calendar.YEAR));
         dt.setMonth(c.get(Calendar.MONTH) + 1);
         dt.setDay(c.get(Calendar.DAY_OF_MONTH));
         return dt;
        private Time2001 utilDate2xsdTime(java.util.Date d1) {
         Time2001 tm = new Time2001();
         Calendar c = Calendar.getInstance();
         c.setTime(d1);
         tm.setHours(c.get(Calendar.HOUR_OF_DAY));
         tm.setMinutes(c.get(Calendar.MINUTE));
         tm.setSeconds(c.get(Calendar.SECOND));
         return tm;
        private java.util.Date xsdDate2utilDate(Date2001 d1) {
         Calendar c = Calendar.getInstance();
         c.set(d1.getYear(), d1.getMonth() - 1, d1.getDay());
         return c.getTime();
    }

  • How come my develop module doesnt work???

    how come my develop module doesn't work when I just started paying for lightroom???

    Several possibilities.
    1. You don't have a creative cloud account.
    2. You aren't paid current on your creative cloud account.
    3. You aren't signed into the creative cloud.
    4. You have a standalone license, and have installed from the creative cloud.

  • HP DV7-3079wm - Does this laptop come with Bluetooth Module installed by default?

    Hello all,
    I just purchased this laptop and it is enroute to me now via FedEx. I am wondering if the laptop has the BlueTooth module preinstalled by default or do I need to purchase one and install it after I receive it?
    Thanks in advance,
    ~D~

    Hello Raven283.  I understand that after trying to flash your BIOS from within Windows 8 you're no longer able to boot the notebook.  Is this correct?
    Here is more information about HP and the upgrade to Windows 8. 
    It sounds like your thinking is correct.  It seems that the installer/flashing program did not properly execute within Windows 8.   Now that the flash failed the BIOS does not appear to want to load properly.  HP notebooks flash the BIOS via a Windows executable file and do not support flashing via a USB drive.  So, you will need to contact HP Technical Support in order to get the notebok back to working condition. 
    You can check the status of your warranty by going here.  Contact HP at 1-800-474-6836 if you're in the US/Canada.  If you're in another area you'll need to go to HP's Support Site to get your area's contact information.
    I hope this was helpful!
    Please click the white star under my name to give me Kudos as a way to say "Thanks!"
    Click the "Accept as Solution" button if I resolve your issue.

  • DB2 Connect OTD problem in JCAPS 6

    Hi,
    I am getting the error "could not locate jdbc driver com.ibm.db2.jcc.db2driver" Where do i need to place the DB2 jar files??
    Regards,
    Munaf

    I've used the DB2Connect 3rd party library installer that shipped with JCAPS 6. That didn't work at all (console reported that it moved 3 files to a certain directory, navigate to that directory and only 1 file is there.)
    Here is the stacktrace from messages.log:
    INFO [com.stc.otd.forest.provider.OtdRepositoryContext]: LookUpOtd: XMLDB2/otdSQLServLookup from Repository.......
    WARNING [com.stc.bpms.common.model.wsdl.visitor.SAXParseVisitor]: Parent Project Element must be specified in order for imports to function correctly.
    INFO [com.stc.otd.forest.provider.OtdRepositoryContext]: LookUpOtd: XMLDB2/otdSQLServLookup from Repository.......
    WARNING [org.openide.util.IconManager]: Initial slashes in Utilities.loadImage deprecated (cf. #20072): /com/stc/deployment/module/resources/deployment.png
    INFO [com.stc.otd.forest.provider.OtdRepositoryContext]: LookUpOtd: XMLDB2/KFC/OTD/otdKFCToDB2 from Repository.......
    WARNING [com.stc.bpms.common.model.wsdl.visitor.SAXParseVisitor]: Parent Project Element must be specified in order for imports to function correctly.
    Warning: use of system property netbeans.home in com.stc.db2connect.wizard.ConnectionVisualPanel has been obsoleted in favor of InstalledFileLocator
    java.lang.ClassNotFoundException: COM.ibm.db2.jdbc.app.DB2Driver
         at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
         at org.netbeans.ProxyClassLoader.loadClass(ProxyClassLoader.java:244)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:164)
         at com.stc.db2connect.builder.DBMetaData.connectDB(DBMetaData.java:324)
         at com.stc.db2connect.wizard.ConnectionPanel.canConnectToDb(ConnectionPanel.java:278)
         at com.stc.db2connect.wizard.DbIterator.nextPanel(DbIterator.java:520)
         at org.openide.WizardDescriptor$Listener$1.run(WizardDescriptor.java:1857)
         at org.openide.WizardDescriptor.lazyValidate(WizardDescriptor.java:1316)
         at org.openide.WizardDescriptor.access$1200(WizardDescriptor.java:119)
         at org.openide.WizardDescriptor$Listener.actionPerformed(WizardDescriptor.java:1880)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at org.openide.util.WeakListenerImpl$ProxyListener.invoke(WeakListenerImpl.java:449)
         at $Proxy21.actionPerformed(Unknown Source)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1849)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2169)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
         at javax.swing.AbstractButton.doClick(AbstractButton.java:302)
         at javax.swing.plaf.basic.BasicRootPaneUI$Actions.actionPerformed(BasicRootPaneUI.java:190)
         at javax.swing.SwingUtilities.notifyAction(SwingUtilities.java:1571)
         at javax.swing.JComponent.processKeyBinding(JComponent.java:2772)
         at javax.swing.KeyboardManager.fireBinding(KeyboardManager.java:255)
         at javax.swing.KeyboardManager.fireKeyboardAction(KeyboardManager.java:204)
         at javax.swing.JComponent.processKeyBindingsForAllComponents(JComponent.java:2849)
         at javax.swing.JComponent.processKeyBindings(JComponent.java:2841)
         at javax.swing.JComponent.processKeyEvent(JComponent.java:2735)
         at java.awt.Component.processEvent(Component.java:5294)
         at java.awt.Container.processEvent(Container.java:1966)
         at java.awt.Component.dispatchEventImpl(Component.java:3984)
         at java.awt.Container.dispatchEventImpl(Container.java:2024)
         at java.awt.Component.dispatchEvent(Component.java:3819)
         at java.awt.KeyboardFocusManager.redispatchEvent(KeyboardFocusManager.java:1826)
         at java.awt.DefaultKeyboardFocusManager.dispatchKeyEvent(DefaultKeyboardFocusManager.java:681)
         at java.awt.DefaultKeyboardFocusManager.preDispatchKeyEvent(DefaultKeyboardFocusManager.java:938)
         at java.awt.DefaultKeyboardFocusManager.typeAheadAssertions(DefaultKeyboardFocusManager.java:810)
         at java.awt.DefaultKeyboardFocusManager.dispatchEvent(DefaultKeyboardFocusManager.java:645)
         at java.awt.Component.dispatchEventImpl(Component.java:3857)
         at java.awt.Container.dispatchEventImpl(Container.java:2024)
         at java.awt.Window.dispatchEventImpl(Window.java:1791)
         at java.awt.Component.dispatchEvent(Component.java:3819)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
         at org.netbeans.core.TimableEventQueue.dispatchEvent(TimableEventQueue.java:104)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:153)
         at java.awt.Dialog$1.run(Dialog.java:535)
         at java.awt.Dialog$2.run(Dialog.java:565)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.awt.Dialog.show(Dialog.java:563)
         at org.netbeans.core.windows.services.NbPresenter.superShow(NbPresenter.java:835)
         at org.netbeans.core.windows.services.NbPresenter.doShow(NbPresenter.java:869)
         at org.netbeans.core.windows.services.NbPresenter.run(NbPresenter.java:857)
         at org.netbeans.core.windows.services.NbPresenter.run(NbPresenter.java:108)
         at org.openide.util.Mutex.doEventAccess(Mutex.java:1355)
         at org.openide.util.Mutex.readAccess(Mutex.java:268)
         at org.netbeans.core.windows.services.NbPresenter.show(NbPresenter.java:842)
         at com.stc.db2connect.wizard.Db2ConnectDatabaseOtdEditAction.performAction(Db2ConnectDatabaseOtdEditAction.java:132)
         at org.openide.util.actions.NodeAction$DelegateAction$1.run(NodeAction.java:581)
         at org.netbeans.modules.openide.util.ActionsBridge.doPerformAction(ActionsBridge.java:77)
         at org.openide.util.actions.NodeAction$DelegateAction.actionPerformed(NodeAction.java:577)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1849)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2169)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
         at javax.swing.AbstractButton.doClick(AbstractButton.java:302)
         at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:1051)
         at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(BasicMenuItemUI.java:1092)
         at java.awt.Component.processMouseEvent(Component.java:5517)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3135)
         at java.awt.Component.processEvent(Component.java:5282)
         at java.awt.Container.processEvent(Container.java:1966)
         at java.awt.Component.dispatchEventImpl(Component.java:3984)
         at java.awt.Container.dispatchEventImpl(Container.java:2024)
         at java.awt.Component.dispatchEvent(Component.java:3819)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3892)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
         at java.awt.Container.dispatchEventImpl(Container.java:2010)
         at java.awt.Window.dispatchEventImpl(Window.java:1791)
         at java.awt.Component.dispatchEvent(Component.java:3819)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
         at org.netbeans.core.TimableEventQueue.dispatchEvent(TimableEventQueue.java:104)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)

  • Problem while starting e-Designer

    Hi,
    I am getting following exception while starting e-Designer.
    Can anybody tell me reason for this?
    java.lang.ClassNotFoundException:
    com.stc.connector.egategui.batchftp.ee.ExternalNewAction
    at java.net.URLClassLoader$1.run(URLClassLoader.java:199)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:187)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:274)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
    at
    org.netbeans.core.modules.ProxyClassLoader.loadInOrder(ProxyClassLoader.java:472)
    at
    org.netbeans.core.modules.ProxyClassLoader.smartLoadClass(ProxyClassLoader.java:452)
    at
    org.netbeans.core.modules.ProxyClassLoader.loadClass(ProxyClassLoader.java:124)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
    at
    com.stc.egate.environmentexplorer.gui.EnvironmentExplorer.addActionTable(EnvironmentExplorer.java:515)
    at
    com.stc.egate.environmentexplorer.gui.EnvironmentExplorer.buildActionDataBase(EnvironmentExplorer.java:471)
    at
    com.stc.egate.environmentexplorer.gui.EnvironmentExplorer.init(EnvironmentExplorer.java:349)
    at
    com.stc.egate.environmentexplorer.gui.LoadExplorerAction.loadExplorer(LoadExplorerAction.java:76)
    at
    com.stc.egate.environmentexplorer.gui.LoadExplorerAction.performAction(LoadExplorerAction.java:66)
    at
    com.stc.login.module.LaunchLoginAction.launchExplorer(LaunchLoginAction.java:208)
    at
    com.stc.login.module.LaunchLoginAction.access$200(LaunchLoginAction.java:72)
    at
    com.stc.login.module.LaunchLoginAction$3.construct(LaunchLoginAction.java:296)
    at com.stc.login.module.SwingWorker$2.run(SwingWorker.java:124)
    [catch] at java.lang.Thread.run(Thread.java:534)
    ==>
    java.lang.ClassNotFoundException:
    com.stc.eways.common.egategui.pe.ExternalApplicationLoadAction
    at java.net.URLClassLoader$1.run(URLClassLoader.java:199)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:187)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:274)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
    at
    org.netbeans.core.modules.ProxyClassLoader.loadInOrder(ProxyClassLoader.java:472)
    at
    org.netbeans.core.modules.ProxyClassLoader.smartLoadClass(ProxyClassLoader.java:452)
    at
    org.netbeans.core.modules.ProxyClassLoader.loadClass(ProxyClassLoader.java:124)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
    at
    com.stc.egate.gui.projectexplorer.ProjectExplorer.addActionTable(ProjectExplorer.java:597)
    at
    com.stc.egate.gui.projectexplorer.ProjectExplorer.buildActionDataBase(ProjectExplorer.java:557)
    at
    com.stc.egate.gui.projectexplorer.ProjectExplorer.init(ProjectExplorer.java:426)
    at
    com.stc.egate.gui.projectexplorer.LoadExplorerAction.loadExplorer(LoadExplorerAction.java:90)
    at
    com.stc.egate.gui.projectexplorer.LoadExplorerAction.performAction(LoadExplorerAction.java:76)
    at
    com.stc.login.module.LaunchLoginAction.launchExplorer(LaunchLoginAction.java:208)
    at
    com.stc.login.module.LaunchLoginAction.access$200(LaunchLoginAction.java:72)
    at
    com.stc.login.module.LaunchLoginAction$3.construct(LaunchLoginAction.java:290)
    at com.stc.login.module.SwingWorker$2.run(SwingWorker.java:124)
    [catch] at java.lang.Thread.run(Thread.java:534)
    ==>

    I am not sure whether this might be the problem or not.
    but once check the url of the e-designer.
    there should not be any spaces in that.
    ok

  • No Connection btw JCAPS 5.1.2 and SAP ECC 6.0 whle creatining SAP/Bapi OTD

    Hello.
    We have the following problem trying to build SAP BAPI/RFC OTD.
    1) JCAPS 5.1.2. SAP ECC 6.0. Jco version 2.1.7 (also tried 2.1.8, 2.0.12 with the same result). All steps were done according to SAP BAPI/ALE eWays user guides and readmes
    2) SAP client already installed and worked ok on the same host as the JCAPS
    3) It looks like the problem is in JCo. It seems like doesn't react when we trying to connect to SAP during creation of BAPI/RFC OTDs at design time.
    Error message: partner not reached
    ERRNO 10060
    All ports are open and no restrictions imposed on JCAPS server. There are no connection log entries on SAP router host.
    4)We tried to run sample Project which goes with eway, and the following entries in logical host log file were found:
    [#|2007-06-12T11:35:13.171+0600|WARNING|IS5.1.2|STC.eWay.SAP.BAPI.com.stc.connector.sapbapiadapter.sapbapi.SAPConnector|_ThreadID=17; ThreadName=Worker: 5;|SAPConnector.isConnect(): JCO Client is null|#]
    [#|2007-06-12T11:35:13.296+0600|INFO|IS5.1.2|STC.eWay.framework.management.com.stc.connector.management.util.Alerter|_ThreadID=17; ThreadName=Worker: 5;|sendAlert(), connection info: ConnectionInfo [ collaboration: cmBAPIOutbound_jcdFlightGetList, project: prjBAPIOutbound, component: eaSAPBAPI, deployment: dpBAPIOutbound, environment: envTest, logicalhost: LogicalHost1, integration server: IntegrationSvr1 ], monitor: ObjectReference [ name: SeeBeyond:GUID={70010000-D247521E130100-AC14015A-01},Name=prjBAPIOutbounddpBAPIOutbound|prjBAPIOutbound|dpBAPIOutbound|cmBAPIOutbound_jcdFlightGetList_eaSAPBAPI ], alert message: No connection established to SAP R/3 for user $$$$$$ on host $$$$$.|#]
    [#|2007-06-12T11:35:13.312+0600|WARNING|IS5.1.2|STC.eWay.SAP.BAPI.com.stc.connector.sapbapiadapter.sapbapi.SAPConnector|_ThreadID=17; ThreadName=Worker: 5;|SAPConnector.isConnect(): JCO Client is not connected.|#]
    [#|2007-06-12T11:35:34.781+0600|INFO|IS5.1.2|STC.eWay.framework.management.com.stc.connector.management.util.Alerter|_ThreadID=17; ThreadName=Worker: 5;|sendAlert(), connection info: ConnectionInfo [ collaboration: cmBAPIOutbound_jcdFlightGetList, project: prjBAPIOutbound, component: eaSAPBAPI, deployment: dpBAPIOutbound, environment: envTest, logicalhost: LogicalHost1, integration server: IntegrationSvr1 ], monitor: ObjectReference [ name: SeeBeyond:GUID={70010000-D247521E130100-AC14015A-01},Name=prjBAPIOutbounddpBAPIOutbound|prjBAPIOutbound|dpBAPIOutbound|cmBAPIOutbound_jcdFlightGetList_eaSAPBAPI ], alert message: Connection to SAP R/3 failed for user $$$$$$ on host $$$$$$.|#]
    [#|2007-06-12T11:35:34.781+0600|SEVERE|IS5.1.2|STC.eWay.SAP.BAPI.com.stc.connector.sapbapiadapter.sapbapi.SAPConnector|_ThreadID=17; ThreadName=Worker: 5;|Unable to initialize SAP R/3 Client Connection|#]
    Any help is appreciated

    Hi Yermek.
    I guess you are placed and set all jars relates to bapi/rfc.
    You need to pass atleast one parameter from jcd which will initiates the BAPI connection.
    i.e atleast from jcd you need to send a request.
    Hope it will work...
    Thanks,
    M.P.Rao.

  • GENERIC_CODELET_GENERAL getting in jcaps 6 while building oracle otd

    getting the following error while oralce otd building. in jcaps 6..any inputs please...
    com.stc.codegen.framework.model.CodeGenException: Generic Oracle eway code generation error(ERROR_CODEGEN_GENERIC_CODELET_GENERAL)
         at com.stc.oracle.codegen.OracleEWayCodeletFactory$OracleEWayCodelet.generateFiles(OracleEWayCodeletFactory.java:1964)
         at com.stc.codegen.frameworkImpl.model.CodeGenFrameworkImpl.processCodelets(CodeGenFrameworkImpl.java:655)
         at com.stc.codegen.frameworkImpl.model.CodeGenFrameworkImpl.process(CodeGenFrameworkImpl.java:1608)
         at com.stc.codegen.frameworkImpl.model.DeploymentVisitorImpl.process(DeploymentVisitorImpl.java:409)
         at com.stc.codegen.frameworkImpl.model.DeploymentVisitorImpl.process(DeploymentVisitorImpl.java:312)
         at com.stc.codegen.frameworkImpl.model.DeploymentVisitorImpl.traverseDeployment(DeploymentVisitorImpl.java:272)
         at com.stc.codegen.driver.module.DeploymentBuildAction.loadCodeGen(DeploymentBuildAction.java:954)
         at com.stc.codegen.driver.module.DeploymentBuildAction.access$1100(DeploymentBuildAction.java:176)
         at com.stc.codegen.driver.module.DeploymentBuildAction$2.run(DeploymentBuildAction.java:630)
         at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:561)
         at org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:986)
    Caused by: com.stc.codegen.framework.model.CodeGenException: Exception when generating OTD code ...Exception: C:\DOCUME~1\KAKKIR~1\LOCALS~1\Temp\builds\dpINT65_Dev_Test\125269491597899\200909111448350978\Insert_Access_InfoPSInsertPSRequest.java:24720: code too large
    public void restore(DataInputStream dis) throws Exception {
    ^
    Note: Some input files use or override a deprecated API.
    Note: Recompile with -Xlint:deprecation for details.
    Note: Some input files use unchecked or unsafe operations.
    Note: Recompile with -Xlint:unchecked for details.
    1 error
    (ERROR_CREATE_OTD)
         at com.stc.oracle.codegen.OracleEWayCodeletFactory$OracleEWayCodelet.generateOtdJarFile(OracleEWayCodeletFactory.java:2152)
         at com.stc.oracle.codegen.OracleEWayCodeletFactory$OracleEWayCodelet.generateFiles(OracleEWayCodeletFactory.java:1854)
         ... 10 more

    hi...
    i too getting same problem..how did u reslove this...
    please help me out...
    thanks in advance
    KK

  • Unable to Start JCAPS 5.1.0 Logical host in Windows XP

    Hi,
    I am unable to start Start JCAPS 5.1.0 Logical Host on my Windows XP OS. I have installed it recently following the JCAPS installation instructions. I have created a domain with the default name 'domain1'.
    Please see the error message that i get in my logs folder C:\JavaCAPS51\logicalhost\is\domains\domain1\logs
    Starting Integration Server 5.1 (build 20060319-0947) ...
    [#|2006-10-05T11:11:00.341+0100|INFO|IS5.1|javax.enterprise.system.core|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|CORE5076: Using [Java HotSpot(TM) Server VM, Version 1.5.0_06] from [Sun Microsystems Inc.]|#]
    [#|2006-10-05T11:11:02.705+0100|INFO|IS5.1|javax.enterprise.system.tools.admin|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|ADM0020:Following is the information about the JMX MBeanServer used:|#]
    [#|2006-10-05T11:11:02.965+0100|INFO|IS5.1|javax.enterprise.system.tools.admin|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|ADM0001:MBeanServer initialized successfully|#]
    [#|2006-10-05T11:11:02.965+0100|INFO|IS5.1|javax.enterprise.resource.jms|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|JMS5038: jms-service element in domain.xml is configured to have type=REMOTE. JMS service will be started locally only if type is LOCAL.|#]
    [#|2006-10-05T11:11:02.975+0100|INFO|IS5.1|javax.enterprise.resource.jms|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|STCMS configuration: dir=[../../domains/domain1/stcms/instance1]; bin=[C:\JavaCAPS51\logicalhost\is\domains\domain1/../../stcms/bin]; config dir=[C:\JavaCAPS51\logicalhost\is\domains\domain1/config]; config=[C:\JavaCAPS51\logicalhost\is\domains\domain1/config/stcms.default.Properties]|#]
    [#|2006-10-05T11:11:03.576+0100|INFO|IS5.1|javax.enterprise.system.core.security|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|Minimum nonce freshness limitation time period is set to: 300000|#]
    [#|2006-10-05T11:11:03.576+0100|INFO|IS5.1|javax.enterprise.system.core.security|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|Maximum nonce clock skew limitation time period is set to: 0|#]
    [#|2006-10-05T11:11:03.576+0100|INFO|IS5.1|javax.enterprise.system.core.security|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|Nonce cache sweep interval is set to: 180000|#]
    [#|2006-10-05T11:11:03.636+0100|INFO|IS5.1|javax.enterprise.resource.jms|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|Registered STCMS configuration MBean com.sun.appserv:jmsservertype=stcms,name=SeeBeyond_JMS_IQ_Manager,type=messaging-server-config-mbean|#]
    [#|2006-10-05T11:11:03.867+0100|INFO|IS5.1|javax.enterprise.resource.jms|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|stcms journal service server disabled|#]
    [#|2006-10-05T11:11:03.867+0100|INFO|IS5.1|javax.enterprise.resource.jms|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|Registered STCMS admin management MBean com.sun.appserv:jmsservertype=stcms,name=SeeBeyond_JMS_IQ_Manager,type=messaging-server-admin-mbean|#]
    [#|2006-10-05T11:11:03.877+0100|INFO|IS5.1|javax.enterprise.resource.jms|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|Registered STCMS alert MBean com.sun.appserv:jmsservertype=stcms,name=SeeBeyond_JMS_IQ_Manager,type=messaging-server-alert-mbean|#]
    [#|2006-10-05T11:11:03.877+0100|INFO|IS5.1|javax.enterprise.resource.jms|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|stcms server alert disabled|#]
    [#|2006-10-05T11:11:03.877+0100|INFO|IS5.1|javax.enterprise.resource.jms|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|Set user.timezone=Europe/London|#]
    [#|2006-10-05T11:11:03.887+0100|INFO|IS5.1|javax.enterprise.resource.jms|_ThreadID=11; ThreadName=STCMS process monitoring;|Starting STCMS server on Windows XP|#]
    [#|2006-10-05T11:11:04.618+0100|INFO|IS5.1|javax.enterprise.resource.jms|_ThreadID=11; ThreadName=STCMS process monitoring;|Monitoring STCMS process ...|#]
    [#|2006-10-05T11:11:06.370+0100|INFO|IS5.1|javax.enterprise.system.container.web|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|Creating virtual server server|#]
    [#|2006-10-05T11:11:06.441+0100|INFO|IS5.1|javax.enterprise.system.core|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|IS AVK Instrumentation disabled|#]
    [#|2006-10-05T11:11:06.461+0100|INFO|IS5.1|javax.enterprise.system.core.security|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|SEC1143: Loading policy provider com.sun.enterprise.security.provider.PolicyWrapper.|#]
    [#|2006-10-05T11:11:06.901+0100|INFO|IS5.1|javax.enterprise.system.core|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|[STC JTS Extension] The last agent commit optimization is enabled.|#]
    [#|2006-10-05T11:11:07.782+0100|INFO|IS5.1|com.stc.corba.any.UtilDelegate|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|[STC CORBA Extension]EE/SE Corba Util delegate loaded|#]
    [#|2006-10-05T11:11:09.395+0100|INFO|IS5.1|com.stc.corba.any.UtilDelegate|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|[STC CORBA Extension]Enabling SE Corba support|#]
    [#|2006-10-05T11:11:09.605+0100|WARNING|IS5.1|javax.enterprise.resource.jms|_ThreadID=11; ThreadName=STCMS process monitoring;|STCMS process ended unexpectedly with exit code 1; initiating application server restart|#]
    [#|2006-10-05T11:11:09.635+0100|INFO|IS5.1|javax.enterprise.system.core|_ThreadID=11; ThreadName=STCMS process monitoring;|sending restart notification to server...server|#]
    [#|2006-10-05T11:11:09.685+0100|INFO|IS5.1|javax.enterprise.system.container.web|_ThreadID=12; ThreadName=RMI TCP Connection(2)-127.0.0.1;|WEB0303: Stopping Tomcat.|#]
    [#|2006-10-05T11:11:09.685+0100|WARNING|IS5.1|javax.enterprise.system.core|_ThreadID=12; ThreadName=RMI TCP Connection(2)-127.0.0.1;stacktrace-id=0;|CORE5061: Exception :
    com.sun.appserv.server.ServerLifecycleException: WEB0106: An error occurred while stopping the web container
         at com.sun.enterprise.web.PEWebContainer.stopInstance(PEWebContainer.java:536)
         at com.sun.enterprise.web.PEWebContainerLifecycle.onShutdown(PEWebContainerLifecycle.java:65)
         at com.sun.enterprise.server.ApplicationServer.onShutdown(ApplicationServer.java:400)
         at com.sun.enterprise.server.Shutdown.startShutdown(Shutdown.java:41)
         at com.sun.enterprise.admin.event.AdminEventMulticaster.invokeShutdownEventListener(AdminEventMulticaster.java:769)
         at com.sun.enterprise.admin.event.AdminEventMulticaster.handleShutdownEvent(AdminEventMulticaster.java:758)
         at com.sun.enterprise.admin.event.AdminEventMulticaster.processEvent(AdminEventMulticaster.java:318)
         at com.sun.enterprise.admin.event.AdminEventMulticaster.multicastEvent(AdminEventMulticaster.java:107)
         at com.sun.enterprise.admin.server.core.channel.AdminChannelServer.sendNotification(AdminChannelServer.java:89)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:294)
         at sun.rmi.transport.Transport$1.run(Transport.java:153)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.rmi.transport.Transport.serviceCall(Transport.java:149)
         at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:460)
         at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:701)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: LifecycleException: WEB0103: This web container has not yet been started
         at com.sun.enterprise.web.WebContainer.stop(WebContainer.java:529)
         at com.sun.enterprise.web.PEWebContainer.stopInstance(PEWebContainer.java:528)
         ... 19 more
    |#]
    [#|2006-10-05T11:11:09.685+0100|INFO|IS5.1|javax.enterprise.system.core|_ThreadID=12; ThreadName=RMI TCP Connection(2)-127.0.0.1;|CORE5051: Shutting down all J2EE applications ...|#]
    [#|2006-10-05T11:11:09.685+0100|INFO|IS5.1|javax.enterprise.system.core|_ThreadID=12; ThreadName=RMI TCP Connection(2)-127.0.0.1;|core.standalone_connector_modules_shutdown_complete|#]
    [#|2006-10-05T11:11:09.685+0100|INFO|IS5.1|javax.enterprise.system.core|_ThreadID=12; ThreadName=RMI TCP Connection(2)-127.0.0.1;|CORE5052: Application shutdown complete.|#]
    [#|2006-10-05T11:11:09.715+0100|WARNING|IS5.1|javax.enterprise.system.tools.admin|_ThreadID=12; ThreadName=RMI TCP Connection(2)-127.0.0.1;|core.tmp_folder_deletion_failed|#]
    [#|2006-10-05T11:11:09.715+0100|INFO|IS5.1|javax.enterprise.resource.jms|_ThreadID=12; ThreadName=RMI TCP Connection(2)-127.0.0.1;|stcms.alert_shutting_down|#]
    [#|2006-10-05T11:11:09.715+0100|INFO|IS5.1|javax.enterprise.resource.jms|_ThreadID=12; ThreadName=RMI TCP Connection(2)-127.0.0.1;|stcms.broker_shutting_down|#]
    [#|2006-10-05T11:11:10.176+0100|SEVERE|IS5.1|javax.enterprise.system.core|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|CORE5082: Exception running j2ee services: [java.lang.RuntimeException: java.lang.ExceptionInInitializerError]|#]
    [#|2006-10-05T11:11:10.226+0100|SEVERE|IS5.1|javax.enterprise.system.core|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;stacktrace-id=1;|CORE5091: Error executing J2EE server ...
    java.lang.RuntimeException: java.lang.ExceptionInInitializerError
         at com.sun.enterprise.server.J2EEServer.run(J2EEServer.java:351)
         at com.sun.enterprise.server.J2EEServer.main(J2EEServer.java:754)
         at com.sun.enterprise.server.ApplicationServer.onInitialization(ApplicationServer.java:233)
         at com.sun.enterprise.server.PEMain.run(PEMain.java:222)
         at com.sun.enterprise.server.PEMain.main(PEMain.java:186)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at org.apache.commons.launcher.ChildMain.run(ChildMain.java:269)
    Caused by: java.lang.RuntimeException: java.lang.ExceptionInInitializerError
         at com.sun.enterprise.server.ServerContextImpl.getMonitoringRegistry(ServerContextImpl.java:374)
         at com.sun.enterprise.iiop.ORBMonitoring.<init>(ORBMonitoring.java:48)
         at com.sun.enterprise.server.J2EEServer.run(J2EEServer.java:236)
         ... 9 more
    Caused by: java.lang.ExceptionInInitializerError
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:164)
         at com.sun.enterprise.server.ServerContextImpl.getMonitoringRegistry(ServerContextImpl.java:368)
         ... 11 more
    Caused by: java.lang.NullPointerException: No MBeanServer was returned by the MBeanServerFactory
         at com.sun.enterprise.admin.monitor.registry.spi.MonitoringRegistrationHelper.getMBeanServer(MonitoringRegistrationHelper.java:83)
         at com.sun.enterprise.admin.monitor.registry.spi.MonitoringRegistrationHelper.<init>(MonitoringRegistrationHelper.java:60)
         at com.sun.enterprise.admin.monitor.registry.spi.MonitoringRegistrationHelper.<clinit>(MonitoringRegistrationHelper.java:55)
         ... 14 more
    |#]
    [#|2006-10-05T11:11:10.226+0100|SEVERE|IS5.1|javax.enterprise.system.core|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|CORE5092: J2EE server reported following error: [java.lang.ExceptionInInitializerError] |#]
    [#|2006-10-05T11:11:10.226+0100|SEVERE|IS5.1|javax.enterprise.system.core|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|CORE5093: Error executing J2EE server |#]
    [#|2006-10-05T11:11:10.226+0100|SEVERE|IS5.1|javax.enterprise.system.core|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;stacktrace-id=2;|CORE5071: An error occured during initialization
    com.sun.appserv.server.ServerLifecycleException: com.sun.appserv.server.ServerLifecycleException: java.lang.ExceptionInInitializerError
         at com.sun.enterprise.server.ApplicationServer.onInitialization(ApplicationServer.java:235)
         at com.sun.enterprise.server.PEMain.run(PEMain.java:222)
         at com.sun.enterprise.server.PEMain.main(PEMain.java:186)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at org.apache.commons.launcher.ChildMain.run(ChildMain.java:269)
    Caused by: com.sun.appserv.server.ServerLifecycleException: java.lang.ExceptionInInitializerError
         at com.sun.enterprise.server.J2EEServer.main(J2EEServer.java:763)
         at com.sun.enterprise.server.ApplicationServer.onInitialization(ApplicationServer.java:233)
         ... 7 more
    Caused by: java.lang.RuntimeException: java.lang.ExceptionInInitializerError
         at com.sun.enterprise.server.J2EEServer.run(J2EEServer.java:351)
         at com.sun.enterprise.server.J2EEServer.main(J2EEServer.java:754)
         ... 8 more
    Caused by: java.lang.RuntimeException: java.lang.ExceptionInInitializerError
         at com.sun.enterprise.server.ServerContextImpl.getMonitoringRegistry(ServerContextImpl.java:374)
         at com.sun.enterprise.iiop.ORBMonitoring.<init>(ORBMonitoring.java:48)
         at com.sun.enterprise.server.J2EEServer.run(J2EEServer.java:236)
         ... 9 more
    Caused by: java.lang.ExceptionInInitializerError
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:164)
         at com.sun.enterprise.server.ServerContextImpl.getMonitoringRegistry(ServerContextImpl.java:368)
         ... 11 more
    Caused by: java.lang.NullPointerException: No MBeanServer was returned by the MBeanServerFactory
         at com.sun.enterprise.admin.monitor.registry.spi.MonitoringRegistrationHelper.getMBeanServer(MonitoringRegistrationHelper.java:83)
         at com.sun.enterprise.admin.monitor.registry.spi.MonitoringRegistrationHelper.<init>(MonitoringRegistrationHelper.java:60)
         at com.sun.enterprise.admin.monitor.registry.spi.MonitoringRegistrationHelper.<clinit>(MonitoringRegistrationHelper.java:55)
         ... 14 more
    |#]
    [#|2006-10-05T11:11:10.226+0100|SEVERE|IS5.1|javax.enterprise.system.core|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|Server Startup failed. Exiting...|#]
    [#|2006-10-05T11:11:10.226+0100|INFO|IS5.1|javax.enterprise.system.core|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|Server shutdown in progress...|#]
    [#|2006-10-05T11:11:10.236+0100|INFO|IS5.1|javax.enterprise.system.container.web|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|WEB0303: Stopping Tomcat.|#]
    [#|2006-10-05T11:11:10.236+0100|WARNING|IS5.1|javax.enterprise.system.core|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;stacktrace-id=3;|CORE5061: Exception :
    com.sun.appserv.server.ServerLifecycleException: WEB0106: An error occurred while stopping the web container
         at com.sun.enterprise.web.PEWebContainer.stopInstance(PEWebContainer.java:536)
         at com.sun.enterprise.web.PEWebContainerLifecycle.onShutdown(PEWebContainerLifecycle.java:65)
         at com.sun.enterprise.server.ApplicationServer.onShutdown(ApplicationServer.java:400)
         at com.sun.enterprise.server.PEMain.run(PEMain.java:255)
         at com.sun.enterprise.server.PEMain.main(PEMain.java:186)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at org.apache.commons.launcher.ChildMain.run(ChildMain.java:269)
    Caused by: LifecycleException: WEB0103: This web container has not yet been started
         at com.sun.enterprise.web.WebContainer.stop(WebContainer.java:529)
         at com.sun.enterprise.web.PEWebContainer.stopInstance(PEWebContainer.java:528)
         ... 9 more
    |#]
    [#|2006-10-05T11:11:10.236+0100|INFO|IS5.1|javax.enterprise.system.core|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|CORE5051: Shutting down all J2EE applications ...|#]
    [#|2006-10-05T11:11:10.236+0100|INFO|IS5.1|javax.enterprise.system.core|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|core.standalone_connector_modules_shutdown_complete|#]
    [#|2006-10-05T11:11:10.236+0100|INFO|IS5.1|javax.enterprise.system.core|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|CORE5052: Application shutdown complete.|#]
    [#|2006-10-05T11:11:10.236+0100|WARNING|IS5.1|javax.enterprise.system.core|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;stacktrace-id=4;|CORE5061: Exception :
    com.sun.appserv.server.ServerLifecycleException: java.rmi.NoSuchObjectException: object not exported
         at com.sun.enterprise.admin.server.core.channel.AdminChannel.destroyRMIChannel(AdminChannel.java:96)
         at com.sun.enterprise.admin.server.core.AdminService.stop(AdminService.java:294)
         at com.sun.enterprise.admin.server.core.AdminServiceLifeCycle.onShutdown(AdminServiceLifeCycle.java:124)
         at com.sun.enterprise.server.ApplicationServer.onShutdown(ApplicationServer.java:400)
         at com.sun.enterprise.server.PEMain.run(PEMain.java:255)
         at com.sun.enterprise.server.PEMain.main(PEMain.java:186)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at org.apache.commons.launcher.ChildMain.run(ChildMain.java:269)
    Caused by: java.rmi.NoSuchObjectException: object not exported
         at sun.rmi.transport.ObjectTable.unexportObject(ObjectTable.java:136)
         at java.rmi.server.UnicastRemoteObject.unexportObject(UnicastRemoteObject.java:280)
         at com.sun.enterprise.admin.server.core.channel.AdminChannel.destroyRMIChannel(AdminChannel.java:94)
         ... 10 more
    |#]
    [#|2006-10-05T11:11:10.236+0100|INFO|IS5.1|javax.enterprise.resource.jms|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|stcms.alert_shutting_down|#]
    [#|2006-10-05T11:11:10.236+0100|INFO|IS5.1|javax.enterprise.resource.jms|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|stcms.broker_shutting_down|#]
    Starting Integration Server 5.1 (build 20060319-0947) ...
    [#|2006-10-05T11:11:20.131+0100|INFO|IS5.1|javax.enterprise.system.core|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|CORE5076: Using [Java HotSpot(TM) Server VM, Version 1.5.0_06] from [Sun Microsystems Inc.]|#]
    [#|2006-10-05T11:11:21.062+0100|INFO|IS5.1|javax.enterprise.system.tools.admin|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|ADM0020:Following is the information about the JMX MBeanServer used:|#]
    [#|2006-10-05T11:11:21.182+0100|INFO|IS5.1|javax.enterprise.system.tools.admin|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|ADM0001:MBeanServer initialized successfully|#]
    [#|2006-10-05T11:11:21.202+0100|INFO|IS5.1|javax.enterprise.resource.jms|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|JMS5038: jms-service element in domain.xml is configured to have type=REMOTE. JMS service will be started locally only if type is LOCAL.|#]
    [#|2006-10-05T11:11:21.202+0100|INFO|IS5.1|javax.enterprise.resource.jms|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|STCMS configuration: dir=[../../domains/domain1/stcms/instance1]; bin=[C:\JavaCAPS51\logicalhost\is\domains\domain1/../../stcms/bin]; config dir=[C:\JavaCAPS51\logicalhost\is\domains\domain1/config]; config=[C:\JavaCAPS51\logicalhost\is\domains\domain1/config/stcms.default.Properties]|#]
    [#|2006-10-05T11:11:21.573+0100|INFO|IS5.1|javax.enterprise.system.core.security|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|Minimum nonce freshness limitation time period is set to: 300000|#]
    [#|2006-10-05T11:11:21.573+0100|INFO|IS5.1|javax.enterprise.system.core.security|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|Maximum nonce clock skew limitation time period is set to: 0|#]
    [#|2006-10-05T11:11:21.573+0100|INFO|IS5.1|javax.enterprise.system.core.security|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|Nonce cache sweep interval is set to: 180000|#]
    [#|2006-10-05T11:11:21.583+0100|INFO|IS5.1|javax.enterprise.resource.jms|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|Registered STCMS configuration MBean com.sun.appserv:jmsservertype=stcms,name=SeeBeyond_JMS_IQ_Manager,type=messaging-server-config-mbean|#]
    [#|2006-10-05T11:11:21.703+0100|INFO|IS5.1|javax.enterprise.resource.jms|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|stcms journal service server disabled|#]
    [#|2006-10-05T11:11:21.703+0100|INFO|IS5.1|javax.enterprise.resource.jms|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|Registered STCMS admin management MBean com.sun.appserv:jmsservertype=stcms,name=SeeBeyond_JMS_IQ_Manager,type=messaging-server-admin-mbean|#]
    [#|2006-10-05T11:11:21.713+0100|INFO|IS5.1|javax.enterprise.resource.jms|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|Registered STCMS alert MBean com.sun.appserv:jmsservertype=stcms,name=SeeBeyond_JMS_IQ_Manager,type=messaging-server-alert-mbean|#]
    [#|2006-10-05T11:11:21.713+0100|INFO|IS5.1|javax.enterprise.resource.jms|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|stcms server alert disabled|#]
    [#|2006-10-05T11:11:21.713+0100|INFO|IS5.1|javax.enterprise.resource.jms|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|Set user.timezone=Europe/London|#]
    [#|2006-10-05T11:11:21.733+0100|INFO|IS5.1|javax.enterprise.resource.jms|_ThreadID=11; ThreadName=STCMS process monitoring;|Starting STCMS server on Windows XP|#]
    [#|2006-10-05T11:11:21.753+0100|INFO|IS5.1|javax.enterprise.resource.jms|_ThreadID=11; ThreadName=STCMS process monitoring;|Monitoring STCMS process ...|#]
    [#|2006-10-05T11:11:23.205+0100|INFO|IS5.1|javax.enterprise.system.container.web|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|Creating virtual server server|#]
    [#|2006-10-05T11:11:23.225+0100|INFO|IS5.1|javax.enterprise.system.core|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|IS AVK Instrumentation disabled|#]
    [#|2006-10-05T11:11:23.235+0100|INFO|IS5.1|javax.enterprise.system.core.security|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|SEC1143: Loading policy provider com.sun.enterprise.security.provider.PolicyWrapper.|#]
    [#|2006-10-05T11:11:23.386+0100|INFO|IS5.1|javax.enterprise.system.core|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|[STC JTS Extension] The last agent commit optimization is enabled.|#]
    [#|2006-10-05T11:11:23.876+0100|INFO|IS5.1|com.stc.corba.any.UtilDelegate|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|[STC CORBA Extension]EE/SE Corba Util delegate loaded|#]
    [#|2006-10-05T11:11:24.087+0100|WARNING|IS5.1|javax.enterprise.resource.corba.S1AS-ORB.rpc.transport|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;stacktrace-id=0;|"IOP00710209: (INTERNAL) Unable to create listener thread on the specific port"
    org.omg.CORBA.INTERNAL: vmcid: SUN minor code: 209 completed: No
         at com.sun.corba.ee.impl.logging.ORBUtilSystemException.createListenerFailed(ORBUtilSystemException.java:3142)
         at com.sun.corba.ee.impl.logging.ORBUtilSystemException.createListenerFailed(ORBUtilSystemException.java:3160)
         at com.sun.corba.ee.impl.legacy.connection.SocketFactoryAcceptorImpl.initialize(SocketFactoryAcceptorImpl.java:60)
         at com.sun.corba.ee.impl.transport.CorbaTransportManagerImpl.getAcceptors(CorbaTransportManagerImpl.java:190)
         at com.sun.corba.ee.impl.transport.CorbaTransportManagerImpl.addToIORTemplate(CorbaTransportManagerImpl.java:207)
         at com.sun.corba.ee.spi.oa.ObjectAdapterBase.initializeTemplate(ObjectAdapterBase.java:104)
         at com.sun.corba.ee.impl.oa.poa.POAImpl.initialize(POAImpl.java:385)
         at com.sun.corba.ee.impl.oa.poa.POAImpl.makeRootPOA(POAImpl.java:253)
         at com.sun.corba.ee.impl.oa.poa.POAFactory$1.evaluate(POAFactory.java:163)
         at com.sun.corba.ee.impl.orbutil.closure.Future.evaluate(Future.java:28)
         at com.sun.corba.ee.impl.resolver.LocalResolverImpl.resolve(LocalResolverImpl.java:22)
         at com.sun.corba.ee.impl.resolver.CompositeResolverImpl.resolve(CompositeResolverImpl.java:20)
         at com.sun.corba.ee.impl.orb.ORBImpl.resolve_initial_references(ORBImpl.java:1112)
         at com.sun.enterprise.server.J2EEServer.run(J2EEServer.java:209)
         at com.sun.enterprise.server.J2EEServer.main(J2EEServer.java:754)
         at com.sun.enterprise.server.ApplicationServer.onInitialization(ApplicationServer.java:233)
         at com.sun.enterprise.server.PEMain.run(PEMain.java:222)
         at com.sun.enterprise.server.PEMain.main(PEMain.java:186)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at org.apache.commons.launcher.ChildMain.run(ChildMain.java:269)
    Caused by: java.lang.RuntimeException: Failed to create server socket when calling ORBSocketFactory.createServerSocket(IIOP_CLEAR_TEXT, 18002)
         at com.sun.corba.ee.impl.legacy.connection.SocketFactoryAcceptorImpl.initialize(SocketFactoryAcceptorImpl.java:57)
         ... 20 more
    Caused by: java.net.BindException: Address already in use: bind
         at sun.nio.ch.Net.bind(Native Method)
         at sun.nio.ch.ServerSocketChannelImpl.bind(ServerSocketChannelImpl.java:119)
         at sun.nio.ch.ServerSocketAdaptor.bind(ServerSocketAdaptor.java:59)
         at sun.nio.ch.ServerSocketAdaptor.bind(ServerSocketAdaptor.java:52)
         at com.sun.enterprise.iiop.IIOPSSLSocketFactory.createServerSocket(IIOPSSLSocketFactory.java:274)
         at com.sun.corba.ee.impl.legacy.connection.SocketFactoryAcceptorImpl.initialize(SocketFactoryAcceptorImpl.java:53)
         ... 20 more
    |#]
    [#|2006-10-05T11:11:24.217+0100|SEVERE|IS5.1|javax.enterprise.system.core|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|CORE5081: Exception while creating ORB: [org.omg.CORBA.INTERNAL:   vmcid: SUN  minor code: 209  completed: No]|#]
    [#|2006-10-05T11:11:24.217+0100|SEVERE|IS5.1|javax.enterprise.system.core|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|CORE5082: Exception running j2ee services: [java.lang.RuntimeException: Unable to create ORB]|#]
    [#|2006-10-05T11:11:24.217+0100|SEVERE|IS5.1|javax.enterprise.system.core|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;stacktrace-id=1;|CORE5091: Error executing J2EE server ...
    java.lang.RuntimeException: Unable to create ORB
         at com.sun.enterprise.server.J2EEServer.run(J2EEServer.java:351)
         at com.sun.enterprise.server.J2EEServer.main(J2EEServer.java:754)
         at com.sun.enterprise.server.ApplicationServer.onInitialization(ApplicationServer.java:233)
         at com.sun.enterprise.server.PEMain.run(PEMain.java:222)
         at com.sun.enterprise.server.PEMain.main(PEMain.java:186)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at org.apache.commons.launcher.ChildMain.run(ChildMain.java:269)
    Caused by: java.lang.RuntimeException: Unable to create ORB
         at com.sun.enterprise.server.J2EEServer.run(J2EEServer.java:224)
         ... 9 more
    |#]
    [#|2006-10-05T11:11:24.217+0100|SEVERE|IS5.1|javax.enterprise.system.core|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|CORE5092: J2EE server reported following error: [Unable to create ORB] |#]
    [#|2006-10-05T11:11:24.217+0100|SEVERE|IS5.1|javax.enterprise.system.core|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|CORE5093: Error executing J2EE server |#]
    [#|2006-10-05T11:11:24.217+0100|SEVERE|IS5.1|javax.enterprise.system.core|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;stacktrace-id=2;|CORE5071: An error occured during initialization
    com.sun.appserv.server.ServerLifecycleException: com.sun.appserv.server.ServerLifecycleException: Unable to create ORB
         at com.sun.enterprise.server.ApplicationServer.onInitialization(ApplicationServer.java:235)
         at com.sun.enterprise.server.PEMain.run(PEMain.java:222)
         at com.sun.enterprise.server.PEMain.main(PEMain.java:186)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at org.apache.commons.launcher.ChildMain.run(ChildMain.java:269)
    Caused by: com.sun.appserv.server.ServerLifecycleException: Unable to create ORB
         at com.sun.enterprise.server.J2EEServer.main(J2EEServer.java:763)
         at com.sun.enterprise.server.ApplicationServer.onInitialization(ApplicationServer.java:233)
         ... 7 more
    Caused by: java.lang.RuntimeException: Unable to create ORB
         at com.sun.enterprise.server.J2EEServer.run(J2EEServer.java:351)
         at com.sun.enterprise.server.J2EEServer.main(J2EEServer.java:754)
         ... 8 more
    Caused by: java.lang.RuntimeException: Unable to create ORB
         at com.sun.enterprise.server.J2EEServer.run(J2EEServer.java:224)
         ... 9 more
    |#]
    [#|2006-10-05T11:11:24.217+0100|SEVERE|IS5.1|javax.enterprise.system.core|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|Server Startup failed. Exiting...|#]
    [#|2006-10-05T11:11:24.217+0100|INFO|IS5.1|javax.enterprise.system.core|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|Server shutdown in progress...|#]
    [#|2006-10-05T11:11:24.217+0100|INFO|IS5.1|javax.enterprise.system.container.web|_ThreadID=10; ThreadName=org.apache.commons.launcher.ChildMain;|WEB0303: Stopping T                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    According to your log...
    "Unable to create ORB"
    at com.sun.corba.ee.impl.legacy.connection.SocketFactoryAcceptorImpl.initialize
    And related message...
    (INTERNAL) Unable to create listener thread on the specific port"
    Failed to create server socket when calling ORBSocketFactory.createServerSocket(IIOP_CLEAR_TEXT, 18002)
    Address already in use: bind
    Would indicate that the address 18002 is already used by another process.
    So you can do:
    1.restart your machine:
    2. a netstat -an to validate that the port is free
    You may have the localhost already started as a service on your machine...
    TE

  • How to install an additional domain in JCaps 6?!

    Hi again,
    did not take a long time until I reached the next problem that blocks my testing...
    Now I want to install an additional domain, aside from the standard "domain1" that was created during install. I took a look in the installation guide and found out that I have to manually adapt the "install.properties"-file under \appserver\addons\caps - here is my changed file:
    # ----- Domain configuration --------------------------------------------------
    # This defines where to install and deploy components to, and how to connect
    # to the server to do so.
    # The name of the domain
    caps.domain.name=domainCommonProjects
    # The admin http or https port
    caps.admin.port=18000
    # Username
    caps.admin.user=Administrator
    # Change this to true if the admin port is using https instead of http
    caps.admin.secure=false
    # The name of the server
    caps.target=serverCommonProjects
    # Optional: name of a cluster target
    caps.cluster.target=
    # Optional: specify the path to the password file here. This will be used to
    # connect to the server to deploy and configure components. If no file is
    # specified, the credentials as listed below will be used.
    caps.override.password.file=
    # If no password file is specified, the following credentials will be used
    AS_ADMIN_PASSWORD=STC
    AS_ADMIN_MASTERPASSWORD=STC
    # ----- UDDI ------------------------------------------------------------------
    # If the UDDI .war files need to be deployed, change this to true
    caps.uddi.install=false
    # ----- STCMS -----------------------------------------------------------------
    # If STCMS needs to be installed, change this to true
    caps.stcms.install=true
    # If STCMS is being installed, the platform needs to be specified. This is
    # because STCMS contains native binaries. Valid values are below
    caps.stcms.os=win32
    # Uncomment out the line above for:
    # - Windows XP(SP2) (32-bit), Windows 2000(SP4) (32-bit),
    # - Windows 2003(R2 SP2) (32-bit), Windows 2003 (EE R2 SP2) (64-bit)
    # - Windows Vista Business (32-bit)When I run the ant-command then, I always get the following error:
    E:\JavaCAPS6\appserver\bin>asant -f ..\addons\caps\install.xml
    Buildfile: ..\addons\caps\install.xml
    install:
    install:
         [copy] Copying 1 file to E:\JavaCAPS6\appserver\domains\domainCommonProject
    s\lib
    [sun-appserv-admin] Executing: list-lifecycle-modules --port 19000 --host localh
    ost --passwordfile "E:\JavaCAPS6\appserver\addons\caps\install.properties"  --us
    er Administrator serverCommonProjects
    BUILD FAILED
    E:\JavaCAPS6\appserver\addons\caps\install.xml:86: The following error occurred
    while executing this line:
    E:\JavaCAPS6\appserver\addons\caps\applicationVerifier\server-init.xml:41: An ex
    ception occurred while running the command.  The exception message is: CLI137 Co
    mmand list-lifecycle-modules failed..
    Total time: 2 secondsAny ideas what I am doing wrong here?!
    Btw - when I want to delete the initally created domain1, how do I do that?! Is it enough to delete the domain1-directory under "domains" in the appserver?!
    Thanks for all your hints...
    Regards
    Bernhard

    OK - I found out myself what the problem was!
    First - here is a great blog about how to create a new domain in JCaps 6:
    [http://blogs.sun.com/polyblog/entry/creating_a_new_caps_6]
    Second - what you still have to do is to adapt your install.xml file also (not only the install.properties), to set your correct values concerning domainName and port!
    Regards
    Bernhard

  • PreparedStatement problem in Oracle OTD(JCAPS 5.1.3)

    Hi,
    I encountered a problem with Oracle-eway-generated PreparedStatements when trying to build a project in enterprise designer . I know that without using any prepraredstatement, my project builds fine. Below is the text on the error pop-up window:
    java.lang.NullPointerException
    at com.stc.codegen.OTDImpl.model.OTDCodeletFactory$ArtifactKey.hashCode(OTDCodeletFactory.java:136)
    at java.util.HashMap.hash(HashMap.java:261)
    at java.util.HashMap.containsKey(HashMap.java:339)
    at com.stc.codegen.OTDImpl.model.OTDCodeletFactory.getOtdFromBuisnessProcess(OTDCodeletFactory.java:207)
    at com.stc.codegen.OTDImpl.model.OTDCodeletFactory.createCodelets(OTDCodeletFactory.java:285)
    at com.stc.codegen.frameworkImpl.model.DeploymentVisitorImpl.process(DeploymentVisitorImpl.java:382)
    at com.stc.codegen.frameworkImpl.model.DeploymentVisitorImpl.process(DeploymentVisitorImpl.java:308)
    at com.stc.codegen.frameworkImpl.model.DeploymentVisitorImpl.traverseDeployment(DeploymentVisitorImpl.java:268)
    at com.stc.codegen.driver.module.DeploymentBuildAction.loadCodeGen(DeploymentBuildAction.java:923)
    at com.stc.codegen.driver.module.DeploymentBuildAction.access$1000(DeploymentBuildAction.java:174)
    at com.stc.codegen.driver.module.DeploymentBuildAction$1.run(DeploymentBuildAction.java:599)
    at org.openide.util.Task.run(Task.java:136)
    [catch] at org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:599)In order to isolate the problem, I have created a simplified project which just reads a text message and writes the message into the Oracle database with the help of a PreparedStatement. I had an error as well;
    "Oracle eway code generation error(ERROR_CODEGEN_BPEL_CODELET_GENERAL)"
    Caused by: com.stc.codegen.framwork.model.CodeGenException: Error when generating OTD code ...Exception: Invalid parameter type: Class: [TEST] Object: [Param1] Param Type: [VARCHAR].(ERROR_CODEGEN_DB)(ERROR_CREATE_OTD)I think that there is a conflict between the parameters in Oracle and the parameters in the code. Somehow, Oracle eway cannot get the parameter type from database correctly.
    Is there a solution for this? I couldn't find any patches/updates for Enterprise designer or eway. Can you point me to right direction if there is any.
    Thanks in advance,
    Mete

    Hi there,
    (I think) I have found the solution. When designing OTD, I have mapped VARCHAR2 column as CHAR. Somehow, JCAPS throws a code generation exception if the field is not mapped as a CHAR for a VARCHAR2 database column.

  • Synchronous data exchange over JCaps without TCP/IP or WebService...

    Hi all,
    the subject may sound like a little crazy request, but that is what we actually need.
    Just to explain: we have a SAP R/3 system running (v. 4.72) which is not able to call Web Services and is also not able to open a TCP/IP-connection to a foreign host to exchange data.
    But what we need is a synchronous data exchange as, after pressing a button in SAP, we should query some database tables of another sub-system with JCaps and send back the received information to SAP.
    Do you have any ideas out there how this synchronous request from SAP to JCaps can be fullfilled with JCaps (our version is 5.1.3)?!
    We thought about using a HTTP server on the JCaps side, where SAP just sends a HTTP-request on the specified address and then we could use the data received from this call, to get data from the sub-system and then send it back to SAP over an RFC or something similar - that is the easier part (sending data back to SAP). The harder part, in my opinion, is to create a possibility for SAP to call JCaps immediately - so not asynchron, which we already implemented over a file export...
    So, is it possible to use HTTP-server from JCaps for our needs?! Or is there another, easier possibility?!
    Any help highly appreciated...
    Regards
    Bernhard Böhm

    Hi Chris,
    thanks for the input - we also have a similar thing running, also using our BW-Server (SAP ERP 6.0) as the "web service engine"....
    But now, we want a solution without another server (like the BW in the upper case) involved!
    So, we thought about using HTTP-server on the JCaps-side which should be invoked by a simple HTTP-request from SAP (also possible in 4.72).
    Now I tried to setup a simple HTTP-Server project in JCaps 5.1.3 and it is making me crazy right now...
    I just do not get it to work - all I would do is a simple JCD that just print a line in the log-file when started. The JCD has just a "processRequest"-method from HTTPS-Server-eWay. In the connectivity map I did set up the connection to the HTTP-Server with the servlet-url-name - property:
    http://localhost:18001/dpListenHTTP_servlet_HttpServerServlet (like described in the userGuide).
    But when trying to build the project I get this error:
    com.stc.codegen.framework.model.CodeGenException: code generation error at = HTTP_Listen_cmListenHTTP_jcListenHTTP1 - HTTP Server e*Way Code GeneratorProblem creating war: C:\temp\dpListenHTTPprj_WS_serTestHTTP\12217262314811\WEB-INF\classes\..\dpListenHTTP_servlet_http:\localhost:18001\dpListenHTTP_servlet_HttpServerServlet.war (The filename, directory name, or volume label syntax is incorrect) (and the archive is probably corrupt but I could not delete it)
         at com.stc.codegen.frameworkImpl.model.CodeGenFrameworkImpl.process(CodeGenFrameworkImpl.java:1569)
         at com.stc.codegen.frameworkImpl.model.DeploymentVisitorImpl.process(DeploymentVisitorImpl.java:405)
         at com.stc.codegen.frameworkImpl.model.DeploymentVisitorImpl.process(DeploymentVisitorImpl.java:308)
         at com.stc.codegen.frameworkImpl.model.DeploymentVisitorImpl.traverseDeployment(DeploymentVisitorImpl.java:268)
         at com.stc.codegen.driver.module.DeploymentBuildAction.loadCodeGen(DeploymentBuildAction.java:923)
         at com.stc.codegen.driver.module.DeploymentBuildAction.access$1000(DeploymentBuildAction.java:174)
         at com.stc.codegen.driver.module.DeploymentBuildAction$1.run(DeploymentBuildAction.java:599)
         at org.openide.util.Task.run(Task.java:136)
         at org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:599)
    Caused by: Problem creating war: C:\temp\dpListenHTTPprj_WS_serTestHTTP\12217262314811\WEB-INF\classes\..\dpListenHTTP_servlet_http:\localhost:18001\dpListenHTTP_servlet_HttpServerServlet.war (The filename, directory name, or volume label syntax is incorrect) (and the archive is probably corrupt but I could not delete it)
         at org.apache.tools.ant.taskdefs.Zip.executeMain(Zip.java:509)
         at org.apache.tools.ant.taskdefs.Zip.execute(Zip.java:302)
         at com.stc.codegen.frameworkImpl.model.util.AntTasksWrapperImpl.war(AntTasksWrapperImpl.java:404)
         at com.stc.connector.codegen.httpserveradapter.HSEWCodelet.generateFiles(HSEWCodelet.java:608)
         at com.stc.codegen.frameworkImpl.model.CodeGenFrameworkImpl.processCodelets(CodeGenFrameworkImpl.java:640)
         at com.stc.codegen.frameworkImpl.model.CodeGenFrameworkImpl.process(CodeGenFrameworkImpl.java:1546)
         ... 8 more
    Caused by: java.io.FileNotFoundException: C:\temp\dpListenHTTPprj_WS_serTestHTTP\12217262314811\WEB-INF\classes\..\dpListenHTTP_servlet_http:\localhost:18001\dpListenHTTP_servlet_HttpServerServlet.war (The filename, directory name, or volume label syntax is incorrect)
         at java.io.FileOutputStream.open(Native Method)
         at java.io.FileOutputStream.<init>(FileOutputStream.java:179)
         at java.io.FileOutputStream.<init>(FileOutputStream.java:131)
         at org.apache.tools.zip.ZipOutputStream.<init>(ZipOutputStream.java:252)
         at org.apache.tools.ant.taskdefs.Zip.executeMain(Zip.java:407)
         ... 13 moreAnyone any idea how to set up a HTTP-server-project?!
    Thanks and regards
    Bernhard Böhm

  • Question with AS2 Connectivity with eXchange (JCAPS 5.1.3 U2)

    All,
    I'm using the eXchange product that goes with JCAPS. We are using a Business Protocol of X12 and a delivery protocol of AS2 over HTTP/HTTPS. I am getting the following exception and am wondering if anyone as seen this error before.
    Regards,
    John
    Line 2.1 expecting: {http://seebeyond.exchange.httpHeaders}AS2HTTPHeaders, found: {}HTTP
    Stack:
    com.stc.otd.runtime.UnmarshalException: Line 2.1 expecting: {http://seebeyond.exchange.httpHeaders}AS2HTTPHeaders, found: {}HTTP
    at AS2HTTPHeaders.AS2HTTPHeaders_.unmarshal(AS2HTTPHeaders.AS2HTTPHeaders_:902)
    at AS2HTTPHeaders.AS2HTTPHeaders_.unmarshalFromString(AS2HTTPHeaders.AS2HTTPHeaders_:1024)
    at com.sun.b2b.as2.collab.jcdEX_HttpClient_AS2.execute(com.sun.b2b.as2.collab.jcdEX_HttpClient_AS2:52)
    at Deployment.cmAS2_Handlers_jcdEX_HttpClient_AS21.jcdEX_HttpClient_AS2_Runtime_Handler.handleRequest(Deployment.cmAS2_Handlers_jcdEX_HttpClient_AS21.jc
    dEX_HttpClient_AS2_Runtime_Handler:393)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.sun.enterprise.security.SecurityUtil.invoke(SecurityUtil.java:140)
    at com.sun.ejb.containers.EJBLocalObjectInvocationHandler.invoke(EJBLocalObjectInvocationHandler.java:135)
    at $Proxy64.handleRequest(Unknown Source)
    at com.stc.codegen.eInsightImpl.runtime.ejb.MDBWSProvider.invoke(MDBWSProvider.java:200)
    at sun.reflect.GeneratedMethodAccessor3895.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.sun.enterprise.security.SecurityUtil$2.run(SecurityUtil.java:146)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.enterprise.security.application.EJBSecurityManager.doAsPrivileged(EJBSecurityManager.java:940)
    at com.sun.enterprise.security.SecurityUtil.invoke(SecurityUtil.java:151)
    at com.sun.ejb.containers.MessageBeanContainer.deliverMessage(MessageBeanContainer.java:948)
    at com.sun.ejb.containers.MessageBeanListenerImpl.deliverMessage(MessageBeanListenerImpl.java:42)
    at com.sun.enterprise.connectors.inflow.MessageEndpointInvocationHandler.invoke(MessageEndpointInvocationHandler.java:136)
    at $Proxy71.invoke(Unknown Source)
    at com.stc.bpms.bpelConnector.impl.AbstractWSProvider.invoke(AbstractWSProvider.java:105)
    at com.stc.bpms.bpelImpl.runtime.Interpreter$1.run(Interpreter.java:659)
    at com.stc.bpms.bpelConnector.impl.ExecutorImpl$WorkImpl.run(ExecutorImpl.java:338)
    at com.sun.enterprise.connectors.work.OneWork.doWork(OneWork.java:54)
    at com.sun.corba.ee.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(ThreadPoolImpl.java:382)
    -- caused by --
    at Line 2.1: com.stc.otd.runtime.UnmarshalException: Line 2.1 expecting: {http://seebeyond.exchange.httpHeaders}AS2HTTPHeaders, found: {}HTTP
    at com.stc.otd.xsd.runtime.provider.XsdParse.match(XsdParse.java:1123)
    at com.stc.otd.xsd.runtime.provider.XsdParse.parseComplex(XsdParse.java:1037)
    at com.stc.otd.xsd.runtime.provider.XsdParse.parse(XsdParse.java:1433)
    at com.stc.otd.xsd.runtime.provider.XsdParse.parse(XsdParse.java:1411)
    at AS2HTTPHeaders.AS2HTTPHeaders_.unmarshal(AS2HTTPHeaders.AS2HTTPHeaders_:900)
    at AS2HTTPHeaders.AS2HTTPHeaders_.unmarshalFromString(AS2HTTPHeaders.AS2HTTPHeaders_:1024)
    at com.sun.b2b.as2.collab.jcdEX_HttpClient_AS2.execute(com.sun.b2b.as2.collab.jcdEX_HttpClient_AS2:52)
    at Deployment.cmAS2_Handlers_jcdEX_HttpClient_AS21.jcdEX_HttpClient_AS2_Runtime_Handler.handleRequest(Deployment.cmAS2_Handlers_jcdEX_HttpClient_AS21.jc
    dEX_HttpClient_AS2_Runtime_Handler:393)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.sun.enterprise.security.SecurityUtil.invoke(SecurityUtil.java:140)
    at com.sun.ejb.containers.EJBLocalObjectInvocationHandler.invoke(EJBLocalObjectInvocationHandler.java:135)
    at $Proxy64.handleRequest(Unknown Source)
    at com.stc.codegen.eInsightImpl.runtime.ejb.MDBWSProvider.invoke(MDBWSProvider.java:200)
    at sun.reflect.GeneratedMethodAccessor3895.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.sun.enterprise.security.SecurityUtil$2.run(SecurityUtil.java:146)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.enterprise.security.application.EJBSecurityManager.doAsPrivileged(EJBSecurityManager.java:940)
    at com.sun.enterprise.security.SecurityUtil.invoke(SecurityUtil.java:151)
    at com.sun.ejb.containers.MessageBeanContainer.deliverMessage(MessageBeanContainer.java:948)
    at com.sun.ejb.containers.MessageBeanListenerImpl.deliverMessage(MessageBeanListenerImpl.java:42)
    at com.sun.enterprise.connectors.inflow.MessageEndpointInvocationHandler.invoke(MessageEndpointInvocationHandler.java:136)
    at $Proxy71.invoke(Unknown Source)
    at com.stc.bpms.bpelConnector.impl.AbstractWSProvider.invoke(AbstractWSProvider.java:105)
    at com.stc.bpms.bpelImpl.runtime.Interpreter$1.run(Interpreter.java:659)
    at com.stc.bpms.bpelConnector.impl.ExecutorImpl$WorkImpl.run(ExecutorImpl.java:338)
    at com.sun.enterprise.connectors.work.OneWork.doWork(OneWork.java:54)
    at com.sun.corba.ee.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(ThreadPoolImpl.java:382)

    the jsp pages are pre-compiled in a folder :
    logicalhost\is\domains\MyDomain\generated\jsp\j2ee-apps\dpMyDP\My_war\org\apache\jsp\
    sometimes these aren't updated.

  • Losing data, Oracle eWay in JCAPS 5.1.2

    Hi group,
    I have implementet an integration that fetches data from an Oracle db and writes it to a csv-file.
    After the first test-run of the integration, one day, I checked the generated files and reconized that there is data missing in some of them. Over a periode of approx 10 houres all files had missing data for the samme single row. The strange thing is that only the last halv of the row is missing. The remaining files are all complete.
    The integration uses Oracle eWay in JCAPS 5.1.2. I created the OTD using a prepared statement.
    I wonder if I am doing something wrong when fetching data from the ResultSetAgent? As, when I fire the sql directly in the database, I am not possible to reproduce this error situation.
    Thanks
    Andreas
        private String getPatientList( LogUtil lu, psNOHplusPsyk.PsNOHplusPsykOTD oracleMPD )
            throws Exception
            if (logger.isInfoEnabled()) {
                lu.beforeService( "getPatientList" );
            int counter = 0;
            com.stc.connector.appconn.db.ResultSetAgent resultSetAgent = null;
            java.io.StringWriter writer = null;
            try {
                writer = new java.io.StringWriter( bufferSize );
                resultSetAgent = oracleMPD.getPmpd_noh_plus_psyk().executeQuery();
                resultSetAgent.setFetchSize( fetchSize );
                writer.write( headerLine );
                while (resultSetAgent.next()) {
                    cprNummer = resultSetAgent.getString( "cpr" );
                    fornavn = resultSetAgent.getString( "fornavn" );
                    efternavn = resultSetAgent.getString( "efternavn" );
                    kontaktStart = resultSetAgent.getString( "kontakt_start" );
                    kontaktStartTid = resultSetAgent.getString( "kontakt_start_tid" );
                    afsnitKode = resultSetAgent.getString( "afsnitskode" );
                    afsnitMnemokode = resultSetAgent.getString( "afsnitmnemokode" );
                    afsnitNavn = resultSetAgent.getString( "afsnitsnavn" );
                    writer.write( cprNummer.trim() + ";" );
                    writer.write( fornavn.trim() + " " + efternavn.trim() + ";" );
                    writer.write( kontaktStart.trim() + ";" );
                    writer.write( kontaktStartTid.trim() + ";" );
                    writer.write( afsnitKode.trim() + ";" );
                    writer.write( afsnitMnemokode.trim() + ";" );
                    writer.write( afsnitNavn.trim() + endOfLine );
                    counter++;
                    cprNummer = null;
                    fornavn = null;
                    efternavn = null;
                    kontaktStart = null;
                    kontaktStartTid = null;
                    afsnitKode = null;
                    afsnitMnemokode = null;
                    afsnitNavn = null;
                writer.flush();
                String patientList = writer.toString();
                return patientList;
            } catch ( java.sql.SQLException e ) {
                logger.error( lu.system( e.getMessage() ) );
                throw e;
            } finally {
                if (null != writer) {
                    writer.close();
                if (logger.isInfoEnabled()) {
                    String execTime = lu.afterService( "getPatientList" );
                    logger.info( lu.system( execTime + " Patients found [" + counter + "]" ) );
        }

    Can u try to remove fetchsize and see if your issue is resoved?
    Subhash

Maybe you are looking for

  • Officejet 6000 printing problems

    No error code displays but when printing wirelessly from Excell a message is displayed that the document failed to print and lists the reason could be one of a few things... Like, your printer may be offline, or memory issues.... This only happens in

  • Compile problem when using JNI in c program.

    I am run JDK 1.4 on AIX 5.1. I am trying to compile following code. #include <jni.h> main() { JNIEnv *env; JavaVM *jvm; JDK1_1InitArgs vm_args; jint res; jclass cls; jmethodID mid; jstring jstr; jobjectArray args; /* IMPORTANT: specify vm_args versio

  • LED 24in Display  resolution stuck at 640X480

    If anyone has their 24in led display with a resolution set at 640X480 unplug it from power and computer for a minute, then everything will back to normal. Message was edited by: Jaxsin43

  • Hebrew support in Pages (or other iWork applications)

    Is there any intention to support hebrew and other RTL languages in iWork applications? Thanks.

  • Free up LWAPP memory prior to pre-download of upgrade image.

    Hi, We are looking for a way to automate the freeing up of LWAPP memory space in order to make way for a pre-download of 7.6.110.0 before the final upgrade of the WLC (8500). There's around 900 APs so doing it manually is undesirable. Also, a way to