• 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

JSF with Weblogic 8.1 sp3

 
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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.
 
Ranch Hand
Posts: 15304
6
Mac OS X IntelliJ IDE Chrome
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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
Posts: 15304
6
Mac OS X IntelliJ IDE Chrome
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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.
 
Ranch Hand
Posts: 70
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
If you had to do anything funky, please post. I'll be doing this pretty soon myself.

Thanks in advance.
 
Aditya Tallapally
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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.
 
reply
    Bookmark Topic Watch Topic
  • New Topic