<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-19977869</id><updated>2011-07-19T06:24:29.497-07:00</updated><title type='text'>Santosh :-) Technically!!!</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://technicallysan.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/19977869/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://technicallysan.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Santosh Jayamurugan</name><uri>http://www.blogger.com/profile/08521306169520727275</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_OUkF1NtODa8/TF7mNcFvmdI/AAAAAAAAA8c/tAazsEDBkZs/S220/rugged+-+Copy.JPG'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>5</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-19977869.post-1023076132539579802</id><published>2006-12-19T04:36:00.000-08:00</published><updated>2006-12-21T07:56:19.807-08:00</updated><title type='text'>Tomcat - Apache Integration</title><content type='html'>&lt;span style="font-weight: bold; color: rgb(0, 0, 0);"&gt;Requirements: &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;JDK 1.5 &lt;/li&gt;&lt;li&gt;Apache (apache_2.0.59-win32-x86-no_ssl.msi)&lt;/li&gt;&lt;li&gt;Tomcat (apache-tomcat-5.5.20.exe)&lt;/li&gt;&lt;li&gt;jakarta-tomcat-connectors ( mod_jk-1.2.14-apache-2.0.54.so)&lt;/li&gt;&lt;/ul&gt;         &lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Tomcat – Apache Integration (Using mod_jk connector) in Windows:&lt;/span&gt;&lt;br /&gt;First install both the servers. Let apache be in port 80 and Tomcat in port 8080.&lt;br /&gt;&lt;br /&gt;Create a workers.properties file with the following lines under the conf folder of Apache. This makes your apache listen to tomcat through the ajp13 class (ajp13 class sends the individual packet information using the Ajp13Packet class, and implements the communication between the server and the servlet container. It routes the tomcat’s servlet support methods to the correct packets for the webserver).&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;workers.tomcat_home=C:\Program Files\Apache Software Foundation\Tomcat 5.5&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;workers.java_home=C:\Program Files\Java\jdk1.5.0_03&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;ps=\&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;# Define worker 'workp'&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;worker.list=workp&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;# Set properties for worker 'workp' (ajp13)&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;worker.workp.type=ajp13&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;worker.workp.host=localhost&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;worker.workp.port=8009&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;worker. workp.cachesize=10&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;worker. workp.cache_timeout=600&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;worker. workp.socket_keepalive=1&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;worker. workp.reclycle_timeout=300&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;And copy the mod_jk.so (Mod_jk connector module file) file into the modules folder of Apache Home. The name of the connector file should be mod_jk.so only as per our code.&lt;br /&gt;&lt;br /&gt;Now include the following code in the httpd.conf file in the conf folder of Apache. This loads and mounts the connector to interact with Tomcat.&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt; LoadModule jk_module modules/mod_jk.so&lt;/span&gt;&lt;br /&gt;&lt;ifmodule c=""&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;    JkWorkersFile conf/workers.properties&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;    JkLogFile logs/mod_jk.log&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;    JkLogLevel error&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;    JkLogStampFormat "[%a %b %d %H:%M:%S %Y] "&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;    JkOptions +ForwardKeySize +ForwardURICompat -ForwardDirectories&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;    JkRequestLogFormat "%w %V %T"&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;    Alias /jsp-examples "C:/Program Files/Apache Software Foundation/Tomcat 5.5/webapps/jsp-examples/"&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;directory style="color: rgb(51, 51, 255);" program="" apache="" software="" tomcat="" examples=""&gt;Options Indexes +FollowSymLinks&lt;br /&gt;       AllowOverride None&lt;br /&gt;       Allow from all&lt;br /&gt;   &lt;/directory&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;Alias /servlets-examples "C:/Program Files/Apache Software Foundation/Tomcat 5.5/webapps/servlets-examples/"&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;directory style="color: rgb(51, 51, 255);" program="" apache="" software="" tomcat="" examples=""&gt;Options Indexes +FollowSymLinks&lt;br /&gt;       AllowOverride None&lt;br /&gt;       Allow from all&lt;br /&gt;   &lt;/directory&gt;&lt;br /&gt;    &lt;span style="color: rgb(51, 51, 255);"&gt;Alias /MyWebsite/ "C:/Program Files/Apache Software Foundation/Tomcat 5.5/webapps/MyWebsite/"&lt;/span&gt;&lt;br /&gt;                    &lt;br /&gt; &lt;directory style="color: rgb(51, 51, 255);" program="" apache="" software="" tomcat="" mywebsite=""&gt;Options Indexes +FollowSymLinks&lt;br /&gt;                       AllowOverride None&lt;br /&gt;                       Allow from all&lt;br /&gt;&lt;/directory&gt;&lt;br /&gt;    &lt;location style="color: rgb(51, 51, 255);"&gt;AllowOverride None&lt;br /&gt;       deny from all&lt;br /&gt;   &lt;/location&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;JkMount /jsp-examples/*.jsp workp&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;    JkMount /servlets-examples/* workp&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;JkMount /MyWebsite/* workp&lt;/span&gt;&lt;br /&gt;  &lt;br /&gt;&lt;/ifmodule&gt;The “workp “is a worker property defined in the workers.properties file.&lt;br /&gt;&lt;br /&gt;Here we have the Servlets-example, jsp-example and our own site MyWebsite Mounted. We can customize the alias and Directory tag to include other sites.The above finishes the configuration in Apache side.&lt;br /&gt;&lt;br /&gt;Now add the following context paths in the server.xml file of Tomcat located under the conf folder. These context paths facilitate the deployment of the site. Place the code before  closing &lt;/host&gt; the tag.&lt;logger classname="org.apache.catalina.logger.FileLogger" directory="logs" prefix="localhost_log." suffix=".txt" timestamp="true"&gt;&lt;br /&gt;&lt;context path="/MyWebsite" docbase="MyWebsite" debug="9" privileged="true"&gt;&lt;br /&gt;Each context path corresponds to a single folder in the webapps folder of tomcat. If your web application contains subfolders, then those folders also needs a corresponding context path.&lt;br /&gt;&lt;br /&gt;For example: if MyWebsite contains another folder called folder1 then the context path for that must be as below:&lt;br /&gt;&lt;br /&gt;&lt;context path="/MyWebsite/folder1" docbase="MyWebsite/folder1" debug="9" privileged="true"&gt;&lt;br /&gt;And also add the corresponding Mount command in the httpd.conf in Apache&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;    JkMount /MyWebsite/folder1/* workp&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Now start the Tomcat server first and then Apache. Now try accessing the pages deployed in tomcat from apache’s port (80).&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Example: &lt;/span&gt;&lt;br /&gt;&lt;a href="http://localhost/servlets-examples/"&gt;http://localhost/servlets-examples/&lt;/a&gt;&lt;br /&gt;Or &lt;a href="http://localhost/jsp-examples/"&gt;http://localhost/jsp-examples/ &lt;/a&gt;&lt;br /&gt;Or &lt;a href="http://localhost/Mywebsite"&gt;http://localhost/Mywebsite&lt;/a&gt;&lt;br /&gt;Or &lt;a href="http://localhost/MyWebsite/folder1"&gt;http://localhost/MyWebsite/folder1&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Likewise you can copy your site directly into the webapps folder of Tomcat and creating an alias and context as above would deploy your site.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Resources:&lt;/span&gt;&lt;br /&gt;&lt;/context&gt;&lt;/context&gt;&lt;/logger&gt;&lt;ul&gt;&lt;li&gt;&lt;logger classname="org.apache.catalina.logger.FileLogger" directory="logs" prefix="localhost_log." suffix=".txt" timestamp="true"&gt;&lt;context path="/MyWebsite" docbase="MyWebsite" debug="9" privileged="true"&gt;&lt;context path="/MyWebsite/folder1" docbase="MyWebsite/folder1" debug="9" privileged="true"&gt;Apache (apache_2.0.59-win32-x86-no_ssl.msi) - &lt;a href="http://httpd.apache.org/download.cgi"&gt;Download&lt;/a&gt;&lt;br /&gt;&lt;/context&gt;&lt;/context&gt;&lt;/logger&gt;&lt;/li&gt;&lt;li&gt;&lt;logger classname="org.apache.catalina.logger.FileLogger" directory="logs" prefix="localhost_log." suffix=".txt" timestamp="true"&gt;&lt;context path="/MyWebsite" docbase="MyWebsite" debug="9" privileged="true"&gt;&lt;context path="/MyWebsite/folder1" docbase="MyWebsite/folder1" debug="9" privileged="true"&gt;Tomcat (apache-tomcat-5.5.20.exe)  - &lt;a href="http://tomcat.apache.org/download-55.cgi"&gt;Download&lt;/a&gt;&lt;br /&gt;&lt;/context&gt;&lt;/context&gt;&lt;/logger&gt;&lt;/li&gt;&lt;li&gt;&lt;logger classname="org.apache.catalina.logger.FileLogger" directory="logs" prefix="localhost_log." suffix=".txt" timestamp="true"&gt;&lt;context path="/MyWebsite" docbase="MyWebsite" debug="9" privileged="true"&gt;&lt;context path="/MyWebsite/folder1" docbase="MyWebsite/folder1" debug="9" privileged="true"&gt;jakarta-tomcat-connectors (mod_jk-1.2.14-apache-2.0.54.so) - &lt;a href="http://tomcat.apache.org/download-connectors.cgi"&gt;Download&lt;/a&gt;&lt;br /&gt;&lt;/context&gt;&lt;/context&gt;&lt;/logger&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/19977869-1023076132539579802?l=technicallysan.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://technicallysan.blogspot.com/feeds/1023076132539579802/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=19977869&amp;postID=1023076132539579802' title='8 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/19977869/posts/default/1023076132539579802'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/19977869/posts/default/1023076132539579802'/><link rel='alternate' type='text/html' href='http://technicallysan.blogspot.com/2006/12/tomcat-apache-integration.html' title='Tomcat - Apache Integration'/><author><name>Santosh Jayamurugan</name><uri>http://www.blogger.com/profile/08521306169520727275</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_OUkF1NtODa8/TF7mNcFvmdI/AAAAAAAAA8c/tAazsEDBkZs/S220/rugged+-+Copy.JPG'/></author><thr:total>8</thr:total></entry><entry><id>tag:blogger.com,1999:blog-19977869.post-114677076142395783</id><published>2006-05-04T11:33:00.000-07:00</published><updated>2006-05-05T12:53:21.773-07:00</updated><title type='text'>WebBrowser in Netbeans5.0 and VS2005</title><content type='html'>Was trying out a web browser in Netbeans 5.0 from the inspiration got from &lt;a href="http://techlight.blogspot.com/"&gt;Ashwins&lt;/a&gt; post on it. Then thought of trying out the same in Vs2005 ie in C#.Net. Both had their own part of differences in look and feel and as well in code.&lt;br /&gt;&lt;br /&gt;First u can get the whole procedure of creating it in Netbeans from &lt;a href="http://techlight.blogspot.com/2006/03/two-minute-web-browser-in-java.html"&gt;Aswins Two minute browser&lt;/a&gt; post. The code involved is just three lines...(Copied from aswin's post)&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;Code under the actionperformedevent of the Go button:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 255);font-family:courier new;font-size:100%;"  &gt;       try&lt;/span&gt;&lt;span style="color: rgb(51, 51, 255);font-size:100%;" &gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 255);font-family:courier new;font-size:100%;"  &gt;       {&lt;/span&gt;&lt;span style="color: rgb(51, 51, 255);font-size:100%;" &gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(51, 51, 255); font-weight: bold;font-family:courier new;font-size:100%;"  &gt;    WebBrowser wb=new WebBrowser();&lt;/span&gt;&lt;span style="color: rgb(51, 51, 255); font-weight: bold;font-size:100%;" &gt; &lt;/span&gt;&lt;span style="color: rgb(51, 51, 255); font-weight: bold;font-family:courier new;font-size:100%;"  &gt;&lt;br /&gt;   wb.setURL(new URL(txtUrl.getText()));&lt;/span&gt;&lt;span style="color: rgb(51, 51, 255); font-weight: bold;font-size:100%;" &gt; &lt;/span&gt;&lt;span style="color: rgb(51, 51, 255); font-weight: bold;font-family:courier new;font-size:100%;"  &gt;&lt;br /&gt;   browPane.&lt;/span&gt;&lt;span style="color: rgb(51, 51, 255); font-weight: bold;font-family:courier new;font-size:100%;"  &gt;add(wb);&lt;/span&gt;&lt;span style="color: rgb(51, 51, 255);font-size:100%;" &gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 255);font-family:courier new;font-size:100%;"  &gt;       }&lt;/span&gt;&lt;span style="color: rgb(51, 51, 255);font-size:100%;" &gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 255);font-family:courier new;font-size:100%;"  &gt;       catch(Exception ex)&lt;/span&gt;&lt;span style="color: rgb(51, 51, 255);font-size:100%;" &gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 255);font-family:courier new;font-size:100%;"  &gt;       {&lt;/span&gt;&lt;span style="color: rgb(51, 51, 255);font-size:100%;" &gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 255);font-family:courier new;font-size:100%;"  &gt;    JOptionPane.showMessageDialog(null,ex.getMessage());&lt;/span&gt;&lt;span style="color: rgb(51, 51, 255);font-size:100%;" &gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family:courier new;"&gt;&lt;span style="color: rgb(51, 51, 255);font-size:85%;" &gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 255);font-size:100%;" &gt;       }&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;And the Browser comes as:&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/6878/735/1600/browser_netbeans.0.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/6878/735/400/browser_netbeans.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 102, 102); font-weight: bold;font-family:courier new;" &gt;&lt;span style="color: rgb(255, 102, 102);"&gt;Now lets see how well we can do t&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family:courier new;"&gt;&lt;span style="color: rgb(255, 102, 102); font-weight: bold;"&gt;he same in C#.Net:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;ol&gt;&lt;li&gt;&lt;span style="font-family:courier new;"&gt;Open Microsoft VisualC# 2005(Am using express in this case).&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family:courier new;"&gt;Now File-&gt;NewProject and select Windows application.And name the   project as Browser.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family:courier new;"&gt;Now drop a Textbox and a Button&lt;/span&gt;&lt;span style="font-family:courier new;"&gt; control from the toolbox.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family:courier new;"&gt;Now drag and drop a WebBrowser control from the toolbox.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family:courier new;"&gt;Now type the following line under the Button click event of the      button.&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;span style="font-weight: bold;font-family:courier new;font-size:100%;"  &gt;      &lt;span style="color: rgb(51, 51, 255);"&gt;        &lt;font&gt;        webBrowser1.Navigate(textBox1.Text);&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-weight: bold;font-size:85%;" &gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family:courier new;"&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;  6.&lt;/span&gt; &lt;span style="color: rgb(0, 0, 0);"&gt;Now press F5 to run the project. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;And the browser comes out as below:&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/6878/735/1600/browser_vs.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/6878/735/400/browser_vs.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="color: rgb(255, 102, 102); font-weight: bold;"&gt;Now lets see the differences:&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;1.First the lines of code:- Netbeans:3  and VS2005:1&lt;br /&gt;&lt;br /&gt;2.In Netbeans, the browser accepts the url as only "http://google.com" and will show an exception "Protocol not found" if the "http://"  is left out. this can be noted from the screen shots provided. Though this can be sorted out by adding some two lines of code, this was not handled automatically by the &lt;span style="color: rgb(51, 51, 255); font-style: italic;"&gt;setUrl()&lt;/span&gt; method in Netbeans5.0.&lt;br /&gt;&lt;br /&gt;The modified code would be...&lt;br /&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="color: rgb(51, 51, 255); font-weight: bold;"&gt;try&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255); font-weight: bold;"&gt;{&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255); font-weight: bold;"&gt;    WebBrowser wb=new WebBrowser();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255); font-weight: bold;"&gt;    Boolean b = contains(txtUrl.getText(),"http://");&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255); font-weight: bold;"&gt;    if(b)&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255); font-weight: bold;"&gt;    {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255); font-weight: bold;"&gt;        wb.setURL(new URL(txtUrl.getText()));&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255); font-weight: bold;"&gt;        browPane.add(wb);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255); font-weight: bold;"&gt;    }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255); font-weight: bold;"&gt;    else&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255); font-weight: bold;"&gt;    {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255); font-weight: bold;"&gt;        wb.setURL(new URL("http://"+txtUrl.getText()));&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255); font-weight: bold;"&gt;        browPane.add(wb);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255); font-weight: bold;"&gt;    }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255); font-weight: bold;"&gt;}&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255); font-weight: bold;"&gt;catch(Exception ex)&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255); font-weight: bold;"&gt;{&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255); font-weight: bold;"&gt;    JOptionPane.showMessageDialog(null,ex.getMessage());&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255); font-weight: bold;"&gt;}&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255); font-weight: bold;"&gt;//code outside the actionperformed event                                 &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255); font-weight: bold;"&gt;public boolean contains(String string, String string0)&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255); font-weight: bold;"&gt;{&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255); font-weight: bold;"&gt;    return false;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255); font-weight: bold;"&gt;}&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;But the &lt;span style="color: rgb(51, 51, 255); font-style: italic;"&gt;navigate()&lt;/span&gt; method in C#.Net handles it perfectly and no exception or error is shown. So it works with and without the "http://" part.&lt;br /&gt;&lt;br /&gt;3.We need a &lt;a href="https://jdic.dev.java.net/"&gt;JDIC&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;(JDesktop Integration component) if the browser is moulded in                 Netbeans and this is not a problem in VS2005.&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;br /&gt;4.Netbeans IDE has a tabbedpane which facilitats tabbed browsing but i dont find a similar one in Vs2005, may be i ve not searched it properly.So if anyone gets to know such a facility in Vs2005 plz ping me back.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Downloads:&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;ul&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;li&gt;&lt;span style="font-family:courier new;"&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;a href="http://www.netbeans.info/downloads/download.php?type=5.0"&gt;Netbeans5.0&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family:courier new;"&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;a href="https://sdlc2e.sun.com/ECom/EComActionServlet;jsessionid=43C4BFE58F8846BB5735524BD80E0AC5"&gt;J2SE 1.5.0&lt;/a&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/ul&gt;&lt;span style="font-family:courier new;"&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;font&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/19977869-114677076142395783?l=technicallysan.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://technicallysan.blogspot.com/feeds/114677076142395783/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=19977869&amp;postID=114677076142395783' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/19977869/posts/default/114677076142395783'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/19977869/posts/default/114677076142395783'/><link rel='alternate' type='text/html' href='http://technicallysan.blogspot.com/2006/05/webbrowser-in-netbeans50-and-vs2005.html' title='WebBrowser in Netbeans5.0 and VS2005'/><author><name>Santosh Jayamurugan</name><uri>http://www.blogger.com/profile/08521306169520727275</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_OUkF1NtODa8/TF7mNcFvmdI/AAAAAAAAA8c/tAazsEDBkZs/S220/rugged+-+Copy.JPG'/></author><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-19977869.post-114175884779232168</id><published>2006-03-07T10:43:00.001-08:00</published><updated>2006-03-07T11:14:07.793-08:00</updated><title type='text'>The Google Way</title><content type='html'>&lt;div style="text-align: justify;"&gt;Got to tumble upon &lt;a href="http://google.co.in"&gt;google's&lt;/a&gt;  way of searching in one of my usual link traversals that i daily do. And also a friend of mine was reading about it and we started a discussion about. So it took me to an article where they had plotted approximately on how google works for it's search industry to it a happening thing.&lt;br /&gt;&lt;br /&gt;It explained everything right from the invention of internet  to the present state.  It dealth with how web crawling is efficiently implemented. And how well the &lt;a href="http://www.iprcom.com/papers/pagerank/"&gt;Page rank&lt;/a&gt; technique is used. Page rank is nothing but a rank or vote given to a page or site with respect to the visitor turnout to that link randomly. Every search engine has its own way of ranking its pages...Simply saying page ranking is indexing of pages according to the importance it gains from the users hit ratio to it.&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/6878/735/1600/architecture.gif"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://photos1.blogger.com/blogger/6878/735/320/architecture.jpg" alt="" border="0" /&gt;&lt;/a&gt;This figure to your right gives an abstract overview of how a search engine works. you might see from it that its not only page rank or indexing is being used, but it involves more sophisticated things like anchors, resolver, lexicon,hit lists and so on.&lt;br /&gt;&lt;br /&gt;Each page is ranked indexed and stored as links in a page using anchors. Google uses c nad c++ for its implementation. Each document or page is parsed and then is indexed into the barrels u see in the figure. And again it is sorted according to its respective ids.&lt;br /&gt;&lt;br /&gt;And whats amazing is that, a single search query we give need some 100s of gb storage to return us the links relating to it. And for the ranking, indexing and those lexicon stuff again needs dozens of gbs. now imagine how it handles search queries all over the world without compromising service to us. Really amazing.&lt;br /&gt;&lt;br /&gt;The magic is done by the algorithm they use which is yet to revealed fully for public. And it need not be or will not be revealed as u would create ur own google(like am santosh and ill name it as sangle.com) if its revealed fully.&lt;br /&gt;&lt;br /&gt;This is just a pick n preview kind of explanation of the total analysis on the page i read.&lt;br /&gt;for detailed reading plz take ur mouse pointeres to click the following links:&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;ul style="text-align: justify;"&gt;&lt;li&gt;&lt;a href="http://hake.stanford.edu/%7Ebackrub/google.html"&gt;The anatomy of large scale hypertextual search engine&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.iprcom.com/papers/pagerank/"&gt;Page ranks&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div style="text-align: justify;"&gt;Hope u experience the same thrill i felt...........&lt;br /&gt;&lt;/div&gt;&lt;h1 style="text-align: justify;"&gt;&lt;br /&gt;&lt;/h1&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/19977869-114175884779232168?l=technicallysan.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://technicallysan.blogspot.com/feeds/114175884779232168/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=19977869&amp;postID=114175884779232168' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/19977869/posts/default/114175884779232168'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/19977869/posts/default/114175884779232168'/><link rel='alternate' type='text/html' href='http://technicallysan.blogspot.com/2006/03/google-way_07.html' title='The Google Way'/><author><name>Santosh Jayamurugan</name><uri>http://www.blogger.com/profile/08521306169520727275</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_OUkF1NtODa8/TF7mNcFvmdI/AAAAAAAAA8c/tAazsEDBkZs/S220/rugged+-+Copy.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-19977869.post-113828253323650527</id><published>2006-01-26T04:42:00.000-08:00</published><updated>2006-01-26T05:49:35.743-08:00</updated><title type='text'>ASP.NET's "Atlas" Vs "Ajax"</title><content type='html'>ASP.NET &lt;span style="font-weight: bold; color: rgb(51, 102, 255);"&gt;Atlas&lt;/span&gt;&lt;span style="color: rgb(51, 102, 255);"&gt; &lt;/span&gt;is a package of new Web development technologies that integrates an extensive set of client script libraries with the rich, server-based development platform of ASP.NET 2.0.&lt;br /&gt;&lt;br /&gt;Atlas enables us to develop Web applications that can update data on a Web page by making &lt;span style="color: rgb(51, 102, 255);"&gt;direct calls to a Web server — without needing to round trip the page&lt;/span&gt;&lt;span style="color: rgb(51, 102, 255);"&gt;.&lt;/span&gt;&lt;span style="font-style: italic;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;Atlas applications are &lt;span style="color: rgb(51, 102, 255);"&gt;cross-platform&lt;/span&gt; and will run with little or no change in any modern browser.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Example&lt;/span&gt;&lt;span style="font-weight: bold;"&gt; of&lt;/span&gt;&lt;span style="font-weight: bold;"&gt; &lt;/span&gt;&lt;span style="font-weight: bold;"&gt;appplications developed using Atlas are....&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://local.live.com/"&gt;Microsoft's  Virtual Earth site&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Microsoft's Outlook Web Access e-mail client&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.start.com/"&gt;Start.com.&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;Atlas also has an equalent competent package known as &lt;span style="color: rgb(51, 102, 255); font-weight: bold;"&gt;Ajax(&lt;/span&gt;&lt;span style="color: rgb(51, 102, 255);"&gt;Asynchronous         JavaScript and XML)&lt;/span&gt;&lt;span style="color: rgb(51, 102, 255); font-weight: bold;"&gt;.&lt;/span&gt;But Creating Ajax-based Web applications has its own disdvantages.&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Highly &lt;span style="color: rgb(255, 0, 0);"&gt;Complex.&lt;/span&gt; &lt;/li&gt;&lt;li&gt;Requires extensive knowledge         of client script.&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-weight: bold;"&gt;Some examples of Ajax based applications are...&lt;br /&gt;&lt;/span&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://maps.google.com"&gt;Google maps&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.google.com/webhp?complete=1&amp;hl=en"&gt;Google suggest&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;So atlas is &lt;span style="color: rgb(51, 102, 255);"&gt;not a mere copy of AJAX&lt;/span&gt; but an extension of AJAX by overcoming its loopholes.&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;The improvements of ATLAS over AJAX are....&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Atlas client         script libraries  &lt;span style="color: rgb(255, 0, 0);"&gt;simplifies the tasks&lt;/span&gt; of creating rich UIs and remote         procedures calls by providing you with true object-oriented APIs and components         for Atlas development.&lt;/li&gt;&lt;li&gt;Atlas extends the AJAX concept by &lt;span style="color: rgb(255, 0, 0);"&gt;providing a rich,         integrated server development platform in ASP.NET 2.0&lt;/span&gt;.&lt;/li&gt;&lt;li&gt;Includes ASP.NET Web services and server controls that enable you to take advantage         of the&lt;span style="color: rgb(255, 0, 0);"&gt; power of ASP.NET&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;         Simply saying, &lt;span style="color: rgb(51, 102, 255);"&gt;Atlas simplifies AJAX development&lt;/span&gt; and incorporates AJAX concepts         into the Web application development process.&lt;br /&gt;&lt;br /&gt;For more information follow the below mentioned links......&lt;br /&gt;&lt;ul&gt;&lt;li&gt; &lt;a href="http://atlas.asp.net/docs/default.htm"&gt;Atlas documentation&lt;/a&gt;&lt;/li&gt;&lt;li&gt; &lt;a href="http://atlas.asp.net/quickstart/default.aspx"&gt;Atlas tutorials&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;Technically&lt;br /&gt;...........Santosh Jayamurugan&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/19977869-113828253323650527?l=technicallysan.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://technicallysan.blogspot.com/feeds/113828253323650527/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=19977869&amp;postID=113828253323650527' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/19977869/posts/default/113828253323650527'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/19977869/posts/default/113828253323650527'/><link rel='alternate' type='text/html' href='http://technicallysan.blogspot.com/2006/01/aspnets-atlas-vs-ajax.html' title='&lt;b&gt;ASP.NET&apos;s &quot;Atlas&quot; Vs &quot;Ajax&quot;&lt;/b&gt;'/><author><name>Santosh Jayamurugan</name><uri>http://www.blogger.com/profile/08521306169520727275</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_OUkF1NtODa8/TF7mNcFvmdI/AAAAAAAAA8c/tAazsEDBkZs/S220/rugged+-+Copy.JPG'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-19977869.post-113492984508345132</id><published>2005-12-18T10:04:00.000-08:00</published><updated>2005-12-18T10:17:25.090-08:00</updated><title type='text'>Steganography</title><content type='html'>Steganography (a Greek translation of the term Steganography is secret writing) has been used in various forms. It has found use in variously in military, diplomatic, personal and intellectual property applications. Briefly stated, steganography is the term applied to any number of processes that will hide a message within an object, where the hidden message will not be visible to an observer.&lt;br /&gt;&lt;br /&gt;Its basically an art or technique of hiding information in the following:&lt;br /&gt;* Images&lt;br /&gt;* Audio&lt;br /&gt;* Video&lt;br /&gt;* Many more objects too!!&lt;br /&gt;&lt;br /&gt;Moreover it has now got a global attention as Osama bin laden used this technique to enter the highly protected city in the world "NEWYORK" to distruct the twin towers.&lt;br /&gt;&lt;br /&gt;He eventually used it to hide the two planes that collided with the towers from the radar images!!!. Thus fooling the security grids.&lt;br /&gt;&lt;br /&gt;Technically&lt;br /&gt;.....Santosh Jayamurugan&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/19977869-113492984508345132?l=technicallysan.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://technicallysan.blogspot.com/feeds/113492984508345132/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=19977869&amp;postID=113492984508345132' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/19977869/posts/default/113492984508345132'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/19977869/posts/default/113492984508345132'/><link rel='alternate' type='text/html' href='http://technicallysan.blogspot.com/2005/12/steganography.html' title='Steganography'/><author><name>Santosh Jayamurugan</name><uri>http://www.blogger.com/profile/08521306169520727275</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_OUkF1NtODa8/TF7mNcFvmdI/AAAAAAAAA8c/tAazsEDBkZs/S220/rugged+-+Copy.JPG'/></author><thr:total>0</thr:total></entry></feed>
