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

<channel>
	<title>Javazing.com: Blog on internet, programming, software, Java and many other things</title>
	<link>http://javazing.com</link>
	<description>Javazing.com</description>
	<pubDate>Thu, 07 Jan 2010 01:17:54 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.1</generator>
	<language>en</language>
			<item>
		<title>sleep() function in JavaScript</title>
		<link>http://javazing.com/2010/01/06/sleep-function-in-javascript/</link>
		<comments>http://javazing.com/2010/01/06/sleep-function-in-javascript/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 01:17:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://javazing.com/2010/01/06/sleep-function-in-javascript/</guid>
		<description><![CDATA[JavaScript doesn't have a handy sleep() or wait() or delay() function to pause the execution for a few seconds, so we can use setTimeout() function to emulate such behaviour. It's not straightforward and may require you to refactor the workflow, but it's delaying the execution and is really simple:
PLAIN TEXT
JAVASCRIPT:




setTimeout&#40;start, 1000&#41;;


&#160; &#160; var i = [...]]]></description>
			<content:encoded><![CDATA[<p>JavaScript doesn't have a handy sleep() or wait() or delay() function to pause the execution for a few seconds, so we can use <strong>setTimeout()</strong> function to emulate such behaviour. It's not straightforward and may require you to refactor the workflow, but it's delaying the execution and is really simple:</p>
<div class="igBar"><p><span id="ljavascript-2"><a href="#" onclick="javascript:showCodeTxt('javascript-2'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><p><span class="langName">JAVASCRIPT:</span>
<div id="javascript-2">
<div class="javascript">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:IG_LINE_COLOUR_1;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">setTimeout<span style="color: #66cc66;">&#40;</span>start, <span style="color: #CC0000;color:#800000;">1000</span><span style="color: #66cc66;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:IG_LINE_COLOUR_2;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #003366; font-weight: bold;">var</span> i = <span style="color: #CC0000;color:#800000;">0</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:IG_LINE_COLOUR_1;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; </div>
</li>
<li style="font-weight: bold;color:IG_LINE_COLOUR_2;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #003366; font-weight: bold;">function</span> start<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:IG_LINE_COLOUR_1;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; console.<span style="color: #006600;">log</span><span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">'i am here '</span> + i<span style="color: #66cc66;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:IG_LINE_COLOUR_2;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; i++;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:IG_LINE_COLOUR_1;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; setTimeout<span style="color: #66cc66;">&#40;</span>start, <span style="color: #CC0000;color:#800000;">1000</span><span style="color: #66cc66;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:IG_LINE_COLOUR_2;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://javazing.com/2010/01/06/sleep-function-in-javascript/feed/</wfw:commentRss>
		</item>
		<item>
		<title>JTidy and UTF-8 (international characters)</title>
		<link>http://javazing.com/2009/12/15/jtidy-and-utf-8-international-characters/</link>
		<comments>http://javazing.com/2009/12/15/jtidy-and-utf-8-international-characters/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 00:55:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://javazing.com/2009/12/15/jtidy-and-utf-8-international-characters/</guid>
		<description><![CDATA[To make JTidy work correctly with UTF-8 strings and process international characters in a proper way, use the following code:
PLAIN TEXT
JAVA:




Document doc = Tidy.createEmptyDocument&#40;&#41;;


&#160; &#160; &#160; &#160; try &#123;


&#160; &#160; &#160; &#160; &#160; &#160; doc = tidy.parseDOM&#40;new InputStreamReader&#40;IOUtils.toInputStream&#40;html&#41;, "UTF-8"&#41;, new NullWriter&#40;&#41;&#41;;


&#160; &#160; &#160; &#160; &#125; catch &#40;UnsupportedEncodingException e&#41; &#123;


&#160; &#160; &#160; &#160; &#160; &#160; log.error&#40;e&#41;;


&#160; [...]]]></description>
			<content:encoded><![CDATA[<p>To make JTidy work correctly with UTF-8 strings and process international characters in a proper way, use the following code:</p>
<div class="igBar"><p><span id="ljava-4"><a href="#" onclick="javascript:showCodeTxt('java-4'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><p><span class="langName">JAVA:</span>
<div id="java-4">
<div class="java">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:IG_LINE_COLOUR_1;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><a href="http://www.google.com/search?q=allinurl%3ADocument+java.sun.com&amp;bntl=1"><span style="color: #820659; font-weight: bold;">Document</span></a> doc = Tidy.<span style="color: #060606;">createEmptyDocument</span><span style="color: #060606;">&#40;</span><span style="color: #060606;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:IG_LINE_COLOUR_2;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #820659; font-weight: bold;">try</span> <span style="color: #060606;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:IG_LINE_COLOUR_1;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; doc = tidy.<span style="color: #060606;">parseDOM</span><span style="color: #060606;">&#40;</span><span style="color: #820659; font-weight: bold;">new</span> <a href="http://www.google.com/search?q=allinurl%3AInputStreamReader+java.sun.com&amp;bntl=1"><span style="color: #820659; font-weight: bold;">InputStreamReader</span></a><span style="color: #060606;">&#40;</span>IOUtils.<span style="color: #060606;">toInputStream</span><span style="color: #060606;">&#40;</span>html<span style="color: #060606;">&#41;</span>, <span style="color: #57A100;">"UTF-8"</span><span style="color: #060606;">&#41;</span>, <span style="color: #820659; font-weight: bold;">new</span> NullWriter<span style="color: #060606;">&#40;</span><span style="color: #060606;">&#41;</span><span style="color: #060606;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:IG_LINE_COLOUR_2;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #060606;">&#125;</span> <span style="color: #820659; font-weight: bold;">catch</span> <span style="color: #060606;">&#40;</span><a href="http://www.google.com/search?q=allinurl%3AUnsupportedEncodingException+java.sun.com&amp;bntl=1"><span style="color: #820659; font-weight: bold;">UnsupportedEncodingException</span></a> e<span style="color: #060606;">&#41;</span> <span style="color: #060606;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:IG_LINE_COLOUR_1;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; log.<span style="color: #060606;">error</span><span style="color: #060606;">&#40;</span>e<span style="color: #060606;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:IG_LINE_COLOUR_2;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #060606;">&#125;</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://javazing.com/2009/12/15/jtidy-and-utf-8-international-characters/feed/</wfw:commentRss>
		</item>
		<item>
		<title>iPhone fring calls work only for WiFi</title>
		<link>http://javazing.com/2009/11/29/iphone-fring-calls-work-only-for-wifi/</link>
		<comments>http://javazing.com/2009/11/29/iphone-fring-calls-work-only-for-wifi/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 04:10:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Mobile world]]></category>

		<guid isPermaLink="false">http://javazing.com/2009/11/29/iphone-fring-calls-work-only-for-wifi/</guid>
		<description><![CDATA[What a pity! I was really disappointed today - it appears you can't make fring calls (SkypeOut or SIP calls) while you are not using an available WiFi connection on iPhone. After my good old Nokia E71 it looks really weird. We got a new 32 gig iPhone 3GS for my girlfriend and I was [...]]]></description>
			<content:encoded><![CDATA[<p>What a pity! I was really disappointed today - it appears you can't make fring calls (SkypeOut or SIP calls) while you are not using an available WiFi connection on iPhone. After my good old Nokia E71 it looks really weird. We got a new 32 gig iPhone 3GS for my girlfriend and I was thinking about getting the same toy when my current plan is over. But that fact turns me away, sorry apple <img src='http://javazing.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://javazing.com/2009/11/29/iphone-fring-calls-work-only-for-wifi/feed/</wfw:commentRss>
		</item>
		<item>
		<title>PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target</title>
		<link>http://javazing.com/2009/11/24/pkix-path-building-failed-sunsecurityprovidercertpathsuncertpathbuilderexception-unable-to-find-valid-certification-path-to-requested-target/</link>
		<comments>http://javazing.com/2009/11/24/pkix-path-building-failed-sunsecurityprovidercertpathsuncertpathbuilderexception-unable-to-find-valid-certification-path-to-requested-target/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 23:03:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[General]]></category>

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

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

		<guid isPermaLink="false">http://javazing.com/2009/11/24/pkix-path-building-failed-sunsecurityprovidercertpathsuncertpathbuilderexception-unable-to-find-valid-certification-path-to-requested-target/</guid>
		<description><![CDATA[If you are getting this exception from your Java program using HTTPClient library, that means the site you are trying to connect to has a test/self-signed or invalid certificate. The easiest way to workaround this problem is to grab InsecureSSLProtocolSocketFactory and InsecureTrustManager from HTMLUnit project and before making a request use this code:
PLAIN TEXT
JAVA:




final ProtocolSocketFactory [...]]]></description>
			<content:encoded><![CDATA[<p>If you are getting this exception from your Java program using HTTPClient library, that means the site you are trying to connect to has a test/self-signed or invalid certificate. The easiest way to workaround this problem is to grab <strong>InsecureSSLProtocolSocketFactory </strong>and <strong>InsecureTrustManager </strong>from <a href="http://htmlunit.sourceforge.net">HTMLUnit project</a> and before making a request use this code:</p>
<div class="igBar"><p><span id="ljava-6"><a href="#" onclick="javascript:showCodeTxt('java-6'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><p><span class="langName">JAVA:</span>
<div id="java-6">
<div class="java">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:IG_LINE_COLOUR_1;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #820659; font-weight: bold;">final</span> ProtocolSocketFactory factory = <span style="color: #820659; font-weight: bold;">new</span> InsecureSSLProtocolSocketFactory<span style="color: #060606;">&#40;</span><span style="color: #060606;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:IG_LINE_COLOUR_2;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #820659; font-weight: bold;">final</span> Protocol https = <span style="color: #820659; font-weight: bold;">new</span> Protocol<span style="color: #060606;">&#40;</span><span style="color: #57A100;">"https"</span>, factory, <span style="color: #cc66cc;color:#800000;">443</span><span style="color: #060606;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:IG_LINE_COLOUR_1;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">Protocol.<span style="color: #060606;">registerProtocol</span><span style="color: #060606;">&#40;</span><span style="color: #57A100;">"https"</span>, https<span style="color: #060606;">&#41;</span>; </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://javazing.com/2009/11/24/pkix-path-building-failed-sunsecurityprovidercertpathsuncertpathbuilderexception-unable-to-find-valid-certification-path-to-requested-target/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Skype doesn&#8217;t want my money</title>
		<link>http://javazing.com/2009/11/18/skype-doesnt-want-my-money/</link>
		<comments>http://javazing.com/2009/11/18/skype-doesnt-want-my-money/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 00:43:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://javazing.com/2009/11/18/skype-doesnt-want-my-money/</guid>
		<description><![CDATA[I used skype-out extensively last month. I used to pay with my Visa credit card all the time and had no problems. Then Skype refused to process it saying I paid too much or something like that. I switched to PayPal. After a few hundred bucks it said I can't use PayPal anymore. The other [...]]]></description>
			<content:encoded><![CDATA[<p>I used skype-out extensively last month. I used to pay with my Visa credit card all the time and had no problems. Then Skype refused to process it saying I paid too much or something like that. I switched to PayPal. After a few hundred bucks it said I can't use PayPal anymore. The other means of payment are unknown to me and I am just lazy to investigate and get into another crazy payment systems. I switched to <a href="http://12voip.com/">12Voip</a> for now. Looks good, also works from Fring client via SIP thingie.</p>
]]></content:encoded>
			<wfw:commentRss>http://javazing.com/2009/11/18/skype-doesnt-want-my-money/feed/</wfw:commentRss>
		</item>
		<item>
		<title>New Skype Client Sucks</title>
		<link>http://javazing.com/2009/06/01/new-skype-client-sucks/</link>
		<comments>http://javazing.com/2009/06/01/new-skype-client-sucks/#comments</comments>
		<pubDate>Mon, 01 Jun 2009 08:53:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://javazing.com/2009/06/01/new-skype-client-sucks/</guid>
		<description><![CDATA[What are those yellow dots that don't let scroll the chat window? Such a pain. And in general, the client app is getting worse. I wouldn't complain, but I am in fact paying 20-30 bucks per month for skype-out thingie, so I guess I have a moral right to complain  Need to get an [...]]]></description>
			<content:encoded><![CDATA[<p>What are those yellow dots that don't let scroll the chat window? Such a pain. And in general, the client app is getting worse. I wouldn't complain, but I am in fact paying 20-30 bucks per month for skype-out thingie, so I guess I have a moral right to complain <img src='http://javazing.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> Need to get an older version and downgrade.</p>
]]></content:encoded>
			<wfw:commentRss>http://javazing.com/2009/06/01/new-skype-client-sucks/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Enterprise Software Without the BS</title>
		<link>http://javazing.com/2008/05/14/enterprise-software-without-the-bs/</link>
		<comments>http://javazing.com/2008/05/14/enterprise-software-without-the-bs/#comments</comments>
		<pubDate>Wed, 14 May 2008 08:41:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://javazing.com/2008/05/14/enterprise-software-without-the-bs/</guid>
		<description><![CDATA[ A known author of many java and flex-related articles Yakov Fain has published a book named "Enterprise Software Without the BS". This is a fairly light yet a bit sarcastic (ok, ironic) reading about the software industry. It is available free of charge on his website. Highly recommended!
]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.javazing.com/images/man.png" align="left" style="padding: 4px; "> A known author of many java and flex-related articles <a href="http://yakovfain.javadevelopersjournal.com/">Yakov Fain</a> has published a book named "Enterprise Software Without the BS". This is a fairly light yet a bit sarcastic (ok, ironic) reading about the software industry. It is available <a href="http://flexblog.faratasystems.com/?p=318">free of charge on his website</a>. Highly recommended!</p>
]]></content:encoded>
			<wfw:commentRss>http://javazing.com/2008/05/14/enterprise-software-without-the-bs/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Java Geek Humor</title>
		<link>http://javazing.com/2008/03/10/java-geek-humor/</link>
		<comments>http://javazing.com/2008/03/10/java-geek-humor/#comments</comments>
		<pubDate>Tue, 11 Mar 2008 03:23:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://javazing.com/2008/03/10/java-geek-humor/</guid>
		<description><![CDATA[I've come across a really funny dialog here:
- I am looking for a downloadable java written practical test. We are in the process of employing some new staff and we need a test of some sorts to gauge the skills.
- Hey pls let me know ur company name.... 
So that I can also apply...
- Upon [...]]]></description>
			<content:encoded><![CDATA[<p>I've come across a really funny dialog <a href="http://forum.java.sun.com/thread.jspa?threadID=710065&#038;messageID=4110325">here</a>:</p>
<p>- I am looking for a downloadable java written practical test. We are in the process of employing some new staff and we need a test of some sorts to gauge the skills.<br />
- Hey pls let me know ur company name.... <img src='http://javazing.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /><br />
So that I can also apply...<br />
- Upon reviewing your posting record we recommend you apply to<br />
www.mcdonalds.com</p>
]]></content:encoded>
			<wfw:commentRss>http://javazing.com/2008/03/10/java-geek-humor/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Compiling programs in CodeBlocks on Vista</title>
		<link>http://javazing.com/2008/02/23/compiling-programs-in-codeblocks-on-vista/</link>
		<comments>http://javazing.com/2008/02/23/compiling-programs-in-codeblocks-on-vista/#comments</comments>
		<pubDate>Sat, 23 Feb 2008 14:11:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://javazing.com/2008/02/23/compiling-programs-in-codeblocks-on-vista/</guid>
		<description><![CDATA[Again these stupid errors with damn Vista system. In order to make it work read the following and add the path to the cc1plus.exe (in Settings->Compiler->Programs->Additional Paths). It worked for me quite well.
]]></description>
			<content:encoded><![CDATA[<p>Again these stupid errors with damn Vista system. In order to make it work read the <a href="http://wiki.codeblocks.org/index.php?title=Installing_MinGW_with_Vista">following</a> and add the path to the cc1plus.exe (in Settings->Compiler->Programs->Additional Paths). It worked for me quite well.</p>
]]></content:encoded>
			<wfw:commentRss>http://javazing.com/2008/02/23/compiling-programs-in-codeblocks-on-vista/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Installing 3DMax 7 on Windows Vista (acge16.dll problem)</title>
		<link>http://javazing.com/2007/12/20/installing-3dmax-7-on-windows-vista-acge16dll-problem/</link>
		<comments>http://javazing.com/2007/12/20/installing-3dmax-7-on-windows-vista-acge16dll-problem/#comments</comments>
		<pubDate>Thu, 20 Dec 2007 07:13:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://javazing.com/2007/12/20/installing-3dmax-7-on-windows-vista-acge16dll-problem/</guid>
		<description><![CDATA[After successful installation of 3DMax 7 on Windows Vista the application doesn't start with the message - 'couldn't locate acge16.dll'. All you have to do is to copy all DLL files from 'C:\Program Files\Common Files\Autodesk Shared' to the location of your 3DMax installation, for example to 'C:\3dmax\. After this simple procedure 3DMax works on Vista [...]]]></description>
			<content:encoded><![CDATA[<p>After successful installation of 3DMax 7 on Windows Vista the application doesn't start with the message - 'couldn't locate acge16.dll'. All you have to do is to copy all DLL files from 'C:\Program Files\Common Files\Autodesk Shared' to the location of your 3DMax installation, for example to 'C:\3dmax\. After this simple procedure 3DMax works on Vista with no problems.</p>
]]></content:encoded>
			<wfw:commentRss>http://javazing.com/2007/12/20/installing-3dmax-7-on-windows-vista-acge16dll-problem/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
