| Author |
JSF with Weblogic 8.1 sp3
|
Aditya Tallapally
Greenhorn
Joined: Aug 28, 2005
Posts: 10
|
|
I am trying to deploy JSF on Weblogic8.1 Is it possible? If so can i get any link or procedure. I would be thankful. Thanks in advance.
|
 |
Gregg Bolinger
Ranch Hand
Joined: Jul 11, 2001
Posts: 15230
|
|
Mr DITTU Welcome to Javaranch! We don't have too many rules around here but we do have a Naming Policy. Please read and adjust your display name accordingly. You can adjust your display name by clicking here Thanks.
|
 |
Gregg Bolinger
Ranch Hand
Joined: Jul 11, 2001
Posts: 15230
|
|
|
You should be able to deploy JSF on any J2EE application server or container. Have you tried it yet? Are you having problems? If so, what problems are you having?
|
 |
Aditya Tallapally
Greenhorn
Joined: Aug 28, 2005
Posts: 10
|
|
I have got the following Folder Structure MyProject - Main Folder Pages-Subfolder containing some .jsp files WEB-INF - subfolder classes - subfolder in web-inf lib - subfolder in web-inf containing all jar files for jsf etc faces-config.xml - jsf config file web.xml - web content xml file index.jsp - this is under main project I created a war out of all subfolders and files under MyProject folder. It works great on tomcat but not an Weblogic9.0 Error that i see is 404 error.
|
 |
Aditya Tallapally
Greenhorn
Joined: Aug 28, 2005
Posts: 10
|
|
To be more precise I was trying to run this simple JSF App http://www.exadel.com/tutorial/jsf/jsftutorial-kickstart.html on Weblogic 9.0 Server. I was successful in deploying it on Tomcat but not weblogic. Thanks in Advance.
|
 |
Aditya Tallapally
Greenhorn
Joined: Aug 28, 2005
Posts: 10
|
|
Gregg Bolinger, Thanks for your time. Actually i figured it out and it works on Weblogic 8.1 sp3. I have not read much abt weblogic 9.0 and now i figured out how to deploy on that too. Thanks for your time.
|
 |
Aditya Tallapally
Greenhorn
Joined: Aug 28, 2005
Posts: 10
|
|
Gregg Bolinger, Thanks for your time. Actually i figured it out and it works on Weblogic 8.1 sp3. I have not read much abt weblogic 9.0 and now i figured out how to deploy on that too. Thanks for your time.
|
 |
Kevin Galligan
Ranch Hand
Joined: Aug 10, 2005
Posts: 70
|
|
If you had to do anything funky, please post. I'll be doing this pretty soon myself. Thanks in advance.
|
 |
Aditya Tallapally
Greenhorn
Joined: Aug 28, 2005
Posts: 10
|
|
Can any one tell me what's the problem with this faces-config.xml file: <?xml version="1.0"?> <!DOCTYPE faces-config PUBLIC "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN" "http://java.sun.com/dtd/web-facesconfig_1_1.dtd"> <faces-config> <navigation-rule> <from-view-id>/pages/inputname.jsp</from-view-id> <navigation-case> <from-outcome>greeting</from-outcome> <to-view-id>/pages/greeting.jsp</to-view-id> </navigation-case> </navigation-rule> <managed-bean> <managed-bean-name>personBean</managed-bean-name> <managed-bean-class>jsfks.PersonBean</managed-bean-class> <managed-bean-scope>request</managed-bean-scope> </managed-bean> </faces-config> All i was trying was to run this on a weblogic server: http://www.exadel.com/tutorial/jsf/jsftutorial-validation.html A small JSF webapp. Thanks in advance.
|
 |
 |
|
|
subject: JSF with Weblogic 8.1 sp3
|
|
|