MI WebConsole Service not found

Hi,
I couldn't find SAP MI Web Console in the services. I read that this is an ADD ON. How do I install this add on. Where is the installation files?
Thanks.

Hi
   The SAP MI Web Console is by default installed in NW 04 J2EE Engine.  If you are using NW04s then you need not worry about MI Web Console since this is no longer shipped in 04s. The NW Administrator replaces this component.  If you are still using NW 04 and want to install the MI Web Console, then please find the installation file in the SAP Service Marketplace from the following location.
http://service.sap.com/swdc
-> SAP Support Packages
  > Entry by Application Group
   > SAP NetWeaver
    > SAP NETWEAVER
     > SAP NETWEAVER 04
       >Entry by Component
       > MI Client
        > SAP MI CLIENT 2.5
         > #OS independent
..........> MI25WEBCSP18P_1-10002889.zip
When this zip file is uncompressed, you will find a MIWebConsole.sda file.  Please use the Software Deployment Manager tool available in the J2EE Engine, and deploy this sda file.
Hope this helps
Best Regards
Sivakumar

Similar Messages

  • Windows 7 64 bit, Apple Mobile Device Service not found.

    Hi First post, sorry sorry if this is in the wrong place
    I have a dell Laptop running Windows 7 X64 and Apple Mobile Device Service is not installing and cannot be found in services.
    note the account has Admin privildges (the logging below is wrong) and UAC and Virus protection has been switched off.
    I have used the apple processes to uninstall everything and then reinstall multiple times. I am defintly trying to install the latest 64 bit version.
    Microsoft Windows 7 x64 Home Premium Edition (Build 7600)
    Dell Inc. Inspiron 1545
    iTunes 9.0.2.25
    QuickTime 7.6.5
    FairPlay 1.5.23
    Apple Application Support 1.1.0
    iPod Updater Library 9.0d11
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device Driver not found.
    Bonjour 1.0.6.2 (118.5)
    iTunes Serial Number D67ADF69AA323879
    Current user is not an administrator.
    The current local date and time is 2010-01-11 16:46:14.
    iTunes is not running in safe mode.
    Video Display Information
    Intel Corporation, Mobile Intel(R) 4 Series Express Chipset Family
    Intel Corporation, Mobile Intel(R) 4 Series Express Chipset Family
    ** External Plug-ins Information **
    No external plug-ins installed.
    ** iPod/iPhone Connectivity Tests **
    iPodService 9.0.2.25 is currently running.
    iTunesHelper 9.0.2.25 is currently running.
    Apple Mobile Device Service not found.
    Universal Serial Bus Controllers:
    Intel(R) ICH9 Family USB Universal Host Controller - 2934. Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2935. Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2936. Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2937. Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2938. Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2939. Device is working properly.
    Intel(R) ICH9 Family USB2 Enhanced Host Controller - 293A. Device is working properly.
    Intel(R) ICH9 Family USB2 Enhanced Host Controller - 293C. Device is working properly.
    No FireWire (IEEE 1394) Host Controller found.
    ** iPhone/iPod Touch Sync Tests **
    No iPhone or iPod found.
    thanks

    I am having the same problem for three-four months now. When I called the help-desk of apple, they said windows 7 x64 wasn't compatible with itunes, and they told me that I had to wait for a newer version of itunes.

  • Context menu tab SERVICE not found in IB PI 7.1

    Hi,
    I am working in PI 7.1 for a scenario IDOC r/3 to PI 7.1 file.
    Here in IB I dont see any SERVICE tab to configure/create. I am getting error in IDX5 > Message split according to Receiver list>'Party and service not found'.
    I am new to this. Could someone guide me with steps or links. I searched some links but I didnt get answers.
    Thanks,
    Deepak.
    Edited by: KDeepak on Jul 2, 2009 2:36 PM

    Here in IB I dont see any SERVICE tab to configure/create. I am getting error in IDX5 --> Message split according to
    Receiver list-->'Party and service not found'.
    Is it that you are looking for a tab which was called Business Service in PI7.0?........if yes then in PI7.1 we do not have such a tab.....it has been renamed as Business Component ......in ID right-click -
    > New -
    > Collaboration Profile -
    > Business Component ---> Give Name ---> Click Create and then one more Business Component (Service) will be created under Communication Component section of ID
    In PI7.1 Business System, Business Component, Integration Process will be under Communication Component..
    Check if this is what you are looking at...
    Regards,
    Abhishek.
    Edited by: abhishek salvi on Jul 3, 2009 10:09 AM

  • Addon has failed to connect to the DI API. Service Not found

    Hi
    I've upgraded database B1 8.8 SP0 PL11 to B1 8.8 SP0 PL15.
    Addon was complied on B1 8.8. SP0 PL11 envrionment.
    I've error message when I started addon.
    Addon_Name addon has failed to connect to the DI API.
    Error Details:
    Service not found.
    DI API was uninstalled and re installed.
    And I deleted SM_OBS_DLL directory.
    But I can not resolve this issue.
    Please help me,
    Joanne

    Hi Joanne,
    I had exactly the same problem with patch 15 after an upgrade from 8.8 patch 13. The SBO client didn't automatically update so I had to use Add/Remove programs to remove the old client and DI API and then the new client install failed from the B1_SHR folder with a 1158 error (no description).
    What I did to correct it was install the DI API from the <servername>\B1_SHR\B1DIAPI folder and then run the client install afterwards. This time the client install worked fine and I can run addons that use the DI API. I think there was some registry entry issues, maybe with the upgrader or the client installer.
    Kind Regards,
    Owen

  • Import javax.xml.ws.Service not found

    I am getting error import javax.xml.ws.Service not found. Which jar file I should add in JDeveloper and from where?
    This is my program:
    package examples.shop.client;
    import java.net.URL;
    import javax.xml.namespace.QName;
    import javax.xml.ws.Service;
    import examples.shop.impl.session.PricerBean;
    * This class is an example of a standalone JAX-RPC client code which uses both
    * the static stub and the dynamic proxy approach to get a reference to the
    * remote Web Service
    public class PricerClient {
    static String host = "localhost";
    static String portType = "PricerBean";
    static String serviceName = "PricerService";
    static String serviceEndpointAddress =
    "http://" + host + ":8080/" + serviceName;
    static String nameSpace = "urn:session.impl.shop.examples";
    public static void main(String[] args) throws Exception {
    URL wsdlLocation =
    new URL(serviceEndpointAddress + "/" + portType + "?WSDL");
    QName serviceNameQ = new QName(nameSpace, serviceName);
    // dynamic service usage
    Service service = Service.create(wsdlLocation, serviceNameQ);
    PricerBean pricerPort = service.getPort(PricerBean.class);
    String user = "Gerald";
    System.out.println("Tax rate: " + pricerPort.getTaxRate());
    System.out.println("Discount for : " + user + " is " +
    pricerPort.getPersonalDiscountRate(user));
    System.out.println("Discount for 1 item (at $1000,- per piece) for " +
    user + " is " +
    pricerPort.getDiscount(1, 1000, user));
    System.out.println("Discount for 5 items (at $1000,- per piece) for " +
    user + " is " +
    pricerPort.getDiscount(5, 5000, user));
    Thank you.

    I have Oracle JDeveloper Studio Edition Version 10.1.3.2.0.4066.
    Please note I have already added following libaries, jars to Tool->Project Properties->Libraries in JDeveloper.
    EJB3.0, TopLink Essentials JPA, J2EE, Jws-api.jar, Ejb30.jar, JSP Runtime, JAX-RPC Client, TopLink, JDeveloper Runtime, Embedded OC4J client, Jaxrpc-api.jar, Wsserver.jar
    Thank you.

  • Service: not found in CPACache

    Hi all,
    Service:  not found in CPACache
    Please suggest a wayout to resolve error.
    Regards,
    Venkat

    visit this forum..its very useful
    Cache....schema not available

  • Visual Composer services not found

    Hi,
    We had configured VC on our dev server. Every alternate day while accessing VC it gives error..
    a.  VC services not found
    b. This product required MSXML Parser 4.0
    We had already installed MSXML Parser.
    But when we restart the 2 VC services [vcclient & VisualServerEar04Composer] Visual Composer is again accessible....
    Can anyone please suggest which will prevent to restart the services again & again..?
    Regards,
    MS

    Hi Mario,
    mh...strange.
    I used the VC on our old server with my notebook without a problem (great tool!).
    Now we have a new server with a new NW 04s SP10 (very fresh installed ) and there I get the "Server Error: Visual Composer services are not found" and "This product requires MSXML Parser v4.0" errors.
    Unfortunately I cannot test it on the old server, because it was a interim system.
    Regards,
    Christian

  • VC: Services not found

    Dear all,
    i have an error when opening the Visual Composer since some days:
    The error message:
    Server error: Visual composer services not found. Contact your administrator.
    It seems to be a local problem because the VC works an a separate workstation.
    Thanks and Kind regards,
    Marc

    The error was "produced" a Hotfix for the XML Parser 6.0 by Microsoft.
    I deleted the Hotfix and now it works again.

  • LCCPLM Service not found

    I am installing Adobe liveCycle Server 9 integration with Matrix PLM. After installing and started the JBoss.I am able to login to the adminui and able to see that LCCPLM service is running.  I am getting the error in server.log file as service not found. Plese help me out of this.
    ALC-DSC-012-000: com.adobe.idp.dsc.registry.ServiceNotFoundException: Service: LccplmService not found.
              at com.adobe.idp.dsc.registry.service.impl.ServiceRegistryImpl.getService(ServiceRegistryImp l.java:1088)
              at com.adobe.idp.dsc.registry.service.impl.ServiceRegistryImpl.getHeadActiveConfiguration(Se rviceRegistryImpl.java:939)
              at com.adobe.workflow.engine.PEUtil.invokeAction(PEUtil.java:710)
              at com.adobe.workflow.engine.SynchronousBranch.handleInvokeAction(SynchronousBranch.java:510 )
              at com.adobe.workflow.engine.SynchronousBranch.execute(SynchronousBranch.java:888)
              at com.adobe.workflow.engine.ProcessEngineBMTBean.continueBranchAtAction(ProcessEngineBMTBea n.java:2797)
              at com.adobe.workflow.engine.ProcessEngineBMTBean.asyncInvokeProcessCommand(ProcessEngineBMT Bean.java:697)
              at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
              at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
              at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
              at java.lang.reflect.Method.invoke(Unknown Source)
              at org.jboss.invocation.Invocation.performCall(Invocation.java:359)
              at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionConta iner.java:237)
              at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionI nterceptor.java:158)
              at org.jboss.ejb.plugins.CallValidationInterceptor.invoke(CallValidationInterceptor.java:63)
              at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:121)
              at org.jboss.ejb.plugins.AbstractTxInterceptorBMT.invokeNext(AbstractTxInterceptorBMT.java:1 73)
              at org.jboss.ejb.plugins.TxInterceptorBMT.invoke(TxInterceptorBMT.java:77)
              at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstance Interceptor.java:169)
              at org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:168)
              at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:205)
              at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor. java:138)
              at org.jboss.ejb.SessionContainer.internalInvoke(SessionContainer.java:648)
              at org.jboss.ejb.Container.invoke(Container.java:960)
              at org.jboss.ejb.plugins.local.BaseLocalProxyFactory.invoke(BaseLocalProxyFactory.java:430)
              at org.jboss.ejb.plugins.local.StatelessSessionProxy.invoke(StatelessSessionProxy.java:103)
              at $Proxy224.asyncInvokeProcessCommand(Unknown Source)
              at com.adobe.idp.workflow.dsc.service.ProcessCommandExecutorService.invokeProcess(ProcessCom mandExecutorService.java:55)
              at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
              at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
              at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
              at java.lang.reflect.Method.invoke(Unknown Source)
              at com.adobe.idp.dsc.component.impl.DefaultPOJOInvokerImpl.invoke(DefaultPOJOInvokerImpl.jav a:118)
              at com.adobe.idp.workflow.dsc.invoker.WorkflowDSCInvoker.invoke(WorkflowDSCInvoker.java:154)
              at com.adobe.idp.dsc.interceptor.impl.InvocationInterceptor.intercept(InvocationInterceptor. java:140)
              at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
              at com.adobe.idp.dsc.interceptor.impl.DocumentPassivationInterceptor.intercept(DocumentPassi vationInterceptor.java:53)
              at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
              at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor$1.doInTransaction(Transa ctionInterceptor.java:74)
              at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionCMTAdapterBean.execute(EjbTr ansactionCMTAdapterBean.java:357)
              at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionCMTAdapterBean.doSupports(Ej bTransactionCMTAdapterBean.java:227)
              at sun.reflect.GeneratedMethodAccessor460.invoke(Unknown Source)
              at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
              at java.lang.reflect.Method.invoke(Unknown Source)
              at org.jboss.invocation.Invocation.performCall(Invocation.java:359)
              at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionConta iner.java:237)
              at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionI nterceptor.java:158)
              at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstance Interceptor.java:169)
              at org.jboss.ejb.plugins.CallValidationInterceptor.invoke(CallValidationInterceptor.java:63)
              at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:121)
              at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:378)
              at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:181)
              at org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:168)
              at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:205)
              at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor. java:138)
              at org.jboss.ejb.SessionContainer.internalInvoke(SessionContainer.java:648)
              at org.jboss.ejb.Container.invoke(Container.java:960)
              at org.jboss.ejb.plugins.local.BaseLocalProxyFactory.invoke(BaseLocalProxyFactory.java:430)
              at org.jboss.ejb.plugins.local.StatelessSessionProxy.invoke(StatelessSessionProxy.java:103)
              at $Proxy192.doSupports(Unknown Source)
              at com.adobe.idp.dsc.transaction.impl.ejb.EjbTransactionProvider.execute(EjbTransactionProvi der.java:104)
              at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor.intercept(TransactionInt erceptor.java:72)
              at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
              at com.adobe.idp.dsc.interceptor.impl.InvocationStrategyInterceptor.intercept(InvocationStra tegyInterceptor.java:55)
              at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
              at com.adobe.idp.dsc.interceptor.impl.InvalidStateInterceptor.intercept(InvalidStateIntercep tor.java:37)
              at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
              at com.adobe.idp.dsc.interceptor.impl.AuthorizationInterceptor.intercept(AuthorizationInterc eptor.java:165)
              at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
              at com.adobe.idp.dsc.interceptor.impl.JMXInterceptor.intercept(JMXInterceptor.java:48)
              at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
              at com.adobe.idp.dsc.engine.impl.ServiceEngineImpl.invoke(ServiceEngineImpl.java:121)
              at com.adobe.idp.dsc.routing.Router.routeRequest(Router.java:129)
              at com.adobe.idp.dsc.provider.impl.base.AbstractMessageReceiver.routeMessage(AbstractMessage Receiver.java:93)
              at com.adobe.idp.dsc.provider.impl.vm.VMMessageDispatcher.doSend(VMMessageDispatcher.java:22 5)
              at com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat cher.java:66)
              at com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:208)
              at com.adobe.workflow.engine.PEInvokeProcessCommand.execute(PEInvokeProcessCommand.java:126)
              at com.adobe.workflow.workadapter.WorkflowCommandExecutionUnit.execute(WorkflowCommandExecut ionUnit.java:22)
              at com.adobe.idp.dsc.workmanager.adapter.ManagedAsynchronousWorkAdapter.run(ManagedAsynchron ousWorkAdapter.java:70)
              at org.jboss.resource.work.WorkWrapper.execute(WorkWrapper.java:204)
              at org.jboss.util.threadpool.BasicTaskWrapper.run(BasicTaskWrapper.java:275)
              at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:743)
              at java.lang.Thread.run(Unknown Source)
    ERROR [com.adobe.workflow.AWS] stalling action-instance: 301 with message: ALC-DSC-012-000: com.adobe.idp.dsc.registry.ServiceNotFoundException: Service: LccplmService not found.
              at com.adobe.idp.dsc.registry.service.impl.ServiceRegistryImpl.getService(ServiceRegistryImp l.java:1088)
              at com.adobe.idp.dsc.registry.service.impl.ServiceRegistryImpl.getHeadActiveConfiguration(Se rviceRegistryImpl.java:939)
              at com.adobe.workflow.engine.PEUtil.getOnFaultAction(PEUtil.java:382)
              at com.adobe.workflow.engine.SynchronousBranch.handleFault(SynchronousBranch.java:951)
              at com.adobe.workflow.engine.SynchronousBranch.handleInvokeAction(SynchronousBranch.java:551 )
              at com.adobe.workflow.engine.SynchronousBranch.execute(SynchronousBranch.java:888)
              at com.adobe.workflow.engine.ProcessEngineBMTBean.continueBranchAtAction(ProcessEngineBMTBea n.java:2797)
              at com.adobe.workflow.engine.ProcessEngineBMTBean.asyncInvokeProcessCommand(ProcessEngineBMT Bean.java:697)
              at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
              at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
              at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
              at java.lang.reflect.Method.invoke(Unknown Source)
              at org.jboss.invocation.Invocation.performCall(Invocation.java:359)
              at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionConta iner.java:237)
              at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionI nterceptor.java:158)
              at org.jboss.ejb.plugins.CallValidationInterceptor.invoke(CallValidationInterceptor.java:63)
              at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:121)
              at org.jboss.ejb.plugins.AbstractTxInterceptorBMT.invokeNext(AbstractTxInterceptorBMT.java:1 73)
              at org.jboss.ejb.plugins.TxInterceptorBMT.invoke(TxInterceptorBMT.java:77)
              at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstance Interceptor.java:169)
              at org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:168)
              at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:205)
              at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor. java:138)
              at org.jboss.ejb.SessionContainer.internalInvoke(SessionContainer.java:648)
              at org.jboss.ejb.Container.invoke(Container.java:960)
              at org.jboss.ejb.plugins.local.BaseLocalProxyFactory.invoke(BaseLocalProxyFactory.java:430)
              at org.jboss.ejb.plugins.local.StatelessSessionProxy.invoke(StatelessSessionProxy.java:103)
              at $Proxy224.asyncInvokeProcessCommand(Unknown Source)
              at com.adobe.idp.workflow.dsc.service.ProcessCommandExecutorService.invokeProcess(ProcessCom mandExecutorService.java:55)
              at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
              at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
              at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
              at java.lang.reflect.Method.invoke(Unknown Source)
              at com.adobe.idp.dsc.component.impl.DefaultPOJOInvokerImpl.invoke(DefaultPOJOInvokerImpl.jav a:118)
              at com.adobe.idp.workflow.dsc.invoker.WorkflowDSCInvoker.invoke(WorkflowDSCInvoker.java:154)
              at com.adobe.idp.dsc.interceptor.impl.InvocationInterceptor.intercept(InvocationInterceptor. java:140)
              at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
              at com.adobe.idp.dsc.interceptor.impl.DocumentPassivationInterceptor.intercept(DocumentPassi vationInterceptor.java:53)
              at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
              at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor$1.doInTransaction(Transa ctionInterceptor.java:74)
              at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionCMTAdapterBean.execute(EjbTr ansactionCMTAdapterBean.java:357)
              at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionCMTAdapterBean.doSupports(Ej bTransactionCMTAdapterBean.java:227)
              at sun.reflect.GeneratedMethodAccessor460.invoke(Unknown Source)
              at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
              at java.lang.reflect.Method.invoke(Unknown Source)
              at org.jboss.invocation.Invocation.performCall(Invocation.java:359)
              at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionConta iner.java:237)
              at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionI nterceptor.java:158)
              at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstance Interceptor.java:169)
              at org.jboss.ejb.plugins.CallValidationInterceptor.invoke(CallValidationInterceptor.java:63)
              at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:121)
              at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:378)
              at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:181)
              at org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:168)
              at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:205)
              at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor. java:138)
              at org.jboss.ejb.SessionContainer.internalInvoke(SessionContainer.java:648)
              at org.jboss.ejb.Container.invoke(Container.java:960)
              at org.jboss.ejb.plugins.local.BaseLocalProxyFactory.invoke(BaseLocalProxyFactory.java:430)
              at org.jboss.ejb.plugins.local.StatelessSessionProxy.invoke(StatelessSessionProxy.java:103)
              at $Proxy192.doSupports(Unknown Source)
              at com.adobe.idp.dsc.transaction.impl.ejb.EjbTransactionProvider.execute(EjbTransactionProvi der.java:104)
              at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor.intercept(TransactionInt erceptor.java:72)
              at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
              at com.adobe.idp.dsc.interceptor.impl.InvocationStrategyInterceptor.intercept(InvocationStra tegyInterceptor.java:55)
              at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
              at com.adobe.idp.dsc.interceptor.impl.InvalidStateInterceptor.intercept(InvalidStateIntercep tor.java:37)
              at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
              at com.adobe.idp.dsc.interceptor.impl.AuthorizationInterceptor.intercept(AuthorizationInterc eptor.java:165)
              at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
              at com.adobe.idp.dsc.interceptor.impl.JMXInterceptor.intercept(JMXInterceptor.java:48)
              at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
              at com.adobe.idp.dsc.engine.impl.ServiceEngineImpl.invoke(ServiceEngineImpl.java:121)
              at com.adobe.idp.dsc.routing.Router.routeRequest(Router.java:129)
              at com.adobe.idp.dsc.provider.impl.base.AbstractMessageReceiver.routeMessage(AbstractMessage Receiver.java:93)
              at com.adobe.idp.dsc.provider.impl.vm.VMMessageDispatcher.doSend(VMMessageDispatcher.java:22 5)
              at com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat cher.java:66)
              at com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:208)
              at com.adobe.workflow.engine.PEInvokeProcessCommand.execute(PEInvokeProcessCommand.java:126)
              at com.adobe.workflow.workadapter.WorkflowCommandExecutionUnit.execute(WorkflowCommandExecut ionUnit.java:22)
              at com.adobe.idp.dsc.workmanager.adapter.ManagedAsynchronousWorkAdapter.run(ManagedAsynchron ousWorkAdapter.java:70)
              at org.jboss.resource.work.WorkWrapper.execute(WorkWrapper.java:204)
              at org.jboss.util.threadpool.BasicTaskWrapper.run(BasicTaskWrapper.java:275)
              at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:743)
              at java.lang.Thread.run(Unknown Source)

    HI,
    thanks for  your reply..
    I am able to debug the issue and not i am getting different error like livecycle host not available.
    Please find the error log showin tomcat log of matrixone.
    INFO   | jvm 1    | 2013/11/22 12:08:47 | Nov 22, 2013 12:08:47 PM com.adobe.lccplm.exceptions.KLogger log
    INFO   | jvm 1    | 2013/11/22 12:08:47 | WARNING: ALC-P3D-LiveCycle host {0} is not available. Message: {1}.-LiveCycle host http://bsdpcvletst001:8080 is not available. Message: ALC-P3D-000-000-Error occured in PLM Connector. Please see the logs for the details.
    INFO   | jvm 1    | 2013/11/22 12:08:48 | org.apache.axis.ConfigurationException: Service not found: PingReturn
    INFO   | jvm 1    | 2013/11/22 12:08:48 | org.apache.axis.ConfigurationException: Service not found: PingReturn
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at com.adobe.idp.dsc.provider.impl.soap.axis.AdobeAxisServiceRegistry.getService(AdobeAxisSe rviceRegistry.java:127)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at com.adobe.idp.dsc.provider.impl.soap.axis.AdobeAxisServiceRegistry.getService(AdobeAxisSe rviceRegistry.java:186)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at com.adobe.idp.dsc.provider.impl.soap.axis.AdobeAxisEngineConfiguration.getService(AdobeAx isEngineConfiguration.java:93)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.axis.AxisEngine.getService(AxisEngine.java:311)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.axis.MessageContext.setTargetService(MessageContext.java:756)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at com.adobe.idp.dsc.provider.impl.soap.axis.handler.AdobeAxisURLMapper.invoke(AdobeAxisURLM apper.java:71)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:32)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:118)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.axis.SimpleChain.invoke(SimpleChain.java:83)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.axis.server.AxisServer.invoke(AxisServer.java:239)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.axis.transport.http.AxisServlet.doPost(AxisServlet.java:699)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at javax.servlet.http.HttpServlet.service(HttpServlet.java:710)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.axis.transport.http.AxisServletBase.service(AxisServletBase.java:327)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:290)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at com.adobe.idp.dsc.provider.impl.soap.axis.InvocationFilter.doFilter(InvocationFilter.java :43)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:235)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at com.adobe.idp.um.auth.filter.CSRFFilter.doFilter(CSRFFilter.java:41)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:235)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:235)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:230)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.ja va:179)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:84)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:104)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java: 157)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:241)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.ja va:580)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at java.lang.Thread.run(Unknown Source)
    INFO   | jvm 1    | 2013/11/22 12:08:48 | .
    INFO   | jvm 1    | 2013/11/22 12:08:48 | java.net.MalformedURLException: no protocol: null/soap/services/ConvertToPDF?blob=base64
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at java.net.URL.<init>(URL.java:566)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at java.net.URL.<init>(URL.java:463)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at java.net.URL.<init>(URL.java:412)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at emxCreateDocumentPdfFile_mxJPODi6grAAAAAEAAAAL.createPDF(emxCreateDocumentPdfFile_mxJPODi 6grAAAAAEAAAAL.java:235)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at java.lang.reflect.Method.invoke(Method.java:592)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at matrix.db.MatrixClassLoader.invokeObject(MatrixClassLoader.java:268)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at matrix.db.MatrixClassLoader.invokeObject(MatrixClassLoader.java:297)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at com.matrixone.jni.MatrixKernel.statelessDispatch(Native Method)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at com.matrixone.jdl.rmi.bosInterfaceImpl.invokeClass(bosInterfaceImpl.java:463)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at com.matrixone.jdl.bosInterfaceShim.invokeClass(bosInterfaceShim.java:1030)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at matrix.db.JPO.invokePrivate(JPO.java:166)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at matrix.db.JPO.invoke(JPO.java:85)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.jsp.engineeringcentral.valeoCustom.vcsPDFGenerationAfterMigration_jsp._jspServ ice(vcsPDFGenerationAfterMigration_jsp.java:1003)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:98)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:371)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:308)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:259)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:269)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:659)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java: 457)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:395)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at com.matrixone.servlet.CustomFilter.alternatePageExists(CustomFilter.java:136)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at com.matrixone.servlet.CustomFilter.filterDirectory(CustomFilter.java:119)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at com.matrixone.servlet.CustomFilter.doFilter(CustomFilter.java:79)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:215)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at com.matrixone.servlet.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java :173)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:215)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:172)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:108)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:174)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:881)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Htt p11BaseProtocol.java:674)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:541)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.ja va:81)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:689)
    INFO   | jvm 1    | 2013/11/22 12:08:48 |           at java.lang.Thread.run(Thread.java:595)
    I am not finding anything in server.log in adobe livecycle side.
    Thanks in advance.

  • Native Android Extension - Service Not Found

    Greetings,
    I have created an AIR native extension which I am using in an AIR for Android app.  My native extension needs to use an Android Service from a 3rd party library.  However, seemingly no matter what I do to hook up this Android Service in the native code, the app reports "Unable to start....service not found" at runtime.
    Now I have used this service in normal, native Android apps and it works fine - I have tried duplicating the same startup process from my previous apps, that process still results in a "service not found" error in this AIR for Android app. 
    Does anyone know whats going on here, or had similar issues?
    My only thought at this point is that the intense mangling that happens when AIR compiles an APK might be screwing up the path to the Service, therefore the class loader on the Android device is unable to find the service at runtime.  However, I do not know how to prove this hypothesis.
    I have gone as far as to write my own Service class which wraps around the 3rd party service, so that the service I'm requesting is in the same java package as all the other native extension code I'm writing, but that option didn't work either.
    Any help would be appreciated.
    Thanks.
    Matt
    PS - In case you're wondering, I did make sure to declare the <service> tag in my extension's manifest file.

    Hey Chris!
    I figured out *JUST NOW* what the issue is (and this is certainly NOT documented in any PDF, or whitepaper on Native Extensions).
    The problem lies with both the Signing Certificate and the package name for your AIR Application.
    Rules for Adobe AIR Native Extensions
    Rule 1 (Documented)
    The Code Signing Certificate package must match the application id in your app.xml
    so if the certificate package is `com.my.company`, then the air app id must be `<id>com.my.company</id>`
    Rule 2. (Partially Documented)
    When packaging a native extension for android using ADT, a prefix is added to your package name so it looks like `air.com.my.company`.
    (Not Documented)
    When the Android ActivityManager tries to run your service it looks for it in `air.com.my.company`. Thus, the Service class must live in the same package (including the 'air' prefix) within your java code. My TestService class now is defined as `air.com.my.company.TestService`
    And with the following manifest, it runs just fine!
    <application>
              <activity android:name=".TestActivity">
                        <intent-filter>
                                 <action android:name="TestActivity"/>
                                  <category android:name="android.intent.category.DEFAULT"/>
                        </intent-filter>
              </activity>
              <service android:enabled="true" android:exported="true" android:name=".TestService">
                   <intent-filter>
                                           <action android:name="test.default.service"/>
                   </intent-filter>
              </service>
    </application>
    Start the service using the following code
    startService(new Intent("test.default.service"));
    Thanks again!
    Bow

  • 404 error service not found for irj/portal ??

    Hello,
    I am facing a problem in our productive system. It is a 2-node cluster 7.01 with hostnames v000011360 and v000012360.
    We are using a web dispatcher for load balancing and redirecting.
    When we try to access the portal through the web dispatcher's url, if the redirection is done to the first node (11360), portal logon screen appears and everything is ok. But if the redirection is to the 2nd Node, Service cannot be reached error occurs!
    The user has to refresh the page several times, until the web dispatcher redirects to the 1st Node. A000010360 is the virtual ip of the cluster.
    The complete error message is this:
    Service cannot be reached
    What has happened?
    URL http://a000010360.central.nbg.gr/irj/portal call was terminated because the corresponding service is not available.
    Note
    The termination occurred in system MBP with error code 404 and for the reason Not found.
    The selected virtual host was 0 .
    What can I do?
    Please select a valid URL.
    If you do not yet have a user ID, contact your system administrator.
    ErrorCode:ICF-NF-http-c:000-u:SAPSYS-l:E-i:V000012360_MBP_30-v:0-s:404-r:Notfound
    HTTP 404 - Not found
    Your SAP Internet Communication Framework Team
    Any ideas greatly appreciated. Thank you!

    Hi Mark,
    Yes there is a java server running in the second node!
    Also, if the 2nd Node url is written directly, logon screen appears and everything works fine.
    However, this should be done automatically through the web dispatcher (or the message server) load balancing.
    The direct url for 1st Node is http://v000011360:53000/irj and for the 2nd Node http://v000012360:53000/irj.
    Being though a cluster setup we use the virtual url http://a000010360:53000/irj, which should direct to one of the 2 nodes through the web dispatcher. If it directs to the 1st Node, everything is ok, but to the 2nd, 404 error not found occurs.
    Also if server0 in 1st node fails for any reason, we cannot access the portal whatsoever! Shouldn't the dispatcher redirect to the 2nd node which is up and running? Isn't that the purpose of having a cluster system?
    Thank you for your time,
    GS.

  • OSB Business Service not found

    Hello,
    I'm creating a business service with sbconsole. The enpoint uri is http://localhost:7001/SalesOrders/Order.
    I activate the changes with the change control activate button.
    I'm checking with IE the link and I am getting Error 404--Not Found.
    What am I missing?

    Hi,
    Can you try opening this in your browser http://localhost:7001/SalesOrders/Order?wsdl
    I have an wsdl, and I used it to create a business service
    Are you able to run your Business Service successfully.
    I used the business service to create a proxy service. When I invoke the proxy service, I'm getting BEA-380002 error code, reason Not Found. The routing node of the proxy service can not find the proxy service.
    In your proxy service,under route node please cross check that you are calling the Business Service you created only ?? Or some other service.
    Regards,
    Karan
    Oracle Fusion Middleware Blog

  • Party and Service not found

    Hi
    I am trying to implement IDOC to File scenario following the below blog.
    <a href="/people/prateek.shah/blog/2005/06/08/introduction-to-idoc-xi-file-scenario-and-complete-walk-through-for-starters:///people/prateek.shah/blog/2005/06/08/introduction-to-idoc-xi-file-scenario-and-complete-walk-through-for-starters
    In config I created
    Receiver communication channel
    Receiver Agreement
    Receiver Determination
    Interface Determination
    as specified in the blog.
    Sender agreement is not required as per the blog.
    RFC destination
    I created an tRFC port
    added partner profile
    when I try to test it using transaction code we19
    Standard outbound processing
    I filled the sender port, partner no and partner name
    it asks me for Receiver port which I have no idea what to use?
    I used the same port as I used for Sender
    When I checked in message monitoring using SXMB_MONI i see the red flag with error as
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Message Branch According to Receiver List
      -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="">
      <SAP:Category>XIServer</SAP:Category>
      <SAP:Code area="INTERNAL">PARTY_SERVICE</SAP:Code>
      <SAP:P1 />
      <SAP:P2 />
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText />
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack>Party and service not defined</SAP:Stack>
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>
    Please let me know if I am missing something or going wrong any where.
    Thanks
    Pavan

    Hi,
    check out correct business system is associated and pointing to correct R/3 system. Check the Integration Diretcory>Open Business System>Adapter Specific Identifier and check teh logical system name mentioned. Does this point R/3 system ?
    just cross verify with steps given in the document, mentioned in my earlier post.
    regd. metadata in IDX2, it is not required always.
    Go thru these Error Analysis Steps so that you can get to know-
    http://help.sap.com/saphelp_nw04/helpdata/en/6a/e6194119d8f323e10000000a155106/content.htm
    Rgds,
    Moorthy

  • Remote Authentication Naming Service Not Found

    Hey everybody,
    I found this thread:
    http://swforum.sun.com/jive/thread.jspa?threadID=54004
    That thread mentions (or implies) there is something different that must be accomplished when performing remote authentications vs local authentications but never actually states what is different.
    Anyhow, I am attempting to perform a remote authentication, and am running into problems. I have taken the code listed in the above thread and modified it for my usage, with a few modifications. However, I keep getting this error:
    [#|2006-02-13T15:50:56.321-0500|INFO|sun-appserver-pe8.1_02|javax.enterprise.system.stream.out|_ThreadID=25;|ERROR: updateNamingTable : Naming Service is not available.
    |#]
    [#|2006-02-13T15:50:56.332-0500|WARNING|sun-appserver-pe8.1_02|javax.enterprise.system.stream.err|_ThreadID=25;|
    com.sun.identity.authentication.spi.AuthLoginException(1):null
    com.sun.identity.authentication.spi.AuthLoginException(2):null
    com.sun.identity.authentication.spi.AuthLoginException: Failed to create new Authentication Context: Naming Service is not available.
            at com.sun.identity.authentication.AuthContext.createAuthContext(AuthContext.java:1310)
            at com.sun.identity.authentication.AuthContext.createAuthContext(AuthContext.java:1261)
            at com.sun.identity.authentication.AuthContext.<init>(AuthContext.java:178)
            at infrastructure.SessionBean1.login(SessionBean1.java:224)
            at infrastructure.login.button1_action(login.java:267)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at ...When I connect to the service via http://myserver.mydomain.tld/amserver/namingservice I recieve a message that looks like:
    Webtop 2.5 Platform Low Level request servletWhich indicates it is running properly. I also am using the AMConfig.properties that is running on the server to pull my values and my code (listed below) prints out all the values it reads. I am using the base dn for the orgname as indicated in various documentation.
    My code looks like:
        public boolean login(String username, String password) {
            try {
                ResourceBundle resources = ResourceBundle.getBundle("AMConfig");
                String orgname = null;
                Properties props = new Properties();
                Enumeration keyEnum = resources.getKeys();
                while ( keyEnum.hasMoreElements() ) {
                    String key = (String) keyEnum.nextElement();
                    String value = (String) resources.getString(key);
                    props.setProperty(key, value);
                    if ( key.equalsIgnoreCase("com.iplanet.am.defaultOrg") ) {
                        orgname = value;
                    this.getFacesContext().addMessage(null, new FacesMessage(key + " = " + value));
                SystemProperties.initializeProperties(props);
                // Authenticate the user and obtain SSO Token
                AuthContext lc = null;
                lc = new AuthContext(orgname);
                lc.login();
                while (lc.hasMoreRequirements()) {
                    Callback[] callbacks = lc.getRequirements();
                    for (int i = 0; i < callbacks.length; i++) {
                        if (callbacks[i] instanceof NameCallback) {
                            NameCallback nc = (NameCallback) callbacks;
    nc.setName(username);
    } else if (callbacks[i] instanceof PasswordCallback) {
    PasswordCallback pc = (PasswordCallback) callbacks[i];
    pc.setPassword(password.toCharArray());
    } else {
    log("Unknown Callback: " + callbacks[i]);
    return false;
    lc.submitRequirements(callbacks);
    if (lc.getStatus() != AuthContext.Status.SUCCESS) {
    log("Invalid credentials");
    return false;
    // Obtain the SSO Token
    token = lc.getSSOToken();
    log("SSOToken: " + token.getTokenID());
    log("User DN: " +
    token.getPrincipal().getName());
    // Obtain AMUser object
    db = new AMStoreConnection(token);
    user = db.getUser(token.getPrincipal().getName());
    // Get the attributes and display them
    log("Attributes: " + user.getAttributes());
    } catch (Exception e) {
    this.getFacesContext().addMessage(null, new FacesMessage("An exception occurred, unable to login.", e.getMessage()));
    e.printStackTrace();
    return false;
    Any ideas?
    Thanks!
    Joshua Preston.

    The most common reason for this error is improper
    communication with your LDAP server . Is your DS
    setup correctly and are you able to authenticate
    using amadmin ?Yes, our DS is setup correctly and I am able to authenticate using amadmin.

  • EPMA not working: Requested service not found error , version 11.1.2.2

    Hi All,
    I am facing problem as my EPMA (version 11.1.2.2) connection is not working and it is showing the following error after giving the user credentials
    Code: com.hyperion.awb.web.common.DimensionServiceException
    Description: An error occurred processing the result from the server.
    The connection was working fine till last Friday and I had to restart all the services followed by a network slowness. After that I could not make EPMA working. I have tried the following steps so far (as recommended on similar issues)
    1. Increased the DimensionServer startup time to 1800 in BPMA_Server_Config.xml
    2. Restarted EPMA server and services.
    Please note that I have the environment where EPMA is on Windows server and Essbase is in Linux server. Hyperion planning and Essbase connection is working fine. I am using Oracle 11g for EPMA relational database.
    Would appreciate your help to resolve the issue.

    Hi John,
    Thanks so much for your response.
    I checked the event viewer and found some Oracle connection error.
    [EPMA Server Startup] FATAL An error occurred during initialization of the Dimension Server Engine: ORA-03114: not connected to ORACLE.Oracle.DataAccess.Client.OracleException ORA-03114: not connected to ORACLE at Oracle.DataAccess.Client.OracleException.HandleErrorHelper(Int32 errCode, OracleConnection conn, IntPtr opsErrCtx, OpoSqlValCtx* pOpoSqlValCtx, Object src, String procedure, Boolean bCheck) at Oracle.DataAccess.Client.OracleTransaction.Commit() at Hyperion.DataAccessLayerCore.DatabaseContext.Commit() at Hyperion.DataAccessLayerCore.DALDatasetCommand.Dispose(Boolean disposing) at Hyperion.DataAccessLayerCore.DALRowset`1.Dispose(Boolean Disposing) at Hyperion.DataAccessLayerCore.CommandWrapper.Dispose() at Hyperion.DataAccessLayerCore.SchemaCommand`1.Dispose(Boolean disposing) at Hyperion.DataAccessLayerCore.SchemaCommand`1.Dispose() at Hyperion.DataAccessLayerCore.GenericDAO.Select[T](Action`1 callback, SetParamsEvent`1 onSetParams) at Hyperion.DimensionServer.DAO.DimensionPropertyManagerDAO.LoadDimensionMemberMemoProperties(Int32 libraryID, Int32 dimensionID, Action`1 action) at Hyperion.DimensionServer.PropertyManager.LoadDimension(Dimension dimension) at Hyperion.DimensionServer.PropertyManager.LoadProperties() at Hyperion.DimensionServer.Library.Load() at Hyperion.DimensionServer.Global.Initialize(ISessionManager sessionMgr, Guid systemSessionID, String sqlConnectionString)
    [EPMA Server Startup] ERROR SVR_ERR_PROCESSMGR_CANT_INIT_SESSIONMGR:Cannot initialize the Session Manager.Hyperion.DimensionServer.Interface.Exceptions.EPMAServiceException: Cannot initialize the Session Manager. ---> Oracle.DataAccess.Client.OracleException Connection request timed out at Oracle.DataAccess.Client.OracleException.HandleErrorHelper(Int32 errCode, OracleConnection conn, IntPtr opsErrCtx, OpoSqlValCtx* pOpoSqlValCtx, Object src, String procedure, Boolean bCheck) at Oracle.DataAccess.Client.OracleException.HandleError(Int32 errCode, OracleConnection conn, IntPtr opsErrCtx, Object src) at Oracle.DataAccess.Client.OracleConnection.Open() at Hyperion.DataAccessLayerCore.DatabaseContext..ctor(DataAccessLayer dataAccessLayer) at Hyperion.DataAccessLayerCore.DataAccessLayer..ctor(NameValueCollection settings, String tablePrefix, String baseNamespace, String schemaVersion, Boolean onlyLoadKnownTables) at Hyperion.DataAccessLayerCore.DataAccessLayer..ctor(NameValueCollection settings, String tablePrefix, String baseNamespace, String schemaVersion) at Hyperion.SessionManager.DAO.SessionManagerDataAccessLayer..ctor(NameValueCollection settings) at Hyperion.DimensionServer.SessionManager.SessionStoreRdbms.Initialize(String rdbmsVendor, String rdbmsConnParams, Int32 rdbmsCommandTimeout, Boolean logAllSQL) at Hyperion.DimensionServer.SessionManager.SessionManager.Initialize(String configFileName, Boolean restorePastInstanceSessions, Boolean enableCaching) --- End of inner exception stack trace --- at Hyperion.DimensionServer.Service.Main.InitializeSessionManager() at Hyperion.DimensionServer.Service.Main.Start()
    I am working on different recommendations for this type of error and update if I find any solution. Any help in this regard will speed up the process.
    Thanks again for the guidance.

Maybe you are looking for

  • Apple ][ emulator on NintendoDS

    Hello, I don't know where can i contact Apple Inc about this query, so i try this feedback Here is a copy of the mail i sent to Steve Wozniak : +Steve Wozniak a écrit :+ +> At 9:34 AM -0400 8/31/07, Amy Gray wrote:+ > +>> From: xxxx <mailto:xxxx> + +

  • PO-item     block delete process

    Hi all, is possible to annul the deletion process of an item in purchase order ? In other word, when the user press delete button, the system go in exit MM06E005 or in BADI ME_PROCESS_PO_CUST:    inside this exit or BADI, exist a way to cancel the de

  • Saving as word doc?

    Using trial version of iWord. I know I can save a document as a ms word file. However, is there a way to have all docs saved as ms word docs automatically, without having to choose that option at each save?

  • Setting in compressor to DVD Studio pro

    Hello Need some help with compressor. The matter is that I have a QT video ( Video Format: RLE. Codec ID: rle. 35min. Bit rate 226Mbps 720 x 576 PAL. Display ratio 5:4. Frame rate mode: variable. Frame rate: 25. 55GB. Bits( Pixelframe): 22,217. Audio

  • Is validation always  necessary ?

    What does it mean when your website does not validate? I know what it means but I'm confused because people say your website must pass validation. Even the adobe website does not pass validation. So if your website does not pass validation does that