<?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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for Cornel Creanga</title>
	<atom:link href="http://cornelcreanga.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://cornelcreanga.com</link>
	<description>Random thoughts about software development.</description>
	<lastBuildDate>Sun, 18 Mar 2012 14:46:53 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Invoking OpenX api from Flex by Sameer</title>
		<link>http://cornelcreanga.com/2011/04/invoking-openx-api-from-flex/comment-page-1/#comment-123923</link>
		<dc:creator>Sameer</dc:creator>
		<pubDate>Sun, 18 Mar 2012 14:46:53 +0000</pubDate>
		<guid isPermaLink="false">http://cornelcreanga.com/?p=183#comment-123923</guid>
		<description>Hello Cornel,

I went through this. Its very useful. But I need some help 

Now, I am trying to write a jsp application which will establish the xmlrpc connection with openxapi and return the values. I am using openxapi v1

Here I get the dates through a datepicker and then convert to date format:

`String dateStr = request.getParameter(“datum1″);
SimpleDateFormat formater = new SimpleDateFormat(“dd-MM-yyyy”);
Date result1 = formater.parse(dateStr);

String dateStr2 = request.getParameter(“datum2″);
SimpleDateFormat formater2 = new SimpleDateFormat(“dd-MM-yyyy”);
Date result2 = formater2.parse(dateStr2);`

Then I call the service provided by openxapi (Advertiser Daily Statistics)
(sessionID, advertiserID, from date, to date)

`Object[] objects1=(Object[])client.execute(“advertiserDailyStatistics”,new Object[]{sessionId,3,result1,result2});`


This code is not returning anything 

Tried printing the value or even the length of the object, but no success

Let me know if you need more info from me

Pl help with this weird issue

