<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.3" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>Shashank Tiwari</title>
	<link>http://shanky.org</link>
	<description>www.shanky.org</description>
	<pubDate>Sat, 02 Aug 2008 11:33:43 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
	<language>en</language>
			<item>
		<title>Flex HTTPService, Browser Cache and IE</title>
		<link>http://shanky.org/2008/08/02/flex-httpservice-browser-cache-and-ie/</link>
		<comments>http://shanky.org/2008/08/02/flex-httpservice-browser-cache-and-ie/#comments</comments>
		<pubDate>Sat, 02 Aug 2008 11:24:03 +0000</pubDate>
		<dc:creator>tshanky</dc:creator>
		
		<category><![CDATA[air]]></category>

		<category><![CDATA[flex]]></category>

		<category><![CDATA[public events]]></category>

		<category><![CDATA[ria]]></category>

		<category><![CDATA[Browser Cache]]></category>

		<category><![CDATA[HTTPService]]></category>

		<category><![CDATA[IE]]></category>

		<guid isPermaLink="false">http://shanky.org/2008/08/02/flex-httpservice-browser-cache-and-ie/</guid>
		<description><![CDATA[This morning I spoke at a Flex event in Hyderabad (India). Our (Saven Technologies) team members at Hyderabad planned and organized this fantastic event. It was a public event. Over 200 enthusiatic people attended the event.
I sincerely appreciate the effort of the organizers and thank the attendees for making it a successful event.
One of the [...]]]></description>
			<content:encoded><![CDATA[<p>This morning I spoke at a Flex event in Hyderabad (India). <a href="http://www.saventech.com" target="_blank">Our (Saven Technologies)</a> team members at Hyderabad planned and organized this fantastic event. It was a public event. Over 200 enthusiatic people attended the event.</p>
<p>I sincerely appreciate the effort of the organizers and thank the attendees for making it a successful event.</p>
<p>One of the attendees asked me a question about problems with Flex HTTPService and the IE browser cache. I promised to provide a detailed solution to the problem, so here it is:</p>
<p><strong>Problem:</strong> Repeated HTTPService calls when made from Flex (running within an instance of the IE browser) many a times ends up with no external HTTP call. It appears the data is served from cache.</p>
<p><strong>Reason:</strong>  The Flash Player piggybacks on the browser to make the HTTP call. IE caches the response from the HTTP GET calls and on occurrence of the same URL returns the response from the cache.</p>
<p><strong>Solution:</strong> The problem can be solved either at the server side or at the client side.</p>
<blockquote><p><strong>Server side solution:</strong>  Set the HTTP headers of the response to avoid returning response from cache.</p>
<p>In HTML: (in the header)</p>
<p>&lt;META HTTP-EQUIV=&#8221;Cache-Control&#8221; CONTENT=&#8221;no-cache&#8221;&gt;<br />
&lt;META HTTP-EQUIV=&#8221;expires&#8221; CONTENT=&#8221;0&#8243;&gt;</p>
<p>In PHP: (in the script)</p>
<p>header(”Cache-Control: no-cache, must-revalidate”);<br />
header(”Expires: Mon, 26 Jul 1997 05:00:00 GMT”);</p>
<p>In JSP: (before writing to the output stream)</p>
<p>response.setHeader(&#8221;Cache-Control&#8221;,&#8221;no-cache&#8221;);<br />
response.setDateHeader (&#8221;Expires&#8221;, 0);</p>
<p><strong>Client side solution:</strong> (1) Make HTTP POST call &#8212; only HTTP GET calls are served from cache or (2) Make sure the HTTP GET URL is different every time.</p>
<p>(1) Make HTTP POST call &#8211;<br />
set method=&#8221;POST&#8221; and handle the call appropriately</p>
<p>(2) Append a unique parameter to the HTTP GET call so that the URL is different every time. A unique time stamp is a good choice.<br />
The following sample code, may do the job:</p>
<p>var timeStampForNocache:Date = new Date() ;<br />
params.noCacheControlVar = timeStampForNocache.getTime().toString() ;<br />
I have named the parameter &#8220;noCacheControlVar&#8221;. You can name it anything else you please. The name does not matter. What matters is that the timestamp makes the HTTP GET URL unique.</p></blockquote>
<p>That&#8217;s it! Hope it helps and IE does not trouble you when using HTTPService anymore.</p>
<blockquote></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://shanky.org/2008/08/02/flex-httpservice-browser-cache-and-ie/feed/</wfw:commentRss>
		</item>
		<item>
		<title>SWF is Searchable</title>
		<link>http://shanky.org/2008/07/01/swf-is-searchable/</link>
		<comments>http://shanky.org/2008/07/01/swf-is-searchable/#comments</comments>
		<pubDate>Tue, 01 Jul 2008 14:15:05 +0000</pubDate>
		<dc:creator>tshanky</dc:creator>
		
		<category><![CDATA[air]]></category>

		<category><![CDATA[flex]]></category>

		<category><![CDATA[ria]]></category>

		<category><![CDATA[adobe]]></category>

		<category><![CDATA[google]]></category>

		<category><![CDATA[search]]></category>

		<category><![CDATA[swf]]></category>

		<category><![CDATA[web spiders]]></category>

		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://shanky.org/2008/07/01/swf-is-searchable/</guid>
		<description><![CDATA[Adobe SWF files that run in the flash player will now be searchable. Adobe published SWF searchability FAQ earlier this morning explaining the details of what this implies.
Web spiders will now be able to playback SWF(s) like users and cull out the data to add to their index. This announcement has two huge impacts:

Traditionally, a [...]]]></description>
			<content:encoded><![CDATA[<p>Adobe SWF files that run in the flash player will now be searchable. Adobe published <a href="http://www.adobe.com/devnet/flashplayer/articles/swf_searchability.html" title="SWF Searchability FAQ" target="_blank">SWF searchability FAQ</a> earlier this morning explaining the details of what this implies.</p>
<p>Web spiders will now be able to playback SWF(s) like users and cull out the data to add to their index. This announcement has two huge impacts:</p>
<ul>
<li>Traditionally, a big disadvantage of making flash player applications was that they were not properly visible to the search engines. This won&#8217;t be true going forward.</li>
<li>By enabling search indexing via playback, a new era is going to begin. Traditionally text has been the favorite media for search engines. Hopefully this announcement heralds the good news of better rich media indexing in general. We would all like to search audio and video content based on the information they contain and not just the way they are tagged.</li>
</ul>
<p>Congratulations to Adobe, Google and Yahoo for this new development.</p>
]]></content:encoded>
			<wfw:commentRss>http://shanky.org/2008/07/01/swf-is-searchable/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Flex Camp Wall Street: 1 day and 1 seat to go!</title>
		<link>http://shanky.org/2008/04/17/flex-camp-wall-street-1-day-and-1-seat-to-go/</link>
		<comments>http://shanky.org/2008/04/17/flex-camp-wall-street-1-day-and-1-seat-to-go/#comments</comments>
		<pubDate>Thu, 17 Apr 2008 14:35:38 +0000</pubDate>
		<dc:creator>tshanky</dc:creator>
		
		<category><![CDATA[public events]]></category>

		<category><![CDATA[flex]]></category>

		<category><![CDATA[flex camp]]></category>

		<category><![CDATA[flex camp wall street]]></category>

		<category><![CDATA[new york]]></category>

		<category><![CDATA[ria]]></category>

		<guid isPermaLink="false">http://shanky.org/2008/04/17/flex-camp-wall-street-1-day-and-1-seat-to-go/</guid>
		<description><![CDATA[Flex Camp Wall Street is just 1 day away and we are also 1 seat away from being sold out! I must thank every attendee, organizer and speaker for generating the excitement about the event. We increased seats to include 150 instead of our initial number of 125 and yet it took no time for [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flexcampwallstreet.com" title="Flex Camp Wall Street" target="_blank">Flex Camp Wall Street</a> is just 1 day away and we are also 1 seat away from being sold out! I must thank every attendee, organizer and speaker for generating the excitement about the event. We increased seats to include 150 instead of our initial number of 125 and yet it took no time for the seats to fill up. I hope everybody enjoys the event tomorrow and promise to organize more events of the type in future.</p>
<p>Thanks!</p>
]]></content:encoded>
			<wfw:commentRss>http://shanky.org/2008/04/17/flex-camp-wall-street-1-day-and-1-seat-to-go/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Adobe Developer Week 2008 : Flex and Java &#8212; Tying the knot!</title>
		<link>http://shanky.org/2008/03/27/adobe-developer-week-2008-flex-and-java-tying-the-knot/</link>
		<comments>http://shanky.org/2008/03/27/adobe-developer-week-2008-flex-and-java-tying-the-knot/#comments</comments>
		<pubDate>Thu, 27 Mar 2008 03:20:08 +0000</pubDate>
		<dc:creator>tshanky</dc:creator>
		
		<category><![CDATA[public events]]></category>

		<category><![CDATA[adobe developer week]]></category>

		<category><![CDATA[answers]]></category>

		<category><![CDATA[flex]]></category>

		<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://shanky.org/2008/03/27/adobe-developer-week-2008-flex-and-java-tying-the-knot/</guid>
		<description><![CDATA[Thanks to all those who attended my session earlier this afternoon. I will post answers to many of the questions that were asked and could not be addressed (due to shortage of time). Please navigate to the page titled &#8212; &#8220;Flex and Java&#8221; &#8212; and you will see these spread across multiple posts on that [...]]]></description>
			<content:encoded><![CDATA[<p>Thanks to all those who attended my session earlier this afternoon. I will post answers to many of the questions that were asked and could not be addressed (due to shortage of time). Please navigate to the page titled &#8212; &#8220;<a href="http://shanky.org/flex-and-java/" title="Flex and Java" target="_blank">Flex and Java</a>&#8221; &#8212; and you will see these spread across multiple posts on that page.</p>
]]></content:encoded>
			<wfw:commentRss>http://shanky.org/2008/03/27/adobe-developer-week-2008-flex-and-java-tying-the-knot/feed/</wfw:commentRss>
		</item>
		<item>
		<title>360&#124;Flex Europe- 7-9 April, 2008</title>
		<link>http://shanky.org/2008/03/27/360flex-europe-7-9-april-2008/</link>
		<comments>http://shanky.org/2008/03/27/360flex-europe-7-9-april-2008/#comments</comments>
		<pubDate>Thu, 27 Mar 2008 03:13:34 +0000</pubDate>
		<dc:creator>tshanky</dc:creator>
		
		<category><![CDATA[public events]]></category>

		<guid isPermaLink="false">http://shanky.org/2008/03/27/360flex-europe-7-9-april-2008/</guid>
		<description><![CDATA[If you are interested in Flex and are close enough to Milan Italy then you must not miss 360 Flex Europe. This 3-day conference is the place to learn about Flex and AIR from Adobe and community speakers. 360 Flex was the first Flex conference in the US, and now this one in Milan is [...]]]></description>
			<content:encoded><![CDATA[<p>If you are interested in Flex and are close enough to Milan Italy then you must not miss 360 Flex Europe. This 3-day conference is the place to learn about Flex and AIR from Adobe and community speakers. 360 Flex was the first Flex conference in the US, and now this one in Milan is the first European Flex conference! Don&#8217;t miss out, only €360. The conference includes over 35+ speakers/sessions and free hands-on &#8220;Getting started with Flex&#8221; training. More details can be found at <a href="http://360flex.com/360flex_europe" title="360 Flex Europe Milan Italy">http://360flex.com/360flex_europe</a></p>
<p>I am presenting on day 2 of the conference. The topic of my presentation is &#8212; &#8220;Flex integration with a few Java EE Scenarios&#8221;. I ran the same session at 360 Flex Atalanta on 26 February 2008. The feedback from that session confirmed that many people enjoyed the session and are interested in Flex and Java integration. If you are interested, come to the show and join me on day 2.</p>
]]></content:encoded>
			<wfw:commentRss>http://shanky.org/2008/03/27/360flex-europe-7-9-april-2008/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Adobe Developer Week 2008</title>
		<link>http://shanky.org/2008/03/27/adobe-developer-week-2008/</link>
		<comments>http://shanky.org/2008/03/27/adobe-developer-week-2008/#comments</comments>
		<pubDate>Thu, 27 Mar 2008 02:12:13 +0000</pubDate>
		<dc:creator>tshanky</dc:creator>
		
		<category><![CDATA[public events]]></category>

		<category><![CDATA[360]]></category>

		<category><![CDATA[adobe]]></category>

		<category><![CDATA[adobe developer week]]></category>

		<category><![CDATA[ajaxworld]]></category>

		<category><![CDATA[flex]]></category>

		<category><![CDATA[flex camp wall street]]></category>

		<category><![CDATA[presentation]]></category>

		<category><![CDATA[tssjs]]></category>

		<guid isPermaLink="false">http://shanky.org/2008/03/27/adobe-developer-week-2008/</guid>
		<description><![CDATA[I presented this afternoon at the Adobe Developer Week 2008 &#8212; an online seminar that runs each day from March 24th through March 28th. The topic of my presentation was &#8220;Flex and Java &#8212; Tying the Knot!&#8221;. If you have come to any of my recent presentations at Flex Camp Chicago, 360 Flex Atlanta or [...]]]></description>
			<content:encoded><![CDATA[<p>I presented this afternoon at the Adobe Developer Week 2008 &#8212; an online seminar that runs each day from March 24th through March 28th. The topic of my presentation was &#8220;Flex and Java &#8212; Tying the Knot!&#8221;. If you have come to any of my recent presentations at <a href="http://www.flexcampchicago.com/" title="Flex Camp Chicago" target="_blank">Flex Camp Chicago</a>, <a href="http://www.360conferences.com/360flex/index.cfm" title="360 Flex Atlanta" target="_blank">360 Flex Atlanta</a> or <a href="http://www.ajaxworld.com/" title="http://www.ajaxworld.com/" target="_blank">AjaxWorld East 2008</a> you probably know that this is one topic that I have been speaking on frequently. In the next few months you will get to see more on this from me. My next stop is <a href="http://www.360flex.com/360flex_europe/" title="360 Flex Europe Milan Italy" target="_blank">360 Flex Milan</a> and then <a href="http://www.flexcampwallstreet.com/" title="Flex Camp Wall Street" target="_blank">Flex Camp Wall Street</a> and <a href="http://javasymposium.techtarget.com/europe/index.html" title="The Server Side Java Symposium Europe" target="_blank">The Server Side Java Symposium Europe</a> follow.</p>
]]></content:encoded>
			<wfw:commentRss>http://shanky.org/2008/03/27/adobe-developer-week-2008/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Speaking at 360 Flex at Atlanta on February 26, 2008</title>
		<link>http://shanky.org/2008/01/21/speaking-at-360-flex-at-atlanta-on-february-26-2008/</link>
		<comments>http://shanky.org/2008/01/21/speaking-at-360-flex-at-atlanta-on-february-26-2008/#comments</comments>
		<pubDate>Mon, 21 Jan 2008 21:16:44 +0000</pubDate>
		<dc:creator>tshanky</dc:creator>
		
		<category><![CDATA[public events]]></category>

		<guid isPermaLink="false">http://shanky.org/2008/01/21/speaking-at-360-flex-at-atlanta-on-february-26-2008/</guid>
		<description><![CDATA[Come to 360 &#124; Flex at Atlanta and enjoy learning the exciting things you can do with Adobe Flex and AIR. Register now!
]]></description>
			<content:encoded><![CDATA[<p>Come to <a href="http://www.360conferences.com/360flex/" title="360Flex Atlanta - February 25 to 27 2008" target="_blank">360 | Flex</a> at Atlanta and enjoy learning the exciting things you can do with Adobe Flex and AIR. <a href="http://360flex.eventbrite.com/" title="360Flex Atlanta - February 25 to 27 2008" target="_blank">Register now</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://shanky.org/2008/01/21/speaking-at-360-flex-at-atlanta-on-february-26-2008/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Presenting at the Adobe AIR e-seminar on February 13, 2008</title>
		<link>http://shanky.org/2008/01/21/presenting-at-the-adobe-air-e-seminar-on-february-13-2008/</link>
		<comments>http://shanky.org/2008/01/21/presenting-at-the-adobe-air-e-seminar-on-february-13-2008/#comments</comments>
		<pubDate>Mon, 21 Jan 2008 21:07:36 +0000</pubDate>
		<dc:creator>tshanky</dc:creator>
		
		<category><![CDATA[public events]]></category>

		<category><![CDATA[air]]></category>

		<category><![CDATA[desktop]]></category>

		<category><![CDATA[flex]]></category>

		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://shanky.org/2008/01/21/presenting-at-the-adobe-air-e-seminar-on-february-13-2008/</guid>
		<description><![CDATA[Register for the Adobe AIR e-seminar, scheduled to start at 10.00 am PST on February 13, 2008. I would show how a modern day web developer could easily use his/her tools to carve fully functional desktop applications with the help of AIR.
]]></description>
			<content:encoded><![CDATA[<p>Register for the <a href="http://www.adobe.com/cfusion/event/index.cfm?event=detail&amp;id=648909&amp;loc=en_us" title="Adobe AIR e-seminar" target="_blank">Adobe AIR e-seminar</a>, scheduled to start at 10.00 am PST on February 13, 2008. I would show how a modern day web developer could easily use his/her tools to carve fully functional desktop applications with the help of AIR.</p>
]]></content:encoded>
			<wfw:commentRss>http://shanky.org/2008/01/21/presenting-at-the-adobe-air-e-seminar-on-february-13-2008/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Speaking at Flex Camp Chicago</title>
		<link>http://shanky.org/2008/01/18/speaking-at-flex-camp-chicago/</link>
		<comments>http://shanky.org/2008/01/18/speaking-at-flex-camp-chicago/#comments</comments>
		<pubDate>Fri, 18 Jan 2008 04:23:07 +0000</pubDate>
		<dc:creator>tshanky</dc:creator>
		
		<category><![CDATA[public events]]></category>

		<guid isPermaLink="false">http://shanky.org/2008/01/18/speaking-at-flex-camp-chicago/</guid>
		<description><![CDATA[Presenting on Flex and Java  integration  at Flex Camp Chicago on 18 January, 2008. Details can be accessed at http://www.flexcampchicago.com
]]></description>
			<content:encoded><![CDATA[<p>Presenting on Flex and Java  integration  at Flex Camp Chicago on 18 January, 2008. Details can be accessed at <a href="http://www.flexcampchicago.com" title="Flex Camp Chicago January 18, 2008" target="_blank">http://www.flexcampchicago.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://shanky.org/2008/01/18/speaking-at-flex-camp-chicago/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Speaking at AJAXWorld</title>
		<link>http://shanky.org/2007/09/19/speaking-at-ajaxworld/</link>
		<comments>http://shanky.org/2007/09/19/speaking-at-ajaxworld/#comments</comments>
		<pubDate>Wed, 19 Sep 2007 05:27:21 +0000</pubDate>
		<dc:creator>tshanky</dc:creator>
		
		<category><![CDATA[public events]]></category>

		<guid isPermaLink="false">http://shanky.org/2007/09/19/speaking-at-ajaxworld/</guid>
		<description><![CDATA[Presenting on RCA (Rich Client Applications) and SJA (Server-side Java platform Applications) integration issues and resolution strategies at AJAXWorld on 26 September, 2007. Details can be accessed at http://www.ajaxworld.com/general/sessiondetail0907.htm?id=148
]]></description>
			<content:encoded><![CDATA[<p>Presenting on RCA (Rich Client Applications) and SJA (Server-side Java platform Applications) integration issues and resolution strategies at AJAXWorld on 26 September, 2007. Details can be accessed at <a href="http://www.ajaxworld.com/general/sessiondetail0907.htm?id=148" title="Making Marriages Work - Session at AJAXWorld" target="_blank">http://www.ajaxworld.com/general/sessiondetail0907.htm?id=148</a></p>
]]></content:encoded>
			<wfw:commentRss>http://shanky.org/2007/09/19/speaking-at-ajaxworld/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
