Unable to deploy the war file generated from jdeveloper to tomcat

Hi
I was able to deploy the war file after modification in the web.xml but unable to run the servlet application
Please Help
Dolphy

After going thru all the steps specified in online help to deploy the web application in Tomcat server.
I am getting the following error
first the webapps could not be deployed because of url pattern
<servlet-mapping>
<servlet-name>mypackage1.BIController1</servlet-name>
<url-pattern>mypackage1.BIController1</url-pattern>
</servlet-mapping>
which when i change to
<servlet-mapping>
<servlet-name>mypackage1.BIController1</servlet-name>
<url-pattern>\mypackage1\BIController1</url-pattern>
</servlet-mapping>
deploys the application
but i get the following errors in the tomcat log file
2004-05-03 10:34:12 StandardContext[balancer]org.apache.webapp.balancer.BalancerFilter: init(): ruleChain: [org.apache.webapp.balancer.RuleChain: [org.apache.webapp.balancer.rules.URLStringMatchRule: Target string: News / Redirect URL: http://www.cnn.com], [org.apache.webapp.balancer.rules.RequestParameterRule: Target param name: paramName / Target param value: paramValue / Redirect URL: http://www.yahoo.com], [org.apache.webapp.balancer.rules.AcceptEverythingRule: Redirect URL: http://jakarta.apache.org]]
2004-05-03 10:34:12 StandardContext[jsp-examples]ContextListener: contextInitialized()
2004-05-03 10:34:12 StandardContext[jsp-examples]SessionListener: contextInitialized()
2004-05-03 10:34:13 StandardContext[servlets-examples]ContextListener: contextInitialized()
2004-05-03 10:34:13 StandardContext[servlets-examples]SessionListener: contextInitialized()
2004-05-03 10:34:13 StandardContext[webapp1]Marking servlet uix as unavailable
2004-05-03 10:34:13 StandardContext[webapp1]Error loading WebappClassLoader
delegate: false
repositories:
/WEB-INF/classes/
----------> Parent Classloader:
StandardClassLoader
delegate: true
repositories:
file:C:\tomcat\shared\classes\
----------> Parent Classloader:
StandardClassLoader
delegate: true
repositories:
file:C:\tomcat\common\classes\
file:C:\tomcat\common\endorsed\xercesImpl.jar
file:C:\tomcat\common\endorsed\xmlParserAPIs.jar
file:C:\tomcat\common\lib\ant.jar
file:C:\tomcat\common\lib\commons-collections.jar
file:C:\tomcat\common\lib\commons-dbcp-1.1.jar
file:C:\tomcat\common\lib\commons-el.jar
file:C:\tomcat\common\lib\commons-pool-1.1.jar
file:C:\tomcat\common\lib\jasper-compiler.jar
file:C:\tomcat\common\lib\jasper-runtime.jar
file:C:\tomcat\common\lib\jmx.jar
file:C:\tomcat\common\lib\jsp-api.jar
file:C:\tomcat\common\lib\naming-common.jar
file:C:\tomcat\common\lib\naming-factory.jar
file:C:\tomcat\common\lib\naming-java.jar
file:C:\tomcat\common\lib\naming-resources.jar
file:C:\tomcat\common\lib\servlet-api.jar
----------> Parent Classloader:
sun.misc.Launcher$AppClassLoader@4afa9e
oracle.cabo.servlet.UIXServlet
java.lang.ClassNotFoundException: oracle.cabo.servlet.UIXServlet
     at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1383)
     at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1230)
     at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:979)
     at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:887)
     at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:3959)
     at org.apache.catalina.core.StandardContext.start(StandardContext.java:4284)
     at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:866)
     at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:850)
     at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:638)
     at org.apache.catalina.core.StandardHostDeployer.install(StandardHostDeployer.java:320)
     at org.apache.catalina.core.StandardHost.install(StandardHost.java:875)
     at org.apache.catalina.startup.HostConfig.deployDirectories(HostConfig.java:727)
     at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:477)
     at org.apache.catalina.startup.HostConfig.start(HostConfig.java:1008)
     at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:394)
     at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:166)
     at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1134)
     at org.apache.catalina.core.StandardHost.start(StandardHost.java:832)
     at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1126)
     at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:521)
     at org.apache.catalina.core.StandardService.start(StandardService.java:519)
     at org.apache.catalina.core.StandardServer.start(StandardServer.java:2345)
     at org.apache.catalina.startup.Catalina.start(Catalina.java:594)
     at java.lang.reflect.Method.invoke(Native Method)
     at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:297)
     at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:398)
2004-05-03 10:34:13 StandardContext[webapp1]Servlet /webapp1 threw load() exception
javax.servlet.ServletException: Wrapper cannot find servlet class oracle.cabo.servlet.UIXServlet or a class it depends on
     at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:989)
     at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:887)
     at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:3959)
     at org.apache.catalina.core.StandardContext.start(StandardContext.java:4284)
     at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:866)
     at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:850)
     at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:638)
     at org.apache.catalina.core.StandardHostDeployer.install(StandardHostDeployer.java:320)
     at org.apache.catalina.core.StandardHost.install(StandardHost.java:875)
     at org.apache.catalina.startup.HostConfig.deployDirectories(HostConfig.java:727)
     at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:477)
     at org.apache.catalina.startup.HostConfig.start(HostConfig.java:1008)
     at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:394)
     at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:166)
     at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1134)
     at org.apache.catalina.core.StandardHost.start(StandardHost.java:832)
     at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1126)
     at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:521)
     at org.apache.catalina.core.StandardService.start(StandardService.java:519)
     at org.apache.catalina.core.StandardServer.start(StandardServer.java:2345)
     at org.apache.catalina.startup.Catalina.start(Catalina.java:594)
     at java.lang.reflect.Method.invoke(Native Method)
     at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:297)
     at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:398)
