• 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
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

Problem: application.ViewHandlerImpl: Found no URL patterns mapping to FacesServlet

 
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I downloaded a jsf (adf jsf) from orcle and was able to run it on apache tomcat, but the same war file is not working on weblogic 8.1 with sp4?

does any one encountered this problem ever before?

Here is a part of web.xml.. (FacesServlet configuration)

<servlet>
<servlet-name>faces</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
</servlet>

<servlet-mapping>
<servlet-name>faces</servlet-name>
<url-pattern>/faces/*</url-pattern>
</servlet-mapping>

when i tried to access the index page with below url, i am getting the problem.

http://localhost:17191/faces_demo/faces/index.jspx

Many thanks in advance.
[ December 27, 2005: Message edited by: krishna tokala ]
 
Bartender
Posts: 1973
17
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I got an "unable to connect" when I clicked on the URL in your posting.

From my experience, this means the app server isn't running or running on the port you have listed.

Hope this helps.

-- M
 
krishna tokala
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Mike,

I can see the server status 'RUNNING'. and i was able to debug on the server too.

-Krishna
 
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

Originally posted by Mike London:
I got an "unable to connect" when I clicked on the URL in your posting.
-- M



Probably because he linked to http://localhost which when you click on it the browser is looking for the connection on your local machine, not his.
 
krishna tokala
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The url is just to understand, how i am calling the first page. not for testing.
 
reply
    Bookmark Topic Watch Topic
  • New Topic