• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Deploying .war on Weblogic

 
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi
I have .war file that uses JavaEE5 I have deployed this sucessfully on tomcat,jboss,glassfish
But i see problem when i do it on Weblogic10
When i try to deploy it through deploytool
i get error meassages

An error occurred during activation of changes, please see the log for details.
Failed to load webapp: 'example.war'
javax.faces.webapp.FacesServlet

Can any one help me in deploying this..

Thanks
-Khaja
 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I have the same problem..... Can anyone please help?

I have deployed the jsf and jstl libraries that came with WebLogic 10, but still experience the same problem: java.lang.ClassNotFoundException: javax.faces.webapp.FacesServlet
 
Dag Ragnar Larsen
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Problem solved!

This is what I did:

In web.xml added the following section inside <web-app>
<listener>
<listener-class>com.sun.faces.config.ConfigureListener</listener-class>
</listener>

Then I copied the following .jars to my domain /lib directory:
javax.servlet_2.5.jar
jsf-api.jar
jsf-impl.jar
jstl.jar
standard.jar

Don't exactly remember which jar that solved the problem.

Now I have a new problem, that is WL is not able to find the taglib used...
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic