• 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

Vignette

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
If anyone knows Vignette and the HTTP status 403 problem with vignette please let me know and I will post my question.
Thanks a lot.
 
author
Posts: 11962
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I wonder what this infamous "Vignette HTTP 403 status problem" is?

My guess would be that Vignette's HTTP 403 response status means exactly the same as any other web server's HTTP 403 response status, i.e. you don't have the required privileges to access the resource you're trying to access.
 
Ranch Hand
Posts: 43
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi please read this document you can find solution...

the Portal Portlet Packaging Tool adds a security filter to a portlet application’s web.xml file. This filter allows direct requests to static files, such as images, but it blocks all requests to servlets and JSPs that are not proxied through Portal, thereby ensuring that the Portal authentication and authorization mechanisms protect all application resources. As a result, a Portal user is forbidden to access a portlet application directly. Hwoever, we need to make direct requests to the FileExplorerServlet. To enable access we will remove the Portal security filter (named PortletApplicationSecurityFilter) and the mapping. Delete or comment the following lines:

1.<filter>
2. <filter-name>PortletApplicationSecurityFilter</filter-name>
3. <filter-class>com.vignette.portal.portlet.jsrcontainer.PortletApplicationSecurityFilter</filter-class>
4.</filter>
5.<filter-mapping>
6. <filter-name>PortletApplicationSecurityFilter</filter-name>
7. <url-pattern>/*</url-pattern>
8.</filter-mapping>

Once you complete the deployment, start the VAP server. Login to the Server console (http://localhost:8080/portal/console).

please refers at last lines: http://www.ajaxprojects.com/ajax/tutorialdetails.php?itemid=746
Thanks & Regards
raju.k
 
reply
    Bookmark Topic Watch Topic
  • New Topic