----- Root Cause -----
java.lang.ClassNotFoundException: oracle.cabo.servlet.UIXServlet
     at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1383)
     at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1230)
     at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:979)
     at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:887)
     at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:3959)
     at org.apache.catalina.core.StandardContext.start(StandardContext.java:4284)
     at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:866)
     at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:850)
     at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:638)
     at org.apache.catalina.core.StandardHostDeployer.install(StandardHostDeployer.java:320)
     at org.apache.catalina.core.StandardHost.install(StandardHost.java:875)
     at org.apache.catalina.startup.HostConfig.deployDirectories(HostConfig.java:727)
     at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:477)
     at org.apache.catalina.startup.HostConfig.start(HostConfig.java:1008)
     at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:394)
     at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:166)
     at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1134)
     at org.apache.catalina.core.StandardHost.start(StandardHost.java:832)
     at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1126)
     at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:521)
     at org.apache.catalina.core.StandardService.start(StandardService.java:519)
     at org.apache.catalina.core.StandardServer.start(StandardServer.java:2345)
     at org.apache.catalina.startup.Catalina.start(Catalina.java:594)
     at java.lang.reflect.Method.invoke(Native Method)
     at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:297)
     at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:398)
Thanks
Dolphy

Similar Messages

  • Unable to deploy a WAR file in Linux

    Hi Every one
    I am trying to deploy the war file from a remote machine.If server is running
    in windows environment it deploying properlly.
    If i tried to deploy the war file Server is running in Linux machine i am
    getting foilloeing error while deploying.
    Can any one sujjest me how to do this one.
    I am using Weblogic 7.0 with service pack 2
    The fillowing Error I am getting in the builder
    weblogic.rjvm.PeerGoneException: ; nested exception is:
         java.io.EOFException
    java.io.EOFException
         at weblogic.rjvm.t3.T3JVMConnection.endOfStream(T3JVMConnection.java:643)
         at weblogic.socket.JavaSocketMuxer.processSockets(JavaSocketMuxer.java:359)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:152)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:133)
    --------------- nested within: ------------------
    weblogic.rmi.extensions.RemoteRuntimeException: Unexpected Exception - with nested
    exception:
    [weblogic.rjvm.PeerGoneException: ; nested exception is:
         java.io.EOFException]
         at weblogic.management.internal.RemoteMBeanServerImpl_WLStub.invoke(Unknown Source)
         at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:470)
         at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:198)
         at $Proxy2.remove(Unknown Source)
         at weblogic.marathon.server.DeployPanel.runRemove(DeployPanel.java:322)
         at weblogic.marathon.server.DeployPanel.runDeploy(DeployPanel.java:342)
         at weblogic.marathon.server.DeployPanel.run(DeployPanel.java:248)
         at java.lang.Thread.run(Thread.java:484)
    weblogic.rjvm.PeerGoneException: ; nested exception is:
         java.io.EOFException
    java.io.EOFException
         at weblogic.rjvm.t3.T3JVMConnection.endOfStream(T3JVMConnection.java:643)
         at weblogic.socket.JavaSocketMuxer.processSockets(JavaSocketMuxer.java:359)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:152)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:133)
    --------------- nested within: ------------------
    weblogic.rmi.extensions.RemoteRuntimeException: Unexpected Exception - with nested
    exception:
    [weblogic.rjvm.PeerGoneException: ; nested exception is:
         java.io.EOFException]
         at weblogic.management.internal.RemoteMBeanServerImpl_WLStub.invoke(Unknown Source)
         at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:470)
         at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:198)
         at $Proxy2.remove(Unknown Source)
         at weblogic.marathon.server.DeployPanel.runRemove(DeployPanel.java:322)
         at weblogic.marathon.server.DeployPanel.runDeploy(DeployPanel.java:342)
         at weblogic.marathon.server.DeployPanel.run(DeployPanel.java:248)
         at java.lang.Thread.run(Thread.java:484)

    Mona,
    You have to keep in mind that virtual URL (like servlet context) does not always directly match paths on disk. As you can see http://hostname:7778/j2ee/ maps to C:\Infra10_1_2\j2ee\home\default-web-app. home is the name of the oc4j server. Create another oc4j server and see where its top directory is created.
    About your questions:
    1. Use the Application Server Control "Deploy Web App", like you tried before, but...
    2. It does not work because you have archived the whole directory for oc4j.
    Instead create a directory outside of the oracle home, with structure suggested by the Servlet Primer chapter:
    "Here is the structure of the WAR file for the examples in this chapter:
    EmpInfo.html
    WEB-INF/
    classes/
    HelloWorldServlet.class
    GetEmpInfo.class"
    Then cd to that directory and do
    jar cvf mywebapp.war .
    Deploy like you did before:
    Web Application: pick war file
    App Name: mywebapp
    Map to URL: /mona
    If succesful, check where files end up so you know both url paths and disk paths and how they fit together.

  • I didn't get log statements in console after deploying the war file IN WAS6

    I am new to web sphere 6.o server, I didn't get log statements in console after deploying the war file into the WAS

    Albenn
    Welcome to the Apple user discussion forums
    I'll hit a few of your questions - others will have to do others since I'm not up on some of the issues you ask about
    4) is there an easy way to review/delete items (in 6, i run a basic slideshow and delete on the fly -- is this still workable in 7?)?
    Yes
    5) Are there significant functionality benefits of 7 over 6 (e.g., does the noise function or shadow/highlight really offer significant benefits? The Events seems obvious, but I'm more interested in "under the hood" experience
    Yes
    Loseless editing - web galleries - events
    a) Is import any faster? As my library is growing in size, the import is getting overly slow
    It is fine for me (only you can compare to your current) - I have 20542 items using 26.3 GB in 271 events
    7) Is there a full-screen edit mode?
    yes
    8) Can you configure events so that it's not just by day?
    yes
    9) Is 6's "roll" structure as mirrored in the file system still available in the Events approach, or is the database structure that once you've converted a library, there's no going back?
    Events replace rolls (if your rolls are named - NOT the default rollxxx name - they will come across as is - to me events are rolls with much more capability and a new name - some people are VERY putoff by the change (but most love it) for reasons that I simply do not comprehend
    10) What is the effective (or advised) maximum library size? I've probably got over 60GB of images in my libraries now, with 20,000 images or so. If 7 can readily digest them (and preserve all my albums, etc.), then I'd love to combine them into one, unless that will kill performance, make the database unstable, drive backups into interminable waits, etc.
    The advertised max is 250,000 photos - I have about the same number of photos as you in about 1/3 the space - there are a few users here with libararies your size. With iPhoto Library Manager it is easy to maintain multiple libraries if you choose
    LN
    Message was edited by: LarryHN

  • Unable to deploy a war file: could path length in a war file be an issue on WIN2K?

    Hi all,
    I am unable to auto deploy a web app as a war file but has no problem to auto deploy it as an exploded directory that I drop under the
    $PortalHome/config/mydomain/applications directory of the WebLogic Server installation.
    Portal Server runs under W2K.
    I noticed that the generated war file located under $PortalHome/config/mydomain/applications.wlnotdelete contains files which path is 10 level deep and may be over
    255 char.
    Could this be a problem?
    The error I got is:
    ####<Dec 27, 2001 3:29:13 PM PST> <Info> <HTTP> <EBRIDONNEAU> <portalServer> <main> <system> <> <101059> <[portalServer] Loading efs40 from WAR file:
    D:\Bea\wlportal4.0\.\config\portalDomain\applications\.wlnotdelete\wl_comp19136.war>
    ####<Dec 27, 2001 3:29:13 PM PST> <Info> <HTTP> <EBRIDONNEAU> <portalServer> <main> <system> <> <101031> <[WebAppServletContext
    (23419224,personalizedPortal,/personalizedPortal)] extracting classfiles to D:\Bea\wlportal4.0\config\portalDomain\applications\.wlnotdelete\WEB-INF
    \_tmp_war_portalServer_portalServer_personalizedPortal:>
    ####<Dec 27, 2001 3:29:20 PM PST> <Error> <HTTP> <EBRIDONNEAU> <portalServer> <main> <system> <> <101034> <[WebAppServletContext
    (23419224,personalizedPortal,/personalizedPortal)] failure extracting WAR classes>
    java.io.IOException: The system cannot find the path specified
         at java.io.Win32FileSystem.createFileExclusively(Native Method)
         at java.io.File.checkAndCreate(File.java:1162)
         at java.io.File.createTempFile(File.java:1247)
         at weblogic.servlet.internal.WebAppHelper.extractClassFiles(WebAppHelper.java:95)
         at weblogic.servlet.internal.WebAppServletContext.extractClassFiles(WebAppServletContext.java:3359)
         at weblogic.servlet.internal.WebAppServletContext.setDocroot(WebAppServletContext.java:3330)
         at weblogic.servlet.internal.WebAppServletContext.init(WebAppServletContext.java:854)
    <snip>
    Thanks for any input.

    Puthanampatti, thanks for responding.
    What is the complete command line to deploy the war to a managed server, not Admin Server ?
    Our thinking is to deploy an exploded war directory but copy the descriptor files first.
    What do you think ?

  • Error in deploying the war file on to the weblogic server(6.1)

    Hi,
    I created the war file and tried to deploy it on the weblogic server 6.1 it is unable to deploy and is give these errors i am unable to find out the problem.Can any one help me out in finding why this is so.
    Help will be appreciated
    java.lang.NullPointerException
         at weblogic.management.internal.MBeanProxy.getAttribute(MBeanProxy.java:253)
         at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:187)
         at $Proxy65.isDeployed(Unknown Source)
         at weblogic.management.mbeans.custom.ApplicationManager.poll(ApplicationManager.java:744)
         at weblogic.management.mbeans.custom.ApplicationManager.update(ApplicationManager.java:206)
         at java.lang.reflect.Method.invoke(Native Method)
         at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:636)
         at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:621)
         at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:359)
         at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
         at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
         at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:468)
         at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:209)
         at $Proxy5.update(Unknown Source)
         at weblogic.management.console.webapp._domain.__upload_app._jspService(__upload_app.java:149)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:265)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:200)
         at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:241)
         at weblogic.servlet.jsp.PageContextImpl.forward(PageContextImpl.java:112)
         at weblogic.management.console.actions.ForwardAction.perform(ForwardAction.java:35)
         at weblogic.management.console.actions.internal.ActionServlet.doAction(ActionServlet.java:171)
         at weblogic.management.console.actions.internal.ActionServlet.doPost(ActionServlet.java:85)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:265)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:200)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:2495)
         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2204)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    Thanks,
    Reji

    Hi jmendelak,
    In the warfile i have jsp,servlets,java classes.
    In my working directory i have jsp and html files and in web-inf folder i have a folder by name classes in which i have the servlets and java classes.
    I made the war file and when i tried to deploy i was getting this error.
    I had previously deployed this war file on weblogic6.1 it was working fine.
    I have upgraded my operating sytem to Windows2000 professional from WinNT 4.0.I reinstalled the weblogic again and had set up the environment variables.
    After going through the error could you find out the reason?Is it because some seeting is missing?
    Raji

  • Exceptions on deploying the war file

    Hi,
    On deploying my war file in Weblogic 10.3.4 I get the below Exceptions.
    Could anybody tell the cause and the way to eliminate these?
    [exec] When processing WebService module 'XXWebApp.war'. Failed to load servlet Class: admin.AdminCaptureRootCA
    [exec] Ignoring: unable to load class:java.lang.ClassNotFoundException: admin.AdminCaptureRootCA at: weblogic.xml.schema.binding.util.ClassUtil.loadClass(ClassUtil.java:76)
    [exec] When processing WebService module 'XXWebApp.war'. Failed to load servlet Class: admin.AdminMain
    [exec] Ignoring: unable to load class:java.lang.ClassNotFoundException: admin.AdminMain at: weblogic.xml.schema.binding.util.ClassUtil.loadClass(ClassUtil.java:76)
    [exec] When processing WebService module 'XXWebApp.war'. Failed to load servlet Class: admin.AdminLicense
    [exec] Ignoring: unable to load class:java.lang.ClassNotFoundException: admin.AdminLicense at: weblogic.xml.schema.binding.util.ClassUtil.loadClass(ClassUtil.java:76)
    [exec] When processing WebService module 'XXWebApp.war'. Failed to load servlet Class: admin.AdminJDBC
    [exec] Ignoring: unable to load class:java.lang.ClassNotFoundException: admin.AdminJDBC at: weblogic.xml.schema.binding.util.ClassUtil.loadClass(ClassUtil.java:76)
    [exec] When processing WebService module 'XXWebApp.war'. Failed to load servlet Class: admin.AdminRealm
    [exec] Ignoring: unable to load class:java.lang.ClassNotFoundException: admin.AdminRealm at: weblogic.xml.schema.binding.util.ClassUtil.loadClass(ClassUtil.java:76)
    [exec] When processing WebService module 'XXWebApp.war'. Failed to load servlet Class: admin.AdminEvents
    [exec] Ignoring: unable to load class:java.lang.ClassNotFoundException: admin.AdminEvents at: weblogic.xml.schema.binding.util.ClassUtil.loadClass(ClassUtil.java:76)
    [exec] When processing WebService module 'XXWebApp.war'. Failed to load servlet Class: weblogic.t3.srvr.ClientAuthenticationServlet
    [exec] Ignoring: unable to load class:java.lang.ClassNotFoundException: weblogic.t3.srvr.ClientAuthenticationServlet at: weblogic.xml.schema.binding.util.ClassUtil.loadClass(ClassUtil.java:76)
    [exec] When processing WebService module 'XXWebApp.war'. Failed to load servlet Class: admin.AdminMain
    [exec] Ignoring: unable to load class:java.lang.ClassNotFoundException: admin.AdminMain at: weblogic.xml.schema.binding.util.ClassUtil.loadClass(ClassUtil.java:76)
    [exec] When processing WebService module 'XXWebApp.war'. Failed to load servlet Class: weblogic.t3.srvr.HttpProxyServlet
    [exec] Ignoring: unable to load class:java.lang.ClassNotFoundException: weblogic.t3.srvr.HttpProxyServlet at: weblogic.xml.schema.binding.util.ClassUtil.loadClass(ClassUtil.java:76)
    [exec] When processing WebService module 'XXWebApp.war'. Failed to load servlet Class: admin.AdminVersion
    [exec] Ignoring: unable to load class:java.lang.ClassNotFoundException: admin.AdminVersion at: weblogic.xml.schema.binding.util.ClassUtil.loadClass(ClassUtil.java:76)
    [exec] When processing WebService module 'XXWebApp.war'. Failed to load servlet Class: admin.AdminClients
    [exec] Ignoring: unable to load class:java.lang.ClassNotFoundException: admin.AdminClients at: weblogic.xml.schema.binding.util.ClassUtil.loadClass(ClassUtil.java:76)
    [exec] When processing WebService module 'XXWebApp.war'. Failed to load servlet Class: admin.AdminProps
    [exec] Ignoring: unable to load class:java.lang.ClassNotFoundException: admin.AdminProps at: weblogic.xml.schema.binding.util.ClassUtil.loadClass(ClassUtil.java:76)
    [exec] When processing WebService module 'XXWebApp.war'. Failed to load servlet Class: admin.AdminThreads
    [exec] Ignoring: unable to load class:java.lang.ClassNotFoundException: admin.AdminThreads at: weblogic.xml.schema.binding.util.ClassUtil.loadClass(ClassUtil.java:76)
    [exec] When processing WebService module 'XXWebApp.war'. Failed to load servlet Class: utils.certificate
    [exec] Ignoring: unable to load class:java.lang.ClassNotFoundException: utils.certificate at: weblogic.xml.schema.binding.util.ClassUtil.loadClass(ClassUtil.java:76)
    [exec] When processing WebService module 'XXWebApp.war'. Failed to load servlet Class: admin.AdminConnections
    [exec] Ignoring: unable to load class:java.lang.ClassNotFoundException: admin.AdminConnections at: weblogic.xml.schema.binding.util.ClassUtil.loadClass(ClassUtil.java:76)
    [exec] When processing WebService module 'XXWebApp.war'. Failed to load servlet Class: weblogic.servlet.jsp.JSPBuildServlet
    [exec] Ignoring: unable to load class:java.lang.ClassNotFoundException: weblogic.servlet.jsp.JSPBuildServlet at: weblogic.xml.schema.binding.util.ClassUtil.loadClass(ClassUtil.java:76)
    [exec] When processing WebService module 'XXWebApp.war'. Failed to load servlet Class: admin.AdminCaptureRootCA
    [exec] Ignoring: unable to load class:java.lang.ClassNotFoundException: admin.AdminCaptureRootCA at: weblogic.xml.schema.binding.util.ClassUtil.loadClass(ClassUtil.java:76)
    [exec] When processing WebService module 'XXWebApp.war'. Failed to load servlet Class: admin.AdminMain
    [exec] Ignoring: unable to load class:java.lang.ClassNotFoundException: admin.AdminMain at: weblogic.xml.schema.binding.util.ClassUtil.loadClass(ClassUtil.java:76)
    [exec] When processing WebService module 'XXWebApp.war'. Failed to load servlet Class: admin.AdminLicense
    [exec] Ignoring: unable to load class:java.lang.ClassNotFoundException: admin.AdminLicense at: weblogic.xml.schema.binding.util.ClassUtil.loadClass(ClassUtil.java:76)
    [exec] When processing WebService module 'XXWebApp.war'. Failed to load servlet Class: admin.AdminJDBC
    [exec] Ignoring: unable to load class:java.lang.ClassNotFoundException: admin.AdminJDBC at: weblogic.xml.schema.binding.util.ClassUtil.loadClass(ClassUtil.java:76)
    [exec] When processing WebService module 'XXWebApp.war'. Failed to load servlet Class: admin.AdminRealm
    [exec] Ignoring: unable to load class:java.lang.ClassNotFoundException: admin.AdminRealm at: weblogic.xml.schema.binding.util.ClassUtil.loadClass(ClassUtil.java:76)
    [exec] When processing WebService module 'XXWebApp.war'. Failed to load servlet Class: admin.AdminEvents
    [exec] Ignoring: unable to load class:java.lang.ClassNotFoundException: admin.AdminEvents at: weblogic.xml.schema.binding.util.ClassUtil.loadClass(ClassUtil.java:76)
    [exec] When processing WebService module 'XXWebApp.war'. Failed to load servlet Class: weblogic.t3.srvr.ClientAuthenticationServlet
    [exec] Ignoring: unable to load class:java.lang.ClassNotFoundException: weblogic.t3.srvr.ClientAuthenticationServlet at: weblogic.xml.schema.binding.util.ClassUtil.loadClass(ClassUtil.java:76)
    [exec] When processing WebService module 'XXWebApp.war'. Failed to load servlet Class: admin.AdminMain
    [exec] Ignoring: unable to load class:java.lang.ClassNotFoundException: admin.AdminMain at: weblogic.xml.schema.binding.util.ClassUtil.loadClass(ClassUtil.java:76)
    [exec] When processing WebService module 'XXWebApp.war'. Failed to load servlet Class: weblogic.t3.srvr.HttpProxyServlet
    [exec] Ignoring: unable to load class:java.lang.ClassNotFoundException: weblogic.t3.srvr.HttpProxyServlet at: weblogic.xml.schema.binding.util.ClassUtil.loadClass(ClassUtil.java:76)
    [exec] When processing WebService module 'XXWebApp.war'. Failed to load servlet Class: admin.AdminVersion
    [exec] Ignoring: unable to load class:java.lang.ClassNotFoundException: admin.AdminVersion at: weblogic.xml.schema.binding.util.ClassUtil.loadClass(ClassUtil.java:76)
    [exec] When processing WebService module 'XXWebApp.war'. Failed to load servlet Class: admin.AdminClients
    [exec] Ignoring: unable to load class:java.lang.ClassNotFoundException: admin.AdminClients at: weblogic.xml.schema.binding.util.ClassUtil.loadClass(ClassUtil.java:76)
    [exec] When processing WebService module 'XXWebApp.war'. Failed to load servlet Class: admin.AdminProps
    [exec] Ignoring: unable to load class:java.lang.ClassNotFoundException: admin.AdminProps at: weblogic.xml.schema.binding.util.ClassUtil.loadClass(ClassUtil.java:76)
    [exec] When processing WebService module 'XXWebApp.war'. Failed to load servlet Class: admin.AdminThreads
    [exec] Ignoring: unable to load class:java.lang.ClassNotFoundException: admin.AdminThreads at: weblogic.xml.schema.binding.util.ClassUtil.loadClass(ClassUtil.java:76)
    [exec] When processing WebService module 'XXWebApp.war'. Failed to load servlet Class: utils.certificate
    [exec] Ignoring: unable to load class:java.lang.ClassNotFoundException: utils.certificate at: weblogic.xml.schema.binding.util.ClassUtil.loadClass(ClassUtil.java:76)
    [exec] When processing WebService module 'XXWebApp.war'. Failed to load servlet Class: admin.AdminConnections
    [exec] Ignoring: unable to load class:java.lang.ClassNotFoundException: admin.AdminConnections at: weblogic.xml.schema.binding.util.ClassUtil.loadClass(ClassUtil.java:76)
    [exec] When processing WebService module 'XXWebApp.war'. Failed to load servlet Class: weblogic.servlet.jsp.JSPBuildServlet

    I faced the same problem once i remove the unused mapping tags from the web.xml file my problem is solved
    ex: I have mapping for TestServlet but i dont have TestServlet class in application. So i removed the mapping tags for TestServlet . I am expecting that your problem also same.
    Thanks
    Nagendra

  • Unable to compile the Java Files generated by JAXB

    Hi,
    I have generated the Java Files for a DTD and .xjs file using JAXB. But when i tyr to compile the .java files generated i am getting errors.
    My DTD file is addctq.dtd
    <?xml version="1.0" encoding="UTF-8"?>
    <!ELEMENT AddCtq (Ctq*)>
    <!ELEMENT Ctq (PartNumber ,PartDescription,CtqDescription,CtqType,ProductLine,Supplier,Ppctq,Ctp,Ctc,CtqCode1,CtqCode2,CtqCode3,Commodity,SubCommodity,UnitOfMeasure,Client,SamplingFrequency,Remarks,VariableData)>
    <!ELEMENT VariableData (SubGroupSize, Specification,Nominal,Usl,Ual,Lal,Lsl,Zal,RangeVal?,RangeAlarmVal?)>
    <!ELEMENT PartNumber (#PCDATA)>
    <!ATTLIST PartNumber new CDATA #REQUIRED >
    <!ELEMENT PartDescription (#PCDATA)>
    <!ELEMENT CtqDescription (#PCDATA)>
    <!ELEMENT CtqType (#PCDATA)>
    <!ELEMENT ProductLine (#PCDATA)>
    <!ELEMENT Supplier (#PCDATA)>
    <!ELEMENT Ppctq (#PCDATA)>
    <!ELEMENT Ctp (#PCDATA)>
    <!ELEMENT Ctc (#PCDATA)>
    <!ELEMENT CtqCode1 (#PCDATA)>
    <!ELEMENT CtqCode2 (#PCDATA)>
    <!ELEMENT CtqCode3 (#PCDATA)>
    <!ELEMENT Commodity (#PCDATA)>
    <!ELEMENT SubCommodity (#PCDATA)>
    <!ELEMENT UnitOfMeasure (#PCDATA)>
    <!ELEMENT Client (#PCDATA)>
    <!ELEMENT SamplingFrequency (#PCDATA)>
    <!ELEMENT Remarks (#PCDATA)>
    <!ELEMENT SubGroupSize (#PCDATA)>
    <!ELEMENT Specification (#PCDATA)>
    <!ELEMENT Nominal (#PCDATA)>
    <!ELEMENT Usl (#PCDATA)>
    <!ELEMENT Ual (#PCDATA)>
    <!ELEMENT Lal (#PCDATA)>
    <!ELEMENT Lsl (#PCDATA)>
    <!ELEMENT Zal (#PCDATA)>
    <!ELEMENT RangeVal (#PCDATA)>
    <!ELEMENT RangeAlarmVal (#PCDATA)>
    and the .xjs file i created is addctq.xjs
    <?xml version="1.0" encoding="UTF-8" ?>
    <xml-java-binding-schema version="1.0-ea">
    <options package="com.geindustrial.sqms"/>
    <element name="AddCtq" type="class" root="true">
    <content>
    <element-ref name="Ctq"/>
    </content>
    </element>
    <element name="Ctq" type="class">
    <content>
         <element-ref name="PartNumber"/>
         <element-ref name="PartDescription"/>
         <element-ref name="CtqDescription"/>
         <element-ref name="CtqType"/>
         <element-ref name="ProductLine"/>
         <element-ref name="Supplier"/>
         <element-ref name="Ppctq"/>
         <element-ref name="Ctp"/>
         <element-ref name="Ctc"/>
         <element-ref name="CtqCode1"/>
         <element-ref name="CtqCode2"/>
         <element-ref name="CtqCode3"/>
         <element-ref name="Commodity"/>
         <element-ref name="SubCommodity"/>
         <element-ref name="UnitOfMeasure"/>
         <element-ref name="Client"/>
         <element-ref name="SamplingFrequency"/>
         <element-ref name="Remarks"/>
         <element-ref name="VariableData"/>
    </content>      
    </element>
    <element name="VariableData" type="class">
    <content>
    <element-ref name="SubGroupSize"/>
    <element-ref name="Specification"/>
    <element-ref name="Nominal"/>
    <element-ref name="Usl"/>
    <element-ref name="Ual"/>
    <element-ref name="Lal"/>
    <element-ref name="Lsl"/>
    <element-ref name="Zal"/>
    </content>
    </element>
    <element name="PartNumber" type="value">
    <attribute name="new"/>
    </element>
    <element name="PartDescription" type="value">
    </element>
    <element name="CtqDescription" type="value">
    </element>
    <element name="CtqType" type="value">
    </element>
    <element name="ProductLine" type="value">
    </element>
    <element name="Supplier" type="value">
    </element>
    <element name="Ppctq" type="value">
    </element>
    <element name="Ctp" type="value">
    </element>
    <element name="Ctc" type="value">
    </element>
    <element name="CtqCode1" type="value">
    </element>
    <element name="CtqCode2" type="value">
    </element>
    <element name="CtqCode3" type="value">
    </element>
    <element name="Commodity" type="value">
    </element>
    <element name="SubCommodity" type="value">
    </element>
    <element name="UnitOfMeasure" type="value">
    </element>
    <element name="Client" type="value">
    </element>
    <element name="SamplingFrequency" type="value">
    </element>
    <element name="Remarks" type="value">
    </element>
    <element name="SubGroupSize" type="value" convert="int">
    </element>
    <element name="Specification" type="value">
    </element>
    <element name="Nominal" type="value" convert="float">
    </element>
    <element name="Usl" type="value" convert="float">
    </element>
    <element name="Ual" type="value" convert="float">
    </element>
    <element name="Lal" type="value" convert="float">
    </element>
    <element name="Lsl" type="value" convert="float">
    </element>
    <element name="Zal" type="value" convert="float">
    </element>
    <element name="RangeVal" type="value" convert="float">
    </element>
    <element name="RangeAlarmVal" type="value" convert="float">
    </element>
    </xml-java-binding-schema>
    When i ran the xjc , it generated 3 .java files
    AddCtq.java , Ctq.java and VariableData.java
    But i am unable to compile any of the above files...
    The Error i am getting is
    VariableData.java:710: Undefined variable or class name: AddCtq
    return AddCtq.newDispatcher();
    ^
    1 error
    If i try to compile AddCtq.java , the Error i am getting is
    AddCtq.java:4: Class com.geindustrial.sqms.Ctq not found in import.
    import com.geindustrial.sqms.Ctq;
    ^
    AddCtq.java:169: Class com.geindustrial.sqms.Ctq not found.
    if (!(ob instanceof Ctq)) {
    ^
    AddCtq.java:170: Class com.geindustrial.sqms.Ctq not found.
    throw new InvalidContentObjectException(ob, (Ctq.class));
    ^
    3 errors
    And when i try to compile Ctq.java , i am getting the following Error:
    Ctq.java:4: Class com.geindustrial.sqms.VariableData not found in import.
    import com.geindustrial.sqms.VariableData;
    ^
    1 error
    How to solve this problem..Pls advise...
    Thanks
    Sateesh

    I suspect you are trying to compile the files one by one. You may also be trying to compile them disregarding the package structure.
    From your post, I gather these files are in the package: com.geindustrial.sqms
    Therefore, if they are not so already, put them under a directory structure:
    com/geindustrial/sqms
    and then compile with:
    javac com/geindustrial/sqms/AddCtq.java com/geindustrial/sqms/Ctq.java com/geindustrial/sqms/VariableData.java
    (The above is all on one line.)
    HTH,
    Manuel Amago.

  • Unable to deploy the PAR file after the first successfully deploy.

    Hi, my gurus.
    I found a problem when I developed the JspDynPage.
    That is after  first deploy the PAR file successfully,I found there is a miss in portalapp.xml, so I correct the miss and then do a second delpoy.But it didn't work.
    I goto the Server's file system to find the portalapp.xml,
    the content of xml was still the old one.
    Anyone can help me, I don't want restart the J2EE Engine,
    because the restart will last for 15mintues.
    Thanks.

    Hi,
    I dont think there is no need to restart your J2EE Engine.
    Becuase i dont think you have a requirement to create an iview from that PAR File
    If it is so delete the previous iview and create a new iview.
    From the updated PAR File in ur System
    Every Time when you uplaod the PAR the old instance will be lost.and new changes will come into effect on each upload done by you.
    There is no question of restarting ur J2EE Engine.
    Whenever there is a change in you PAR.
    Hope this Helps you.
    Thanks & Regards,
    Lokesh.
    Reward Points if helpfull

  • How to deploy the war file in weblogic 6.0 with sp1?

    I write a jap and a web.xml files and also pack these files into a war file.
              When I use the console to deploy the war, the console think the war is a
              application, not web application.
              I attach the test.war.
              [test.war]
              

    change your web-inf directory name to WEB-INF. This should fix your problem.
              Kumar.
              Alex wrote:
              > I write a jap and a web.xml files and also pack these files into a war file.
              > When I use the console to deploy the war, the console think the war is a
              > application, not web application.
              > I attach the test.war.
              >
              > Name: test.war
              > test.war Type: unspecified type (application/octet-stream)
              > Encoding: x-uuencode
              

  • Servlet Action not found , deploying the war file in Tomcat5.0.28

    Hi,
    I face the error servletAction ot found , when deplying the war on my system.I am using win98. when I run the struts-blank.war file is working fine .
    So please help me.
    I have also another probelm in Netbean 4.1
    I fixed the error of out of space by incresing the Dos memory
    Now the server is Started but it is not. able to deploy the war . This problem is happening using Netbean4.1 in windows98 system.
    it shows error in build-impl.xml file
    that error is
    It highlights the following line of build-impl.xml
    <nbdeploy debugmode="*false*" clientUrlPart="*${client.urlPart}*"
    forceRedeploy="*${forceRedeploy}*" />
    sp please help me, I am struggling for last 2 days.
    cheers,
    Manoranjan

    Hello,
    under NW7.1 the SDM is no longer availible.
    We do not have a NWDS and the deployment of the ear file by unsing JSPM failes even after renaming it into a .sca and .sda file.
    The solution in our case was to deploy the ear file by using telnet. (sounds unbelivable - but it works)
    telnet localhost 5<sys#>008
    user/PW
    Detaild help by using the man command
    DEPLOY....
    It took us half a day to figure out how it works.....

  • Deploying the WAR file in Netweaver 7.1 server

    Hi,
             I am new to SAP NW 7.1.  I have a J2ee application which is build in non-netweaver technology.
    In Netweaver 7.0 server using Visual Administrator Tool (<Drive>:\usr\sap\<SAPSID>\<Instance_Name>\j2ee\admin\go.bat)
    we can use the services for the deployment of any J2EE application as EAR.
    But in Netweaver 7.1 server, I am not finding the Visual Administrator Tool.
    Please do let me know,  How do I deploy my application EAR file in the Netweaver 7.1 server.
    Thanks in Advance for the reply,
    Jaga
    Edited by: Jagadeeswaran Pushparaj on Feb 9, 2010 7:26 PM

    Hello,
    under NW7.1 the SDM is no longer availible.
    We do not have a NWDS and the deployment of the ear file by unsing JSPM failes even after renaming it into a .sca and .sda file.
    The solution in our case was to deploy the ear file by using telnet. (sounds unbelivable - but it works)
    telnet localhost 5<sys#>008
    user/PW
    Detaild help by using the man command
    DEPLOY....
    It took us half a day to figure out how it works.....

  • Unable to deploy the .sca file for the Change tracker.

    Hi all,
    We can not able to deploy the change tracker through SDM as it is asking for the dependencies are missing.
    Portal version EP 7.0 EHP1
    MDM version 7.1 sp 5.
    we have followed the below link for deploying
    MDM change tracking with MDM 7.1 SP06 & EP version u2013 CE 7.2 SP01? but after downloading the MDM_WEB_UI  from market place it is asking for 24+ dependencies for change tracker.
    so please suggest.
    regards,
    Manohar.

    Hello,
    The version and the patch level should be same for MDM as well as EP.
    Since this is an EP issue, for quick replies, post this in [Portal Forum|http://forums.sdn.sap.com/index.jspa?categoryID=1#2]
    Regards,
    Abhishek

  • How to deploy my war file to be ROOT under tomcat

    Hello all
    i successfully deployed my web application to be as ROOT under tomcat
    but in my web application the jsp files are inside inner directory called jsps
    so if i like to brows to test.jsp i have to type
    http://localhost:8080/jsps/test.jsp
    how can i avoid this and configure tomcat to take the jsps dir as part of the ROOT url
    so i could type
    http://localhost:8080/test.jsp
    and tomcat will autumnally will know this file is inside jsps dir
    thanks

    Hello all
    i successfully deployed my web application to be as
    ROOT under tomcat He says he has successfully deployed the application as ROOT
    but in my web application the jsp files are inside
    inner directory called jsps
    so if i like to brows to test.jsp i have to type
    http://localhost:8080/jsps/test.jsp
    he says that he can access the jsps/test.jsp as part of the root web app.
    how can i avoid this and configure tomcat to take the
    jsps dir as part of the ROOT url
    so i could type
    http://localhost:8080/test.jsp
    He then says that he wants to access jsps/test.jsp as /test.jsp which is a mapping issue.
    The problem is the subject line does not match the problem in the message body.

  • Oracle Weblogic Server 12c, issue with deploying the war created from Wavemaker tool

    Hi
    Recently, I am facing an issue with Oracle Web logic Server 12c, on deploying the war file (created from Wavemaker tool) to running Web logic server, it shows deployment health status is OK and web application is Active. But when I visit the home page of the application, it is unable to load the javascript files in the context and I am getting below error. Please you can check these errors in the Inspect window of the browser :
    Here are the errors on hitting index page after deploying the war file to Web Logic.
    http://localhost:7001/TestWarProject
    http://localhost:7001/TestWarProject/lib/runtimeLoader.js  404 (Not Found) index.html:39
    http://localhost:7001/TestWarProject/config.js  404 (Not Found) index.html
    Uncaught ReferenceError: wm is not defined project.a.js:1
    (anonymous function) project.a.js:1
    Uncaught ReferenceError: wm is not defined index.html:89
    (anonymous function) index.html:89
    But when I exploded the war file and copy the whole application in the auto deploy folder and restart the server, it is working fine.
    Can you please what is the issue not setting context path properly on deploying the war on the fly?
    Has anyone found any appropriate solution or workaround? Can you please share?
    Thanks in advance for helping me out.
    ~pcg

    Hi
    Recently, I am facing an issue with Oracle Web logic Server 12c, on deploying the war file (created from Wavemaker tool) to running Web logic server, it shows deployment health status is OK and web application is Active. But when I visit the home page of the application, it is unable to load the javascript files in the context and I am getting below error. Please you can check these errors in the Inspect window of the browser :
    Here are the errors on hitting index page after deploying the war file to Web Logic.
    http://localhost:7001/TestWarProject
    http://localhost:7001/TestWarProject/lib/runtimeLoader.js  404 (Not Found) index.html:39
    http://localhost:7001/TestWarProject/config.js  404 (Not Found) index.html
    Uncaught ReferenceError: wm is not defined project.a.js:1
    (anonymous function) project.a.js:1
    Uncaught ReferenceError: wm is not defined index.html:89
    (anonymous function) index.html:89
    But when I exploded the war file and copy the whole application in the auto deploy folder and restart the server, it is working fine.
    Can you please what is the issue not setting context path properly on deploying the war on the fly?
    Has anyone found any appropriate solution or workaround? Can you please share?
    Thanks in advance for helping me out.
    ~pcg

  • How to deploy a war file from a different app server to the SAP one

    Hello,
    I hve recieved a war file from Tomcat that needs to be deployed on the SAP Java App server. As far as I know the SDM only allows to deploy ear files. How can I deploy this war to the app server?

    Hi Roy,
    in order to deploy the WAR file you have to wrap an EAR around it. I had the same problem.
    You can do this using Netweaver Developer studio.
    Perform the following steps:
    - Start NWDS
    - Create a New Enterprise Application Project
    - Create a New Web Module Project (name it like your war file => e.g. your war file is called myApp.war => call your Web Module myApp)
    - Edit the application.xml of your Enterprise App if necessary (description, Displayname etc.)
    - Link your Web Archive to your application archive (right Mouse click on Application Archive and from the Context Menu choose "Add Modules" => In the list choose your Web Module)
    => You can also perform a right mouse click on your web Module and from the context menu choose "Add to EAR Project" => In the list choose your Enterprise Application!
    - Build Web Archive (right mouse click on your Web Module and from the context menu choose "Build Web Archive" => This will create a war file that has the same name as your war file! => If you do not see it try to switch to resource perspective!)
    - Build Application archive (right mouse click on Application archive => from the context menu choose "Build Application Archive")
    You are done
    The EAR file is generated and will be created in your workspace.
    Now browse to your workspace. Unpack the EAR using WinZip or any other Archiver program.
    Replace the contained war with your war and repack the ear file (You can also use tools like Total Commander to directly replace the war file in the EAR with your war without having to unpack the war). You can also import your war into NWDS and rebuild it so you won't have to replace the WAR in the EAR but as your WAR is already built I would just replace it as described!
    You can now deploy the ear file to SAP J2EE
    Hope this helps (Reward points for helpful answers are appreciated!)
    Cheers

Maybe you are looking for

  • Lightroom 5 catalog issue. please help

    hallo everybody, I really need some help. When i open Lightroom 5, it gets confused and the catalog is not complete anymore. Half of them are missing.It shows the pictures on my SD card,which I always format.In other backups it's the same thing. So,

  • ITune won't reconize my iPod

    Sorry if this question has been repeated alot on the board, but I can't seem to find the iPod on the source list of iTune when I connected to the UBS. I use an iPod nano, window xp, and the latest version of iTune. Please help me.   Windows XP  

  • More than 1 labrary for 1 ipod?

    I have a 4th generation ipod and I would like to categorized my albums by genre: hard rock, jazz, new age, reggae ect... is there a way to create a second library. Another playlist is not what i'm looking for since it lists only the songs 1 by 1. I w

  • ASA5540 ver.7.2(2) RSA Authentication Manager 7.1

    Good evening, I'm searching documentation to verify if my ASA appliance support as RADIUS Server, the solution RSA Authentication Manager 7.1. I assumed which with RADIUS Server authentication support provide by ASA software, is possible. I've find a

  • Why are my open tab thumbnails missing?

    Samsung Galaxy S3. Until today I could see a "stack" of thumbnails representing my open tabs when I click the "page" icon in the upper right corner of the browser window. This would allow me to easily jump from one tab to another. Now when I click on