Failed to activate session in OSB: java.io.IOException: Permission denied

I was able to successfully import my sbconfig jar. But while activating the session, the error below appeared.
Error message:
<Error> <ConfigFwk> <BEA-390101> <Activation of session weblogic failed: java.io.IOException: Permission denied (errno:13)
java.io.IOException: Permission denied (errno:13)
at java.io.UnixFileSystem.createFileExclusively(Native Method)
at java.io.File.createNewFile(File.java:903)
at com.bea.wli.sb.resources.archive.ArchiveResourceRuntimeManager$ArchiveResourceLifecycleListener.createJarClassLoader(ArchiveResourceRuntimeManager.java:103)
at com.bea.wli.sb.resources.archive.ArchiveResourceRuntimeManager$ArchiveResourceLifecycleListener.onCreate(ArchiveResourceRuntimeManager.java:171)
at com.bea.wli.config.impl.ResourceListenerNotifier.sendChangeNotification(ResourceListenerNotifier.java:456)
Truncated. see log file for complete stacktrace
We assume that the error was with the creation of the new file. We need to check if its filesystem has proper permissions. Please advise on the fix for the permission error and also any inputs on where this file is created.

This can also occur if your $DOMAIN_HOME/osb/config/core/_binary/_jars path and the files it contains are owned by root, which can happen if you have accidentally started the server as root once.
The easiest way however to find the root cause (on Linux) is:
cd $DOMAIN_HOME
find . -user root > /tmp/ownedByRoot
And then check the file /tmp/ownedByRoot for any hits. Finally change the file permissions using the chown command, so they get owned by the user running WebLogic.
My experience is that you don't need to restart the OSB server after this change. Activating the OSB import worked immediately after I chown'ed that dir.
Edited by: 925121 on Apr 3, 2012 1:26 AM

