<?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:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-852907532192741438</id><updated>2010-09-11T03:32:54.610-07:00</updated><title type='text'>Emerging Webspaces</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://vivek-on-the-web.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/852907532192741438/posts/default'/><link rel='alternate' type='text/html' href='http://vivek-on-the-web.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Vivekanand B</name><uri>http://www.blogger.com/profile/15326675915329567493</uri><email>noreply@blogger.com</email></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>3</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-852907532192741438.post-1492165719112052047</id><published>2007-05-06T22:12:00.000-07:00</published><updated>2007-05-06T23:10:21.679-07:00</updated><title type='text'>Repesentational State Transfer and SOAP</title><content type='html'>REST (Representational State Transfer) is one of the emerging web practice and I believe have potential for future growth in adoption and scaling.&lt;br /&gt;The term REST was coined by Roy Fielding in his Ph.D. thesis submitted in  UNIVERSITY OF CALIFORNIA, IRVINE.&lt;br /&gt;&lt;br /&gt;" Representational State Transfer is intended to evoke an image of how a well-designed Web application behaves: a network of web pages (a virtual state-machine), where the user progresses through an application by selecting links (state transitions), resulting in the next page (representing the next state of the application) being transferred to the user and rendered for their use. " - &lt;cite style="font-style: normal;"&gt;Dr. &lt;a href="http://en.wikipedia.org/wiki/Roy_Fielding" title="Roy Fielding"&gt;Roy Fielding&lt;/a&gt;, Architectural Styles and the Design of Network-based Software Architectures&lt;br /&gt;&lt;br /&gt;As Roy says REST is not a new technology like AJAX. It can not be implemented in new language or new application server. Also its not a standard which W3C owns are sets specifications for it.&lt;br /&gt;&lt;br /&gt;Rather, REST is specific pattern of how a web application will be designed such that it could be scaled as well as well organized and still user friendly.&lt;br /&gt;&lt;br /&gt;I read on the Internet people are talking of REST replacing SOAP in coming days since its better than SOAP in both perceptions first, its simpler to implement and second, it has more features than SOAP.&lt;br /&gt;&lt;br /&gt;I see one of the important advantage of REST over SOAP is of infrastructure, to use SOAP you have to buy a server from IBM or purchase complete .NET framework to use web services with SOAP. Whereas to implement REST methodology nothing from all these is required.&lt;br /&gt;&lt;br /&gt;Another thing is the communication overhead, communication over SOAP needs extra efforts to follow SOAP specifications and related process whereas REST does not impose any standards or specifications.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://amazon.com/"&gt;Amazon&lt;/a&gt; has already started using REST for providing current price status could be good example of how REST is going to be buzzword for coming years in the world of the web and related services.&lt;br /&gt;&lt;/cite&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/852907532192741438-1492165719112052047?l=vivek-on-the-web.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivek-on-the-web.blogspot.com/feeds/1492165719112052047/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=852907532192741438&amp;postID=1492165719112052047' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/852907532192741438/posts/default/1492165719112052047'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/852907532192741438/posts/default/1492165719112052047'/><link rel='alternate' type='text/html' href='http://vivek-on-the-web.blogspot.com/2007/05/repesentational-state-transfer-and-soap.html' title='Repesentational State Transfer and SOAP'/><author><name>Vivekanand B</name><uri>http://www.blogger.com/profile/15326675915329567493</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='05869341308756913620'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-852907532192741438.post-670232321959011687</id><published>2007-04-17T01:19:00.000-07:00</published><updated>2007-04-17T02:37:56.279-07:00</updated><title type='text'>When IE does not update images changed using javascript....</title><content type='html'>&lt;span style="font-family: arial;font-size:100%;" &gt;  &lt;br /&gt;I was working on one my projects and I faced the problem that made me write this article so that it will help who is facing the similar problem.&lt;br /&gt;I developed a page which dynamically changes images using javascript on the click of anchor tag. Say sample HTML was as:&lt;br /&gt;&lt;/span&gt;&lt;pre style="font-size: 85%; font-family: arial;"&gt;&amp;lt;a href="#" onclick="updateImage()"&gt; &amp;lt;img id="dynaImg" src="img1.jpg" /&gt;&amp;lt;/a&gt;&lt;br /&gt;&lt;/pre&gt;&lt;span style="font-family: arial;font-size:100%;" &gt;and I have added some code to update the image dynamically as:&lt;/span&gt;&lt;span style="font-family: arial;font-size:100%;" &gt;&lt;pre style="font-size: 85%;"&gt;&lt;span style="font-size:100%;"&gt;function updateImage() {&lt;br /&gt; document.getElementById("dynaImg").src = "img2.jpg";&lt;br /&gt;}&lt;/span&gt;&lt;br /&gt;&lt;/pre&gt;This works fine with Firefox (and all Gecko based browsers) as well as IE7 but IE6 does not update the image and it keeps it blank!&lt;br /&gt;&lt;br /&gt;After digging into the problem I came to know that IE6 was abruptly suspending the thread that fetches the image from server and continue executing &lt;span style="font-style: italic;"&gt;OnClick&lt;/span&gt; event thread.&lt;br /&gt;&lt;br /&gt;So to solve this problem better not add the dynamically image updating code on &lt;span style="font-style: italic;"&gt;OnClick&lt;/span&gt; event but add it to &lt;span style="font-style: italic;"&gt;href&lt;/span&gt; attribute itself! and hence the above code would become something like:&lt;/span&gt;&lt;span style="font-family: arial;font-size:100%;" &gt;&lt;pre style="font-size: 85%;"&gt;&lt;span style="font-size:100%;"&gt;&amp;lt;a href="javascript:updateImage()"&gt; &amp;lt;img id="dynaImg" src="img1.jpg" /&gt;&amp;lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;/pre&gt;And now it works in all browsers!&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/852907532192741438-670232321959011687?l=vivek-on-the-web.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivek-on-the-web.blogspot.com/feeds/670232321959011687/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=852907532192741438&amp;postID=670232321959011687' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/852907532192741438/posts/default/670232321959011687'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/852907532192741438/posts/default/670232321959011687'/><link rel='alternate' type='text/html' href='http://vivek-on-the-web.blogspot.com/2007/04/when-ie-does-not-update-images-changed.html' title='When IE does not update images changed using javascript....'/><author><name>Vivekanand B</name><uri>http://www.blogger.com/profile/15326675915329567493</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='05869341308756913620'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-852907532192741438.post-125851570399562915</id><published>2007-04-13T00:41:00.000-07:00</published><updated>2007-04-13T00:42:40.386-07:00</updated><title type='text'>Whats next after AJAX?</title><content type='html'>&lt;span id="BlogViewId" sortmode="Normal" sortkey="" firsthandle="cns!758DFAEC4EC53C0A!115" lasthandle="cns!758DFAEC4EC53C0A!115"&gt;&lt;div id="msgcns!758DFAEC4EC53C0A!115"&gt;&lt;div&gt;Asynchronous Javascript and XML (AJAX) is adapted by Internet community very quickly and lots of web programmers made their hands wet on it. AJAX turned now at the mature stage and people now thinking of something more than what AJAX has given to the Internet world.&lt;/div&gt; &lt;div&gt; &lt;/div&gt; &lt;div&gt;Things that are possible using AJAX are:&lt;/div&gt; &lt;ul&gt;&lt;li&gt;Look n Feel like Desktop Application to the Web Application  &lt;/li&gt;&lt;li&gt;Enhanced User Experience  &lt;/li&gt;&lt;li&gt;Streamlined User Process to interact with the web application  &lt;/li&gt;&lt;li&gt;Made web applications expand their capabilites by lending some computing part of the application to the client&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;But what to look for more is further step in interactivity of web application with the user. Now a days user not only interested in knowing what he has done with the web application but also what others are doing with the same web application! In this scenario AJAX is not the right answer to support such features. &lt;/p&gt;&lt;p&gt;There should be something which could change the contents of the web application simutaneously for all its current users based on any number of user actions connect at that point of instance. This would make web users feel they are really connected to all the other users and feel great about Internet that how it is able to do such things!!!! &lt;/p&gt;&lt;p&gt;I will find some more information on how this feature could be added to web till then keep watching this place.......&lt;/p&gt;&lt;/div&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/852907532192741438-125851570399562915?l=vivek-on-the-web.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivek-on-the-web.blogspot.com/feeds/125851570399562915/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=852907532192741438&amp;postID=125851570399562915' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/852907532192741438/posts/default/125851570399562915'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/852907532192741438/posts/default/125851570399562915'/><link rel='alternate' type='text/html' href='http://vivek-on-the-web.blogspot.com/2007/04/whats-next-after-ajax.html' title='Whats next after AJAX?'/><author><name>Vivekanand B</name><uri>http://www.blogger.com/profile/15326675915329567493</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='05869341308756913620'/></author><thr:total>2</thr:total></entry></feed>