Deploy oracle java app to other j2ee server

hello
i follow the tutorial at:
http://otn.oracle.com/products/jdev/collateral/tutorials/9050/adfuix_tut.html
it works well within jdeveloper debug environment,but when i deploy the war package to jboss321,the ClassNotFoundException is thrown,the i open the "War deployment profile settings",under the "WEB-INF/lib" node,i add all the libraries to the war file,then i regenerate the war package and the redeploy it to jboss again,but when i invoke following link in my browser:
http://localhost:8080/HRApplication/browseDeptEmp.uix
the following exception is thrown:
javax.servlet.ServletException: Filter execution threw an exception
     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
     at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
     at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
     at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
     at org.jboss.web.tomcat.security.JBossSecurityMgrRealm.invoke(JBossSecurityMgrRealm.java:220)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
     at org.apache.catalina.valves.CertificatesValve.invoke(CertificatesValve.java:246)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
     at org.jboss.web.tomcat.tc4.statistics.ContainerStatsValve.invoke(ContainerStatsValve.java:76)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
     at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
     at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2416)
     at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
     at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
     at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
     at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:65)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
     at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:577)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
     at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
     at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
     at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
     at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223)
     at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:601)
     at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:392)
     at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:565)
     at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:619)
     at java.lang.Thread.run(Thread.java:536)
root cause
java.lang.NoClassDefFoundError: oracle/ord/im/OrdContentSource
     at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:96)
     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:213)
     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
     at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
     at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
     at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
     at org.jboss.web.tomcat.security.JBossSecurityMgrRealm.invoke(JBossSecurityMgrRealm.java:220)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
     at org.apache.catalina.valves.CertificatesValve.invoke(CertificatesValve.java:246)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
     at org.jboss.web.tomcat.tc4.statistics.ContainerStatsValve.invoke(ContainerStatsValve.java:76)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
     at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
     at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2416)
     at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
     at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
     at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
     at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:65)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
     at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:577)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
     at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
     at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
     at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
     at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223)
     at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:601)
     at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:392)
     at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:565)
     at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:619)
     at java.lang.Thread.run(Thread.java:536)
i don't know where the "OrdContentSource" is,and who tell me how can i config the package to run on jboss or other j2ee server? and if there are such tutorials or articles?
i think that oracle company should provide a common package,when i use non-oracle j2ee server,i can include them.
thank you!

Looks like you have a proxy configured, and that proxy (of course) doesn't support routing to 127.0.0.1
[01:05:26 AM] t3://127.0.0.1:7101: Destination unreachable; nested exception is:
java.net.ProtocolException: unrecognized response from proxy: 'HTTP/1.1 500 Server Error'; No available router to destinationUnset your proxy (Tools->Preferences->Web Browser & Proxy)
John

