<?xml version="1.0" encoding="UTF-8"?>
<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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Ankit Singhal Knowledge Base</title>
	<atom:link href="http://kb.asinghal.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://kb.asinghal.com</link>
	<description></description>
	<lastBuildDate>Fri, 18 Dec 2009 04:03:54 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>BlackBerry HTTP Connection Factory w/ inline  support for multiple network type</title>
		<link>http://kb.asinghal.com/18/blackberry-http-connection-factory-w-inline-support-for-multiple-network-type/</link>
		<comments>http://kb.asinghal.com/18/blackberry-http-connection-factory-w-inline-support-for-multiple-network-type/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 04:03:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[BlackBerrry]]></category>
		<category><![CDATA[BlackBerry]]></category>

		<guid isPermaLink="false">http://kb.asinghal.com/?p=46</guid>
		<description><![CDATA[This Api supports various network type and failover and coverage checks on BlackBerry device.
http://www.versatilemonkey.com/HttpConnectionFactory.java
priority order:
public static final int DEFAULT_TRANSPORT_ORDER[] = { TRANSPORT_WIFI, TRANSPORT_BES, TRANSPORT_BIS,
TRANSPORT_DIRECT_TCP, TRANSPORT_WAP2 }
Sample use:

 
 HttpConnectionFactory factory =
  new HttpConnectionFactory( "http://www.versatilemonkey.com/test.txt",
       HttpConnectionFactory.TRANSPORT_WIFI &#124; HttpConnectionFactory.TRANSPORT_BES );
 while( true ) {
    try {
  [...]]]></description>
			<content:encoded><![CDATA[<p>This Api supports various network type and failover and coverage checks on BlackBerry device.</p>
<p>http://www.versatilemonkey.com/HttpConnectionFactory.java</p>
<p>priority order:</p>
<p>public static final int DEFAULT_TRANSPORT_ORDER[] = { TRANSPORT_WIFI, TRANSPORT_BES, TRANSPORT_BIS,<br />
TRANSPORT_DIRECT_TCP, TRANSPORT_WAP2 }</p>
<p>Sample use:
<pre>
 <code>
 HttpConnectionFactory factory =
  new HttpConnectionFactory( "http://www.versatilemonkey.com/test.txt",
       HttpConnectionFactory.TRANSPORT_WIFI | HttpConnectionFactory.TRANSPORT_BES );
 while( true ) {
    try {
       HttpConnection connection = factory.getNextConnection();
       try {
          connection.setRequestMethod( "POST" );
          connection.setRequestProperty( "Content-type",
                                          "application/x-www-form-urlencoded" );
          OutputStream os = connection.openOutputStream( );
          os.write( "foo=bar&#038;var2=val2".getBytes() );
          os.close();
          InputStream is = connection.openInputStream();
          //do something with the input stream
          if( whatever we did worked ) {
             break;
          }
       }
       catch( IOException ) {
          // Log the error or store it for displaying to
          // the end user if no transports succeed
       }
    }
    catch( NoMoreTransportsException e ) {
       //There are no more transports to attempt
       Dialog.alert( "Unable to perform request" );
       //Note you should never attempt network activity on the event thread
       break;
    }
 }
 </code>
 </pre>
<p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d46').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><img src="/wp-content/themes/generic-plus/img/share-it.gif" /></strong></a>
<br />
<div class="d46" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http://kb.asinghal.com/18/blackberry-http-connection-factory-w-inline-support-for-multiple-network-type/&amp;submitHeadline=BlackBerry+HTTP+Connection+Factory+w%2F+inline++support+for+multiple+network+type&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://kb.asinghal.com/18/blackberry-http-connection-factory-w-inline-support-for-multiple-network-type/&amp;title=BlackBerry+HTTP+Connection+Factory+w%2F+inline++support+for+multiple+network+type" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://kb.asinghal.com/18/blackberry-http-connection-factory-w-inline-support-for-multiple-network-type/&amp;title=BlackBerry+HTTP+Connection+Factory+w%2F+inline++support+for+multiple+network+type" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://kb.asinghal.com/18/blackberry-http-connection-factory-w-inline-support-for-multiple-network-type/" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://kb.asinghal.com/18/blackberry-http-connection-factory-w-inline-support-for-multiple-network-type/&amp;title=BlackBerry+HTTP+Connection+Factory+w%2F+inline++support+for+multiple+network+type" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://kb.asinghal.com/18/blackberry-http-connection-factory-w-inline-support-for-multiple-network-type/&amp;bm_description=BlackBerry+HTTP+Connection+Factory+w%2F+inline++support+for+multiple+network+type" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://kb.asinghal.com/18/blackberry-http-connection-factory-w-inline-support-for-multiple-network-type/&amp;T=BlackBerry+HTTP+Connection+Factory+w%2F+inline++support+for+multiple+network+type" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://kb.asinghal.com/18/blackberry-http-connection-factory-w-inline-support-for-multiple-network-type/&amp;title=BlackBerry+HTTP+Connection+Factory+w%2F+inline++support+for+multiple+network+type" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit.php?url=http://kb.asinghal.com/18/blackberry-http-connection-factory-w-inline-support-for-multiple-network-type/&amp;title=BlackBerry+HTTP+Connection+Factory+w%2F+inline++support+for+multiple+network+type" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://kb.asinghal.com/18/blackberry-http-connection-factory-w-inline-support-for-multiple-network-type/" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http://kb.asinghal.com/18/blackberry-http-connection-factory-w-inline-support-for-multiple-network-type/" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+BlackBerry+HTTP+Connection+Factory+w%2F+inline++support+for+multiple+network+type+@+http://kb.asinghal.com/18/blackberry-http-connection-factory-w-inline-support-for-multiple-network-type/" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://kb.asinghal.com/18/blackberry-http-connection-factory-w-inline-support-for-multiple-network-type/&amp;t=BlackBerry+HTTP+Connection+Factory+w%2F+inline++support+for+multiple+network+type" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d46').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d46').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://kb.asinghal.com/18/blackberry-http-connection-factory-w-inline-support-for-multiple-network-type/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JavaScript Bridge to Google Maps API for Flash</title>
		<link>http://kb.asinghal.com/18/javascript-bridge-to-google-maps-api-for-flash/</link>
		<comments>http://kb.asinghal.com/18/javascript-bridge-to-google-maps-api-for-flash/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 03:57:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Google Map]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Java Script]]></category>

		<guid isPermaLink="false">http://kb.asinghal.com/?p=43</guid>
		<description><![CDATA[When you want animated maps or zippier feedback than Google’s JavaScript mapping API can provide, you can use the Flash Maps API. Yes, even Google acknowledges that its popular, full-featured platform can’t do everything. Using the Flash API used to mean you needed to know Flash. Now, you can get the benefit, but still program [...]]]></description>
			<content:encoded><![CDATA[<p>When you want animated maps or zippier feedback than Google’s JavaScript mapping API can provide, you can use the <a href="http://www.programmableweb.com/api/google-maps-flash">Flash Maps API</a>. Yes, even Google acknowledges that its popular, full-featured platform can’t do everything. Using the Flash API used to mean you needed to know Flash. Now, you can get the benefit, but still program in JavaScript.</p>
<p>Web developer Nianwei Liu has <a href="http://googlegeodevelopers.blogspot.com/2009/08/mapbridge-javascript-bridge-to-google.html">released a wrapper API</a> for Flash Maps, called Map Bridge:</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d43').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><img src="/wp-content/themes/generic-plus/img/share-it.gif" /></strong></a>
<br />
<div class="d43" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http://kb.asinghal.com/18/javascript-bridge-to-google-maps-api-for-flash/&amp;submitHeadline=JavaScript+Bridge+to+Google+Maps+API+for+Flash&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://kb.asinghal.com/18/javascript-bridge-to-google-maps-api-for-flash/&amp;title=JavaScript+Bridge+to+Google+Maps+API+for+Flash" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://kb.asinghal.com/18/javascript-bridge-to-google-maps-api-for-flash/&amp;title=JavaScript+Bridge+to+Google+Maps+API+for+Flash" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://kb.asinghal.com/18/javascript-bridge-to-google-maps-api-for-flash/" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://kb.asinghal.com/18/javascript-bridge-to-google-maps-api-for-flash/&amp;title=JavaScript+Bridge+to+Google+Maps+API+for+Flash" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://kb.asinghal.com/18/javascript-bridge-to-google-maps-api-for-flash/&amp;bm_description=JavaScript+Bridge+to+Google+Maps+API+for+Flash" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://kb.asinghal.com/18/javascript-bridge-to-google-maps-api-for-flash/&amp;T=JavaScript+Bridge+to+Google+Maps+API+for+Flash" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://kb.asinghal.com/18/javascript-bridge-to-google-maps-api-for-flash/&amp;title=JavaScript+Bridge+to+Google+Maps+API+for+Flash" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit.php?url=http://kb.asinghal.com/18/javascript-bridge-to-google-maps-api-for-flash/&amp;title=JavaScript+Bridge+to+Google+Maps+API+for+Flash" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://kb.asinghal.com/18/javascript-bridge-to-google-maps-api-for-flash/" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http://kb.asinghal.com/18/javascript-bridge-to-google-maps-api-for-flash/" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+JavaScript+Bridge+to+Google+Maps+API+for+Flash+@+http://kb.asinghal.com/18/javascript-bridge-to-google-maps-api-for-flash/" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://kb.asinghal.com/18/javascript-bridge-to-google-maps-api-for-flash/&amp;t=JavaScript+Bridge+to+Google+Maps+API+for+Flash" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d43').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d43').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://kb.asinghal.com/18/javascript-bridge-to-google-maps-api-for-flash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Issue with Firefox 3.5 and firebug</title>
		<link>http://kb.asinghal.com/31/issue-with-firefox-3-5-and-firebug/</link>
		<comments>http://kb.asinghal.com/31/issue-with-firefox-3-5-and-firebug/#comments</comments>
		<pubDate>Fri, 31 Jul 2009 06:06:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[FireFox]]></category>
		<category><![CDATA[Firebug]]></category>
		<category><![CDATA[Firefox 3.5]]></category>

		<guid isPermaLink="false">http://kb.asinghal.com/31/issue-with-firefox-3-5-and-firebug/</guid>
		<description><![CDATA[If you’re using FF 3.5 to view any website and have firebug enabled,
you may encounter an annoying javascript error:
“onreadystatechange FAILS Error: Permission denied for XXXX to create
wrapper for object of class UnnamedClass Error”
This is a FF3.5/Firebug issue and is not a bug of the website
Unfortunately, there is no real good workaround if you need to [...]]]></description>
			<content:encoded><![CDATA[<p>If you’re using FF 3.5 to view any website and have firebug enabled,<br />
you may encounter an annoying javascript error:</p>
<p>“onreadystatechange FAILS Error: Permission denied for XXXX to create<br />
wrapper for object of class UnnamedClass Error”</p>
<p>This is a FF3.5/Firebug issue and is not a bug of the website<br />
Unfortunately, there is no real good workaround if you need to have<br />
firebug on except that disabling the Net tab may help reduce the<br />
chances of getting the error. But if you don’t have to use firebug,<br />
simply turn it off. </p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d42').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><img src="/wp-content/themes/generic-plus/img/share-it.gif" /></strong></a>
<br />
<div class="d42" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http://kb.asinghal.com/31/issue-with-firefox-3-5-and-firebug/&amp;submitHeadline=Issue+with+Firefox+3.5+and+firebug&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://kb.asinghal.com/31/issue-with-firefox-3-5-and-firebug/&amp;title=Issue+with+Firefox+3.5+and+firebug" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://kb.asinghal.com/31/issue-with-firefox-3-5-and-firebug/&amp;title=Issue+with+Firefox+3.5+and+firebug" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://kb.asinghal.com/31/issue-with-firefox-3-5-and-firebug/" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://kb.asinghal.com/31/issue-with-firefox-3-5-and-firebug/&amp;title=Issue+with+Firefox+3.5+and+firebug" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://kb.asinghal.com/31/issue-with-firefox-3-5-and-firebug/&amp;bm_description=Issue+with+Firefox+3.5+and+firebug" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://kb.asinghal.com/31/issue-with-firefox-3-5-and-firebug/&amp;T=Issue+with+Firefox+3.5+and+firebug" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://kb.asinghal.com/31/issue-with-firefox-3-5-and-firebug/&amp;title=Issue+with+Firefox+3.5+and+firebug" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit.php?url=http://kb.asinghal.com/31/issue-with-firefox-3-5-and-firebug/&amp;title=Issue+with+Firefox+3.5+and+firebug" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://kb.asinghal.com/31/issue-with-firefox-3-5-and-firebug/" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http://kb.asinghal.com/31/issue-with-firefox-3-5-and-firebug/" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Issue+with+Firefox+3.5+and+firebug+@+http://kb.asinghal.com/31/issue-with-firefox-3-5-and-firebug/" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://kb.asinghal.com/31/issue-with-firefox-3-5-and-firebug/&amp;t=Issue+with+Firefox+3.5+and+firebug" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d42').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d42').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://kb.asinghal.com/31/issue-with-firefox-3-5-and-firebug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>System.BadImageFormatException on 64 Bit CPU RTC Api</title>
		<link>http://kb.asinghal.com/09/system-badimageformatexception-on-64-bit-cpu-rtc-api/</link>
		<comments>http://kb.asinghal.com/09/system-badimageformatexception-on-64-bit-cpu-rtc-api/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 10:11:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[RTC]]></category>
		<category><![CDATA[LCS]]></category>

		<guid isPermaLink="false">http://kb.asinghal.com/?p=37</guid>
		<description><![CDATA[If you are using RTC API and and you are installing your bot on 64 BIT CPU, You may get this exception
System.BadImageFormatException: Retrieving the COM class factory for component
with CLSID {7A42EA29-A2B7-40C4-B091-F6F024AA89BE} failed due to the following
error: 800700c1.
This means that you have compiled your code for ANY CPU or 64x cpu and whenever you run your [...]]]></description>
			<content:encoded><![CDATA[<p>If you are using RTC API and and you are installing your bot on 64 BIT CPU, You may get this exception</p>
<pre>System.BadImageFormatException: Retrieving the COM class factory for component
with CLSID {7A42EA29-A2B7-40C4-B091-F6F024AA89BE} failed due to the following
error: 800700c1.</pre>
<p>This means that you have compiled your code for ANY CPU or 64x cpu and whenever you run your code on 64 bit machine then OS will try to run your application as 64 bit. Bot RTC API is 32 Bit CPU based api, so it will not be supported in 64bit cpu environment.</p>
<p>To solve this issue compile your code for x86 machine(i.e. 32 bit cpu). Now install your application on 64 bit machine. You application should run successfully.</p>
<p>Also verify that in Task Manager 32* is appearing ahead your application name. This will confirm that your application is running in 32 bit environment.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d37').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><img src="/wp-content/themes/generic-plus/img/share-it.gif" /></strong></a>
<br />
<div class="d37" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http://kb.asinghal.com/09/system-badimageformatexception-on-64-bit-cpu-rtc-api/&amp;submitHeadline=System.BadImageFormatException+on+64+Bit+CPU+RTC+Api&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://kb.asinghal.com/09/system-badimageformatexception-on-64-bit-cpu-rtc-api/&amp;title=System.BadImageFormatException+on+64+Bit+CPU+RTC+Api" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://kb.asinghal.com/09/system-badimageformatexception-on-64-bit-cpu-rtc-api/&amp;title=System.BadImageFormatException+on+64+Bit+CPU+RTC+Api" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://kb.asinghal.com/09/system-badimageformatexception-on-64-bit-cpu-rtc-api/" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://kb.asinghal.com/09/system-badimageformatexception-on-64-bit-cpu-rtc-api/&amp;title=System.BadImageFormatException+on+64+Bit+CPU+RTC+Api" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://kb.asinghal.com/09/system-badimageformatexception-on-64-bit-cpu-rtc-api/&amp;bm_description=System.BadImageFormatException+on+64+Bit+CPU+RTC+Api" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://kb.asinghal.com/09/system-badimageformatexception-on-64-bit-cpu-rtc-api/&amp;T=System.BadImageFormatException+on+64+Bit+CPU+RTC+Api" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://kb.asinghal.com/09/system-badimageformatexception-on-64-bit-cpu-rtc-api/&amp;title=System.BadImageFormatException+on+64+Bit+CPU+RTC+Api" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit.php?url=http://kb.asinghal.com/09/system-badimageformatexception-on-64-bit-cpu-rtc-api/&amp;title=System.BadImageFormatException+on+64+Bit+CPU+RTC+Api" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://kb.asinghal.com/09/system-badimageformatexception-on-64-bit-cpu-rtc-api/" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http://kb.asinghal.com/09/system-badimageformatexception-on-64-bit-cpu-rtc-api/" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+System.BadImageFormatException+on+64+Bit+CPU+RTC+Api+@+http://kb.asinghal.com/09/system-badimageformatexception-on-64-bit-cpu-rtc-api/" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://kb.asinghal.com/09/system-badimageformatexception-on-64-bit-cpu-rtc-api/&amp;t=System.BadImageFormatException+on+64+Bit+CPU+RTC+Api" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d37').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d37').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://kb.asinghal.com/09/system-badimageformatexception-on-64-bit-cpu-rtc-api/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Wave</title>
		<link>http://kb.asinghal.com/07/google-wave/</link>
		<comments>http://kb.asinghal.com/07/google-wave/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 17:10:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://kb.asinghal.com/?p=33</guid>
		<description><![CDATA[Google Wave is a new tool for communication and collaboration on the web, coming later this year. Watch the demo video below, sign up for updates and learn more about how to develop with Google Wave.

Official Blog: http://googleblog.blogspot.com/2009/05/went-walkabout-brought-back-google-wave.html






















Hide Sites



$$('div.d33').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); ]]></description>
			<content:encoded><![CDATA[<p>Google Wave is a new tool for communication and collaboration on the web, coming later this year. Watch the demo video below, sign up for updates and learn more about how to develop with Google Wave.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="265" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/v_UyVmITiYQ&amp;hl=en&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="265" src="http://www.youtube.com/v/v_UyVmITiYQ&amp;hl=en&amp;fs=1&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Official Blog:<a title="Google Wave Official Blog" href="http://googleblog.blogspot.com/2009/05/went-walkabout-brought-back-google-wave.html" target="_blank"> http://googleblog.blogspot.com/2009/05/went-walkabout-brought-back-google-wave.html</a></p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d33').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><img src="/wp-content/themes/generic-plus/img/share-it.gif" /></strong></a>
<br />
<div class="d33" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http://kb.asinghal.com/07/google-wave/&amp;submitHeadline=Google+Wave&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://kb.asinghal.com/07/google-wave/&amp;title=Google+Wave" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://kb.asinghal.com/07/google-wave/&amp;title=Google+Wave" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://kb.asinghal.com/07/google-wave/" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://kb.asinghal.com/07/google-wave/&amp;title=Google+Wave" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://kb.asinghal.com/07/google-wave/&amp;bm_description=Google+Wave" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://kb.asinghal.com/07/google-wave/&amp;T=Google+Wave" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://kb.asinghal.com/07/google-wave/&amp;title=Google+Wave" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit.php?url=http://kb.asinghal.com/07/google-wave/&amp;title=Google+Wave" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://kb.asinghal.com/07/google-wave/" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http://kb.asinghal.com/07/google-wave/" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Google+Wave+@+http://kb.asinghal.com/07/google-wave/" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://kb.asinghal.com/07/google-wave/&amp;t=Google+Wave" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d33').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d33').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://kb.asinghal.com/07/google-wave/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Page Speed for FireFox</title>
		<link>http://kb.asinghal.com/06/google-page-speed-for-firefox/</link>
		<comments>http://kb.asinghal.com/06/google-page-speed-for-firefox/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 05:08:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[FireFox]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Addon]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://kb.asinghal.com/?p=27</guid>
		<description><![CDATA[Web page load time is an important factor in we design and development, not only web developes but bloggers and site owners need to optimize their web pages so they load faster or else retaining users will be difficult. There are many tools which analyze web pages and show you ways to improve load times. [...]]]></description>
			<content:encoded><![CDATA[<p>Web page load time is an important factor in we design and development, not only web developes but bloggers and site owners need to optimize their web pages so they load faster or else retaining users will be difficult. There are many tools which analyze web pages and show you ways to improve load times. <a href="https://addons.mozilla.org/en-US/firefox/addon/1843">Firebug for Firefox</a> is a useful addon for analyzing web page css, js and other stuff.</p>
<p><span id="more-2530"> </span></p>
<p>Google has released a <a href="http://code.google.com/p/page-speed/">Firefox addon called Page Speed</a> today that is integrated with Firebug, that means you need Firebug for Firefox and of course Firefox before you can install this addon. The Page speed addon when installed adds tabs to Firebug console.</p>
<p>You can analyze web page performance using this addon, click on “Analyze Performance” button in the page speed tab in firebug. It gives optimization tips upon examining the web pages. The tips ranges from highly recommended, moderate to least. These tips will provide short description and clicking on the link will take you to page speed documentation where you can read more on how to optimize your site.</p>
<p>The Show Resources link will show you the objects loaded in the web page with the type of the object, file size and transfer size. You might find some scripts and images that are too heavy here, better to get rid of them or minimize them.</p>
<p>Yahoo long has a similar addon called <a href="http://developer.yahoo.com/yslow/">YSlow for Firebug</a> that analyzes web pages and suggests improvements for performance of web pages.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="295" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/a-9pCfyYPdQ&amp;hl=en&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="295" src="http://www.youtube.com/v/a-9pCfyYPdQ&amp;hl=en&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p style="text-align: center;"><a title="Install Google Page Speed" href="http://code.google.com/speed/page-speed/download.html" target="_blank"><strong>Install</strong></a></p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d27').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><img src="/wp-content/themes/generic-plus/img/share-it.gif" /></strong></a>
<br />
<div class="d27" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http://kb.asinghal.com/06/google-page-speed-for-firefox/&amp;submitHeadline=Google+Page+Speed+for+FireFox&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://kb.asinghal.com/06/google-page-speed-for-firefox/&amp;title=Google+Page+Speed+for+FireFox" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://kb.asinghal.com/06/google-page-speed-for-firefox/&amp;title=Google+Page+Speed+for+FireFox" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://kb.asinghal.com/06/google-page-speed-for-firefox/" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://kb.asinghal.com/06/google-page-speed-for-firefox/&amp;title=Google+Page+Speed+for+FireFox" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://kb.asinghal.com/06/google-page-speed-for-firefox/&amp;bm_description=Google+Page+Speed+for+FireFox" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://kb.asinghal.com/06/google-page-speed-for-firefox/&amp;T=Google+Page+Speed+for+FireFox" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://kb.asinghal.com/06/google-page-speed-for-firefox/&amp;title=Google+Page+Speed+for+FireFox" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit.php?url=http://kb.asinghal.com/06/google-page-speed-for-firefox/&amp;title=Google+Page+Speed+for+FireFox" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://kb.asinghal.com/06/google-page-speed-for-firefox/" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http://kb.asinghal.com/06/google-page-speed-for-firefox/" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Google+Page+Speed+for+FireFox+@+http://kb.asinghal.com/06/google-page-speed-for-firefox/" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://kb.asinghal.com/06/google-page-speed-for-firefox/&amp;t=Google+Page+Speed+for+FireFox" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d27').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d27').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://kb.asinghal.com/06/google-page-speed-for-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mailto: Hyperlink with Subject &amp; Message</title>
		<link>http://kb.asinghal.com/03/mailto-hyperlink-with-subject-message/</link>
		<comments>http://kb.asinghal.com/03/mailto-hyperlink-with-subject-message/#comments</comments>
		<pubDate>Fri, 03 Jul 2009 10:57:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://kb.asinghal.com/?p=15</guid>
		<description><![CDATA[You can use following html code to generate mailto: link with pre-filled Subject and Mail Message:
&#60;a href="mailto:someone@someone.com?subject=MessageSubject&#38;body=MessageBudy"&#62;
Mail To Example&#60;a&#62;
This anchor tag will open your default e-mail client with to, subject and message body.






















Hide Sites



$$('div.d15').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); ]]></description>
			<content:encoded><![CDATA[<p>You can use following html code to generate mailto: link with pre-filled <strong>Subject </strong>and <strong>Mail Message</strong>:</p>
<pre><span style="color: #003300;">&lt;a href="mailto:someone@someone.com?subject=MessageSubject&amp;body=MessageBudy"&gt;
Mail To Example&lt;a&gt;</span></pre>
<p>This anchor tag will open your default e-mail client with to, subject and message body.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d15').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><img src="/wp-content/themes/generic-plus/img/share-it.gif" /></strong></a>
<br />
<div class="d15" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http://kb.asinghal.com/03/mailto-hyperlink-with-subject-message/&amp;submitHeadline=mailto%3A+Hyperlink+with+Subject+%26%23038%3B+Message&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://kb.asinghal.com/03/mailto-hyperlink-with-subject-message/&amp;title=mailto%3A+Hyperlink+with+Subject+%26%23038%3B+Message" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://kb.asinghal.com/03/mailto-hyperlink-with-subject-message/&amp;title=mailto%3A+Hyperlink+with+Subject+%26%23038%3B+Message" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://kb.asinghal.com/03/mailto-hyperlink-with-subject-message/" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://kb.asinghal.com/03/mailto-hyperlink-with-subject-message/&amp;title=mailto%3A+Hyperlink+with+Subject+%26%23038%3B+Message" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://kb.asinghal.com/03/mailto-hyperlink-with-subject-message/&amp;bm_description=mailto%3A+Hyperlink+with+Subject+%26%23038%3B+Message" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://kb.asinghal.com/03/mailto-hyperlink-with-subject-message/&amp;T=mailto%3A+Hyperlink+with+Subject+%26%23038%3B+Message" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://kb.asinghal.com/03/mailto-hyperlink-with-subject-message/&amp;title=mailto%3A+Hyperlink+with+Subject+%26%23038%3B+Message" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit.php?url=http://kb.asinghal.com/03/mailto-hyperlink-with-subject-message/&amp;title=mailto%3A+Hyperlink+with+Subject+%26%23038%3B+Message" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://kb.asinghal.com/03/mailto-hyperlink-with-subject-message/" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http://kb.asinghal.com/03/mailto-hyperlink-with-subject-message/" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+mailto%3A+Hyperlink+with+Subject+%26%23038%3B+Message+@+http://kb.asinghal.com/03/mailto-hyperlink-with-subject-message/" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://kb.asinghal.com/03/mailto-hyperlink-with-subject-message/&amp;t=mailto%3A+Hyperlink+with+Subject+%26%23038%3B+Message" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d15').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d15').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://kb.asinghal.com/03/mailto-hyperlink-with-subject-message/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VB Script to Create Office Communication Server Enabled Users in Active Directory</title>
		<link>http://kb.asinghal.com/03/vb-script-to-create-office-communication-server-enabled-users-in-active-directory/</link>
		<comments>http://kb.asinghal.com/03/vb-script-to-create-office-communication-server-enabled-users-in-active-directory/#comments</comments>
		<pubDate>Fri, 03 Jul 2009 10:54:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[OCS 2007]]></category>
		<category><![CDATA[VB Script]]></category>

		<guid isPermaLink="false">http://kb.asinghal.com/?p=13</guid>
		<description><![CDATA[Following is a VB Script to create Office Communication Server Enabled users in Active Directory. 

Option Explicit
Dim strUser, strPassword, strName, strDomain, strADRoot
Dim strUCPool, strDC, intStart, intEnd
Dim objRootLDAP, objContainer, objNewUser

strUser = "ocsuser"
strName = "OCS User"
strDomain = "asinghal.com"
strPassword = "pass2004"
strADRoot = "LDAP://cn=Users,DC=asinghal,dc=com"
strUCPool = "&#60;OCS-Pool-Name&#62;"
strDC = "DC=asinghal,DC=com"
intStart = 53
intEnd = 150

const ADS_UF_DONT_EXPIRE_PASSWD = &#38;H10000

' Bind to Active Directory, [...]]]></description>
			<content:encoded><![CDATA[<p><span style="color: #000000;">Following is a VB Script to create Office Communication Server Enabled users in Active Directory. </span></p>
<pre><span style="color: #333333;">
Option Explicit
Dim strUser, strPassword, strName, strDomain, strADRoot
Dim strUCPool, strDC, intStart, intEnd
Dim objRootLDAP, objContainer, objNewUser

strUser = "ocsuser"
strName = "OCS User"
strDomain = "asinghal.com"
strPassword = "pass2004"
strADRoot = "LDAP://cn=Users,DC=asinghal,dc=com"
strUCPool = "&lt;OCS-Pool-Name&gt;"
strDC = "DC=asinghal,DC=com"
intStart = 53
intEnd = 150

const ADS_UF_DONT_EXPIRE_PASSWD = &amp;H10000

' Bind to Active Directory, Users container.
Set objRootLDAP = GetObject("LDAP://rootDSE")
Set objContainer = GetObject(strADRoot)

' Build the actual User.
Dim count
For count = intStart To intEnd
 Set objNewUser = objContainer.Create("User", "cn=" &amp; strUser &amp; count)
 objNewUser.Put "sAMAccountName", strUser &amp; count
 objNewUser.Put "givenName", strName &amp; count

 'Enable following parameter if you want to enable this user for Unified Communication
 objNewUser.Put "msRTCSIP-InternetAccessEnabled", TRUE
 objNewUser.Put "msRTCSIP-ArchivingEnabled", 0
 objNewUser.Put "msRTCSIP-FederationEnabled", FALSE
 objNewUser.Put "msRTCSIP-OptionFlags", 256
 objNewUser.Put "msRTCSIP-PrimaryHomeServer", "CN=LC Services,CN=Microsoft,CN=" &amp;
            strUCPool &amp; ",CN=Pools,CN=RTC Service,CN=Microsoft,CN=System," &amp; strDC
 objNewUser.Put "msRTCSIP-PrimaryUserAddress", "sip:" &amp; strName &amp; count
            &amp; "@" &amp; strDomain
 objNewUser.Put "msRTCSIP-UserEnabled", TRUE
 'UC Properties Ends

 objNewUser.SetInfo
 objNewUser.SetPassword strPassword
 objNewUser.Put "userAccountControl", 512 XOR ADS_UF_DONT_EXPIRE_PASSWD
 objNewUser.SetInfo
Next
WScript.Quit

' End of free sample Create Users VBScript.</span></pre>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d13').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><img src="/wp-content/themes/generic-plus/img/share-it.gif" /></strong></a>
<br />
<div class="d13" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http://kb.asinghal.com/03/vb-script-to-create-office-communication-server-enabled-users-in-active-directory/&amp;submitHeadline=VB+Script+to+Create+Office+Communication+Server+Enabled+Users+in+Active+Directory&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://kb.asinghal.com/03/vb-script-to-create-office-communication-server-enabled-users-in-active-directory/&amp;title=VB+Script+to+Create+Office+Communication+Server+Enabled+Users+in+Active+Directory" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://kb.asinghal.com/03/vb-script-to-create-office-communication-server-enabled-users-in-active-directory/&amp;title=VB+Script+to+Create+Office+Communication+Server+Enabled+Users+in+Active+Directory" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://kb.asinghal.com/03/vb-script-to-create-office-communication-server-enabled-users-in-active-directory/" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://kb.asinghal.com/03/vb-script-to-create-office-communication-server-enabled-users-in-active-directory/&amp;title=VB+Script+to+Create+Office+Communication+Server+Enabled+Users+in+Active+Directory" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://kb.asinghal.com/03/vb-script-to-create-office-communication-server-enabled-users-in-active-directory/&amp;bm_description=VB+Script+to+Create+Office+Communication+Server+Enabled+Users+in+Active+Directory" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://kb.asinghal.com/03/vb-script-to-create-office-communication-server-enabled-users-in-active-directory/&amp;T=VB+Script+to+Create+Office+Communication+Server+Enabled+Users+in+Active+Directory" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://kb.asinghal.com/03/vb-script-to-create-office-communication-server-enabled-users-in-active-directory/&amp;title=VB+Script+to+Create+Office+Communication+Server+Enabled+Users+in+Active+Directory" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit.php?url=http://kb.asinghal.com/03/vb-script-to-create-office-communication-server-enabled-users-in-active-directory/&amp;title=VB+Script+to+Create+Office+Communication+Server+Enabled+Users+in+Active+Directory" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://kb.asinghal.com/03/vb-script-to-create-office-communication-server-enabled-users-in-active-directory/" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http://kb.asinghal.com/03/vb-script-to-create-office-communication-server-enabled-users-in-active-directory/" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+VB+Script+to+Create+Office+Communication+Server+Enabled+Users+in+Active+Directory+@+http://kb.asinghal.com/03/vb-script-to-create-office-communication-server-enabled-users-in-active-directory/" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://kb.asinghal.com/03/vb-script-to-create-office-communication-server-enabled-users-in-active-directory/&amp;t=VB+Script+to+Create+Office+Communication+Server+Enabled+Users+in+Active+Directory" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d13').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d13').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://kb.asinghal.com/03/vb-script-to-create-office-communication-server-enabled-users-in-active-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating virtual host for SSL/HTTPS port in IIS6</title>
		<link>http://kb.asinghal.com/03/creating-virtual-host-for-sslhttps-port-in-iis6/</link>
		<comments>http://kb.asinghal.com/03/creating-virtual-host-for-sslhttps-port-in-iis6/#comments</comments>
		<pubDate>Fri, 03 Jul 2009 10:47:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[IIS6]]></category>
		<category><![CDATA[Virtual Host]]></category>

		<guid isPermaLink="false">http://kb.asinghal.com/?p=9</guid>
		<description><![CDATA[You can not create the virtual host for SSL port in IIS.  Its a UI bug. But you can achieve the same thing using the command line by using the following steps:
1. Create two websites in IIS and configure HTTPS on both of the websites.
2. At this point you will not be able to start [...]]]></description>
			<content:encoded><![CDATA[<p>You can not create the virtual host for SSL port in IIS.  Its a UI bug. But you can achieve the same thing using the command line by using the following steps:</p>
<p>1. Create two websites in IIS and configure HTTPS on both of the websites.<br />
2. At this point you will not be able to start both the websites at the same time, because https is configured on 443 port in both the websites.<br />
3. Stop both the website if running.<br />
4. Go to commands line and cd to C:\Inetpub\AdminScripts folder.<br />
5. Now you have to figure out the website identity of you want to change the host. Type following command to command line. You may want to run this command two times, because first time it may try to set the VB script as default script</p>
<pre><span style="color: #008000;">C:\Inetpub\AdminScripts&gt;iisweb /query
Connecting to server ...Done.
Site Name (Metabase Path)                     Status  IP              Port  Host

==============================================================================
Default Web Site (W3SVC/1)                    STOPPED ALL             80    N/A
Communicator Web Access (W3SVC/175074822)     STOPPED 127.0.0.1       81    N/A
VMware Management Interface 1.0.4 (W3SVC/2)   STARTED ALL             8222  N/A
reliance (W3SVC/1386234876)                   STARTED ALL             82    N/A</span></pre>
<p><span style="font-weight: bold;">Note: you should get all the sites registered in your IIS server along with their site identities.</span><br />
6. Modify the virtual host of SSL port using following command</p>
<pre><span style="color: #008000;">C:\Inetpub\AdminScripts&gt;cscript.exe adsutil.vbs set  W3SVC/&lt;site identifier&gt;/SecureBindings ":443:&lt;host header&gt;"
Microsoft (R) Windows Script Host Version 5.6
Copyright (C) Microsoft Corporation 1996-2001. All rights reserved.

SecureBindings                  : (LIST) ":443:&lt;host header&gt;"</span></pre>
<p>7. Make sure host name is properly configured in your DNS server.<br />
8. Start both the websites.<br />
9. You should be able to access both the application using different host on https communication.</p>
<p><span style="font-weight: bold;">More: </span><br />
<a href="http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/e5bc9d3c-0043-43c9-a5cc-ac390d74849b.mspx?mfr=true" target="_blank">http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/e5bc9d3c-0043-43c9-a5cc-ac390d74849b.mspx?mfr=true</a><br />
<a href="http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/8d9f2a8f-cd23-448c-b2c7-f4e87b9e2d2c.mspx?mfr=true" target="_blank">http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/8d9f2a8f-cd23-448c-b2c7-f4e87b9e2d2c.mspx?mfr=true</a></p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d9').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><img src="/wp-content/themes/generic-plus/img/share-it.gif" /></strong></a>
<br />
<div class="d9" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http://kb.asinghal.com/03/creating-virtual-host-for-sslhttps-port-in-iis6/&amp;submitHeadline=Creating+virtual+host+for+SSL%2FHTTPS+port+in+IIS6&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://kb.asinghal.com/03/creating-virtual-host-for-sslhttps-port-in-iis6/&amp;title=Creating+virtual+host+for+SSL%2FHTTPS+port+in+IIS6" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://kb.asinghal.com/03/creating-virtual-host-for-sslhttps-port-in-iis6/&amp;title=Creating+virtual+host+for+SSL%2FHTTPS+port+in+IIS6" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://kb.asinghal.com/03/creating-virtual-host-for-sslhttps-port-in-iis6/" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://kb.asinghal.com/03/creating-virtual-host-for-sslhttps-port-in-iis6/&amp;title=Creating+virtual+host+for+SSL%2FHTTPS+port+in+IIS6" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://kb.asinghal.com/03/creating-virtual-host-for-sslhttps-port-in-iis6/&amp;bm_description=Creating+virtual+host+for+SSL%2FHTTPS+port+in+IIS6" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://kb.asinghal.com/03/creating-virtual-host-for-sslhttps-port-in-iis6/&amp;T=Creating+virtual+host+for+SSL%2FHTTPS+port+in+IIS6" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://kb.asinghal.com/03/creating-virtual-host-for-sslhttps-port-in-iis6/&amp;title=Creating+virtual+host+for+SSL%2FHTTPS+port+in+IIS6" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit.php?url=http://kb.asinghal.com/03/creating-virtual-host-for-sslhttps-port-in-iis6/&amp;title=Creating+virtual+host+for+SSL%2FHTTPS+port+in+IIS6" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://kb.asinghal.com/03/creating-virtual-host-for-sslhttps-port-in-iis6/" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http://kb.asinghal.com/03/creating-virtual-host-for-sslhttps-port-in-iis6/" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Creating+virtual+host+for+SSL%2FHTTPS+port+in+IIS6+@+http://kb.asinghal.com/03/creating-virtual-host-for-sslhttps-port-in-iis6/" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://kb.asinghal.com/03/creating-virtual-host-for-sslhttps-port-in-iis6/&amp;t=Creating+virtual+host+for+SSL%2FHTTPS+port+in+IIS6" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d9').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d9').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://kb.asinghal.com/03/creating-virtual-host-for-sslhttps-port-in-iis6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE 8 compatibility Issue</title>
		<link>http://kb.asinghal.com/03/ie-8-compatibility-issue/</link>
		<comments>http://kb.asinghal.com/03/ie-8-compatibility-issue/#comments</comments>
		<pubDate>Fri, 03 Jul 2009 10:42:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[IE8]]></category>

		<guid isPermaLink="false">http://kb.asinghal.com/7</guid>
		<description><![CDATA[Most of the joomla templates are not compatible with Internet Explorer 8. To solve then issue, edit template html and add following line in HEAD tag.
&#60;meta http-equiv=&#8221;X-UA-Compatible&#8221; content=&#8221;IE=EmulateIE7&#8243;/&#62;
It will solve this issue.






















Hide Sites



$$('div.d7').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); ]]></description>
			<content:encoded><![CDATA[<p>Most of the joomla templates are not compatible with Internet Explorer 8. To solve then issue, edit template html and add following line in HEAD tag.</p>
<p>&lt;meta http-equiv=&#8221;X-UA-Compatible&#8221; content=&#8221;IE=EmulateIE7&#8243;/&gt;</p>
<p>It will solve this issue.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d7').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><img src="/wp-content/themes/generic-plus/img/share-it.gif" /></strong></a>
<br />
<div class="d7" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http://kb.asinghal.com/03/ie-8-compatibility-issue/&amp;submitHeadline=IE+8+compatibility+Issue&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://kb.asinghal.com/03/ie-8-compatibility-issue/&amp;title=IE+8+compatibility+Issue" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://kb.asinghal.com/03/ie-8-compatibility-issue/&amp;title=IE+8+compatibility+Issue" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://kb.asinghal.com/03/ie-8-compatibility-issue/" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://kb.asinghal.com/03/ie-8-compatibility-issue/&amp;title=IE+8+compatibility+Issue" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://kb.asinghal.com/03/ie-8-compatibility-issue/&amp;bm_description=IE+8+compatibility+Issue" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://kb.asinghal.com/03/ie-8-compatibility-issue/&amp;T=IE+8+compatibility+Issue" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://kb.asinghal.com/03/ie-8-compatibility-issue/&amp;title=IE+8+compatibility+Issue" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit.php?url=http://kb.asinghal.com/03/ie-8-compatibility-issue/&amp;title=IE+8+compatibility+Issue" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://kb.asinghal.com/03/ie-8-compatibility-issue/" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http://kb.asinghal.com/03/ie-8-compatibility-issue/" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+IE+8+compatibility+Issue+@+http://kb.asinghal.com/03/ie-8-compatibility-issue/" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://kb.asinghal.com/03/ie-8-compatibility-issue/&amp;t=IE+8+compatibility+Issue" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://kb.asinghal.com/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d7').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d7').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://kb.asinghal.com/03/ie-8-compatibility-issue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