Similar Messages

  • Java.io.IOException: Permission denied

    Hi All,
    Having a bit of trouble out of a school project. I need to save information to an XML file and read from it and put those values into fields. Writing to the file is no big deal, however I get a Permission Denied error when I attempt to read the data back in. My code is attached:
    private boolean readFile(String filename) throws IOException{
    try {
    XPathFactory factory=XPathFactory.newInstance();
    XPath xPath=factory.newXPath();
    //File xmlDocument = new File(filename);
    System.out.println("Here");
    FileInputStream in = new FileInputStream(filename);
    System.out.println("Here2");
    InputSource inputSource=new InputSource(in);
    System.out.println("Here3");
    String xmlShape = xPath.evaluate("/Volume_Calculator/Shape",inputSource);
    String xmlLength = xPath.evaluate("/Volume_Calculator/Length",inputSource);
    String xmlWidth = xPath.evaluate("/Volume_Calculator/Width",inputSource);
    String xmlAvgDepth = xPath.evaluate("/Volume_Calculator/Average_Depth",inputSource);
    String xmlVolume = xPath.evaluate("/Volume_Calculator/Volume",inputSource);
    String xmlCustName = xPath.evaluate("/Volume_Calculator/Customer_Name",inputSource);
    String xmlAddress1 = xPath.evaluate("/Volume_Calculator/Address1",inputSource);
    String xmlAddress2 = xPath.evaluate("/Volume_Calculator/Address2",inputSource);
    String xmlCity = xPath.evaluate("/Volume_Calculator/City",inputSource);
    String xmlState = xPath.evaluate("/Volume_Calculator/State",inputSource);
    String xmlZip = xPath.evaluate("/Volume_Calculator/Zip",inputSource);
    String xmlPhone = xPath.evaluate("/Volume_Calculator/Phone",inputSource);
    String xmlEmail = xPath.evaluate("/Volume_Calculator/Email",inputSource);
    String xmlSalesPerson = xPath.evaluate("/Volume_Calculator/Sales_Person",inputSource);
    String xmlOrderNo = xPath.evaluate("/Volume_Calculator/Order_No",inputSource);
    String xmlDate = xPath.evaluate("/Volume_Calculator/Date",inputSource);
    txtLength.setText(xmlLength);
    txtWidth.setText(xmlWidth);
    txtAvgDepth.setText(xmlAvgDepth);
    txtVolume.setText(xmlVolume);
    txtCustName.setText(xmlCustName);
    txtAddress1.setText(xmlAddress1);
    txtAddress2.setText(xmlAddress2);
    txtCity.setText(xmlCity);
    txtZip.setText(xmlZip);
    txtPhone.setText(xmlPhone);
    txtEmail.setText(xmlEmail);
    txtSalesPerson.setText(xmlSalesPerson);
    txtOrderno.setText(xmlOrderNo);
    txtOrderDate.setText(xmlDate);
    in.close();
    catch (Throwable t) {
    t.printStackTrace ();
    return true;
    My XML document is flat with no repeating nodes.
    Any help is greatly appreciated, thank you.
    - James

    java.io.IOException: Permission denied
    at java.io.FileInputStream.read(Native Method)
    at com.sun.org.apache.xerces.internal.impl.XMLEntityManager$RewindableInputStream.read(XMLEntityManager.java:2622)
    at com.sun.org.apache.xerces.internal.impl.XMLEntityManager$RewindableInputStream.read(XMLEntityManager.java:2642)
    at sun.nio.cs.StreamDecoder$CharsetSD.readBytes(StreamDecoder.java:411)
    at sun.nio.cs.StreamDecoder$CharsetSD.implRead(StreamDecoder.java:453)
    at sun.nio.cs.StreamDecoder.read(StreamDecoder.java:183)
    at java.io.InputStreamReader.read(InputStreamReader.java:167)
    at com.sun.org.apache.xerces.internal.impl.XMLEntityScanner.load(XMLEntityScanner.java:1740)
    at com.sun.org.apache.xerces.internal.impl.XMLEntityScanner.skipString(XMLEntityScanner.java:1437)
    at com.sun.org.apache.xerces.internal.impl.XMLVersionDetector.determineDocVersion(XMLVersionDetector.java:191)
    at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:798)
    at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:764)
    at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(XMLParser.java:148)
    at com.sun.org.apache.xerces.internal.parsers.DOMParser.parse(DOMParser.java:250)
    at com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderImpl.parse(DocumentBuilderImpl.java:292)
    at com.sun.org.apache.xpath.internal.jaxp.XPathImpl.evaluate(XPathImpl.java:468)
    at com.sun.org.apache.xpath.internal.jaxp.XPathImpl.evaluate(XPathImpl.java:515)
    at volumecalculator.MainFrame.readFile(MainFrame.java:459)
    at volumecalculator.MainFrame.btnOpen1ActionPerformed(MainFrame.java:565)
    at volumecalculator.MainFrame.access$300(MainFrame.java:22)
    at volumecalculator.MainFrame$4.actionPerformed(MainFrame.java:122)
    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.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
    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 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)
    --------------- linked to ------------------
    javax.xml.xpath.XPathExpressionException
    at com.sun.org.apache.xpath.internal.jaxp.XPathImpl.evaluate(XPathImpl.java:475)
    at com.sun.org.apache.xpath.internal.jaxp.XPathImpl.evaluate(XPathImpl.java:515)
    at volumecalculator.MainFrame.readFile(MainFrame.java:459)
    at volumecalculator.MainFrame.btnOpen1ActionPerformed(MainFrame.java:565)
    at volumecalculator.MainFrame.access$300(MainFrame.java:22)
    at volumecalculator.MainFrame$4.actionPerformed(MainFrame.java:122)
    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.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
    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 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)
    Caused by: java.io.IOException: Permission denied
    at java.io.FileInputStream.read(Native Method)
    at com.sun.org.apache.xerces.internal.impl.XMLEntityManager$RewindableInputStream.read(XMLEntityManager.java:2622)
    at com.sun.org.apache.xerces.internal.impl.XMLEntityManager$RewindableInputStream.read(XMLEntityManager.java:2642)
    at sun.nio.cs.StreamDecoder$CharsetSD.readBytes(StreamDecoder.java:411)
    at sun.nio.cs.StreamDecoder$CharsetSD.implRead(StreamDecoder.java:453)
    at sun.nio.cs.StreamDecoder.read(StreamDecoder.java:183)
    at java.io.InputStreamReader.read(InputStreamReader.java:167)
    at com.sun.org.apache.xerces.internal.impl.XMLEntityScanner.load(XMLEntityScanner.java:1740)
    at com.sun.org.apache.xerces.internal.impl.XMLEntityScanner.skipString(XMLEntityScanner.java:1437)
    at com.sun.org.apache.xerces.internal.impl.XMLVersionDetector.determineDocVersion(XMLVersionDetector.java:191)
    at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:798)
    at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:764)
    at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(XMLParser.java:148)
    at com.sun.org.apache.xerces.internal.parsers.DOMParser.parse(DOMParser.java:250)
    at com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderImpl.parse(DocumentBuilderImpl.java:292)
    at com.sun.org.apache.xpath.internal.jaxp.XPathImpl.evaluate(XPathImpl.java:468)
    ... 29 more

  • Unable to activate session in OSB. Permission denied.

    Hi,
    I was able to successfully import my jar file. But when I activate the session, I got this error on sbconsole:
    Permission Denied.
    When I checked the server logs, this is what I got:
    <Warning> <ConfigFwk> <BEA-390101> <Setting transaction '205' as rollback only. Rollback reason:
    java.io.IOException: Permission denied
    at java.io.UnixFileSystem.createFileExclusively(Native Method)
    at java.io.File.createNewFile(File.java:883)
    at com.bea.wli.sb.resources.archive.ArchiveResourceRuntimeManager$ArchiveResourceLifecycleListener.createJarClassLoader(ArchiveResourceRuntimeManager.java:109)
    at com.bea.wli.sb.resources.archive.ArchiveResourceRuntimeManager$ArchiveResourceLifecycleListener.onCreate(ArchiveResourceRuntimeManager.java:293)
    at com.bea.wli.config.impl.ResourceListenerNotifier.sendChangeNotification(ResourceListenerNotifier.java:266)
    Truncated. see log file for complete stacktrace
    I'm sure that I did not install OSB as root user. I also followed some advices from this thread: Re: Failed to activate session in OSB: java.io.IOException: Permission denied but still cannot fix the problem.

    Hi,
    Try step 1 first.
    1) Make sure that your user has access to write in the tmp folder (probably /tmp). If you want OSB to write to a different OSB/Weblogic tmp location, you can specify the following parameter in the server argument list:
    -Djava.io.tmpdir=/yourfolder
    2) Make sure that the user you are using to start OSB has ownership over all files under your domain.
    - Login with your user in a shell session
    - Change the directory to your domain
    - chown -R <YOURUSER> *
    Make sure you don't get any exception
    Regards,
    Fabio.

  • Unable to activate session in OSB

    Hi!
    I have some problems when i try to activate session on Oracle Service Bus.
    I just create session in new clear OSB, add new projest or new resource to default project and click "activate->submit" and get " [Deployer:149150]An IOException occurred while reading input. : with response code '500' : with response message 'Internal Server Error'" error.
    In WebLogic domain log i got next messages:
    1. Internal error occured in OSBConsole : null java.lang.reflect.InvocationTargetException 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:597) at com.bea.alsb.console.support.ConsoleSideMBeanInvocationHandler.__invoke(ConsoleSideMBeanInvocationHandler.java:113) at com.bea.alsb.console.support.ConsoleSideMBeanInvocationHandler.invoke(ConsoleSideMBeanInvocationHandler.java:71) at $Proxy175.commitSession(Unknown Source) at com.bea.alsb.console.session.SessionHelper.commitSession(SessionHelper.java:43) at com.bea.alsb.console.changemgmt.ChangeHelper.activateSession(ChangeHelper.java:143) at com.bea.alsb.console.changemgmt.actions.SessionActivateAction.execute(SessionActivateAction.java:66) at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431) at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.access$201(PageFlowRequestProcessor.java:97) at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor$ActionRunner.execute(PageFlowRequestProcessor.java:2044) at org.apache.beehive.netui.pageflow.interceptor.action.internal.ActionInterceptors.wrapAction(ActionInterceptors.java:91) at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.processActionPerform(PageFlowRequestProcessor.java:2116) at com.bea.alsb.console.common.base.SBConsoleRequestProcessor.processActionPerform(SBConsoleRequestProcessor.java:91) at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236) at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.processInternal(PageFlowRequestProcessor.java:556) at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.process(PageFlowRequestProcessor.java:853) at com.bea.alsb.console.common.base.SBConsoleRequestProcessor.process(SBConsoleRequestProcessor.java:191) at org.apache.beehive.netui.pageflow.AutoRegisterActionServlet.process(AutoRegisterActionServlet.java:631) at org.apache.beehive.netui.pageflow.PageFlowActionServlet.process(PageFlowActionServlet.java:158) at com.bea.console.internal.ConsoleActionServlet.process(ConsoleActionServlet.java:262) at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414) at com.bea.console.internal.ConsoleActionServlet.doGet(ConsoleActionServlet.java:134) at com.bea.alsb.console.common.base.SBConsoleActionServlet.doGet(SBConsoleActionServlet.java:49) at org.apache.beehive.netui.pageflow.PageFlowUtils.strutsLookup(PageFlowUtils.java:1199) at org.apache.beehive.netui.pageflow.PageFlowUtils.strutsLookup(PageFlowUtils.java:1129) at com.bea.portlet.adapter.scopedcontent.framework.internal.PageFlowUtilsBeehiveDelegate.strutsLookupInternal(PageFlowUtilsBeehiveDelegate.java:43) at com.bea.portlet.adapter.scopedcontent.framework.PageFlowUtils.strutsLookup(PageFlowUtils.java:108) at com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.executeAction(ScopedContentCommonSupport.java:707) at com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.processActionInternal(ScopedContentCommonSupport.java:141) at com.bea.portlet.adapter.scopedcontent.StrutsStubImpl.processAction(StrutsStubImpl.java:72) at com.bea.portlet.adapter.NetuiActionHandler.raiseScopedAction(NetuiActionHandler.java:111) at com.bea.netuix.servlets.controls.content.NetuiContent.raiseScopedAction(NetuiContent.java:181) at com.bea.netuix.servlets.controls.content.NetuiContent.raiseScopedAction(NetuiContent.java:167) at com.bea.netuix.servlets.controls.content.NetuiContent.handlePostbackData(NetuiContent.java:225) at com.bea.netuix.nf.ControlLifecycle$2.visit(ControlLifecycle.java:180) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:324) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:130) at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:395) at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:361) at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:352) at com.bea.netuix.nf.Lifecycle.runInbound(Lifecycle.java:184) at com.bea.netuix.nf.Lifecycle.run(Lifecycle.java:159) at com.bea.netuix.servlets.manager.UIServlet.runLifecycle(UIServlet.java:388) at com.bea.netuix.servlets.manager.UIServlet.doPost(UIServlet.java:258) at com.bea.netuix.servlets.manager.UIServlet.service(UIServlet.java:199) at com.bea.netuix.servlets.manager.SingleFileServlet.service(SingleFileServlet.java:251) at javax.servlet.http.HttpServlet.service(HttpServlet.java:820) at weblogic.servlet.AsyncInitServlet.service(AsyncInitServlet.java:130) at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227) at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300) at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111) at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313) at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413) at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94) at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161) at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681) at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321) at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120) at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277) at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183) at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454) at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209) at weblogic.work.ExecuteThread.run(ExecuteThread.java:178) Caused By: java.rmi.RemoteException: [Deployer:149150]An IOException occurred while reading input. : with response code '500' : with response message 'Internal Server Error' at weblogic.deploy.service.internal.transport.http.HTTPMessageSender.sendMessageToServerURL(HTTPMessageSender.java:303) at weblogic.deploy.service.internal.transport.http.HTTPMessageSender.sendMessageToTargetServer(HTTPMessageSender.java:125) at weblogic.deploy.service.internal.transport.CommonMessageSender$1.run(CommonMessageSender.java:301) at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528) at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209) at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    ALSB Console BEA-494002
    2. Activation of session weblogic failed: java.rmi.RemoteException: [Deployer:149150]An IOException occurred while reading input. : with response code '500' : with response message 'Internal Server Error' java.rmi.RemoteException: [Deployer:149150]An IOException occurred while reading input. : with response code '500' : with response message 'Internal Server Error' at weblogic.deploy.service.internal.transport.http.HTTPMessageSender.sendMessageToServerURL(HTTPMessageSender.java:303) at weblogic.deploy.service.internal.transport.http.HTTPMessageSender.sendMessageToTargetServer(HTTPMessageSender.java:125) at weblogic.deploy.service.internal.transport.CommonMessageSender$1.run(CommonMessageSender.java:301) at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528) at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209) at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    ConfigFwk BEA-390101
    3. Setting transaction '418' as rollback only. Rollback reason: java.lang.Exception: Deployment request has been cancelled. at com.bea.wli.config.deployment.server.ServerDeploymentReceiver$3.run(ServerDeploymentReceiver.java:315) at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321) at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120) at com.bea.wli.config.deployment.server.ServerDeploymentReceiver.cancel(ServerDeploymentReceiver.java:300) at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doCancelCallback(DeploymentReceiverCallbackDeliverer.java:219) at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$200(DeploymentReceiverCallbackDeliverer.java:13) at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$3.run(DeploymentReceiverCallbackDeliverer.java:81) at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528) at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209) at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    ConfigFwk BEA-000000
    4. Deployment service servlet encountered an Exception while handling the deployment service message for request id "1 319 197 286 512" from server "AdminServer". Exception is: "java.lang.ClassNotFoundException: com.bea.wli.config.deployment.server.ServerDeployment: This error could indicate that a component was deployed on a cluster member but not other members of that cluster. Make sure that any component deployed on a server that is part of a cluster is also deployed on all other members of that cluster at weblogic.j2ee.ApplicationManager.loadClass(ApplicationManager.java:218) at weblogic.j2ee.ApplicationManager.loadClass(ApplicationManager.java:85) at weblogic.common.internal.WLObjectInputStream.resolveClass(WLObjectInputStream.java:61) at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1574) at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1495) at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1731) at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1328) at java.io.ObjectInputStream.readObject(ObjectInputStream.java:350) at java.util.ArrayList.readObject(ArrayList.java:593) at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at java.io.ObjectStreamClass.invokeReadObject(ObjectStreamClass.java:974) at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1848) at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1752) at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1328) at java.io.ObjectInputStream.readObject(ObjectInputStream.java:350) at weblogic.common.internal.WLObjectInputStream.readArrayList(WLObjectInputStream.java:116) at weblogic.deploy.service.internal.transport.DeploymentServiceMessage.readMessage(DeploymentServiceMessage.java:322) at weblogic.deploy.service.internal.transport.DeploymentServiceMessage.readExternal(DeploymentServiceMessage.java:302) at java.io.ObjectInputStream.readExternalData(ObjectInputStream.java:1791) at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1750) at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1328) at java.io.ObjectInputStream.readObject(ObjectInputStream.java:350) at weblogic.deploy.service.internal.transport.http.DeploymentServiceServlet.handleDeploymentServiceMessage(DeploymentServiceServlet.java:759) at weblogic.deploy.service.internal.transport.http.DeploymentServiceServlet.internalDoPost(DeploymentServiceServlet.java:245) at weblogic.deploy.service.internal.transport.http.DeploymentServiceServlet.access$000(DeploymentServiceServlet.java:84) at weblogic.deploy.service.internal.transport.http.DeploymentServiceServlet$1.run(DeploymentServiceServlet.java:221) at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363) at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:146) at weblogic.deploy.service.internal.transport.http.DeploymentServiceServlet.doPost(DeploymentServiceServlet.java:217) at javax.servlet.http.HttpServlet.service(HttpServlet.java:727) at javax.servlet.http.HttpServlet.service(HttpServlet.java:821) at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227) at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:184) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3717) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681) at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321) at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120) at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277) at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183) at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454) at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209) at weblogic.work.ExecuteThread.run(ExecuteThread.java:178) ".
    DeploymentService BEA-290064
    5. Servlet execution in servlet context "ServletContext@7332542[app:bea_wls_deployment_internal module:bea_wls_deployment_internal.war path:/bea_wls_deployment_internal spec-version:null]" failed, java.net.ProtocolException: Didn't meet stated Content-Length, wrote: '508' bytes instead of stated: '504' bytes.. java.net.ProtocolException: Didn't meet stated Content-Length, wrote: '508' bytes instead of stated: '504' bytes. at weblogic.servlet.internal.ServletOutputStreamImpl.ensureContentLength(ServletOutputStreamImpl.java:446) at weblogic.servlet.internal.ServletResponseImpl.ensureContentLength(ServletResponseImpl.java:1432) at weblogic.servlet.internal.ServletResponseImpl.send(ServletResponseImpl.java:1511) at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1462) at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209) at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    HTTP BEA-101104
    6. Connection failure. java.net.ProtocolException: Didn't meet stated Content-Length, wrote: '508' bytes instead of stated: '504' bytes. at weblogic.servlet.internal.ServletOutputStreamImpl.ensureContentLength(ServletOutputStreamImpl.java:446) at weblogic.servlet.internal.ServletResponseImpl.ensureContentLength(ServletResponseImpl.java:1432) at weblogic.servlet.internal.ServletResponseImpl.send(ServletResponseImpl.java:1511) at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1462) at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209) at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    HTTP BEA-101083
    I tried to fix my problem using Re: Timeout while activating OSB session advices, but cleaning $DOMAINHOME\osb\config\sessions didn't resolve it.
    Have any ideas?

    I'm sorry, i just get local admin privilege on the computer with WebLogic&OSB&other and i start WebLogic with this privilege. Old error don't reproduce now.
    But when i activate session in OSB, window activation doesn't close and time is going infinitely.
    I see this A LOT OF messages in the domain log:
    Failed to invoke startup class "JRF Startup Class", java.lang.ClassNotFoundException: oracle.jrf.wls.JRFStartup java.lang.ClassNotFoundException: oracle.jrf.wls.JRFStartup
    Failed to invoke startup class "JPS Startup Class", java.lang.ClassNotFoundException: oracle.security.jps.wls.JpsWlsStartupClass
    Failed to invoke startup class "ODL-Startup", java.lang.ClassNotFoundException: oracle.core.ojdl.weblogic.ODLConfiguration
    Failed to invoke startup class "AWT Application Context Startup Class", java.lang.ClassNotFoundException: oracle.jrf.AppContextStartup
    Failed to invoke startup class "JMX Framework Startup Class", java.lang.ClassNotFoundException: oracle.as.jmx.framework.wls.spi.StartupListener
    Failed to invoke startup class "Web Services Startup Class", java.lang.ClassNotFoundException: oracle.j2ee.ws.server.WebServiceServerStartup
    Failed to invoke startup class "JOC-Startup", java.lang.ClassNotFoundException: oracle.ias.cache.Startup java.lang.ClassNotFoundException
    Failed to invoke startup class "DMS-Startup", java.lang.ClassNotFoundException: oracle.dms.wls.DMSStartup java.lang.ClassNotFoundException: oracle.dms.wls.DMSStartup
    Server state changed to STANDBY
    Server state changed to STARTING
    No test table set up for pool "wlsbjmsrpDataSource". Connections will not be tested.
    Failed to initialize the application 'DMS Application [Version=11.1.1.1.0]' due to error java.lang.NoClassDefFoundError: oracle/dms/http/Request
    Failed to initialize the application 'wsm-pm' due to error weblogic.management.DeploymentException: . weblogic.management.DeploymentException
    Failed to initialize the application 'ALSB Cluster Singleton Marker Application' due to error weblogic.management.DeploymentException
    Failed to initialize the application 'ALSB Domain Singleton Marker Application' due to error weblogic.management.DeploymentException: . weblogic.management.DeploymentException
    Failed to initialize the application 'ALSB Framework Starter Application' due to error weblogic.management.DeploymentException: . weblogic.management.DeploymentException
    Failed to initialize the application 'OWSM Policy Support in OSB Initializer Aplication' due to error weblogic.management.DeploymentException
    Failed to initialize the application 'ALSB Coherence Cache Provider' due to error weblogic.management.DeploymentException: . weblogic.management.DeploymentException
    Failed to initialize the application 'XBus Kernel' due to error weblogic.management.DeploymentException: Unable to load your custom module provider's module-factory-class com.bea.wli.sb.transports.http.wls.WebCreatorModuleFactory. weblogic.management.DeploymentException: Unable to load your custom module provider's module-factory-class com.bea.wli.sb.transports.http.wls.WebCreatorModuleFactory
    Failed to create App/Comp mbeans for AppDeploymentMBean ALSB1319114235723. Error - weblogic.management.DeploymentException: File not found with : C:\Oracle\Middleware\user_projects\domains\base_domain\sbgen\_ALSB_1319114235723.ear. weblogic.management.DeploymentException: File not found with : C:\Oracle\Middleware\user_projects\domains\base_domain\sbgen\_ALSB_1319114235723.ear
    Failed to initialize the application '_ALSB_1319114235723' due to error weblogic.management.DeploymentException: File not found with : C:\Oracle\Middleware\user_projects\domains\base_domain\sbgen\_ALSB_1319114235723.ear. weblogic.management.DeploymentException: File not found with : C:\Oracle\Middleware\user_projects\domains\base_domain\sbgen\_ALSB_1319114235723.ear
    A version attribute was not found in element application in the deployment descriptor in C:\Oracle\Middleware\user_projects\domains\base_domain\sbgen\_ALSB_1319178907222.ear/META-INF/application.xml. A version attribute is required, but this version of the Weblogic Server will assume that the JEE5 is used. Future versions of the Weblogic Server will reject descriptors that do not specify the JEE version.
    A version attribute was not found in element application in the deployment descriptor in C:\Oracle\Middleware\user_projects\domains\base_domain\servers\osb_server1\tmp\_WL_user\_ALSB_1319178907222\qey1zy/META-INF/application.xml. A version attribute is required, but this version of the Weblogic Server will assume that the JEE5 is used. Future versions of the Weblogic Server will reject descriptors that do not specify the JEE version.
    Failed to initialize the application '_ALSB_1319178907222' due to error weblogic.management.DeploymentException: . weblogic.management.DeploymentException:
    There was a failure when processing annotations for application C:\Oracle\Middleware\Oracle_OSB1\lib\uddi_subscription\com\bea\wli\sb\uddi\auto\UDDISubscriptionListenerImpl.war. Please make sure that the annotations are valid. The error is oracle.dms.wls.DMSServletFilte
    Failed to initialize the application 'ALSB Subscription Listener' due to error weblogic.application.ModuleException: Failed to load webapp: 'alsb-uddi'. weblogic.application.ModuleException: Failed to load webapp: 'alsb-uddi' at weblogic.servlet.internal.WebAppModule.prepare
    Failed to initialize the application 'JMS Reporting Provider' due to error weblogic.management.DeploymentException: . weblogic.management.DeploymentException
    Failed to initialize the application 'Message Reporting Purger' due to error weblogic.application.ModuleException: Exception preparing module: EJBModule(msgpurger.jar) Unable to deploy EJB: C:\Oracle\Middleware\user_projects\domains\base_domain\servers\osb_server1\tmp\_WL_user\Message Reporting Purger\ug6e90\msgpurger.jar from msgpurger.jar: [EJB:015025]Unable to load a class specified in your ejb-jar.xml: com.bea.wli.reporting.jmsprovider.runtime.PurgingMDB. . weblogic.application.ModuleException: Exception preparing module: EJBModule(msgpurger.jar) Unable to deploy EJB: C:\Oracle\Middleware\user_projects\domains\base_domain\servers\osb_server1\tmp\_WL_user\Message Reporting Purger\ug6e90\msgpurger.jar from msgpurger.jar: [EJB:015025]Unable to load a class specified in your ejb-jar.xml: com.bea.wli.reporting.jmsprovider.runtime.PurgingMDB. at weblogic.ejb.container.deployer.EJBModule.prepare(EJBModule.java:469)
    Failed to initialize the application 'Ftp Transport Provider' due to error java.lang.NoClassDefFoundError: com/bea/wli/sb/transports/TransportProvider. java.lang.NoClassDefFoundError: com/bea/wli/sb/transports/TransportProvider
    Failed to initialize the application 'Email Transport Provider' due to error java.lang.NoClassDefFoundError: com/bea/wli/sb/transports/TransportProvider. java.lang.NoClassDefFoundError: com/bea/wli/sb/transports/TransportProvider
    Failed to initialize the application 'File Transport Provider' due to error java.lang.NoClassDefFoundError: com/bea/wli/sb/transports/TransportProvider. java.lang.NoClassDefFoundError: com/bea/wli/sb/transports/TransportProvider
    Failed to initialize the application 'EJB Transport Provider' due to error weblogic.management.DeploymentException: . weblogic.management.DeploymentException
    Failed to initialize the application 'Tuxedo Transport Provider' due to error weblogic.management.DeploymentException: . weblogic.management.DeploymentException
    Failed to initialize the application 'ALDSP Transport Provider' due to error weblogic.management.DeploymentException: . weblogic.management.DeploymentException
    Failed to initialize the application 'SB Transport Provider' due to error weblogic.management.DeploymentException: . weblogic.management.DeploymentException
    Failed to initialize the application 'SFTP Transport Provider' due to error java.lang.NoClassDefFoundError: com/bea/wli/sb/transports/TransportProvider. java.lang.NoClassDefFoundError: com/bea/wli/sb/transports/TransportProvider
    Failed to initialize the application 'WS Transport Provider' due to error weblogic.management.DeploymentException: . weblogic.management.DeploymentException
    Failed to initialize the application 'WS Transport Async Applcation' due to error java.lang.NoClassDefFoundError: com/bea/wli/sb/transports/OutboundTransportMessageContext. java.lang.NoClassDefFoundError: com/bea/wli/sb/transports/OutboundTransportMessageContext
    Failed to initialize the application 'MQ Transport Provider' due to error weblogic.management.DeploymentException: . weblogic.management.DeploymentException
    Failed to initialize the application 'FLOW Transport Provider' due to error weblogic.management.DeploymentException: . weblogic.management.DeploymentException
    Failed to initialize the application 'BPEL 10g Transport Provider' due to error weblogic.management.DeploymentException: . weblogic.management.DeploymentException
    Failed to initialize the application 'JCA Transport Provider' due to error weblogic.management.DeploymentException: . weblogic.management.DeploymentException
    Failed to initialize the application 'JEJB Transport Provider' due to error weblogic.management.DeploymentException: . weblogic.management.DeploymentException
    Failed to initialize the application 'SOA-DIRECT Transport Provider' due to error weblogic.management.DeploymentException: . weblogic.management.DeploymentException
    Failed to initialize the application 'FileAdapter' due to error weblogic.application.ModuleException: The ra.xml <connectionfactory-impl-class
    Failed to initialize the application 'DbAdapter' due to error weblogic.application.ModuleException: The ra.xml <connectionfactory-impl-class
    Failed to initialize the application 'JmsAdapter' due to error weblogic.application.ModuleException: [1] The ra.xml <connectionfactory-interface
    Failed to initialize the application 'AqAdapter' due to error weblogic.application.ModuleException: java.lang.NoClassDefFoundError: oracle/tip/adapter/api/exception/PCResourceException
    Failed to initialize the application 'FtpAdapter' due to error weblogic.application.ModuleException: The ra.xml <connectionfactory-impl-class
    Failed to initialize the application 'SocketAdapter' due to error weblogic.application.ModuleException: The ra.xml <connectionfactory-impl-class
    Failed to initialize the application 'MQSeriesAdapter' due to error weblogic.application.ModuleException: The ra.xml <connectionfactory-impl-class
    Failed to initialize the application 'OracleAppsAdapter' due to error weblogic.application.ModuleException: java.lang.NoClassDefFoundError: oracle/tip/adapter/api/exception/PCResourceException
    Failed to initialize the application 'OracleBamAdapter' due to error weblogic.application.ModuleException: [1] The ra.xml <connectionfactory-interface
    Failed to initialize the application 'ALSB Routing' due to error weblogic.management.DeploymentException: . weblogic.management.DeploymentException
    Failed to initialize the application 'ALSB Transform' due to error weblogic.management.DeploymentException: . weblogic.management.DeploymentException
    Failed to initialize the application 'ALSB Publish' due to error weblogic.management.DeploymentException: . weblogic.management.DeploymentException
    Failed to initialize the application 'ALSB Logging' due to error weblogic.management.DeploymentException: . weblogic.management.DeploymentException
    Failed to initialize the application 'ALSB Test Framework' due to error weblogic.application.ModuleException: Exception preparing module: EJBModule(sbTestFwkEjb.jar) Unable to deploy EJB: C:\Oracle\Middleware\user_projects\domains\base_domain\servers\osb_server1\tmp\_WL_user\ALSB Test Framework\1lglcs\sbTestFwkEjb.jar from sbTestFwkEjb.jar: [EJB:010229]EJB : TestService .Unable to initialize method info for remote ,home , message listener or webservice endpoint interface. The error is java.lang.NoClassDefFoundError: com/bea/wli/config/Ref
    Could not load user defined filter in web.xml: ServletContext@7335805[app:wsil-wls module:/inspection.wsil path:/inspection.wsil spec-version:2.5] oracle.dms.wls.DMSServletFilter. java.lang.ClassNotFoundException: oracle.dms.wls.DMSServletFilte
    Unable to set the activation state to true for the application 'wsil-wls'. weblogic.application.ModuleException
    Could not load user defined filter in web.xml: ServletContext@11654245[app:ALSB Resource module:sbresource.war path:/sbresource spec-version:2.5] oracle.dms.wls.DMSServletFilter. java.lang.ClassNotFoundException
    Unable to set the activation state to true for the application 'ALSB Resource'. weblogic.application.ModuleException
    Could not load user defined filter in web.xml: ServletContext@10754651[app:ALSB WSIL module:wsil.war path:/sbinspection.wsil spec-version:2.5] oracle.dms.wls.DMSServletFilter. java.lang.ClassNotFoundException: oracle.dms.wls.DMSServletFilter
    Unable to set the activation state to true for the application 'ALSB WSIL'. weblogic.application.ModuleException:
    The Server has established connection with the Domain level Diagnostic Service successfully.
    Failed to invoke startup class "Audit Loader Startup Class", java.lang.ClassNotFoundException: oracle.security.audit.ajl.loader.JEEAuditLoader java.lang.ClassNotFoundException: oracle.security.audit.ajl.loader.JEEAuditLoader
    Failed to invoke startup class "OSB JCA Transport Post-Activation Startup Class", java.lang.ClassNotFoundException: com.bea.wli.sb.transports.JCATransportPostActivationStartup java.lang.ClassNotFoundException: com.bea.wli.sb.transports.JCATransportPostActivationStartup
    Server state changed to ADMIN
    Server state changed to RESUMING
    Server started in RUNNING mode
    Why there are so many errors?? Is it very incorrect installation of WebLogic&OSB&..?

  • SOAP Sender Channel Failed to render XIMessage. Reason: java.io.IOException

    I am attemping to set up a sender channel using the SOAP adatper to process HTTP(S) posts containg a file that is being uploaded.
    The Sender channel is set up to use HTTPS With Client Authentication, and selected "Do Not Use SOAP Envelope" -- since the payload will not be SOAP.  I am simply trying to generate a message in PI from the HTTP post.
    I have posted the data but am getting the following error in the channel:
    com.sap.engine.interfaces.messaging.api.exception.MessagingException: com.sap.engine.interfaces.messaging.api.exception.MessageFormatException: Failed to render XIMessage. Reason: java.io.IOException: Missing mandatory element <sap:Main>sap:Receiver/sap:Service
    The trading partner I am workgin with only has the ability to use a generic POST (I believe he is usnig CURL or some some other tool the 'post' the data.

    Thank you for your reply.
    The solution I am seeking is not for XML payload. Its a flat-file that one of our trading partners is sending to us, both for flat files as well as EDI/X12 data.   I have the checkbox selected to not use the SOAP Envelope and am using the "nosoap=true" in the URL.
    This should be simple, as all we need to do is to pass the data as posted by the trading partner to a SFTP or FILE adapter on the receiver side.  Nothing more than we've already done using an AS2 Sender channel for, the trouble with in case case our trading partner does not support any encrypted transports except for HTTPS.
    -Gerry

  • Sometimes: java.lang.SecurityException: Permission denied

    Hello,
    we are using a lot of signed applets in our Web application (used web server: JBoss 5.1).
    For example we use an applet in javascript code and call some of applet's methods. The called java methods are privileged code.
    Since Update to JRE 1.6.0_24 we are getting sometimes:
    Permission denied: null
    java.lang.SecurityException: Permission denied: null
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Ausnahme: java.lang.SecurityException: Permission denied: null
    java.net.MalformedURLException: no protocol: ./Test.jar
         at java.net.URL.<init>(Unknown Source)
         at java.net.URL.<init>(Unknown Source)
         at sun.plugin.util.GrayBoxPainter.setProgressFilter(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager.setupGrayBoxPainter(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager.showAppletException(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Test.jar is signed. Most of the time Test.jar can be found. The problem seems to appear in case of new JVM (and new java console).
    We arent't operating on the local file system.
    Are there any ideas, known problems?
    Thanks in advance.

    We've encountered the same problem
    exception: Permission denied: null.
    java.lang.SecurityException: Permission denied: null
    at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    Exception: java.lang.SecurityException: Permission denied: null
    But seems to me, that the issue is related to combination of Java6 update 24 and Firefox 3.6.14. We tested on two stations, first FF3.6.14, java6u24, second FF3.6.14, java6u23. On the first station we got exception, but on the second java works fine. After reinstaling java on the first stations to verstion 6u23, everything works fine.

  • Failed to load applet ( Caused by: java.io.IOException: open HTTP connect )

    Sometimes this error occurs :
    load: class applet.OMcsAppletMeetMeConf...
    java.lang.ClassNotFoundException: applet.OMcsAppletMeetMeConf
    at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Unknown Source)
    at sun.plugin2.applet.Plugin2Manager.createApplet(Unknown Source)
    at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed:http://192.168.73.101/mcs/applet/applet/OMcsAppletMeetMeConf.class
    at sun.plugin2.applet.Applet2ClassLoader.getBytes(Unknown Source)
    at sun.plugin2.applet.Applet2ClassLoader.access$000(Unknown Source)
    at sun.plugin2.applet.Applet2ClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    ... 7 more
    Exception: java.lang.ClassNotFoundException: applet.OMcsAppletMeetMeConf This error occurs sometimes while applet load. In most cases program work normally
    I can not know the cause.
    plz.. help me..
    system info
    - java version : 1.6.0_17
    - browser : ie 8 (but this error also occurs to ie 7, ie 6)
    - html source is :
    <applet id="mm_app" alt="" codebase="/mcs/applet" code="applet.OMcsAppletMeetMeConf"
    width="800px" height="400px" archive="signedApplet.jar">
    </applet>

    namgung0718 wrote:
    Sometimes this error occurs :
    load: class applet.OMcsAppletMeetMeConf...
    java.lang.ClassNotFoundException: applet.OMcsAppletMeetMeConf
    Caused by: java.io.IOException: open HTTP connection failed:http://192.168.73.101/mcs/applet/applet/OMcsAppletMeetMeConf.class
    - html source is :
    <applet id="mm_app" alt="" codebase="/mcs/applet" code="applet.OMcsAppletMeetMeConf"
    width="800px" height="400px" archive="signedApplet.jar">
    </applet> As an aside. Since 'px' is the only valid unit for width and height, they should not be included in the applet element.
    ..This error occurs sometimes while applet load. In most cases program work normally
    I can not know the cause.That applet element combined with the address would imply the JRE was (first) looking for the applet at..
    [http://192.168.73.101/mcs/applet/signedApplet.jar]
    When I try that link in FF, I get the message..
    Network Timeout
    The server at 192.168.73.101 is taking too long to respond.
    plz.. help me..Please take the effort to spell all 6 letters of the word 'please'.

  • Getting java.io.IOException when trying to run a report in BIP 11g

    Hi everyone.
    I have deployed BIP 11g (11.1.1.6.0), with no errors, and everything worked fine.
    Suddenly, when I tried to execute a report (html output), I got following error: "java.io.IOException: Permission denied".
    I wonder if you can list me possible causes of this issue.
    Regards,
    Edited by: Farid Leonardo on Dec 17, 2012 7:57 AM

    Hi Adhir,
    I ran the standalone webservice client on the unix machine and it gives me web service response.
    Is there some weblgic configuration parameter I should be looking into to see why I am not getting the response when I am calling the web service from the deployed code.

  • OSB is throwing java.io.IOException: Failed to rename file

    Hi,
    I'm getting the below error when I try to deploy the OSB code changes via OEPE:
    +<Error> <ConfigFwk> <D---00146903> <AdminServer> <[ACTIVE] ExecuteThread: '5' for queue: 'weblogic.kernel.Default (self-tuning)'> <admin> <> <d71c3b335fa8baa2:39d72cb4:13951f6b38f:-8000-00000000000000bf> <1345702069308> <BEA-000000> <Failed to commit changes to file D:\Oracle\Middleware\user_projects\domains\base_domain\osb\config\sessions\ALSB_IDE_Internal_PublishOp_1345525-4159\_binary\SessionData\singleton+
    java.io.IOException: Failed to rename file 'D:\Oracle\Middleware\user_projects\domains\base_domain\osb\config\sessions\ALSB_IDE_Internal_PublishOp_1345525-4159\_binary\SessionData\singleton.gz.upd~' to 'D:\Oracle\Middleware\user_projects\domains\base_domain\osb\config\sessions\ALSB_IDE_Internal_PublishOp_1345525-4159\_binary\SessionData\singleton'
    +     at com.bea.wli.config.transaction.TransactionalFileManager._renameFile(TransactionalFileManager.java:1660)+
    +     at com.bea.wli.config.transaction.TransactionalFileManager.commitFile(TransactionalFileManager.java:448)+
    +     at com.bea.wli.config.transaction.TransactionalFileManager.commit(TransactionalFileManager.java:320)+
    +     at com.bea.wli.config.transaction.TransactionalFileManager.commit(TransactionalFileManager.java:298)+
    +     at com.bea.wli.config.transaction.TransactionManager.commit(TransactionManager.java:1495)+
    +     at com.bea.wli.config.transaction.TransactionManager._endTransaction(TransactionManager.java:842)+
    +     at com.bea.wli.config.transaction.TransactionManager.endTransaction(TransactionManager.java:783)+
    +     at com.bea.wli.config.deployment.server.ServerDeploymentReceiver$2.run(ServerDeploymentReceiver.java:275)+
    +     at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)+
    +     at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)+
    +     at com.bea.wli.config.deployment.server.ServerDeploymentReceiver.commit(ServerDeploymentReceiver.java:260)+
    +     at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doCommitCallback(DeploymentReceiverCallbackDeliverer.java:195)+
    +     at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$100(DeploymentReceiverCallbackDeliverer.java:13)+
    +     at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$2.run(DeploymentReceiverCallbackDeliverer.java:68)+
    +     at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)+
    +     at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)+
    +     at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)+
    +>+
    OSB version: 11.1.1.5
    Please help me to resolve this issue.
    Thanks,
    Hari

    Hari,
    If it is multi user environment then ask all users to close their sessions using change center. If it is a single user environment then please rename the sessions folder (D:\Oracle\Middleware\user_projects\domains\base_domain\osb\config\sessions\ALSB_IDE_Internal_PublishOp_1345525-4159) and restart all the servers. It should solve the problem.
    Also check whether the OS user who started the servers, has full access to the complete domain folder and permission to create directories/files into the domain folder and it's subfolders.
    Regards,
    Anuj

  • A link in a thunderbird message fails to activate firefox but if i copy & paste it in the ffx location bar, it goes to the linked web page

    a link in a thunderbird message fails to activate firefox but if i copy & paste it in the ffx location bar, it goes to the linked web page. Also, some web page links are failing except that some will work if i use right-click with open in new tab. just updated ffx to 3.6.13, then updated java per mozilla notification (plugin checker)

    Hi Larry,
    Thanks...that was one of the things I first tried. I did a save as another document.
    I also resized the image in PS so it would be at 100% of size, figuring that would help and I made the image box's background white instead of none, but nothing so far.
    It almosat seems like it is coming from the origianl template file?
    Babs

  • StreamCorruptedException from Stateless Session bean to java class

    Hi all,
    We have 2 servers, a ColdFusion App server which contains suns jdk 1.4.2 and websphere appserver using Ibm jdk, 1.4.2. On Server 1, we have a standalone java class which does a stateless session bean lookup and requests a service from it. On server 2(websphere), we have a stateless session bean deployed which connects to a database using a jndi lookup, executes a query and returns back a CachedRowSet object (which populates the ResultSet from the above query.) In some cases, session bean returns back an array of objects or String objects or just plain int values.
    When the java class on server 1 invokes the methods returning CachedRowSet, we are getting a StreamCorruptedException, whereas on the server side, there is no exception. everything gets executed fine on websphere. This is the case only for CachedRowSet and not for other return types(as mentioned earlier the session bean returns an array of object in some cases which the java class on server 1 is successfully able to use).
    This is what the piece of code look like on server 1:
    // First gets a StatelessSessionBean using suns InitialContextFactory
    Hashtable env = new Hashtable();
    env.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.cosnaming.CNCtxFactory");
    env.put(Context.PROVIDER_URL,"iiop://localhost:2809");
    System.out.println("Creating initial context");
    Context ctx = new InitialContext(env);
    System.out.println("Initial context created.");
    Object homeObj = ctx.lookup("cell/nodes/localhost/servers/server1/ejb/SSBHome");
    SSBHome eHome = (SSBHome)PortableRemoteObject.narrow(homeObj,SSBHome.class);
    System.out.println("Got Home");
    SSB eBean = eHome.create();
    CachedRowSet crs = eBean.getAccts(param1, param2);
    //This is the line of code which throws the exception.
    The stacktrace shoows as follows:
    Got Home
    java.io.StreamCorruptedException
         at com.sun.corba.se.internal.io.IIOPInputStream.inputRemoteMembersForReadFields(IIOPInputStream.java:1675)
         at com.sun.corba.se.internal.io.IIOPInputStream.readFields(IIOPInputStream.java:1595)
         at com.sun.corba.se.internal.io.InputStreamHook.readFields(InputStreamHook.java:177)
         at java.math.BigInteger.readObject(BigInteger.java:3034)
         at com.sun.corba.se.internal.io.IIOPInputStream.readObject(Native Method)
         at com.sun.corba.se.internal.io.IIOPInputStream.invokeObjectReader(IIOPInputStream.java:1298)
         at com.sun.corba.se.internal.io.IIOPInputStream.inputObject(IIOPInputStream.java:908)
         at com.sun.corba.se.internal.io.IIOPInputStream.simpleReadObject(IIOPInputStream.java:261)
         at com.sun.corba.se.internal.io.ValueHandlerImpl.readValueInternal(ValueHandlerImpl.java:247)
         at com.sun.corba.se.internal.io.ValueHandlerImpl.readValue(ValueHandlerImpl.java:209)
         at com.sun.corba.se.internal.iiop.CDRInputStream_1_0.read_value(CDRInputStream_1_0.java:1084)
         at com.sun.corba.se.internal.iiop.CDRInputStream.read_value(CDRInputStream.java:293)
         at com.sun.corba.se.internal.io.IIOPInputStream.inputObjectField(IIOPInputStream.java:1484)
         at com.sun.corba.se.internal.io.IIOPInputStream.inputClassFields(IIOPInputStream.java:1893)
         at com.sun.corba.se.internal.io.IIOPInputStream.defaultReadObjectDelegate(IIOPInputStream.java:424)
         at com.sun.corba.se.internal.io.InputStreamHook.defaultReadObject(InputStreamHook.java:163)
         at java.math.BigDecimal.readObject(BigDecimal.java:1084)
         at com.sun.corba.se.internal.io.IIOPInputStream.readObject(Native Method)
         at com.sun.corba.se.internal.io.IIOPInputStream.invokeObjectReader(IIOPInputStream.java:1298)
         at com.sun.corba.se.internal.io.IIOPInputStream.inputObjectUsingFVD(IIOPInputStream.java:1182)
         at com.sun.corba.se.internal.io.IIOPInputStream.simpleReadObject(IIOPInputStream.java:259)
         at com.sun.corba.se.internal.io.ValueHandlerImpl.readValueInternal(ValueHandlerImpl.java:247)
         at com.sun.corba.se.internal.io.ValueHandlerImpl.readValue(ValueHandlerImpl.java:209)
         at com.sun.corba.se.internal.iiop.CDRInputStream_1_0.read_value(CDRInputStream_1_0.java:948)
         at com.sun.corba.se.internal.iiop.CDRInputStream.read_value(CDRInputStream.java:289)
         at com.sun.corba.se.internal.corba.TCUtility.unmarshalIn(TCUtility.java:266)
         at com.sun.corba.se.internal.corba.AnyImpl.read_value(AnyImpl.java:561)
         at com.sun.corba.se.internal.iiop.CDRInputStream_1_0.read_any(CDRInputStream_1_0.java:635)
         at com.sun.corba.se.internal.iiop.CDRInputStream.read_any(CDRInputStream.java:260)
         at com.sun.corba.se.internal.javax.rmi.CORBA.Util.readAny(Util.java:100)
         at javax.rmi.CORBA.Util.readAny(Util.java:90)
         at com.sun.corba.se.internal.io.ValueHandlerImpl.read_Array(ValueHandlerImpl.java:586)
         at com.sun.corba.se.internal.io.ValueHandlerImpl.readValueInternal(ValueHandlerImpl.java:244)
         at com.sun.corba.se.internal.io.ValueHandlerImpl.readValue(ValueHandlerImpl.java:209)
         at com.sun.corba.se.internal.iiop.CDRInputStream_1_0.read_value(CDRInputStream_1_0.java:1084)
         at com.sun.corba.se.internal.iiop.CDRInputStream.read_value(CDRInputStream.java:293)
         at com.sun.corba.se.internal.io.IIOPInputStream.inputObjectField(IIOPInputStream.java:1577)
         at com.sun.corba.se.internal.io.IIOPInputStream.inputClassFields(IIOPInputStream.java:1796)
         at com.sun.corba.se.internal.io.IIOPInputStream.inputObject(IIOPInputStream.java:913)
         at com.sun.corba.se.internal.io.IIOPInputStream.simpleReadObject(IIOPInputStream.java:261)
         at com.sun.corba.se.internal.io.ValueHandlerImpl.readValueInternal(ValueHandlerImpl.java:247)
         at com.sun.corba.se.internal.io.ValueHandlerImpl.readValue(ValueHandlerImpl.java:209)
         at com.sun.corba.se.internal.iiop.CDRInputStream_1_0.read_value(CDRInputStream_1_0.java:948)
         at com.sun.corba.se.internal.iiop.CDRInputStream.read_value(CDRInputStream.java:289)
         at com.sun.corba.se.internal.corba.TCUtility.unmarshalIn(TCUtility.java:266)
         at com.sun.corba.se.internal.corba.AnyImpl.read_value(AnyImpl.java:561)
         at com.sun.corba.se.internal.iiop.CDRInputStream_1_0.read_any(CDRInputStream_1_0.java:635)
         at com.sun.corba.se.internal.iiop.CDRInputStream.read_any(CDRInputStream.java:260)
         at com.sun.corba.se.internal.javax.rmi.CORBA.Util.readAny(Util.java:100)
         at javax.rmi.CORBA.Util.readAny(Util.java:90)
         at com.sun.corba.se.internal.io.ValueHandlerImpl.read_Array(ValueHandlerImpl.java:586)
         at com.sun.corba.se.internal.io.ValueHandlerImpl.readValueInternal(ValueHandlerImpl.java:244)
         at com.sun.corba.se.internal.io.ValueHandlerImpl.readValue(ValueHandlerImpl.java:209)
         at com.sun.corba.se.internal.iiop.CDRInputStream_1_0.read_value(CDRInputStream_1_0.java:1084)
         at com.sun.corba.se.internal.iiop.CDRInputStream.read_value(CDRInputStream.java:293)
         at com.sun.corba.se.internal.io.IIOPInputStream.inputObjectField(IIOPInputStream.java:1577)
         at com.sun.corba.se.internal.io.IIOPInputStream.inputClassFields(IIOPInputStream.java:1796)
         at com.sun.corba.se.internal.io.IIOPInputStream.inputObject(IIOPInputStream.java:913)
         at com.sun.corba.se.internal.io.IIOPInputStream.simpleReadObject(IIOPInputStream.java:261)
         at com.sun.corba.se.internal.io.ValueHandlerImpl.readValueInternal(ValueHandlerImpl.java:247)
         at com.sun.corba.se.internal.io.ValueHandlerImpl.readValue(ValueHandlerImpl.java:209)
         at com.sun.corba.se.internal.iiop.CDRInputStream_1_0.read_value(CDRInputStream_1_0.java:1084)
         at com.sun.corba.se.internal.iiop.CDRInputStream.read_value(CDRInputStream.java:293)
         at com.sun.corba.se.internal.io.IIOPInputStream.inputObjectField(IIOPInputStream.java:1577)
         at com.sun.corba.se.internal.io.IIOPInputStream.inputClassFields(IIOPInputStream.java:1796)
         at com.sun.corba.se.internal.io.IIOPInputStream.inputObject(IIOPInputStream.java:913)
         at com.sun.corba.se.internal.io.IIOPInputStream.simpleReadObject(IIOPInputStream.java:261)
         at com.sun.corba.se.internal.io.ValueHandlerImpl.readValueInternal(ValueHandlerImpl.java:247)
         at com.sun.corba.se.internal.io.ValueHandlerImpl.readValue(ValueHandlerImpl.java:209)
         at com.sun.corba.se.internal.iiop.CDRInputStream_1_0.read_value(CDRInputStream_1_0.java:1084)
         at com.sun.corba.se.internal.iiop.CDRInputStream.read_value(CDRInputStream.java:293)
         at com.EJBProj._SSB_Stub.getAccts(_SSB_Stub.java:240)
         at com.test.Test1.getAccts(Test1.java:101)
         at com.test.Test1.<init>(Test1.java:65)
         at com.test.Test1.main(Test1.java:81)
    java.io.IOException: Unable to read value from underlying bridge : Serializable readObject method failed internally
         at com.sun.corba.se.internal.io.IIOPInputStream.throwExceptionType(Native Method)
         at com.sun.corba.se.internal.io.IIOPInputStream.defaultReadObjectDelegate(IIOPInputStream.java:446)
         at com.sun.corba.se.internal.io.InputStreamHook.defaultReadObject(InputStreamHook.java:163)
         at java.math.BigDecimal.readObject(BigDecimal.java:1084)
         at com.sun.corba.se.internal.io.IIOPInputStream.readObject(Native Method)
         at com.sun.corba.se.internal.io.IIOPInputStream.invokeObjectReader(IIOPInputStream.java:1298)
         at com.sun.corba.se.internal.io.IIOPInputStream.inputObjectUsingFVD(IIOPInputStream.java:1182)
         at com.sun.corba.se.internal.io.IIOPInputStream.simpleReadObject(IIOPInputStream.java:259)
         at com.sun.corba.se.internal.io.ValueHandlerImpl.readValueInternal(ValueHandlerImpl.java:247)
         at com.sun.corba.se.internal.io.ValueHandlerImpl.readValue(ValueHandlerImpl.java:209)
         at com.sun.corba.se.internal.iiop.CDRInputStream_1_0.read_value(CDRInputStream_1_0.java:948)
         at com.sun.corba.se.internal.iiop.CDRInputStream.read_value(CDRInputStream.java:289)
         at com.sun.corba.se.internal.corba.TCUtility.unmarshalIn(TCUtility.java:266)
         at com.sun.corba.se.internal.corba.AnyImpl.read_value(AnyImpl.java:561)
         at com.sun.corba.se.internal.iiop.CDRInputStream_1_0.read_any(CDRInputStream_1_0.java:635)
         at com.sun.corba.se.internal.iiop.CDRInputStream.read_any(CDRInputStream.java:260)
         at com.sun.corba.se.internal.javax.rmi.CORBA.Util.readAny(Util.java:100)
         at javax.rmi.CORBA.Util.readAny(Util.java:90)
         at com.sun.corba.se.internal.io.ValueHandlerImpl.read_Array(ValueHandlerImpl.java:586)
         at com.sun.corba.se.internal.io.ValueHandlerImpl.readValueInternal(ValueHandlerImpl.java:244)
         at com.sun.corba.se.internal.io.ValueHandlerImpl.readValue(ValueHandlerImpl.java:209)
         at com.sun.corba.se.internal.iiop.CDRInputStream_1_0.read_value(CDRInputStream_1_0.java:1084)
         at com.sun.corba.se.internal.iiop.CDRInputStream.read_value(CDRInputStream.java:293)
         at com.sun.corba.se.internal.io.IIOPInputStream.inputObjectField(IIOPInputStream.java:1577)
         at com.sun.corba.se.internal.io.IIOPInputStream.inputClassFields(IIOPInputStream.java:1796)
         at com.sun.corba.se.internal.io.IIOPInputStream.inputObject(IIOPInputStream.java:913)
         at com.sun.corba.se.internal.io.IIOPInputStream.simpleReadObject(IIOPInputStream.java:261)
         at com.sun.corba.se.internal.io.ValueHandlerImpl.readValueInternal(ValueHandlerImpl.java:247)
         at com.sun.corba.se.internal.io.ValueHandlerImpl.readValue(ValueHandlerImpl.java:209)
         at com.sun.corba.se.internal.iiop.CDRInputStream_1_0.read_value(CDRInputStream_1_0.java:948)
         at com.sun.corba.se.internal.iiop.CDRInputStream.read_value(CDRInputStream.java:289)
         at com.sun.corba.se.internal.corba.TCUtility.unmarshalIn(TCUtility.java:266)
         at com.sun.corba.se.internal.corba.AnyImpl.read_value(AnyImpl.java:561)
         at com.sun.corba.se.internal.iiop.CDRInputStream_1_0.read_any(CDRInputStream_1_0.java:635)
         at com.sun.corba.se.internal.iiop.CDRInputStream.read_any(CDRInputStream.java:260)
         at com.sun.corba.se.internal.javax.rmi.CORBA.Util.readAny(Util.java:100)
         at javax.rmi.CORBA.Util.readAny(Util.java:90)
         at com.sun.corba.se.internal.io.ValueHandlerImpl.read_Array(ValueHandlerImpl.java:586)
         at com.sun.corba.se.internal.io.ValueHandlerImpl.readValueInternal(ValueHandlerImpl.java:244)
         at com.sun.corba.se.internal.io.ValueHandlerImpl.readValue(ValueHandlerImpl.java:209)
         at com.sun.corba.se.internal.iiop.CDRInputStream_1_0.read_value(CDRInputStream_1_0.java:1084)
         at com.sun.corba.se.internal.iiop.CDRInputStream.read_value(CDRInputStream.java:293)
         at com.sun.corba.se.internal.io.IIOPInputStream.inputObjectField(IIOPInputStream.java:1577)
         at com.sun.corba.se.internal.io.IIOPInputStream.inputClassFields(IIOPInputStream.java:1796)
         at com.sun.corba.se.internal.io.IIOPInputStream.inputObject(IIOPInputStream.java:913)
         at com.sun.corba.se.internal.io.IIOPInputStream.simpleReadObject(IIOPInputStream.java:261)
         at com.sun.corba.se.internal.io.ValueHandlerImpl.readValueInternal(ValueHandlerImpl.java:247)
         at com.sun.corba.se.internal.io.ValueHandlerImpl.readValue(ValueHandlerImpl.java:209)
         at com.sun.corba.se.internal.iiop.CDRInputStream_1_0.read_value(CDRInputStream_1_0.java:1084)
         at com.sun.corba.se.internal.iiop.CDRInputStream.read_value(CDRInputStream.java:293)
         at com.sun.corba.se.internal.io.IIOPInputStream.inputObjectField(IIOPInputStream.java:1577)
         at com.sun.corba.se.internal.io.IIOPInputStream.inputClassFields(IIOPInputStream.java:1796)
         at com.sun.corba.se.internal.io.IIOPInputStream.inputObject(IIOPInputStream.java:913)
         at com.sun.corba.se.internal.io.IIOPInputStream.simpleReadObject(IIOPInputStream.java:261)
         at com.sun.corba.se.internal.io.ValueHandlerImpl.readValueInternal(ValueHandlerImpl.java:247)
         at com.sun.corba.se.internal.io.ValueHandlerImpl.readValue(ValueHandlerImpl.java:209)
         at com.sun.corba.se.internal.iiop.CDRInputStream_1_0.read_value(CDRInputStream_1_0.java:1084)
         at com.sun.corba.se.internal.iiop.CDRInputStream.read_value(CDRInputStream.java:293)
         at com.EJBProj._SSB_Stub.getAccts(_SSB_Stub.java:240)
         at com.test.Test1.getAccts(Test1.java:101)
         at com.test.Test1.<init>(Test1.java:65)
         at com.test.Test1.main(Test1.java:81)
    Again, everything seems to work fine on websphere server.
    Any Clue of why this is happening?
    All suggestions are greatly appreciated.
    Thanks
    Neorav
    Message was edited by:
    NeoravB

    Sorry for the confusion!
    The solution mentioned above is not the right solution.
    The above given code works fine irrespective of having corbaloc in the url, if you are working in the IBMs jvm.
    It fails if you are working in suns jvm.
    Anyone with any idea whats missing here.
    Thanks a lot for any suggestion/ideas
    Neorav

  • EAS Web 11.1.2.1:  Failed: -1 Your session is not currently authenticated

    I have 1 user that cannot access EAS Console on the web. All other users can log on with no problem. She gets the following error when logging on from her laptop: "Session timeout. Failed: -1 Your session is not currently authenticated. Please log in." She is able to log on from my laptop. The browser version and Internet Options on her laptop and mine are identical. The only difference that I can find is that this user has installed JRE 7 while I am still on 6. I just got notice from Oracle Applications Users Group that JRE 7 is incompatible with Oracle e-Business Suite, but no mention is made of Hyperion applications. Is JRE 7 compatible with EAS 11.1.2.1? If so, what else could cause this issue?

    iam sure its java ..
    no need to uninstall 7 if u ahve installed already
    check ur control panal > java > view> even if u have installed 1.6 or 1.7 should be problem you can select 1.6 and still can use 1.7 for other application
    but i have doubt if that problem try access EAS web .. if you have Java loading pop windows and it stops without showing EAS console then it might be Java but if your able to see EAS console i guess its not java ..i dint remember what was workaround i did .

  • Failed to activate authorization check for user SAPSYS

    Hi Experts
    I am trying to run the sdcc, it was throwing time_out error. i have increased the work process runtime. now
    i am getting a error Failed to activate authorization check for user SAPSYS.
    Please help me to solve this issue.
    Regards
    Venkat

    Hi, Mr. Joe Bo.
    Thanx for your reply. We are using ECC6 (HP Unix with Oracle)
    Basis Patch - 15, Kernel 159
    I have seen the the note but it's showing ccms method defination settings, but for my case we are yet to go live we have not made any settings from sap they are planning to run a session for the go live. When i am running sdcc i am getting a error in the system log "Failed to activate authorization check for user SAPSYS"
    Thanks & Regards
    Venkatesan J

  • Failed to activate coldfusion scheme

    Brand new install of CFB 2, I get this error "Failed to activate coldfusion scheme".
    The outline panel throws: ""Failed to activate coldfusion scheme"" (below is the stack). I found something about Aptana causing an issue (http://developertips.blogspot.com/2010/06/coldfusion-builder-error-unhandled.html) . I did have aptana installed aswell, so I disabled but still get these errors
    java.lang.NoSuchFieldError: CFMLOutlinePage_0
         at com.adobe.ide.editor.cfml.outline.CFMLOutlinePage.createDelayedRefreshJob(CFMLOutlinePage.java:467)
         at com.adobe.ide.editor.cfml.outline.CFMLOutlinePage.createControl(CFMLOutlinePage.java:428)
         at com.adobe.ide.editor.cfml.outline.CFMLOutlinePage.createControl(CFMLOutlinePage.java:348)
         at org.eclipse.ui.views.contentoutline.ContentOutline.doCreatePage(ContentOutline.java:137)
         at org.eclipse.ui.part.PageBookView.createPage(PageBookView.java:408)
         at org.eclipse.ui.part.PageBookView.partActivated(PageBookView.java:751)
         at org.eclipse.ui.part.PageBookView.showBootstrapPart(PageBookView.java:920)
         at org.eclipse.ui.part.PageBookView.createPartControl(PageBookView.java:491)
         at org.eclipse.ui.views.contentoutline.ContentOutline.createPartControl(ContentOutline.java:121)
         at org.eclipse.ui.internal.ViewReference.createPartHelper(ViewReference.java:375)
         at org.eclipse.ui.internal.ViewReference.createPart(ViewReference.java:229)
         at org.eclipse.ui.internal.WorkbenchPartReference.getPart(WorkbenchPartReference.java:595)
         at org.eclipse.ui.internal.PartPane.setVisible(PartPane.java:313)
         at org.eclipse.ui.internal.ViewPane.setVisible(ViewPane.java:529)
         at org.eclipse.ui.internal.presentations.PresentablePart.setVisible(PresentablePart.java:180)
         at org.eclipse.ui.internal.presentations.util.PresentablePartFolder.select(PresentablePartFolder.java:270)
         at org.eclipse.ui.internal.presentations.util.LeftToRightTabOrder.select(LeftToRightTabOrder.java:65)
         at org.eclipse.ui.internal.presentations.util.TabbedStackPresentation.selectPart(TabbedStackPresentation.java:473)
         at org.eclipse.ui.internal.PartStack.refreshPresentationSelection(PartStack.java:1254)
         at org.eclipse.ui.internal.PartStack.createControl(PartStack.java:666)
         at org.eclipse.ui.internal.PartStack.createControl(PartStack.java:574)
         at org.eclipse.ui.internal.PartSashContainer.createControl(PartSashContainer.java:568)
         at org.eclipse.ui.internal.PerspectiveHelper.activate(PerspectiveHelper.java:272)
         at org.eclipse.ui.internal.Perspective.onActivate(Perspective.java:981)
         at org.eclipse.ui.internal.WorkbenchPage.onActivate(WorkbenchPage.java:2632)
         at org.eclipse.ui.internal.WorkbenchWindow$27.run(WorkbenchWindow.java:2992)
         at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70)
         at org.eclipse.ui.internal.WorkbenchWindow.setActivePage(WorkbenchWindow.java:2973)
         at org.eclipse.ui.internal.WorkbenchWindow$21.runWithException(WorkbenchWindow.java:2290)
         at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run(StartupThreading.java:31)
         at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)
         at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134)
         at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4041)
         at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3660)
         at org.eclipse.ui.application.WorkbenchAdvisor.openWindows(WorkbenchAdvisor.java:803)
         at org.eclipse.ui.internal.Workbench$31.runWithException(Workbench.java:1567)
         at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run(StartupThreading.java:31)
         at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:179)
         at org.eclipse.ui.internal.UISynchronizer.syncExec(UISynchronizer.java:150)
         at org.eclipse.swt.widgets.Display.syncExec(Display.java:4584)
         at org.eclipse.ui.internal.StartupThreading.runWithoutExceptions(StartupThreading.java:94)
         at org.eclipse.ui.internal.Workbench.init(Workbench.java:1562)
         at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2567)
         at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2438)
         at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:671)
         at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
         at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:664)
         at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
         at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:115)
         at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
         at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
         at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
         at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369)
         at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
         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:597)
         at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:620)
         at org.eclipse.equinox.launcher.Main.basicRun(Main.java:575)
         at org.eclipse.equinox.launcher.Main.run(Main.java:1408)

    I want to like CFBUILDER, but getting ready to switch back to CFEclipse. I get so many errors at startup and throughout.  The shortcut "keys" menu item is missing from the preferences window and I have no key board shortcuts. The outline window throws the error "CFMLOutlinePage_0" any time its open. And the editor is painfully slow.
    Is there any support for CFBUILDER while your on the trial?

  • [kwin] Failed to activate desktop effects using the given conf options

    Every time i logged in  kde session, desktop effects are disabled. If I try to change compositing mode I always get this error message:
    Failed to activate desktop effects using the given configuration options. Settings will be reverted to their previous values.
    Check your X configuration. You may also consider changing advanced options, especially changing the compositing type.
    If i delete ~/.kde4 folder and restart the system, then I have default session and I can change compositing mode and all effects are working smoothly. But after next restart effects are gone again and this message occurs
    Is there are any ways to investigate/debug step by step this sort of problem? All i have googled about this message is too old or does not helpoing in my case
    I had fglrx driver 14.1, then i switched back to open source driver
    here is pasbin with all usefull outputs
    glxingo, uname, dmesg, xorg session errors and xorg log files
    http://pastebin.com/hPSr5vzF
    Last edited by AlexRu (2014-02-09 05:24:12)

    Same here, every time I log in all the desktop effects were disabled, I tried reinstalling KDE and rebooting for several times but still get the same result. The only fix I know for now is to logout and login but even that does not always work.

Maybe you are looking for

  • XSLT - inserting new line character

    Hi, hoping somebody could help me please. I'm attempting in 10g to convert a XML purchase-order with multiple detail lines to a CSV delimited output using an XSLT to undertake the transformation. Each line of the purchase-order, namely the header and

  • Edited pictures not showing in screen saver

    I have a lot of pictures in my Picture Folder. I have my screen saver set for Picture Folder. And all the pictures do show up when the screen saver is running. But those pictures that were originally taken in landscape format but later converted and

  • ADS form error

    Hi, I am working in  c project, When I am trying to approve the  phase  I face the error given below. I have done all spro setting corectly then also I am facing the problem You cannot begin approval pl approve without an approval document Message no

  • Adobe DPS, Android and HTML

    I have been having problems with my multi-folio DPS app on a Galaxy Note 10" (GTn8010). It was built for ipad and works fine on ipads 2 & 3. On the Galaxy it is very laggy/clunky with loading wheels and all edge animations(.oam's) really struggle and

  • How to add the space

    Hi all,           i need to add a space in below directory oracle/sid/102_64 this directory is full it's showing 100%. Can you please guide me how to increase the same. Thanks &Regards srikumar