Thanks</description>
		<content:encoded><![CDATA[<p>Hello Cornel,</p>
<p>I went through this. Its very useful. But I need some help </p>
<p>Now, I am trying to write a jsp application which will establish the xmlrpc connection with openxapi and return the values. I am using openxapi v1</p>
<p>Here I get the dates through a datepicker and then convert to date format:</p>
<p>`String dateStr = request.getParameter(“datum1″);<br />
SimpleDateFormat formater = new SimpleDateFormat(“dd-MM-yyyy”);<br />
Date result1 = formater.parse(dateStr);</p>
<p>String dateStr2 = request.getParameter(“datum2″);<br />
SimpleDateFormat formater2 = new SimpleDateFormat(“dd-MM-yyyy”);<br />
Date result2 = formater2.parse(dateStr2);`</p>
<p>Then I call the service provided by openxapi (Advertiser Daily Statistics)<br />
(sessionID, advertiserID, from date, to date)</p>
<p>`Object[] objects1=(Object[])client.execute(“advertiserDailyStatistics”,new Object[]{sessionId,3,result1,result2});`</p>
<p>This code is not returning anything </p>
<p>Tried printing the value or even the length of the object, but no success</p>
<p>Let me know if you need more info from me</p>
<p>Pl help with this weird issue</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using AMF and Web Services by cornel</title>
		<link>http://cornelcreanga.com/2009/06/using-amf-and-web-services/comment-page-1/#comment-100998</link>
		<dc:creator>cornel</dc:creator>
		<pubDate>Fri, 16 Sep 2011 11:37:12 +0000</pubDate>
		<guid isPermaLink="false">http://cornelcreanga.com/?p=107#comment-100998</guid>
		<description>Mark,

If you can provide me a running example showing this problem I can take a look (my email adress is here:http://cornelcreanga.com/about/)</description>
		<content:encoded><![CDATA[<p>Mark,</p>
<p>If you can provide me a running example showing this problem I can take a look (my email adress is here:<a href="http://cornelcreanga.com/about/" rel="nofollow">http://cornelcreanga.com/about/</a>)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on LCDS Data management &#8211; Handling Java Exceptions by The ADEP Post &#124; Java exceptions and Flex</title>
		<link>http://cornelcreanga.com/2008/06/data-management-handling-java-exceptions/comment-page-1/#comment-100981</link>
		<dc:creator>The ADEP Post &#124; Java exceptions and Flex</dc:creator>
		<pubDate>Fri, 16 Sep 2011 11:09:23 +0000</pubDate>
		<guid isPermaLink="false">http://cornelcreanga.com/?p=13#comment-100981</guid>
		<description>[...] The same approach from point c) applies here. Basically your assembler – which is going to invoke some service to obtain/create data – will take care of translating the exceptions into something meaningful for the client. I wrote some time ago a short post about that here. [...]</description>
		<content:encoded><![CDATA[<p>[...] The same approach from point c) applies here. Basically your assembler – which is going to invoke some service to obtain/create data – will take care of translating the exceptions into something meaningful for the client. I wrote some time ago a short post about that here. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using AMF and Web Services by Mark Barton</title>
		<link>http://cornelcreanga.com/2009/06/using-amf-and-web-services/comment-page-1/#comment-100664</link>
		<dc:creator>Mark Barton</dc:creator>
		<pubDate>Wed, 14 Sep 2011 09:53:40 +0000</pubDate>
		<guid isPermaLink="false">http://cornelcreanga.com/?p=107#comment-100664</guid>
		<description>Hi Cornel,

Just come across your blog and its very useful but how would you go about serliasing a Java Collection e.g. ArrayList - when I pass the collection into the write object I get an error - The class flex.messaging.io.ArrayCollection does not implement flash.utils.IExternalizable but is aliased to an externalizable class.

Any help appreciated.

Thanks

Mark</description>
		<content:encoded><![CDATA[<p>Hi Cornel,</p>
<p>Just come across your blog and its very useful but how would you go about serliasing a Java Collection e.g. ArrayList &#8211; when I pass the collection into the write object I get an error &#8211; The class flex.messaging.io.ArrayCollection does not implement flash.utils.IExternalizable but is aliased to an externalizable class.</p>
<p>Any help appreciated.</p>
<p>Thanks</p>
<p>Mark</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bringing data into Flex applications &#8211; introduction by Adobe Suite &#187; Blog Archive Bookmark: 60+ Adobe Flex reference internet sites &#124; Adobe Suite</title>
		<link>http://cornelcreanga.com/2008/11/bringing-data-into-flex-applications-introduction/comment-page-1/#comment-97820</link>
		<dc:creator>Adobe Suite &#187; Blog Archive Bookmark: 60+ Adobe Flex reference internet sites &#124; Adobe Suite</dc:creator>
		<pubDate>Sun, 28 Aug 2011 06:07:31 +0000</pubDate>
		<guid isPermaLink="false">http://cornelcreanga.com/?p=46#comment-97820</guid>
		<description>[...] Application &#8211; forta.com Realtime, life Example of Flex application &#8211; justskins.com Bringing data into Flex applications &#8211; introduction &#8211; cornelcreanga.com Flex 3:Applications &#8211; labs.adobe.com Tour De Flex Application [...]</description>
		<content:encoded><![CDATA[<p>[...] Application &#8211; forta.com Realtime, life Example of Flex application &#8211; justskins.com Bringing data into Flex applications &#8211; introduction &#8211; cornelcreanga.com Flex 3:Applications &#8211; labs.adobe.com Tour De Flex Application [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on OpenX displaying wrong statistics by cornel</title>
		<link>http://cornelcreanga.com/2011/05/openx-displaying-wrong-statistics/comment-page-1/#comment-77234</link>
		<dc:creator>cornel</dc:creator>
		<pubDate>Tue, 17 May 2011 13:04:45 +0000</pubDate>
		<guid isPermaLink="false">http://cornelcreanga.com/?p=195#comment-77234</guid>
		<description>Tkx :)</description>
		<content:encoded><![CDATA[<p>Tkx <img src='http://cornelcreanga.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on OpenX displaying wrong statistics by necenzurat</title>
		<link>http://cornelcreanga.com/2011/05/openx-displaying-wrong-statistics/comment-page-1/#comment-77056</link>
		<dc:creator>necenzurat</dc:creator>
		<pubDate>Mon, 16 May 2011 21:11:27 +0000</pubDate>
		<guid isPermaLink="false">http://cornelcreanga.com/?p=195#comment-77056</guid>
		<description>see what it happens when you try to be W3C correct :))

ps, the charles link is wrong</description>
		<content:encoded><![CDATA[<p>see what it happens when you try to be W3C correct <img src='http://cornelcreanga.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> )</p>
<p>ps, the charles link is wrong</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Invoking OpenX api from Flex by cornel</title>
		<link>http://cornelcreanga.com/2011/04/invoking-openx-api-from-flex/comment-page-1/#comment-73235</link>
		<dc:creator>cornel</dc:creator>
		<pubDate>Thu, 28 Apr 2011 13:30:12 +0000</pubDate>
		<guid isPermaLink="false">http://cornelcreanga.com/?p=183#comment-73235</guid>
		<description>Thanks Erik :)</description>
		<content:encoded><![CDATA[<p>Thanks Erik <img src='http://cornelcreanga.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Invoking OpenX api from Flex by Erik Geurts</title>
		<link>http://cornelcreanga.com/2011/04/invoking-openx-api-from-flex/comment-page-1/#comment-73232</link>
		<dc:creator>Erik Geurts</dc:creator>
		<pubDate>Thu, 28 Apr 2011 12:49:17 +0000</pubDate>
		<guid isPermaLink="false">http://cornelcreanga.com/?p=183#comment-73232</guid>
		<description>Hi Cornel,

I enjoyed reading your blog post and I&#039;d love to learn more about your next steps in exploring the OpenX API for your Flex development.

Regards, Erik Geurts - OpenX specialist</description>
		<content:encoded><![CDATA[<p>Hi Cornel,</p>
<p>I enjoyed reading your blog post and I&#8217;d love to learn more about your next steps in exploring the OpenX API for your Flex development.</p>
<p>Regards, Erik Geurts &#8211; OpenX specialist</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Remoting, XML, AMF, Hessian and Deflate algorithm by Setting up a Seam (EAR) / Flex project with Flamingo</title>
		<link>http://cornelcreanga.com/2009/02/remoting-xml-amf-hessian-and-deflate-algorithm/comment-page-1/#comment-30875</link>
		<dc:creator>Setting up a Seam (EAR) / Flex project with Flamingo</dc:creator>
		<pubDate>Mon, 06 Sep 2010 05:19:12 +0000</pubDate>
		<guid isPermaLink="false">http://cornelcreanga.com/?p=69#comment-30875</guid>
		<description>[...] You could also choose the „hessian-3.1.3.jar“ instead the „amf-serializer-2.2.jar“ if you would want to use the Hessian-Protocol instead of AMF. I prefer AMF. Checkout this post: http://cornelcreanga.com/2009/02/remoting-xml-amf-hessian-and-deflate-algorithm/ [...]</description>
		<content:encoded><![CDATA[<p>[...] You could also choose the „hessian-3.1.3.jar“ instead the „amf-serializer-2.2.jar“ if you would want to use the Hessian-Protocol instead of AMF. I prefer AMF. Checkout this post: <a href="http://cornelcreanga.com/2009/02/remoting-xml-amf-hessian-and-deflate-algorithm/" rel="nofollow">http://cornelcreanga.com/2009/02/remoting-xml-amf-hessian-and-deflate-algorithm/</a> [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

