- Servlet communication with portlet
I have a JSR168 portlet in WebSphere portal 5.1 .I have saved data in application-scope of the portlet session.How can I retrieve that data at the servlet end.My servlet gets invoked from a JSP on the portlet.ThanksDhiren...
- Servlet calling HTTPS
Hi all,Im sorry if i appear a bit thick, but just need someting confirmed.From my servlet (hosted in weblogic with SSL) i need to call a servlet from another https site. Simply writes and reading using input and output pipes (so no redirection or servlet chaining). What i need to know is should ...
- Servlet as home page?
How do I make a servlet be the home page for a WS7 instance?In my old AS7 instance, in the Document Preferences settings, I specified the URI of the servlet in the "Home page" field, and whenever anyone went to my site, the servlet would handle it. In WS7, I tried setting the "Initial page" ...
- Servlet as an rmi client
Hi,I am trying to set up a servlet as an rmi client. My rmi server runs on a remote machine. I have the rmi server up and running. Now I am trying to write a servler client to talk to this server which exists on a remote machine. I am developing servlet in my desktop using eclipse and tomcat.Whe...
- Servlet APIs for Sun Java Web Server
Where are the Servlet / JSP APIs?I installed Sun Java System Web Server 6.1 SP4I would like to test and develop servlets but I can not find the API for my imports.I have JDK 1.5SE loaded.Thank you ...
- Servlet and console
Hi fellows... i am starting to study servlet and i have a class with a method init() likepublic void init(ServletConfig config) throws ServletException {System.out.println("init"); }i am using eclipse and tomcat, and with such structure, the output is going to the console, not to the browser... ...