Similar Messages

  • Deploy XI java Proxy inside JBoss application server

    Hello,
    Can I deploy XI java Proxy inside JBoss application server
    Appreciate you response.
    Thanks

    Hi,
    <b>Yes</b>
    You can deploy your Java Proxy inside JBoss Server (in any Application server). But this will be possible only for Client Java Proxy and not for Server Java Proxy.
    I have succesfully completed those scenarios.
    After generating Client Java proxy, create EJB application with generated Java classes for proxies and deploy it in JBoss.
    Then you can access that EJB to pass inputs either in standalone application or some JSP.
    Regards,
    Uma

  • Calling EJB from other EJB on other J2EE Server

    Can I call EJB from other EJB on other J2EE Server
    Servers - Websphere 5.0
    Do i require home & remote interface of that ejb on client side also
    Help me, please

    the problem is actually i require that is specific to websphere
    for example i want to call a method ion that ejb
    say my ejb name is myejb
    so the normal way i should call is
    InitialContext initialContext = new InitialContext();     
    Object homeObject = initialContext.lookup("ejb/MyEjbHome");
    MyEJBHome myEJBHome =(MYEjbHome )javax.rmi.PortableRemoteObject.narrow(homeObjectMYEjbHome.class);
              myEJB = lSHome.create();
    myEJB.someMethod();
    but here i am having class for home and remote available
    now if other app server i am not having this classes then what to do

  • Oracle Java Apps Window - Maximize by default possible?

    Hi All,
    As in subject, is it possible to have Oracle Java Apps window maximize by default when launched?
    Kind regards

    PawelBertel wrote:
    Hello,
    Apologies, I'm talking about Oracle EBS 12.1.2 - main oracle apps window.
    Kind regards
    This is something that can be fixed from the browser.
    http://support.microsoft.com/kb/555217
    http://answers.microsoft.com/en-us/ie/forum/ie8-windows_vista/how-do-i-make-the-default-window-size-open-to/a6261690-88e9-47ab-befb-f2cef12f2601
    Thanks,
    Hussein

  • Calling EJBs from other EJBs in other J2EE Server?

    How can I call one EJB on one J2EE Server from other
    EJB on other J2EE Server?
    Help me, please.
    Dmitry Tumanov

    Basically call the beans as if you were calling them in the same server through their remote interfaces. Get a InitialContext into the other appserver and then get the home object, narrow it and create a remote reference. You can follow the standard implementation just make sure that the InitialContext you create has the right properties, ie. context factory, urls, etc to the OTHER appserver.

  • Deploy the JSF app to integrated Weblogic Server Error

    Hi, All,
    I just created a new ADF app and have only one single JSF page in which have one Calender component. After right click the ViewController project and select deploy to Integrated Weblogic server and i got the below error:
    [01:05:25 AM] ---- Deployment started. ----
    [01:05:25 AM] Target platform is (Weblogic 10.3).
    [01:05:26 AM] #### Deployment incomplete. ####
    [01:05:26 AM] [J2EE Deployment SPI:260010]Unable to connect to 't3://127.0.0.1:7101' as user, 'weblogic'. Error received: null
    [01:05:26 AM] [J2EE Deployment SPI:260010]Unable to connect to 't3://127.0.0.1:7101' as user, 'weblogic'. Error received: null
    [01:05:26 AM] [J2EE Deployment SPI:260010]Unable to connect to 't3://127.0.0.1:7101' as user, 'weblogic'. Error received: null
    [01:05:26 AM] t3://127.0.0.1:7101: Destination unreachable; nested exception is:
         java.net.ProtocolException: unrecognized response from proxy: 'HTTP/1.1 500 Server Error'; No available router to destination
    [01:05:26 AM] Destination unreachable; nested exception is:
         java.net.ProtocolException: unrecognized response from proxy: 'HTTP/1.1 500 Server Error'; No available router to destination
    If right click the simple JSF page and run directly will start the wl server and seems not to deploy the demo app. the log as below:
    Starting WLS with line:
    C:\PROGRA~1\Oracle\MIDDLE~1\JDK160~1\bin\java -client -Xms256m -Xmx512m -XX:CompileThreshold=8000 -XX:PermSize=128m -XX:MaxPermSize=512m -Dweblogic.Name=DefaultServer -Djava.security.policy=C:\PROGRA~1\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.policy "-Djavax.net.ssl.trustStore=C:\Program Files\Oracle\Middle Ware\wlserver_10.3\server\lib\DemoTrust.jks" -Dhttp.proxyHost=www-proxy.cn.oracle.com -Dhttp.proxyPort=80 -Dhttp.nonProxyHosts= -Dhttps.proxyHost=www-proxy.cn.oracle.com -Dhttps.proxyPort=80 -Dhttps.nonProxyHosts= -Dweblogic.nodemanager.ServiceEnabled=true -Xverify:none -da -Dplatform.home=C:\PROGRA~1\Oracle\MIDDLE~1\WLSERV~1.3 -Dwls.home=C:\PROGRA~1\Oracle\MIDDLE~1\WLSERV~1.3\server -Dweblogic.home=C:\PROGRA~1\Oracle\MIDDLE~1\WLSERV~1.3\server -Djps.app.credential.overwrite.allowed=true -Ddomain.home=C:\DOCUME~1\gerry\APPLIC~1\JDEVEL~1\SYSTEM~1.60\DEFAUL~1 -Dcommon.components.home=C:\PROGRA~1\Oracle\MIDDLE~1\ORACLE~1 -Djrf.version=11.1.1 -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logger -Djrockit.optfile=C:\PROGRA~1\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.jrf_11.1.1\jrocket_optfile.txt -Doracle.domain.config.dir=C:\DOCUME~1\gerry\APPLIC~1\JDEVEL~1\SYSTEM~1.60\DEFAUL~1\config\FMWCON~1 -Doracle.server.config.dir=C:\DOCUME~1\gerry\APPLIC~1\JDEVEL~1\SYSTEM~1.60\DEFAUL~1\config\FMWCON~1\servers\DefaultServer -Doracle.security.jps.config=C:\DOCUME~1\gerry\APPLIC~1\JDEVEL~1\SYSTEM~1.60\DEFAUL~1\config\fmwconfig\jps-config.xml -Djava.protocol.handler.pkgs=oracle.mds.net.protocol -Digf.arisidbeans.carmlloc=C:\DOCUME~1\gerry\APPLIC~1\JDEVEL~1\SYSTEM~1.60\DEFAUL~1\config\FMWCON~1\carml -Digf.arisidstack.home=C:\DOCUME~1\gerry\APPLIC~1\JDEVEL~1\SYSTEM~1.60\DEFAUL~1\config\FMWCON~1\arisidprovider -Dweblogic.alternateTypesDirectory=C:\PROGRA~1\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.ossoiap_11.1.1,C:\PROGRA~1\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.oamprovider_11.1.1 -Dweblogic.jdbc.remoteEnabled=false -Dwsm.repository.path=C:\DOCUME~1\gerry\APPLIC~1\JDEVEL~1\SYSTEM~1.60\DEFAUL~1\oracle\store\gmds -Dweblogic.management.discover=true -Dwlw.iterativeDev= -Dwlw.testConsole= -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=C:\PROGRA~1\Oracle\MIDDLE~1\patch_wls1033\profiles\default\sysext_manifest_classpath;C:\PROGRA~1\Oracle\MIDDLE~1\patch_jdev1111\profiles\default\sysext_manifest_classpath weblogic.Server
    <2010-10-15 上午01时13分40秒 VET> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) Client VM Version 16.0-b13 from Sun Microsystems Inc.>
    <2010-10-15 上午01时13分41秒 VET> <Info> <Management> <BEA-141107> <Version: WebLogic Server 10.3.3.0 Fri Apr 9 00:05:28 PDT 2010 1321401 >
    <2010-10-15 上午01时13分42秒 VET> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <2010-10-15 上午01时13分42秒 VET> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool>
    <2010-10-15 上午01时13分42秒 VET> <Notice> <LoggingService> <BEA-320400> <The log file C:\Documents and Settings\gerry\Application Data\JDeveloper\system11.1.1.3.37.56.60\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <2010-10-15 上午01时13分42秒 VET> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to C:\Documents and Settings\gerry\Application Data\JDeveloper\system11.1.1.3.37.56.60\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log00020. Log messages will continue to be logged in C:\Documents and Settings\gerry\Application Data\JDeveloper\system11.1.1.3.37.56.60\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log.>
    <2010-10-15 上午01时13分42秒 VET> <Notice> <Log Management> <BEA-170019> <The server log file C:\Documents and Settings\gerry\Application Data\JDeveloper\system11.1.1.3.37.56.60\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log is opened. All server side log events will be written to this file.>
    <2010-10-15 上午01时13分44秒 VET> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    <2010-10-15 上午01时13分48秒 VET> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STANDBY>
    <2010-10-15 上午01时13分48秒 VET> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <2010-10-15 上午01时13分51秒 VET> <Notice> <LoggingService> <BEA-320400> <The log file C:\Documents and Settings\gerry\Application Data\JDeveloper\system11.1.1.3.37.56.60\DefaultDomain\servers\DefaultServer\logs\DefaultDomain.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <2010-10-15 上午01时13分51秒 VET> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to C:\Documents and Settings\gerry\Application Data\JDeveloper\system11.1.1.3.37.56.60\DefaultDomain\servers\DefaultServer\logs\DefaultDomain.log00020. Log messages will continue to be logged in C:\Documents and Settings\gerry\Application Data\JDeveloper\system11.1.1.3.37.56.60\DefaultDomain\servers\DefaultServer\logs\DefaultDomain.log.>
    <2010-10-15 上午01时13分51秒 VET> <Notice> <Log Management> <BEA-170027> <The Server has established connection with the Domain level Diagnostic Service successfully.>
    <2010-10-15 上午01时13分52秒 VET> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to ADMIN>
    <2010-10-15 上午01时13分52秒 VET> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RESUMING>
    <2010-10-15 上午01时13分52秒 VET> <Warning> <Server> <BEA-002611> <Hostname "gerry-cn.peoplesoft.com", maps to multiple IP addresses: 10.182.105.125, 192.168.149.1, 192.168.126.1>
    <2010-10-15 上午01时13分52秒 VET> <Notice> <Server> <BEA-002613> <Channel "Default[3]" is now listening on 127.0.0.1:7101 for protocols iiop, t3, ldap, snmp, http.>
    <2010-10-15 上午01时13分52秒 VET> <Notice> <Server> <BEA-002613> <Channel "Default" is now listening on 192.168.126.1:7101 for protocols iiop, t3, ldap, snmp, http.>
    <2010-10-15 上午01时13分52秒 VET> <Notice> <Server> <BEA-002613> <Channel "Default[2]" is now listening on 10.182.105.125:7101 for protocols iiop, t3, ldap, snmp, http.>
    <2010-10-15 上午01时13分52秒 VET> <Notice> <Server> <BEA-002613> <Channel "Default[1]" is now listening on 192.168.149.1:7101 for protocols iiop, t3, ldap, snmp, http.>
    <2010-10-15 上午01时13分52秒 VET> <Notice> <WebLogicServer> <BEA-000331> <Started WebLogic Admin Server "DefaultServer" for domain "DefaultDomain" running in Development Mode>
    <2010-10-15 上午01时13分52秒 VET> <Warning> <Server> <BEA-002611> <Hostname "GERRY-CN", maps to multiple IP addresses: 10.182.105.125, 192.168.149.1, 192.168.126.1>
    <2010-10-15 上午01时13分52秒 VET> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RUNNING>
    <2010-10-15 上午01时13分52秒 VET> <Notice> <WebLogicServer> <BEA-000360> <Server started in RUNNING mode>
    as normal there would have a URL link displayed in the weblogic log, is that right? any one can give tips?

    Looks like you have a proxy configured, and that proxy (of course) doesn't support routing to 127.0.0.1
    [01:05:26 AM] t3://127.0.0.1:7101: Destination unreachable; nested exception is:
    java.net.ProtocolException: unrecognized response from proxy: 'HTTP/1.1 500 Server Error'; No available router to destinationUnset your proxy (Tools->Preferences->Web Browser & Proxy)
    John

  • Porting a Workshop app to another J2EE server?

    Hello all. I'm new to WL Workshop and have been reading abou the required Workshop
    Runtime. Is this something that could be ported to another J2EE compliant server?
    I noticed the PageFlow Portability Kit for the page flows... but what about the
    Runtime engine itself?
    Also, does anyone know what is contained in it or how it is deployed. If its as
    simple as a jar that could be moved over that would be nice... but I doubt its
    as simple as that. thanks!

    Blake--
    The "Runtime Engine" that you mention is the Workshop controls
    runtime. Carl Sjogreen addresses portability in a post in this
    newsgroup from 9/24/2003. Instead of rephrasing his comments, I've
    pasted them below and suggest the "Application portability" thread as
    good reading.
    Controls fall into the class of artifacts that can be built using
    Workshop but which are not 100% portable today. This includes controls
    like the Database Control and EJB Control. Remember, though, that
    controls are often abstractions over standard J2EE technologies; in the
    case of these controls for example, the underlying technologies are just
    JDBC Prepared / Callable Statements and existing EJBs.
    The portable version of Page Flows does not support controls, but it
    does support all of the J2EE technologies such as JDBC, JNDI, EJB, and
    so on.
    Hope that helps...
    Eddie
    ::::: Application Portability from 9/24/2003 by Carl Sjogreen
    John --
    Good question. We're constantly pulled between delivering innovation
    and value to our customers and ensuring that the applications we build
    are standards based and portable. Here's what we are doing to address this:
    1) You can always build 100% standard based applications in Workshop
    that are as portable as any other J2EE application. Write Java files,
    use EJBgen to create EJBs, etc.
    2) Where we innovate, we innovate on top of existing standards. Witness
    what we are doing with Pageflows, which is built on top of Struts. As
    Web Services standards mature (JSR 109 in particular) we'll move JWS
    files to support 109 deployment artifacts.
    3) We are aggressively pursuing standardization, portability, and open
    source for innovations we introduce. A few proof points:
    * The key innovations behind JWS files are being standardized as part of
    the Java Community Process in JSR 181. When this standard goes final
    (early next year hopefully) you'll be able to take your JWS files to
    other platforms.
    * We will provide "portability kits". In SP2 (due later this year)
    we'll provide a portability kit so you can take any pageflow file and
    run it on other J2EE containers. This basically includes a set of stand
    alone build tools and the few runtime classes we've added on top of struts.
    * We've open sourced key technologies like XMLBeans. XMLBeans is now
    being incubated as part of the Apache Software Foundation
    (http://xml.apache.org/xmlbeans).
    So I think you'll find that while not everything you build in Workshop
    is 100% portable today, a lot is, and more will be down the road.
    Any questions, please let me know.
    Best,
    -Carl
    Carl Sjogreen
    Group Product Manager
    WebLogic Workshop
    "John Reynolds" <[email protected]> wrote in message
    news:[email protected]...
    Raj,
    Thanks for forwarding this on to your Product Managers.
    Application portability is one of the big selling points for Java, so
    it would be a shame if Bea did not have runtime licenses for deploying
    the workshop runtimes on any J2EE certified app-server. I don't think
    my company has any problems in paying for quality software, but they do
    have problems when the "Write once, run anywhere" Java pledge is broken
    (since that's what sold them on Java vs. .Net in the first place).
    Having said that, I really applaud what Bea has done so far. For
    example, Bea's donation of XmlBeans to Apache was a truly great thing.
    Blake wrote:
    Eddie,
    The "Weblogic Workshop Internals" document also talks about the "Runtime Engine".
    Here is a blurb from the top of the doc: "<contains> a runtime infrastructure
    that supports application features; the runtime consists of J2EE components deployed
    on WebLogic Server "
    Later in the doc they mention some EJB's such as the SynchBean and AsyncBean which
    utilize JMS. This is the info I need to provide my client if they decide to port
    to another app server. We now know that the webapp is portable... its the J2EE
    components that is the final piece of the puzzle. thanks!
    -Blake

  • JD3-Error deploying Oracle Java Libraries

    I get the following error when trying to deploy Oracle 8.1.5
    JDBC, Connection Manager, and JBO Runtime libraries:
    initialization complete
    loading : oracle/sql/converter/CharacterConverter
    creating : oracle/sql/converter/CharacterConverter
    loading : oracle/jdbc/oracore/OracleTypeREF
    creating : oracle/jdbc/oracore/OracleTypeREF
    Error while creating class oracle/jdbc/oracore/OracleTypeREF
    ORA-01031: insufficient privileges
    loading : oracle/jdbc/ttc7/TTCDataSet
    creating : oracle/jdbc/ttc7/TTCDataSet
    Error while creating class oracle/jdbc/ttc7/TTCDataSet
    ORA-01031: insufficient privileges
    loading : oracle/jpub/runtime/MutableArray
    creating : oracle/jpub/runtime/MutableArray
    loading : oracle/sql/converter/CharacterConverterSJIS
    creating : oracle/sql/converter/CharacterConverterSJIS
    loading : oracle/jdbc/ttc7/TTCAdapter
    creating : oracle/jdbc/ttc7/TTCAdapter
    Error while creating class oracle/jdbc/ttc7/TTCAdapter
    ORA-01031: insufficient privileges
    null

    Thank you very much for your quick response.
    So, then I tried to deploy my classes without including the
    Oracle libraries in the advanced deploy options, and this is
    what I got (I try to deploy a Java Stored Procedure which calls
    Oracle Business Components for Java. It's working all fine
    locally in a Java VM, but now I want to access that remotely
    through a Java Stored Procedure):
    *** Executing deployment profile C:\Program
    Files\Oracle\JDeveloper 3.0\myprojects\SPProfile1.prf ***
    *** Generating archive file C:\Program Files\Oracle\JDeveloper
    3.0\myclasses\SPProfile4_Untitled.jar ***
    Compiling the project...done
    Validating the profile...done
    Initializing deployment...done
    Scanning project files...done
    Generating classpath dependencies...done
    Generating archive entries table...done
    *** Archive generation completed ***
    *** Loading archive C:\Program Files\Oracle\JDeveloper 3.0
    \myclasses\SPProfile4_Untitled.jar into JServer using JDBC ***
    Load Java argument list:
    "C:\Program Files\Oracle\JDeveloper 3.0\java\bin\javaw"
    "-DPATH=C:\Program Files\Oracle\JDeveloper 3.0\bin;C:\Program
    Files\Oracle\JDeveloper 3.0\java\bin"
    -classpath
    "C:\Program Files\Oracle\JDeveloper 3.0
    \java\lib\classes.zip;C:\Program Files\Oracle\JDeveloper 3.0
    \lib\jdeveloper.zip;C:\Program Files\Oracle\JDeveloper 3.0
    \myclasses;C:\Program Files\Oracle\JDeveloper 3.0\lib\jdev-
    rt.zip;C:\Program Files\Oracle\JDeveloper 3.0
    \jdbc\lib\oracle8.1.5\classes111.zip;C:\Program
    Files\Oracle\JDeveloper 3.0\lib\connectionmanager.zip;C:\Program
    Files\Oracle\JDeveloper 3.0\lib\jbodatum.zip;C:\Program
    Files\Oracle\JDeveloper 3.0\lib\jbomt.zip;C:\Program
    Files\Oracle\JDeveloper 3.0\lib\jboremote.zip;C:\Program
    Files\Oracle\JDeveloper 3.0\lib\jndi.jar;C:\Program
    Files\Oracle\JDeveloper 3.0\lib\xmlparserv2.jar;C:\Program
    Files\Oracle\JDeveloper 3.0\aurora\lib\aurora.zip;C:\Program
    Files\Oracle\JDeveloper 3.0\lib\jboejb.jar;C:\Program
    Files\Oracle\JDeveloper 3.0
    \aurora\lib\aurora_client.jar;C:\Program Files\Oracle\JDeveloper
    3.0\aurora\lib\vbjorb.jar;C:\Program Files\Oracle\JDeveloper 3.0
    \aurora\lib\vbjapp.jar;C:\Program Files\Oracle\JDeveloper 3.0
    \lib\javax_ejb.zip;C:\Program Files\Oracl
    \JDeveloper 3.0\java\lib\classes.zip;C:\Program
    Files\Oracle\JDeveloper 3.0
    \aurora\lib\aurora_client.jar;C:\Program Files\Oracle\JDeveloper
    3.0\aurora\lib\vbjorb.jar;C:\Program Files\Oracle\JDeveloper 3.0
    \aurora\lib\vbjapp.jar;C:\Program Files\Oracle\JDeveloper 3.0
    \aurora\lib\vbjtools.jar;C:\Program Files\Oracle\JDeveloper 3.0
    \aurora\lib\vbj30ssl.jar;C:\Program Files\Oracle\JDeveloper 3.0
    \jdbc\lib\oracle8.1.5\classes111.zip"
    oracle.aurora.server.tools.LoadJavaMain
    -user
    devp/[email protected]:1521:MWAY
    -thin
    -verbose
    -resolve
    "C:\Program Files\Oracle\JDeveloper 3.0
    \myclasses\SPProfile4_Untitled.jar"
    AppAccelerator(tm) 1.1.8 for Java (JDK 1.1), x86 version.
    Copyright (c) 1997-1998 Borland International. All Rights
    Reserved.
    Copyright (c) 1997-1999 Oracle Corporation. All Rights Reserved.
    initialization complete
    identical: package1/CommuterRegionSubscriptionViewImpl is
    unchanged from previously loaded file
    identical: package1/ErikProc2Lib is unchanged from previously
    loaded file
    identical: package1/TestReadTable2 is unchanged from previously
    loaded file
    identical: package1/CommuterEtakRegionImpl is unchanged from
    previously loaded file
    identical: package1/CommuterRegionSubscriptionImpl is unchanged
    from previously loaded file
    identical: package1/CommuterEtakRegionViewImpl is unchanged from
    previously loaded file
    identical: package1/Package1ModuleImpl is unchanged from
    previously loaded file
    identical: package1/ErikProc is unchanged from previously loaded
    file
    identical: package1/ErikProc2 is unchanged from previously
    loaded file
    identical: package1/CommuterRegionSubscription.xml is unchanged
    from previously loaded file
    identical: package1/FkCommuterEtakRegionSubAssoc.xml is
    unchanged from previously loaded file
    identical: package1/FkCommuterEtakRegionSubLink.xml is unchanged
    from previously loaded file
    identical: package1/CommuterRegionSubscriptionView.xml is
    unchanged from previously loaded file
    identical: META-INF/MANIFEST.MF is unchanged from previously
    loaded file
    identical: package1/package1.xml is unchanged from previously
    loaded file
    loading : connections.properties
    creating : connections.properties
    identical: package1/Package1Module.xml is unchanged from
    previously loaded file
    resolver :
    resolving: package1/CommuterRegionSubscriptionViewImpl
    Error while resolving class
    package1/CommuterRegionSubscriptionViewImpl
    ORA-29554: unhandled Java out of memory condition
    package1/ErikProc2Lib is already resolved
    resolving: package1/TestReadTable2
    Error while resolving class package1/TestReadTable2
    ORA-29554: unhandled Java out of memory condition
    resolving: package1/CommuterEtakRegionImpl
    Error while resolving class package1/CommuterEtakRegionImpl
    ORA-29554: unhandled Java out of memory condition
    resolving: package1/CommuterRegionSubscriptionImpl
    Error while resolving class
    package1/CommuterRegionSubscriptionImpl
    ORA-29554: unhandled Java out of memory condition
    resolving: package1/CommuterEtakRegionViewImpl
    Error while resolving class package1/CommuterEtakRegionViewImpl
    Exception java.sql.SQLException: No more data to read from
    socket
    initialization complete
    resolving: package1/Package1ModuleImpl
    Error while resolving class package1/Package1ModuleImpl
    ORA-29554: unhandled Java out of memory condition
    package1/ErikProc is already resolved
    package1/ErikProc2 is already resolved
    loadjava: 6 errors
    *** Errors occurred while loading the archive into JServer ***
    *** Deployment completed ***
    Thank you very much for your cooperation,
    Erik :-)
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    JDev Team (guest) wrote:
    : Erik,
    : A lot of the oracle. packages already exist in the server in
    the
    : SYS namespace because they are used by the JDK in the server.
    If
    : you try to deploy them, the server thinks you
    : are trying to overwrite and it won't let you. The oracle.jdbc
    : and oracle.sql stuff is definitely already there. I suspect
    the
    : oracle.jpub stuff is there as well.
    : In JDeveloper, you can see what's in the SYS namespace by
    using
    : the database browser. Double-click the connection you're
    using
    : to deploy to the database under the Connections folder. This
    : will display the Database Browser. Expand the 'Database
    Schemas'
    : folder, SYS, then Deployed Java Classes. Under there, you'll
    see
    : packages such as 'com','sun', 'javax', etc. You can expand
    each
    : of those to see if the one you're trying to deploy already
    : exists.
    : In JDeveloper 2.0, you control which dependency
    packages/classes
    : are deployed with the 'Dependencies' page of the deployment
    : profile wizard. In JDev 3.0, this information is available
    from
    : the 'Advanced' button on the Projects page. Make sure to
    remove
    : any packages from your deployment profile that already exist
    in
    : the SYS schema.
    : Use the Preview button to make sure your deployment archive
    : contains only those files you want to deploy, and not any
    : additional dependencies which are already in the server.
    : Laura
    : Erik Mailhiot (guest) wrote:
    : : I get the following error when trying to deploy Oracle 8.1.5
    : : JDBC, Connection Manager, and JBO Runtime libraries:
    : : initialization complete
    : : loading : oracle/sql/converter/CharacterConverter
    : : creating : oracle/sql/converter/CharacterConverter
    : : loading : oracle/jdbc/oracore/OracleTypeREF
    : : creating : oracle/jdbc/oracore/OracleTypeREF
    : : Error while creating class oracle/jdbc/oracore/OracleTypeREF
    : : ORA-01031: insufficient privileges
    : : loading : oracle/jdbc/ttc7/TTCDataSet
    : : creating : oracle/jdbc/ttc7/TTCDataSet
    : : Error while creating class oracle/jdbc/ttc7/TTCDataSet
    : : ORA-01031: insufficient privileges
    : : loading : oracle/jpub/runtime/MutableArray
    : : creating : oracle/jpub/runtime/MutableArray
    : : loading : oracle/sql/converter/CharacterConverterSJIS
    : : creating : oracle/sql/converter/CharacterConverterSJIS
    : : loading : oracle/jdbc/ttc7/TTCAdapter
    : : creating : oracle/jdbc/ttc7/TTCAdapter
    : : Error while creating class oracle/jdbc/ttc7/TTCAdapter
    : : ORA-01031: insufficient privileges
    null

  • Java DC wrapped in J2EE Server Comp Library DC

    Hi Experts
    I have jxl.jar file, I imported this jar file in a Java DC and declared jxl.jar as public part. I created a Webdynpro DC and used the public part in it. I have created an application, component and a view in it using some classes of jxl.jar. I created a new J2EE Server Component Library DC and used the public part of jxl.jar in it again. Built the J2EE Server Component Library DC. Once done I got a .sda file. I deployed it in server. Once this is done, I have added the J2EE Server Component Library DC in my Webdynpro DC's Library Reference. Once I added this, i built it and deployed it. I got deployment finished with Warnings. Please see the exception below and Please advice.
    Exception from NWDS Deployment Screen
    "java.rmi.RemoteException: Error occurred while starting application wrigley.com/signauth/ui and wait. Reason: Clusterwide exception: server ID 6840450:com.sap.engine.services.deploy.container.DeploymentException: Clusterwide exception: Failed to prepare application wrigley.com/signauthui for startup. Reason=Clusterwide exception: Failed to start dependent library ''signauth/libraryimpl'' of application ''wrigley.com/signauthui''. Status of dependent component:  STATUS_MISSING. Hint: Is the component deployed correctly on the engine?"
    Names of the DCs used
    Webdynpro DC - signauth/ui
    J2EE Server Component DC - signauth/libraryimpl
    Java External Library DC - signauth/library
    FYI. I have created J2EE Server Component DC's name with more number of characters. Hope this shouldn't create issue. If this is also an issue, please let me know. I will reduce it and try.
    Thank you
    Best Regards
    Ramamoorthy D

    Hi Experts
    Kindly help me out in getting a solution for this problem.
    Thank you.
    Best Regards
    Ramamoorthy D

  • Deploying EntityBean(CMP 2.0) in J2EE server 1.3.0/1.3.1

    Urgent:
    Hello:
    I am having problem in packaging and deploying
    an EntityBean(CMP 2.0) with only Remote Interface
    and Remote Home Interface in J2EE server 1.3.1
    with its deploytool.
    The Verifier is giving no failed test.
    But when I start deploy I get the RMI Compilation
    Error as follows :
    Compilation failed.
         at com.sun.ejb.codegen.GeneratorDriver.compileClasses(GeneratorDriver.java:232)
         at com.sun.ejb.codegen.GeneratorDriver.compileAndRmic(GeneratorDriver.java:101)
         at com.sun.ejb.codegen.GeneratorDriver.preDeploy(GeneratorDriver.java:888)
         at com.sun.enterprise.tools.deployment.backend.JarInstallerImpl.deployEjbs(JarInstallerImpl.java:707)
         at com.sun.enterprise.tools.deployment.backend.JarInstallerImpl.deployApplication(JarInstallerImpl.java:221)
         at org.omg.stub.com.sun.enterprise.tools.deployment.backend._JarInstallerImpl_Tie._invoke(Unknown Source)
         at com.sun.corba.ee.internal.corba.ServerDelegate.dispatch(ServerDelegate.java:355)
         at com.sun.corba.ee.internal.iiop.ORB.process(ORB.java:255)
         at com.sun.corba.ee.internal.iiop.RequestProcessor.process(RequestProcessor.java:84)
         at com.sun.corba.ee.internal.orbutil.ThreadPool$PooledThread.run(ThreadPool.java:99)
    What could be a solution to this?
    Is there any step by step procedure for that?

    Dear JDC member;
    I recommend to try to add local interfaces...They are optionnal, but they can make things work.
    Also, the other issue with CMP you have to map correctly the fields to your tables.

  • Problem: Deploy a web app from a managed server - Can someone answer:  Is this a bug?!

    We're running 6.0sp2 on both AIX and RedHat. Deploying or redeploying
    a web app to the managed server fails, works fine on the Admin server.
    War's work fine in the 'applications' dir. The browser fails with a
    404 on the managed server, with the following error in the log:
    ####<Aug 9, 2001 4:58:45 PM GMT> <Error> <J2EE> <szuinet5> <ect2>
    <ExecuteThread: '11'
    for queue: 'default'> <system> <> <160001> <Error deploying application
    DefaultWebApp
    ect2: Cannot deploy WebAppServletContext(4320491,DefaultWebAppect2) on
    ect2 because
    WebAppServletContext(2930053,DefaultWebApp_ect2) is already registered
    for path >
    Are we missing the point here? Or, is this a known bug? Also, we are
    not in a position to jump onto v6.1 at this time.
    Thanks in advance.

    Hi,
    Yes..it's a bug. I had the same problem and it has been reported to support
    but no indication if it's fixed.
    Rgds,
    E-Wan
    ppower wrote:
    We're running 6.0sp2 on both AIX and RedHat. Deploying or redeploying
    a web app to the managed server fails, works fine on the Admin server.
    War's work fine in the 'applications' dir. The browser fails with a
    404 on the managed server, with the following error in the log:
    ####<Aug 9, 2001 4:58:45 PM GMT> <Error> <J2EE> <szuinet5> <ect2>
    <ExecuteThread: '11'
    for queue: 'default'> <system> <> <160001> <Error deploying application
    DefaultWebApp
    ect2: Cannot deploy WebAppServletContext(4320491,DefaultWebAppect2) on
    ect2 because
    WebAppServletContext(2930053,DefaultWebApp_ect2) is already registered
    for path >
    Are we missing the point here? Or, is this a known bug? Also, we are
    not in a position to jump onto v6.1 at this time.
    Thanks in advance.

  • Migrate 6.20 Java App to NW04 J2EE in NWDS

    We are moving our java apps from WAS 6.20 to NW04(S).
    The SAP migration tool is designed for several third party vendors but does not work with SAP 6.20.
    We can take the EAR file from 6.20 and use the Deploy/Convert tools to deploy the application to NW04S.
    However, we are not sure how to convert the 6.20 Eclipse project to an NW04(S) J2EE project in Netweaver Development Studio.
    Has anyone seen a tutorial on this topic?
    Cheers ... Bart

    Hi Thomas,
    Thanks for your post on this topic.  We have visited that link that you mentioned.  It gives a good overview.
    We have been able to take a 6.20 ear file and use the deploy/convert tools to get the 6.20 java development running on 6.40.
    Our question is more centered around the "Using NWDS" part of that link.   We are really looking for a previous example/tutorial of the process of importing a 6.20 project into 6.40 and then doing the manual conversion.
    Thanks again ... Bart

  • Problem in connecting to Oracle databse through JNDI on J2EE Server

    hi all,
    i am trying to connect Oracle database throgh my EJB application.
    I am using JNDI concept for connecting this........
    i added these two lines in lib/default.properties file
    jdbc.drivers=oracle.jdbc.driver.OracleDriver
    jdbc.datasources=jdbc/Oracle|jdbc:oracle:[email protected]:1521:voip
    i am using this this Jndi(jdbc/oracle) to referencing the Bean application...this i did through refernce dialog box(while deploying the application).
    while running the app. it is giving me the error:
    java.rmi.ServerException: RemoteException occurred in server thread; nested exce
    ption is:
    java.rmi.RemoteException: nested exception is: javax.ejb.EJBException: U
    nable to connect to database. Invalid Oracle URL specified; nested exception is:
    javax.ejb.EJBException: Unable to connect to database. Invalid Oracle UR
    L specified
    java.rmi.RemoteException: nested exception is: javax.ejb.EJBException: Unable to
    connect to database. Invalid Oracle URL specified; nested exception is:
    javax.ejb.EJBException: Unable to connect to database. Invalid Oracle UR
    L specified
    javax.ejb.EJBException: Unable to connect to database. Invalid Oracle URL specif
    ied
    <<no stack trace available>>
    please help me???
    i am trying it from past 3 days...
    My jndi for databse is AccountDB and i am referncing it to this(jdbc/Oracle).
    Varun

    Try
    jdbc.datasources=jdbc/Oracle|jdbc:oracle:thin:@10.5.5.142:1521:voip
    I don't know which container you are using. And I am not sure if JNDI names are case sensitive. But try referring it as jdbc/oracle instead of jdbc/Oracle in your EJB. How are you providing userid and password?
    -Hitesh

  • Error Deploying Webcenter Portal App onto a managed server

    I have created an EAR file without AutoGenerate descriptors, when tried deploying, I got the following error.
    [August 14, 2012 10:25:59 AM EDT] Initiating deploy operation ...
    [August 14, 2012 10:25:59 AM EDT] Saving the oracle configuration changes to archive.
    [August 14, 2012 10:25:59 AM EDT] Archive: /u01/app/oracle/product/middleware/user_projects/domains/base_domain/sysman/upload/deploy/ dotsandbox_application1_V2.0_V2.1/archive/dotsandbox_application1.ear
    [August 14, 2012 10:25:59 AM EDT] Targeting MDS repository: com.bea:Name=mds-CustomPortalDS,Type=JDBCSystemResource to target WC_CustomPortal.
    [August 14, 2012 10:25:59 AM EDT] Targeting MDS repository: com.bea:Name=mds-CustomPortalDS,Type=JDBCSystemResource to target WC_CustomPortal completed.
    [August 14, 2012 10:26:01 AM EDT] [Deployer:149191]Operation 'deploy' on application 'dotsandbox_application1 [ArchiveVersion=V2.0,PlanVersion=V2.1]' is initializing on 'WC_CustomPortal'
    [August 14, 2012 10:26:15 AM EDT] [Deployer:149192]Operation 'deploy' on application 'dotsandbox_application1 [ArchiveVersion=V2.0,PlanVersion=V2.1]' is in progress on 'WC_CustomPortal'
    [August 14, 2012 10:26:19 AM EDT] [Deployer:149193]Operation 'deploy' on application 'dotsandbox_application1 [ArchiveVersion=V2.0,PlanVersion=V2.1]' has failed on 'WC_CustomPortal'
    [August 14, 2012 10:26:19 AM EDT] java.lang.InstantiationError: ServiceContext resource configuration file "META-INF/context.provider" found, but the class defined "class oracle.webcenter.framework.internal.service.DefaultServiceContext" is not an instance of oracle.webcenter.framework.service.ServiceContext.
    [August 14, 2012 10:26:19 AM EDT] ServiceContext resource configuration file "META-INF/context.provider" found, but the class defined "class oracle.webcenter.framework.internal.service.DefaultServiceContext" is not an instance of oracle.webcenter.framework.service.ServiceContext.
    [August 14, 2012 10:26:20 AM EDT] Deploy operation failed.
    Edited by: telugubaludu on Aug 14, 2012 12:31 PM

    >
    [August 14, 2012 10:25:59 AM EDT] Archive: /u01/app/oracle/product/middleware/user_projects/domains/base_domain/sysman/upload/deploy/ dotsandbox_application1_V2.0_V2.1/archive/dotsandbox_application1.earNotice that there is a space in the path between "deploy/" and "dotsandbox_application1_V2.0_V2.1". That's possibly the issue. Check to see if your application name (in the deployment profile) contains a space.

  • Unable to deploy oracle portal app on wls 10.3

    I was deploying an Oracle Portal 10.3 app (a very simple one) exported in EAR file onto WLS 10.3 through WLS admin console. When I went through Deployments -> Install -> Locate deployment -> Install this deployment as an application -> Select deployment targets -> Finish and tried to "activate chagnes", it said "Object Deleted - The object that you were viewing has been deleted, either by you or another user. Please make another selection.", therefore no deployment was successful. Can anyone explain why and how to fix it?

    Since you deployed the application 'successfully', but are unable to activate the deployment, there could be several things reasons which you can find out only after looking at the Server log file.
    Look at <domain_folder>/servers/AdminServer/logs/AdminServer.log
    It is unlikely that you have a missing shared library on your WLP installation - because errors like that are caught before you reach the stage of 'activation'.
    Regards
    Prashanth

Maybe you are looking for

  • Does my PC have an asio driver

    I have a HP Pavilion p7-1597c  which I'm using as music server.  I have just installed JRiver server software and am attempting to determine if my PC has asio audio capability.  My operating system is Windows 8.  Thank you in advance for any help. Th

  • Embed font as cff error

    Is there a way to get around an embed conflict with a spark Label components and mx.Alert component? I have embedded the Arial font in to my application: @font-face {    src:url("c:/windows/fonts/arial.ttf");    fontFamily: Arial;    embedAsCFF: true

  • AIR for iOS, Getting HTML5 Video to Autoplay in a StageWebView?

    Hi all, The video performance I get from the built in FLV video is pretty poor. I'm considering using a StageWebView to display a HTML5 page with a standard <video> in it. The video shows up and (if I enable controls) can be played and it looks great

  • Documentation on Function Modules,RFC,BAPI

    hi friends, I have to give training in these 3 topics(function module,RFC,BAPI) .can u please help me with the documentation part . thanku

  • Missing Monitor Task:  Some users can see, some cannot

    We have a task in the monitor that came up missing in February 2009.  We do not know if it was accidently deleted and sent with a transport we recently sent or if it has been missing for a while and noticed until February 2009 was closed.  The task i