Question about JSWDK & JDK.

Dear all,Can anyone tell me what's the difference between JSWDK and JDK? i've developed web application by JSP and servlet for more than a year, and the JDK for standard version is enough for me. I can't figure out when should i use the jswdk.Joey
[278 byte] By [joey829] at [2007-9-26 1:27:56]
# 1

Hi,

JDK(Java Development Kit) is meant for developing Java Applications and Applets. It does not include the Servlet or JSP implementations with it. These specifications are implemented separately and are ported with Web Servers like JavaWebServer, Tomcat, JRun, iPlanet, WebLogic, etc and also with J2EE SDK. So once you have any of the Web server, you have the Servlet/JSP implementation in hand(technically in your CLASSPATH) and hence you can develop Servlet/JSP applications and can deploy them in your server. JSDK(Java Servlet Development Kit) and JSWDK(Java Server Web Development Kit) are released to support the development of Servlet/JSP and then later deploying it in the WebServer. They are not meant for production quality Web deployment. As most of the WebServers includes the Servlet/JSP implementations the Sun people have stopped the new updates for JSDK and JSWDK. So you don't need to use JSDK/JSWDK for development if you have a WebServer that supports Servlet/JSP.

rajavelu_g at 2007-6-29 1:12:48 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...