[java ee programming] RSS as WEB project

2011-01-31 Thread Rafał Laczek
Hi, I try to create RSS fedd as Servlet (Web project). Can maybe somebody help me. Below in doGet() I have code which works fine in main method in my other non-web project. I must create RSS web project. Pls. help Regards, Rafal public class WebFeedServlet extends HttpServlet{ privat

[java ee programming] Servlet

2011-01-31 Thread Rafał Laczek
Hi, I have a sample HelloWord servlet. I have also created web.xml I have a problem to display it in the browser. I use NeatBeans. I don't want to have any jsp in this sample project. All htlm is in servlet. Can you help BR Rafal -- You received this message because you are subscribed to the

Re: [java ee programming] Servlet

2011-01-31 Thread José Luis Casiano Celestino
what is the error log? 2011/1/31 Rafał Laczek > Hi, > > I have a sample HelloWord servlet. I have also created web.xml > I have a problem to display it in the browser. > I use NeatBeans. > I don't want to have any jsp in this sample project. All htlm is in > servlet. > Can you help > > BR > Rafa

Re: [java ee programming] Servlet

2011-01-31 Thread Rafał Laczek
Hi,   Finally I have used Eclipse and created simple servlet and created web.xml as follow: xml version="1.0" encoding="UTF-8"?> app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/

Re: [java ee programming] Servlet

2011-01-31 Thread bambang passion
Hi, Just code : response.out("test") ; will do. b.l 2011/2/1 Rafał Laczek > Hi, > > I have a sample HelloWord servlet. I have also created web.xml > I have a problem to display it in the browser. > I use NeatBeans. > I don't want to have any jsp in this sample project. All htlm is in > servl