saatvi.blogspot.com
Saatvi's Weblog: Jul 12, 2008
http://saatvi.blogspot.com/2008_07_12_archive.html
This blog discusses all the work i have carried out on various subjects of my interest. Saturday, July 12, 2008. Creating 2D Shapes in Java. The code shown below constructs a ring of five pointed stars constructed from straight lines and complex curves. Import java.awt.Color;. Import java.awt.Graphics;. Import java.awt.Graphics2D;. Import java.awt.geom.GeneralPath;. Import javax.swing.JFrame;. Public class shapes extends JFrame{. Set window's title bar string, background color and dimensions. Shapes appl...
saatvi.blogspot.com
Saatvi's Weblog: Jun 17, 2008
http://saatvi.blogspot.com/2008_06_17_archive.html
This blog discusses all the work i have carried out on various subjects of my interest. Tuesday, June 17, 2008. A Servlet container is a specialized web server that supports Servlet execution. They map the request URLs to specific servlets.but how? Containers know the interface between the servlets and the web server. no specific API is needed for this. The container receives a HTTP request. The container creates request and response objects. Labels: Servlets and JSP. Subscribe to: Posts (Atom). 2nd year...
saatvi.blogspot.com
Saatvi's Weblog: Jun 23, 2008
http://saatvi.blogspot.com/2008_06_23_archive.html
This blog discusses all the work i have carried out on various subjects of my interest. Monday, June 23, 2008. All sendmail related configuration files have to be put in /etc/mail directory. It specifies what hosts or IP addresses have access to the local mail server and what kind of access(OK, REJECT,RELAY) they have. OK - allowed to send mail to the host as long as mail's final destination is the local machine. REJECT - reject for all mail connections. Asource.of.spam REJECT. It controls the overall be...
saatvi.blogspot.com
Saatvi's Weblog: Creating 2D Shapes in Java
http://saatvi.blogspot.com/2008/07/creating-2d-shapes-in-java.html
This blog discusses all the work i have carried out on various subjects of my interest. Saturday, July 12, 2008. Creating 2D Shapes in Java. The code shown below constructs a ring of five pointed stars constructed from straight lines and complex curves. Import java.awt.Color;. Import java.awt.Graphics;. Import java.awt.Graphics2D;. Import java.awt.geom.GeneralPath;. Import javax.swing.JFrame;. Public class shapes extends JFrame{. Set window's title bar string, background color and dimensions. Shapes appl...
saatvi.blogspot.com
Saatvi's Weblog: Jun 11, 2008
http://saatvi.blogspot.com/2008_06_11_archive.html
This blog discusses all the work i have carried out on various subjects of my interest. Wednesday, June 11, 2008. The above figure shows an ERP model. Http:/ www.keepandshare.com/doc/view.php? Characteristics of ERP systems. 8226; In ERP systems, information is often recorded in a form that cannot be read without the use of a computer. 8226; Financial and business information is often generated automatically by ERP systems based on data previously entered, without further human instructions. DataWarehous...
saatvi.blogspot.com
Saatvi's Weblog: A complete chat program
http://saatvi.blogspot.com/2008/07/complete-chat-program.html
This blog discusses all the work i have carried out on various subjects of my interest. Sunday, July 20, 2008. A complete chat program. Import java.net.*;. Import java.io.*;. Public class ChatClient implements Runnable. Static String command;. Static final int portNumber=1666;. Public static void main(String[] argv) throws IOException. System.out.println("Connecting to Chat Server at " clientAddr);. ChatClient cc=new ChatClient(clientAddr);. Thread t=new Thread(cc);. Socket=new Socket(adx,portNumber);.
saatvi.blogspot.com
Saatvi's Weblog: Jul 1, 2008
http://saatvi.blogspot.com/2008_07_01_archive.html
This blog discusses all the work i have carried out on various subjects of my interest. Tuesday, July 1, 2008. Write exceptions into error log(C#.net). Try this console application code to write exceptions in to a log file. System.Collections.Generic;. C:/Documents and Settings/error/log.txt. Path of errorlog file. Errorlogs er = new. Erwritelog(i); / passing the ioexception. LogWriter.WriteLine( "- - - ". Now "- - - - ". LogWriter.WriteLine( "- - - - - - - - - - - - - - - - ". Subscribe to: Posts (Atom).
saatvi.blogspot.com
Saatvi's Weblog: Jul 20, 2008
http://saatvi.blogspot.com/2008_07_20_archive.html
This blog discusses all the work i have carried out on various subjects of my interest. Sunday, July 20, 2008. A complete chat program. Import java.net.*;. Import java.io.*;. Public class ChatClient implements Runnable. Static String command;. Static final int portNumber=1666;. Public static void main(String[] argv) throws IOException. System.out.println("Connecting to Chat Server at " clientAddr);. ChatClient cc=new ChatClient(clientAddr);. Thread t=new Thread(cc);. Socket=new Socket(adx,portNumber);.