<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[Escape-K forum - All Forums]]></title>
		<link>http://forum.escapek.org/</link>
		<description><![CDATA[Escape-K forum - http://forum.escapek.org]]></description>
		<pubDate>Mon, 15 Mar 2010 08:20:03 +0100</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[nullValue as initializer]]></title>
			<link>http://forum.escapek.org/showthread.php?tid=47</link>
			<pubDate>Fri, 18 Dec 2009 16:50:51 +0100</pubDate>
			<guid isPermaLink="false">http://forum.escapek.org/showthread.php?tid=47</guid>
			<description><![CDATA[Hi!<br />
<br />
Unfortunately http://jira.escapek.org/ appears to be not working at the moment; so I post the following into this forum.<br />
<br />
According to the MOF Syntax Grammar Description in the CIM Infrastructure Specification, a valueInitializer may initialize the property of an instance with NULL.<br />
<br />
However, I observed, that the MOF Parser library throws a RuntimeException when trying to parse instance declarations that contain such initializers with null values:<br />
<br />
Code:<br />
Exception in thread "main" java.lang.NullPointerException<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;at org.escapek.mofparser.MOFParser.processInstProperty<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(MOFParser.java:545)<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;at org.escapek.mofparser.MOFParser.parseInstanceDeclaration<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(MOFParser.java:521)<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;at org.escapek.mofparser.MOFParser.parseProduction<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(MOFParser.java:172)<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;at org.escapek.mofparser.MOFParser.parse<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(MOFParser.java:134)<br />
<br />
<br />
I have been able to spot how that NullPointerException arises: It does happen because in the method processValueTree of the  MOFParser class strValues that are ›null‹ (ignoring the case) are ignored and not added to the return value vals (which is a list of strings). Hence in case of a nullValue as initializer processValueTree returns null (instead of a list containing null), and then the method processInstProperty tries to call the method size on that variable being null, which of course throws a NullPointerException.<br />
The problem is that a strVal "\"null\"" is cleaned before checking, so that the possibility to differenciate between a value "\"null\"" which represents the string "null" and a value "null" which represents the null value is lost.<br />
<br />
Attached to this post is a patch, which does enable null value initializers and solves the issue for me. (Additionally it enables parsing strings that are "null" which also induces a RuntimeException in MPL 1.0 RC1) Lacking detailed knowlegde of mof parser internals I hope, this does not cause any unintended side effect.<br />
<br />
When looking at the methods processValueTree and processInstProperty I noticed that trying to parse an empty array (or a valueInitializer lacking any initializer) induces a NullPointerException at runtime, too. Maybe it would be preferable to get a MOFParserException thrown instead, but I am not sure about how to achieve this without causing side effects.<br />
<br />
Best regards,<br />
<br />
Marian]]></description>
			<content:encoded><![CDATA[Hi!<br />
<br />
Unfortunately http://jira.escapek.org/ appears to be not working at the moment; so I post the following into this forum.<br />
<br />
According to the MOF Syntax Grammar Description in the CIM Infrastructure Specification, a valueInitializer may initialize the property of an instance with NULL.<br />
<br />
However, I observed, that the MOF Parser library throws a RuntimeException when trying to parse instance declarations that contain such initializers with null values:<br />
<br />
Code:<br />
Exception in thread "main" java.lang.NullPointerException<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;at org.escapek.mofparser.MOFParser.processInstProperty<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(MOFParser.java:545)<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;at org.escapek.mofparser.MOFParser.parseInstanceDeclaration<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(MOFParser.java:521)<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;at org.escapek.mofparser.MOFParser.parseProduction<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(MOFParser.java:172)<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;at org.escapek.mofparser.MOFParser.parse<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(MOFParser.java:134)<br />
<br />
<br />
I have been able to spot how that NullPointerException arises: It does happen because in the method processValueTree of the  MOFParser class strValues that are ›null‹ (ignoring the case) are ignored and not added to the return value vals (which is a list of strings). Hence in case of a nullValue as initializer processValueTree returns null (instead of a list containing null), and then the method processInstProperty tries to call the method size on that variable being null, which of course throws a NullPointerException.<br />
The problem is that a strVal "\"null\"" is cleaned before checking, so that the possibility to differenciate between a value "\"null\"" which represents the string "null" and a value "null" which represents the null value is lost.<br />
<br />
Attached to this post is a patch, which does enable null value initializers and solves the issue for me. (Additionally it enables parsing strings that are "null" which also induces a RuntimeException in MPL 1.0 RC1) Lacking detailed knowlegde of mof parser internals I hope, this does not cause any unintended side effect.<br />
<br />
When looking at the methods processValueTree and processInstProperty I noticed that trying to parse an empty array (or a valueInitializer lacking any initializer) induces a NullPointerException at runtime, too. Maybe it would be preferable to get a MOFParserException thrown instead, but I am not sure about how to achieve this without causing side effects.<br />
<br />
Best regards,<br />
<br />
Marian]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[jordan]]></title>
			<link>http://forum.escapek.org/showthread.php?tid=46</link>
			<pubDate>Wed, 02 Dec 2009 04:48:40 +0100</pubDate>
			<guid isPermaLink="false">http://forum.escapek.org/showthread.php?tid=46</guid>
			<description><![CDATA[Nike Air Jordan 1 Seller ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 2 Shoes Seller (http://www.cgkicks.com  ) <br />
Nike Air Jordan 3 Collection ( www . cgkicks.com  ) <br />
Nike Air Jordan 4 Shoes Collection (http://www.cgkicks.com  ) <br />
Nike Air Jordan 5 Chaussure Shoes ( www . cgkicks.com  ) <br />
Nike Air Jordan 6 Catalog ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 7 Shoes Catalog ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 8 Customized ( www . cgkicks.com  ) <br />
Nike Air Jordan 9 Shoes Customized ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 10 Wholesalers ( http://www.cgkicks.com  ) <br />
Nike Jordan 11 Shoes Wholesalers( http://www.cgkicks.com  ) <br />
Nike Air Jordan 12 Factory ( http://www.cgkicks.com ) <br />
Nike Air Jordan 13 Shoes Factory ( http://www.cgkicks.com ) <br />
Nike Air Jordan 14 Shoes Sell ( http://www.cgkicks.com ) <br />
Nike Air Jordan 16 Exporter ( http://www.cgkicks.com ) <br />
Nike Air Jordan 17 Shoes Exporter ( http://www.cgkicks.com ) <br />
Nike Air Jordan 18 Offer ( http://www.cgkicks.com ) <br />
Nike Air Jordan 19 Shoes Offer ( http://www.cgkicks.com ) <br />
Nike Air Jordan 20 Manufacture ( http://www.cgkicks.com ) <br />
Nike Jordan 21 Shoes Manufacture ( http://www.cgkicks.com )]]></description>
			<content:encoded><![CDATA[Nike Air Jordan 1 Seller ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 2 Shoes Seller (http://www.cgkicks.com  ) <br />
Nike Air Jordan 3 Collection ( www . cgkicks.com  ) <br />
Nike Air Jordan 4 Shoes Collection (http://www.cgkicks.com  ) <br />
Nike Air Jordan 5 Chaussure Shoes ( www . cgkicks.com  ) <br />
Nike Air Jordan 6 Catalog ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 7 Shoes Catalog ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 8 Customized ( www . cgkicks.com  ) <br />
Nike Air Jordan 9 Shoes Customized ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 10 Wholesalers ( http://www.cgkicks.com  ) <br />
Nike Jordan 11 Shoes Wholesalers( http://www.cgkicks.com  ) <br />
Nike Air Jordan 12 Factory ( http://www.cgkicks.com ) <br />
Nike Air Jordan 13 Shoes Factory ( http://www.cgkicks.com ) <br />
Nike Air Jordan 14 Shoes Sell ( http://www.cgkicks.com ) <br />
Nike Air Jordan 16 Exporter ( http://www.cgkicks.com ) <br />
Nike Air Jordan 17 Shoes Exporter ( http://www.cgkicks.com ) <br />
Nike Air Jordan 18 Offer ( http://www.cgkicks.com ) <br />
Nike Air Jordan 19 Shoes Offer ( http://www.cgkicks.com ) <br />
Nike Air Jordan 20 Manufacture ( http://www.cgkicks.com ) <br />
Nike Jordan 21 Shoes Manufacture ( http://www.cgkicks.com )]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[jordan]]></title>
			<link>http://forum.escapek.org/showthread.php?tid=45</link>
			<pubDate>Wed, 02 Dec 2009 04:45:13 +0100</pubDate>
			<guid isPermaLink="false">http://forum.escapek.org/showthread.php?tid=45</guid>
			<description><![CDATA[Nike Air Jordan 1 Seller ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 2 Shoes Seller (http://www.cgkicks.com  ) <br />
Nike Air Jordan 3 Collection ( www . cgkicks.com  ) <br />
Nike Air Jordan 4 Shoes Collection (http://www.cgkicks.com  ) <br />
Nike Air Jordan 5 Chaussure Shoes ( www . cgkicks.com  ) <br />
Nike Air Jordan 6 Catalog ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 7 Shoes Catalog ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 8 Customized ( www . cgkicks.com  ) <br />
Nike Air Jordan 9 Shoes Customized ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 10 Wholesalers ( http://www.cgkicks.com  ) <br />
Nike Jordan 11 Shoes Wholesalers( http://www.cgkicks.com  ) <br />
Nike Air Jordan 12 Factory ( http://www.cgkicks.com ) <br />
Nike Air Jordan 13 Shoes Factory ( http://www.cgkicks.com ) <br />
Nike Air Jordan 14 Shoes Sell ( http://www.cgkicks.com ) <br />
Nike Air Jordan 16 Exporter ( http://www.cgkicks.com ) <br />
Nike Air Jordan 17 Shoes Exporter ( http://www.cgkicks.com ) <br />
Nike Air Jordan 18 Offer ( http://www.cgkicks.com ) <br />
Nike Air Jordan 19 Shoes Offer ( http://www.cgkicks.com ) <br />
Nike Air Jordan 20 Manufacture ( http://www.cgkicks.com ) <br />
Nike Jordan 21 Shoes Manufacture ( http://www.cgkicks.com )]]></description>
			<content:encoded><![CDATA[Nike Air Jordan 1 Seller ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 2 Shoes Seller (http://www.cgkicks.com  ) <br />
Nike Air Jordan 3 Collection ( www . cgkicks.com  ) <br />
Nike Air Jordan 4 Shoes Collection (http://www.cgkicks.com  ) <br />
Nike Air Jordan 5 Chaussure Shoes ( www . cgkicks.com  ) <br />
Nike Air Jordan 6 Catalog ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 7 Shoes Catalog ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 8 Customized ( www . cgkicks.com  ) <br />
Nike Air Jordan 9 Shoes Customized ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 10 Wholesalers ( http://www.cgkicks.com  ) <br />
Nike Jordan 11 Shoes Wholesalers( http://www.cgkicks.com  ) <br />
Nike Air Jordan 12 Factory ( http://www.cgkicks.com ) <br />
Nike Air Jordan 13 Shoes Factory ( http://www.cgkicks.com ) <br />
Nike Air Jordan 14 Shoes Sell ( http://www.cgkicks.com ) <br />
Nike Air Jordan 16 Exporter ( http://www.cgkicks.com ) <br />
Nike Air Jordan 17 Shoes Exporter ( http://www.cgkicks.com ) <br />
Nike Air Jordan 18 Offer ( http://www.cgkicks.com ) <br />
Nike Air Jordan 19 Shoes Offer ( http://www.cgkicks.com ) <br />
Nike Air Jordan 20 Manufacture ( http://www.cgkicks.com ) <br />
Nike Jordan 21 Shoes Manufacture ( http://www.cgkicks.com )]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[jordan]]></title>
			<link>http://forum.escapek.org/showthread.php?tid=44</link>
			<pubDate>Wed, 02 Dec 2009 04:43:04 +0100</pubDate>
			<guid isPermaLink="false">http://forum.escapek.org/showthread.php?tid=44</guid>
			<description><![CDATA[Nike Air Jordan 1 Seller ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 2 Shoes Seller (http://www.cgkicks.com  ) <br />
Nike Air Jordan 3 Collection ( www . cgkicks.com  ) <br />
Nike Air Jordan 4 Shoes Collection (http://www.cgkicks.com  ) <br />
Nike Air Jordan 5 Chaussure Shoes ( www . cgkicks.com  ) <br />
Nike Air Jordan 6 Catalog ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 7 Shoes Catalog ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 8 Customized ( www . cgkicks.com  ) <br />
Nike Air Jordan 9 Shoes Customized ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 10 Wholesalers ( http://www.cgkicks.com  ) <br />
Nike Jordan 11 Shoes Wholesalers( http://www.cgkicks.com  ) <br />
Nike Air Jordan 12 Factory ( http://www.cgkicks.com ) <br />
Nike Air Jordan 13 Shoes Factory ( http://www.cgkicks.com ) <br />
Nike Air Jordan 14 Shoes Sell ( http://www.cgkicks.com ) <br />
Nike Air Jordan 16 Exporter ( http://www.cgkicks.com ) <br />
Nike Air Jordan 17 Shoes Exporter ( http://www.cgkicks.com ) <br />
Nike Air Jordan 18 Offer ( http://www.cgkicks.com ) <br />
Nike Air Jordan 19 Shoes Offer ( http://www.cgkicks.com ) <br />
Nike Air Jordan 20 Manufacture ( http://www.cgkicks.com ) <br />
Nike Jordan 21 Shoes Manufacture ( http://www.cgkicks.com )]]></description>
			<content:encoded><![CDATA[Nike Air Jordan 1 Seller ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 2 Shoes Seller (http://www.cgkicks.com  ) <br />
Nike Air Jordan 3 Collection ( www . cgkicks.com  ) <br />
Nike Air Jordan 4 Shoes Collection (http://www.cgkicks.com  ) <br />
Nike Air Jordan 5 Chaussure Shoes ( www . cgkicks.com  ) <br />
Nike Air Jordan 6 Catalog ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 7 Shoes Catalog ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 8 Customized ( www . cgkicks.com  ) <br />
Nike Air Jordan 9 Shoes Customized ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 10 Wholesalers ( http://www.cgkicks.com  ) <br />
Nike Jordan 11 Shoes Wholesalers( http://www.cgkicks.com  ) <br />
Nike Air Jordan 12 Factory ( http://www.cgkicks.com ) <br />
Nike Air Jordan 13 Shoes Factory ( http://www.cgkicks.com ) <br />
Nike Air Jordan 14 Shoes Sell ( http://www.cgkicks.com ) <br />
Nike Air Jordan 16 Exporter ( http://www.cgkicks.com ) <br />
Nike Air Jordan 17 Shoes Exporter ( http://www.cgkicks.com ) <br />
Nike Air Jordan 18 Offer ( http://www.cgkicks.com ) <br />
Nike Air Jordan 19 Shoes Offer ( http://www.cgkicks.com ) <br />
Nike Air Jordan 20 Manufacture ( http://www.cgkicks.com ) <br />
Nike Jordan 21 Shoes Manufacture ( http://www.cgkicks.com )]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[jordan]]></title>
			<link>http://forum.escapek.org/showthread.php?tid=43</link>
			<pubDate>Wed, 02 Dec 2009 04:41:55 +0100</pubDate>
			<guid isPermaLink="false">http://forum.escapek.org/showthread.php?tid=43</guid>
			<description><![CDATA[Nike Air Jordan 1 Seller ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 2 Shoes Seller (http://www.cgkicks.com  ) <br />
Nike Air Jordan 3 Collection ( www . cgkicks.com  ) <br />
Nike Air Jordan 4 Shoes Collection (http://www.cgkicks.com  ) <br />
Nike Air Jordan 5 Chaussure Shoes ( www . cgkicks.com  ) <br />
Nike Air Jordan 6 Catalog ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 7 Shoes Catalog ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 8 Customized ( www . cgkicks.com  ) <br />
Nike Air Jordan 9 Shoes Customized ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 10 Wholesalers ( http://www.cgkicks.com  ) <br />
Nike Jordan 11 Shoes Wholesalers( http://www.cgkicks.com  ) <br />
Nike Air Jordan 12 Factory ( http://www.cgkicks.com ) <br />
Nike Air Jordan 13 Shoes Factory ( http://www.cgkicks.com ) <br />
Nike Air Jordan 14 Shoes Sell ( http://www.cgkicks.com ) <br />
Nike Air Jordan 16 Exporter ( http://www.cgkicks.com ) <br />
Nike Air Jordan 17 Shoes Exporter ( http://www.cgkicks.com ) <br />
Nike Air Jordan 18 Offer ( http://www.cgkicks.com ) <br />
Nike Air Jordan 19 Shoes Offer ( http://www.cgkicks.com ) <br />
Nike Air Jordan 20 Manufacture ( http://www.cgkicks.com ) <br />
Nike Jordan 21 Shoes Manufacture ( http://www.cgkicks.com )]]></description>
			<content:encoded><![CDATA[Nike Air Jordan 1 Seller ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 2 Shoes Seller (http://www.cgkicks.com  ) <br />
Nike Air Jordan 3 Collection ( www . cgkicks.com  ) <br />
Nike Air Jordan 4 Shoes Collection (http://www.cgkicks.com  ) <br />
Nike Air Jordan 5 Chaussure Shoes ( www . cgkicks.com  ) <br />
Nike Air Jordan 6 Catalog ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 7 Shoes Catalog ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 8 Customized ( www . cgkicks.com  ) <br />
Nike Air Jordan 9 Shoes Customized ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 10 Wholesalers ( http://www.cgkicks.com  ) <br />
Nike Jordan 11 Shoes Wholesalers( http://www.cgkicks.com  ) <br />
Nike Air Jordan 12 Factory ( http://www.cgkicks.com ) <br />
Nike Air Jordan 13 Shoes Factory ( http://www.cgkicks.com ) <br />
Nike Air Jordan 14 Shoes Sell ( http://www.cgkicks.com ) <br />
Nike Air Jordan 16 Exporter ( http://www.cgkicks.com ) <br />
Nike Air Jordan 17 Shoes Exporter ( http://www.cgkicks.com ) <br />
Nike Air Jordan 18 Offer ( http://www.cgkicks.com ) <br />
Nike Air Jordan 19 Shoes Offer ( http://www.cgkicks.com ) <br />
Nike Air Jordan 20 Manufacture ( http://www.cgkicks.com ) <br />
Nike Jordan 21 Shoes Manufacture ( http://www.cgkicks.com )]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[jordan]]></title>
			<link>http://forum.escapek.org/showthread.php?tid=42</link>
			<pubDate>Wed, 02 Dec 2009 04:40:37 +0100</pubDate>
			<guid isPermaLink="false">http://forum.escapek.org/showthread.php?tid=42</guid>
			<description><![CDATA[Nike Air Jordan 1 Seller ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 2 Shoes Seller (http://www.cgkicks.com  ) <br />
Nike Air Jordan 3 Collection ( www . cgkicks.com  ) <br />
Nike Air Jordan 4 Shoes Collection (http://www.cgkicks.com  ) <br />
Nike Air Jordan 5 Chaussure Shoes ( www . cgkicks.com  ) <br />
Nike Air Jordan 6 Catalog ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 7 Shoes Catalog ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 8 Customized ( www . cgkicks.com  ) <br />
Nike Air Jordan 9 Shoes Customized ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 10 Wholesalers ( http://www.cgkicks.com  ) <br />
Nike Jordan 11 Shoes Wholesalers( http://www.cgkicks.com  ) <br />
Nike Air Jordan 12 Factory ( http://www.cgkicks.com ) <br />
Nike Air Jordan 13 Shoes Factory ( http://www.cgkicks.com ) <br />
Nike Air Jordan 14 Shoes Sell ( http://www.cgkicks.com ) <br />
Nike Air Jordan 16 Exporter ( http://www.cgkicks.com ) <br />
Nike Air Jordan 17 Shoes Exporter ( http://www.cgkicks.com ) <br />
Nike Air Jordan 18 Offer ( http://www.cgkicks.com ) <br />
Nike Air Jordan 19 Shoes Offer ( http://www.cgkicks.com ) <br />
Nike Air Jordan 20 Manufacture ( http://www.cgkicks.com ) <br />
Nike Jordan 21 Shoes Manufacture ( http://www.cgkicks.com )]]></description>
			<content:encoded><![CDATA[Nike Air Jordan 1 Seller ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 2 Shoes Seller (http://www.cgkicks.com  ) <br />
Nike Air Jordan 3 Collection ( www . cgkicks.com  ) <br />
Nike Air Jordan 4 Shoes Collection (http://www.cgkicks.com  ) <br />
Nike Air Jordan 5 Chaussure Shoes ( www . cgkicks.com  ) <br />
Nike Air Jordan 6 Catalog ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 7 Shoes Catalog ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 8 Customized ( www . cgkicks.com  ) <br />
Nike Air Jordan 9 Shoes Customized ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 10 Wholesalers ( http://www.cgkicks.com  ) <br />
Nike Jordan 11 Shoes Wholesalers( http://www.cgkicks.com  ) <br />
Nike Air Jordan 12 Factory ( http://www.cgkicks.com ) <br />
Nike Air Jordan 13 Shoes Factory ( http://www.cgkicks.com ) <br />
Nike Air Jordan 14 Shoes Sell ( http://www.cgkicks.com ) <br />
Nike Air Jordan 16 Exporter ( http://www.cgkicks.com ) <br />
Nike Air Jordan 17 Shoes Exporter ( http://www.cgkicks.com ) <br />
Nike Air Jordan 18 Offer ( http://www.cgkicks.com ) <br />
Nike Air Jordan 19 Shoes Offer ( http://www.cgkicks.com ) <br />
Nike Air Jordan 20 Manufacture ( http://www.cgkicks.com ) <br />
Nike Jordan 21 Shoes Manufacture ( http://www.cgkicks.com )]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[jordan]]></title>
			<link>http://forum.escapek.org/showthread.php?tid=41</link>
			<pubDate>Wed, 02 Dec 2009 04:39:35 +0100</pubDate>
			<guid isPermaLink="false">http://forum.escapek.org/showthread.php?tid=41</guid>
			<description><![CDATA[Nike Air Jordan 1 Seller ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 2 Shoes Seller (http://www.cgkicks.com  ) <br />
Nike Air Jordan 3 Collection ( www . cgkicks.com  ) <br />
Nike Air Jordan 4 Shoes Collection (http://www.cgkicks.com  ) <br />
Nike Air Jordan 5 Chaussure Shoes ( www . cgkicks.com  ) <br />
Nike Air Jordan 6 Catalog ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 7 Shoes Catalog ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 8 Customized ( www . cgkicks.com  ) <br />
Nike Air Jordan 9 Shoes Customized ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 10 Wholesalers ( http://www.cgkicks.com  ) <br />
Nike Jordan 11 Shoes Wholesalers( http://www.cgkicks.com  ) <br />
Nike Air Jordan 12 Factory ( http://www.cgkicks.com ) <br />
Nike Air Jordan 13 Shoes Factory ( http://www.cgkicks.com ) <br />
Nike Air Jordan 14 Shoes Sell ( http://www.cgkicks.com ) <br />
Nike Air Jordan 16 Exporter ( http://www.cgkicks.com ) <br />
Nike Air Jordan 17 Shoes Exporter ( http://www.cgkicks.com ) <br />
Nike Air Jordan 18 Offer ( http://www.cgkicks.com ) <br />
Nike Air Jordan 19 Shoes Offer ( http://www.cgkicks.com ) <br />
Nike Air Jordan 20 Manufacture ( http://www.cgkicks.com ) <br />
Nike Jordan 21 Shoes Manufacture ( http://www.cgkicks.com )]]></description>
			<content:encoded><![CDATA[Nike Air Jordan 1 Seller ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 2 Shoes Seller (http://www.cgkicks.com  ) <br />
Nike Air Jordan 3 Collection ( www . cgkicks.com  ) <br />
Nike Air Jordan 4 Shoes Collection (http://www.cgkicks.com  ) <br />
Nike Air Jordan 5 Chaussure Shoes ( www . cgkicks.com  ) <br />
Nike Air Jordan 6 Catalog ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 7 Shoes Catalog ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 8 Customized ( www . cgkicks.com  ) <br />
Nike Air Jordan 9 Shoes Customized ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 10 Wholesalers ( http://www.cgkicks.com  ) <br />
Nike Jordan 11 Shoes Wholesalers( http://www.cgkicks.com  ) <br />
Nike Air Jordan 12 Factory ( http://www.cgkicks.com ) <br />
Nike Air Jordan 13 Shoes Factory ( http://www.cgkicks.com ) <br />
Nike Air Jordan 14 Shoes Sell ( http://www.cgkicks.com ) <br />
Nike Air Jordan 16 Exporter ( http://www.cgkicks.com ) <br />
Nike Air Jordan 17 Shoes Exporter ( http://www.cgkicks.com ) <br />
Nike Air Jordan 18 Offer ( http://www.cgkicks.com ) <br />
Nike Air Jordan 19 Shoes Offer ( http://www.cgkicks.com ) <br />
Nike Air Jordan 20 Manufacture ( http://www.cgkicks.com ) <br />
Nike Jordan 21 Shoes Manufacture ( http://www.cgkicks.com )]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[jordan]]></title>
			<link>http://forum.escapek.org/showthread.php?tid=40</link>
			<pubDate>Wed, 02 Dec 2009 04:38:11 +0100</pubDate>
			<guid isPermaLink="false">http://forum.escapek.org/showthread.php?tid=40</guid>
			<description><![CDATA[Nike Air Jordan 1 Seller ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 2 Shoes Seller (http://www.cgkicks.com  ) <br />
Nike Air Jordan 3 Collection ( www . cgkicks.com  ) <br />
Nike Air Jordan 4 Shoes Collection (http://www.cgkicks.com  ) <br />
Nike Air Jordan 5 Chaussure Shoes ( www . cgkicks.com  ) <br />
Nike Air Jordan 6 Catalog ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 7 Shoes Catalog ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 8 Customized ( www . cgkicks.com  ) <br />
Nike Air Jordan 9 Shoes Customized ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 10 Wholesalers ( http://www.cgkicks.com  ) <br />
Nike Jordan 11 Shoes Wholesalers( http://www.cgkicks.com  ) <br />
Nike Air Jordan 12 Factory ( http://www.cgkicks.com ) <br />
Nike Air Jordan 13 Shoes Factory ( http://www.cgkicks.com ) <br />
Nike Air Jordan 14 Shoes Sell ( http://www.cgkicks.com ) <br />
Nike Air Jordan 16 Exporter ( http://www.cgkicks.com ) <br />
Nike Air Jordan 17 Shoes Exporter ( http://www.cgkicks.com ) <br />
Nike Air Jordan 18 Offer ( http://www.cgkicks.com ) <br />
Nike Air Jordan 19 Shoes Offer ( http://www.cgkicks.com ) <br />
Nike Air Jordan 20 Manufacture ( http://www.cgkicks.com ) <br />
Nike Jordan 21 Shoes Manufacture ( http://www.cgkicks.com )]]></description>
			<content:encoded><![CDATA[Nike Air Jordan 1 Seller ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 2 Shoes Seller (http://www.cgkicks.com  ) <br />
Nike Air Jordan 3 Collection ( www . cgkicks.com  ) <br />
Nike Air Jordan 4 Shoes Collection (http://www.cgkicks.com  ) <br />
Nike Air Jordan 5 Chaussure Shoes ( www . cgkicks.com  ) <br />
Nike Air Jordan 6 Catalog ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 7 Shoes Catalog ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 8 Customized ( www . cgkicks.com  ) <br />
Nike Air Jordan 9 Shoes Customized ( http://www.cgkicks.com  ) <br />
Nike Air Jordan 10 Wholesalers ( http://www.cgkicks.com  ) <br />
Nike Jordan 11 Shoes Wholesalers( http://www.cgkicks.com  ) <br />
Nike Air Jordan 12 Factory ( http://www.cgkicks.com ) <br />
Nike Air Jordan 13 Shoes Factory ( http://www.cgkicks.com ) <br />
Nike Air Jordan 14 Shoes Sell ( http://www.cgkicks.com ) <br />
Nike Air Jordan 16 Exporter ( http://www.cgkicks.com ) <br />
Nike Air Jordan 17 Shoes Exporter ( http://www.cgkicks.com ) <br />
Nike Air Jordan 18 Offer ( http://www.cgkicks.com ) <br />
Nike Air Jordan 19 Shoes Offer ( http://www.cgkicks.com ) <br />
Nike Air Jordan 20 Manufacture ( http://www.cgkicks.com ) <br />
Nike Jordan 21 Shoes Manufacture ( http://www.cgkicks.com )]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[I can't find documentation about instalation]]></title>
			<link>http://forum.escapek.org/showthread.php?tid=38</link>
			<pubDate>Tue, 10 Mar 2009 21:14:24 +0100</pubDate>
			<guid isPermaLink="false">http://forum.escapek.org/showthread.php?tid=38</guid>
			<description><![CDATA[Hi, i can't find information about escapek instalation.<br />
Somebody can send me this information.<br />
<br />
<br />
thank you.]]></description>
			<content:encoded><![CDATA[Hi, i can't find information about escapek instalation.<br />
Somebody can send me this information.<br />
<br />
<br />
thank you.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Is it feasible to build Tile Base Game Engine using Java ?]]></title>
			<link>http://forum.escapek.org/showthread.php?tid=37</link>
			<pubDate>Thu, 22 Jan 2009 09:16:37 +0100</pubDate>
			<guid isPermaLink="false">http://forum.escapek.org/showthread.php?tid=37</guid>
			<description><![CDATA[Hey pal,<br />
<br />
It would be great if you give your suggestions and ideas on Java script Tile base game <br />
engine. You know.. with click to walk (or keyboard), inventory, grab items, talk to people, <br />
exp, levels, etc. <br />
<br />
Any Good Ways, any help would be appreciated.<br />
<br />
<br />
Thanks,<br />
Eric Paul]]></description>
			<content:encoded><![CDATA[Hey pal,<br />
<br />
It would be great if you give your suggestions and ideas on Java script Tile base game <br />
engine. You know.. with click to walk (or keyboard), inventory, grab items, talk to people, <br />
exp, levels, etc. <br />
<br />
Any Good Ways, any help would be appreciated.<br />
<br />
<br />
Thanks,<br />
Eric Paul]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[wonderful site]]></title>
			<link>http://forum.escapek.org/showthread.php?tid=36</link>
			<pubDate>Thu, 15 Jan 2009 14:38:56 +0100</pubDate>
			<guid isPermaLink="false">http://forum.escapek.org/showthread.php?tid=36</guid>
			<description><![CDATA[What more can i say to this wonderful site.Thanks for having great conversations here.]]></description>
			<content:encoded><![CDATA[What more can i say to this wonderful site.Thanks for having great conversations here.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[MOF Parser Library 1.0-rc1 released]]></title>
			<link>http://forum.escapek.org/showthread.php?tid=34</link>
			<pubDate>Thu, 11 Sep 2008 09:01:38 +0200</pubDate>
			<guid isPermaLink="false">http://forum.escapek.org/showthread.php?tid=34</guid>
			<description><![CDATA[EscapeK team is pleased to announce the release of MOF Parser Library 1.0-rc1.<br />
This release provides an important feature which was previously missing: MPL is now able to manage the parsing of methods declarations.<br />
MPL is now nearly ready for production use, 1.0 is coming.<br />
<br />
See the project homepage for downloads and documentation.]]></description>
			<content:encoded><![CDATA[EscapeK team is pleased to announce the release of MOF Parser Library 1.0-rc1.<br />
This release provides an important feature which was previously missing: MPL is now able to manage the parsing of methods declarations.<br />
MPL is now nearly ready for production use, 1.0 is coming.<br />
<br />
See the project homepage for downloads and documentation.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Problem without MOF Aliases]]></title>
			<link>http://forum.escapek.org/showthread.php?tid=33</link>
			<pubDate>Tue, 09 Sep 2008 15:57:17 +0200</pubDate>
			<guid isPermaLink="false">http://forum.escapek.org/showthread.php?tid=33</guid>
			<description><![CDATA[Hi, I tried the MOF Parser Library and I got a NullPointerException giving a MOF string with unique istance but without Alias. I looked code and it's expected finding alias child in the MOF three.. But I think that MOF standard allow instances without Alias, isn't it?]]></description>
			<content:encoded><![CDATA[Hi, I tried the MOF Parser Library and I got a NullPointerException giving a MOF string with unique istance but without Alias. I looked code and it's expected finding alias child in the MOF three.. But I think that MOF standard allow instances without Alias, isn't it?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Liferay integration]]></title>
			<link>http://forum.escapek.org/showthread.php?tid=32</link>
			<pubDate>Thu, 03 Jul 2008 23:08:27 +0200</pubDate>
			<guid isPermaLink="false">http://forum.escapek.org/showthread.php?tid=32</guid>
			<description><![CDATA[is posible implement liferay integration ?]]></description>
			<content:encoded><![CDATA[is posible implement liferay integration ?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[How to parse a CIM method?]]></title>
			<link>http://forum.escapek.org/showthread.php?tid=31</link>
			<pubDate>Thu, 19 Jun 2008 18:18:56 +0200</pubDate>
			<guid isPermaLink="false">http://forum.escapek.org/showthread.php?tid=31</guid>
			<description><![CDATA[Hi there<br />
<br />
I'm trying to use the MPL lib to parse some mof files, please pardon me if this is the wrong place to post this question.<br />
<br />
I didn't find handler call back which could indicate / process a parsed CIM method.<br />
I also noticed there's a method declaration RequestStateChange in the sample mof, but I could not see this point from the running result. Will you suggest if there's any way that I could get the CIM methods defined in a mof?]]></description>
			<content:encoded><![CDATA[Hi there<br />
<br />
I'm trying to use the MPL lib to parse some mof files, please pardon me if this is the wrong place to post this question.<br />
<br />
I didn't find handler call back which could indicate / process a parsed CIM method.<br />
I also noticed there's a method declaration RequestStateChange in the sample mof, but I could not see this point from the running result. Will you suggest if there's any way that I could get the CIM methods defined in a mof?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[can't run the client]]></title>
			<link>http://forum.escapek.org/showthread.php?tid=30</link>
			<pubDate>Thu, 12 Jun 2008 21:01:11 +0200</pubDate>
			<guid isPermaLink="false">http://forum.escapek.org/showthread.php?tid=30</guid>
			<description><![CDATA[It appears that the serer is up and running, but when I try to run the client it crashes immediately and tells me to see the log. See below. I am running Tomcat v 6.0.14 and Java JDK 1.6.0_06<br />
LOG:<br />
<br />
Quote:!SESSION 2008-06-12 13:44:33.156 -----------------------------------------------<br />
eclipse.buildId=unknown<br />
java.version=1.5.0_11<br />
java.vendor=Sun Microsystems Inc.<br />
BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en<br />
Command-line arguments:  -os win32 -ws win32 -arch x86<br />
<br />
!ENTRY org.eclipse.osgi 4 0 2008-06-12 13:44:35.843<br />
!MESSAGE Application error<br />
!STACK 1<br />
org.eclipse.core.runtime.CoreException: Plug-in org.escapek.client was unable to load class org.escapek.client.Application.<br />
	at org.eclipse.core.internal.registry.osgi.RegistryStrategyOSGI.throwException(RegistryStrategyOSGI.java:180)<br />
	at org.eclipse.core.internal.registry.osgi.RegistryStrategyOSGI.createExecutableExtension(RegistryStrategyOSGI.java:164)<br />
	at org.eclipse.core.internal.registry.ExtensionRegistry.createExecutableExtension(ExtensionRegistry.java:788)<br />
	at org.eclipse.core.internal.registry.ConfigurationElement.createExecutableExtension(ConfigurationElement.java:243)<br />
	at org.eclipse.core.internal.registry.ConfigurationElementHandle.createExecutableExtension(ConfigurationElementHandle.java:51)<br />
	at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:165)<br />
	at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106)<br />
	at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76)<br />
	at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363)<br />
	at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176)<br />
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)<br />
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)<br />
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)<br />
	at java.lang.reflect.Method.invoke(Unknown Source)<br />
	at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:508)<br />
	at org.eclipse.equinox.launcher.Main.basicRun(Main.java:447)<br />
	at org.eclipse.equinox.launcher.Main.run(Main.java:1173)<br />
org.eclipse.core.runtime.CoreException[1]: java.lang.UnsupportedClassVersionError: Bad version number in .class file<br />
	at java.lang.ClassLoader.defineClass1(Native Method)<br />
	at java.lang.ClassLoader.defineClass(Unknown Source)<br />
	at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.defineClass(DefaultClassLoader.java:161)<br />
	at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.defineClass(ClasspathManager.java:501)<br />
	at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findClassImpl(ClasspathManager.java:471)<br />
	at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClassImpl(ClasspathManager.java:430)<br />
	at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java:413)<br />
	at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoader.java:189)<br />
	at org.eclipse.osgi.framework.internal.core.BundleLoader.findLocalClass(BundleLoader.java:340)<br />
	at org.eclipse.osgi.framework.internal.core.BundleLoader.findClassInternal(BundleLoader.java:408)<br />
	at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:369)<br />
	at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:357)<br />
	at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.java:83)<br />
	at java.lang.ClassLoader.loadClass(Unknown Source)<br />
	at org.eclipse.osgi.framework.internal.core.BundleLoader.loadClass(BundleLoader.java:289)<br />
	at org.eclipse.osgi.framework.internal.core.BundleHost.loadClass(BundleHost.java:227)<br />
	at org.eclipse.osgi.framework.internal.core.AbstractBundle.loadClass(AbstractBundle.java:1269)<br />
	at org.eclipse.core.internal.registry.osgi.RegistryStrategyOSGI.createExecutableExtension(RegistryStrategyOSGI.java:160)<br />
	at org.eclipse.core.internal.registry.ExtensionRegistry.createExecutableExtension(ExtensionRegistry.java:788)<br />
	at org.eclipse.core.internal.registry.ConfigurationElement.createExecutableExtension(ConfigurationElement.java:243)<br />
	at org.eclipse.core.internal.registry.ConfigurationElementHandle.createExecutableExtension(ConfigurationElementHandle.java:51)<br />
	at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:165)<br />
	at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106)<br />
	at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76)<br />
	at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363)<br />
	at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176)<br />
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)<br />
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)<br />
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)<br />
	at java.lang.reflect.Method.invoke(Unknown Source)<br />
	at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:508)<br />
	at org.eclipse.equinox.launcher.Main.basicRun(Main.java:447)<br />
	at org.eclipse.equinox.launcher.Main.run(Main.java:1173)<br />
<br />
<br />
Any ideas???<br />
<br />
thanks<br />
Greg]]></description>
			<content:encoded><![CDATA[It appears that the serer is up and running, but when I try to run the client it crashes immediately and tells me to see the log. See below. I am running Tomcat v 6.0.14 and Java JDK 1.6.0_06<br />
LOG:<br />
<br />
Quote:!SESSION 2008-06-12 13:44:33.156 -----------------------------------------------<br />
eclipse.buildId=unknown<br />
java.version=1.5.0_11<br />
java.vendor=Sun Microsystems Inc.<br />
BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en<br />
Command-line arguments:  -os win32 -ws win32 -arch x86<br />
<br />
!ENTRY org.eclipse.osgi 4 0 2008-06-12 13:44:35.843<br />
!MESSAGE Application error<br />
!STACK 1<br />
org.eclipse.core.runtime.CoreException: Plug-in org.escapek.client was unable to load class org.escapek.client.Application.<br />
	at org.eclipse.core.internal.registry.osgi.RegistryStrategyOSGI.throwException(RegistryStrategyOSGI.java:180)<br />
	at org.eclipse.core.internal.registry.osgi.RegistryStrategyOSGI.createExecutableExtension(RegistryStrategyOSGI.java:164)<br />
	at org.eclipse.core.internal.registry.ExtensionRegistry.createExecutableExtension(ExtensionRegistry.java:788)<br />
	at org.eclipse.core.internal.registry.ConfigurationElement.createExecutableExtension(ConfigurationElement.java:243)<br />
	at org.eclipse.core.internal.registry.ConfigurationElementHandle.createExecutableExtension(ConfigurationElementHandle.java:51)<br />
	at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:165)<br />
	at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106)<br />
	at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76)<br />
	at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363)<br />
	at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176)<br />
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)<br />
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)<br />
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)<br />
	at java.lang.reflect.Method.invoke(Unknown Source)<br />
	at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:508)<br />
	at org.eclipse.equinox.launcher.Main.basicRun(Main.java:447)<br />
	at org.eclipse.equinox.launcher.Main.run(Main.java:1173)<br />
org.eclipse.core.runtime.CoreException[1]: java.lang.UnsupportedClassVersionError: Bad version number in .class file<br />
	at java.lang.ClassLoader.defineClass1(Native Method)<br />
	at java.lang.ClassLoader.defineClass(Unknown Source)<br />
	at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.defineClass(DefaultClassLoader.java:161)<br />
	at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.defineClass(ClasspathManager.java:501)<br />
	at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findClassImpl(ClasspathManager.java:471)<br />
	at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClassImpl(ClasspathManager.java:430)<br />
	at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java:413)<br />
	at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoader.java:189)<br />
	at org.eclipse.osgi.framework.internal.core.BundleLoader.findLocalClass(BundleLoader.java:340)<br />
	at org.eclipse.osgi.framework.internal.core.BundleLoader.findClassInternal(BundleLoader.java:408)<br />
	at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:369)<br />
	at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:357)<br />
	at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.java:83)<br />
	at java.lang.ClassLoader.loadClass(Unknown Source)<br />
	at org.eclipse.osgi.framework.internal.core.BundleLoader.loadClass(BundleLoader.java:289)<br />
	at org.eclipse.osgi.framework.internal.core.BundleHost.loadClass(BundleHost.java:227)<br />
	at org.eclipse.osgi.framework.internal.core.AbstractBundle.loadClass(AbstractBundle.java:1269)<br />
	at org.eclipse.core.internal.registry.osgi.RegistryStrategyOSGI.createExecutableExtension(RegistryStrategyOSGI.java:160)<br />
	at org.eclipse.core.internal.registry.ExtensionRegistry.createExecutableExtension(ExtensionRegistry.java:788)<br />
	at org.eclipse.core.internal.registry.ConfigurationElement.createExecutableExtension(ConfigurationElement.java:243)<br />
	at org.eclipse.core.internal.registry.ConfigurationElementHandle.createExecutableExtension(ConfigurationElementHandle.java:51)<br />
	at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:165)<br />
	at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106)<br />
	at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76)<br />
	at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363)<br />
	at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176)<br />
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)<br />
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)<br />
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)<br />
	at java.lang.reflect.Method.invoke(Unknown Source)<br />
	at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:508)<br />
	at org.eclipse.equinox.launcher.Main.basicRun(Main.java:447)<br />
	at org.eclipse.equinox.launcher.Main.run(Main.java:1173)<br />
<br />
<br />
Any ideas???<br />
<br />
thanks<br />
Greg]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[MOF Parser Library 0.3 released]]></title>
			<link>http://forum.escapek.org/showthread.php?tid=29</link>
			<pubDate>Thu, 15 May 2008 11:08:28 +0200</pubDate>
			<guid isPermaLink="false">http://forum.escapek.org/showthread.php?tid=29</guid>
			<description><![CDATA[EscapeK team is pleased to announce the release of MOF Parser Library 0.3.<br />
<br />
This release is an important milestone in the project. It provides important new features like MOF generation capabilities instance parsing or maven integration which will help in providing high quality products.<br />
<br />
See the project homepage for downloads and documentation.]]></description>
			<content:encoded><![CDATA[EscapeK team is pleased to announce the release of MOF Parser Library 0.3.<br />
<br />
This release is an important milestone in the project. It provides important new features like MOF generation capabilities instance parsing or maven integration which will help in providing high quality products.<br />
<br />
See the project homepage for downloads and documentation.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[New website goes online]]></title>
			<link>http://forum.escapek.org/showthread.php?tid=26</link>
			<pubDate>Tue, 29 Apr 2008 11:21:12 +0200</pubDate>
			<guid isPermaLink="false">http://forum.escapek.org/showthread.php?tid=26</guid>
			<description><![CDATA[EscapeK team is proud to introduce this new website.<br />
<br />
We wanted to build a new version where people discovering the project could quickly find essentials informations about EscapeK. We hope we managed to do it. Please report on this forum any problems or questions you may have concerning this new website.]]></description>
			<content:encoded><![CDATA[EscapeK team is proud to introduce this new website.<br />
<br />
We wanted to build a new version where people discovering the project could quickly find essentials informations about EscapeK. We hope we managed to do it. Please report on this forum any problems or questions you may have concerning this new website.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Wiki website updated]]></title>
			<link>http://forum.escapek.org/showthread.php?tid=24</link>
			<pubDate>Mon, 21 Apr 2008 18:28:17 +0200</pubDate>
			<guid isPermaLink="false">http://forum.escapek.org/showthread.php?tid=24</guid>
			<description><![CDATA[Wiki website has just been update to Confluence 2.8.<br />
Please report any trouble.]]></description>
			<content:encoded><![CDATA[Wiki website has just been update to Confluence 2.8.<br />
Please report any trouble.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[CIM 2.18 released]]></title>
			<link>http://forum.escapek.org/showthread.php?tid=23</link>
			<pubDate>Mon, 21 Apr 2008 14:54:55 +0200</pubDate>
			<guid isPermaLink="false">http://forum.escapek.org/showthread.php?tid=23</guid>
			<description><![CDATA[Please be aware that version 2.18 of CIM specification has been released. More information can be found here.]]></description>
			<content:encoded><![CDATA[Please be aware that version 2.18 of CIM specification has been released. More information can be found here.]]></content:encoded>
		</item>
	</channel>
</rss>