<?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 Alkim Gozen</title>
	<atom:link href="http://blog.alkimake.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.alkimake.com</link>
	<description>Just another Software Developer</description>
	<lastBuildDate>Mon, 11 Apr 2011 04:16:22 +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 JSON-RPC Bridge to XML Web Services and usage in Objective-C in iPhone by Astrid</title>
		<link>http://blog.alkimake.com/2009/09/json-rpc-bridge-to-xml-web-services-and-usage-in-objective-c-in-iphone/comment-page-1/#comment-104</link>
		<dc:creator>Astrid</dc:creator>
		<pubDate>Mon, 11 Apr 2011 04:16:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.alkimake.com/?p=22#comment-104</guid>
		<description>If the method returns a primitive type or an object having only primitive type of fields, both in JavaScript and Objective-C side everything is OK. As non-primitive type of fields values gives only object reference. So I have to represent all data I need as a string, I get something like this:

{&quot;id&quot;:2, &quot;result&quot;:&quot;{\&quot;id\&quot;:1, \&quot;mykey\&quot;:\&quot;my value\&quot;}&quot;}

In JavaScript parsing of it is OK. But in Objective-C side I get an error, because I write the result in a json file:

[request setDownloadDestinationPath:jsonFile];

So it takes all backslashes before quotes.

I don&#039;t know what to do to resolve this problem.</description>
		<content:encoded><![CDATA[<p>If the method returns a primitive type or an object having only primitive type of fields, both in JavaScript and Objective-C side everything is OK. As non-primitive type of fields values gives only object reference. So I have to represent all data I need as a string, I get something like this:</p>
<p>{&#8220;id&#8221;:2, &#8220;result&#8221;:&#8221;{\&#8221;id\&#8221;:1, \&#8221;mykey\&#8221;:\&#8221;my value\&#8221;}&#8221;}</p>
<p>In JavaScript parsing of it is OK. But in Objective-C side I get an error, because I write the result in a json file:</p>
<p>[request setDownloadDestinationPath:jsonFile];</p>
<p>So it takes all backslashes before quotes.</p>
<p>I don&#8217;t know what to do to resolve this problem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JSON-RPC Bridge to XML Web Services and usage in Objective-C in iPhone by gun safe reviews</title>
		<link>http://blog.alkimake.com/2009/09/json-rpc-bridge-to-xml-web-services-and-usage-in-objective-c-in-iphone/comment-page-1/#comment-103</link>
		<dc:creator>gun safe reviews</dc:creator>
		<pubDate>Wed, 23 Mar 2011 22:11:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.alkimake.com/?p=22#comment-103</guid>
		<description>Awesome article! I love it a lot!</description>
		<content:encoded><![CDATA[<p>Awesome article! I love it a lot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JSON-RPC Bridge to XML Web Services and usage in Objective-C in iPhone by Alkım Gözen</title>
		<link>http://blog.alkimake.com/2009/09/json-rpc-bridge-to-xml-web-services-and-usage-in-objective-c-in-iphone/comment-page-1/#comment-101</link>
		<dc:creator>Alkım Gözen</dc:creator>
		<pubDate>Thu, 03 Feb 2011 08:01:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.alkimake.com/?p=22#comment-101</guid>
		<description>You may get this error for following reasons;

1. You send wrong or absent method name. Please take a look at firebug again to see exact method name. (it depends on what rpc framework you are using at server side. e.g com.packageName.methodName... ) 
2. If session had timed out, you may follow my tip that i have written in post:
 &quot;As i said i used ASIHTTPRequest library to create connections. But first and again i want to say, we have to register Bridge class to JSONRPCBridge so we have to call index.jsp page once. But you have to remember that this registration is time limited by session timeout. If you develop an application exceeds this time limit, you have to connect index.jsp asynchronously at the backgound&quot; 
To do this, create a connection to call index.jsp when you open your application or before you try to call a method first time. You have to keep session alive.
3. You send wrong parameters to method.

I hope these will help you.</description>
		<content:encoded><![CDATA[<p>You may get this error for following reasons;</p>
<p>1. You send wrong or absent method name. Please take a look at firebug again to see exact method name. (it depends on what rpc framework you are using at server side. e.g com.packageName.methodName&#8230; )<br />
2. If session had timed out, you may follow my tip that i have written in post:<br />
 &#8220;As i said i used ASIHTTPRequest library to create connections. But first and again i want to say, we have to register Bridge class to JSONRPCBridge so we have to call index.jsp page once. But you have to remember that this registration is time limited by session timeout. If you develop an application exceeds this time limit, you have to connect index.jsp asynchronously at the backgound&#8221;<br />
To do this, create a connection to call index.jsp when you open your application or before you try to call a method first time. You have to keep session alive.<br />
3. You send wrong parameters to method.</p>
<p>I hope these will help you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JSON-RPC Bridge to XML Web Services and usage in Objective-C in iPhone by Astrid</title>
		<link>http://blog.alkimake.com/2009/09/json-rpc-bridge-to-xml-web-services-and-usage-in-objective-c-in-iphone/comment-page-1/#comment-100</link>
		<dc:creator>Astrid</dc:creator>
		<pubDate>Tue, 01 Feb 2011 09:03:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.alkimake.com/?p=22#comment-100</guid>
		<description>Thanks a lot! Great help!

When I test with js everything is ok, but to test this example from objective-c side I got  
{&quot;id&quot;:2,&quot;error&quot;:{&quot;code&quot;:591,&quot;msg&quot;:&quot;method not found (session may have timed out)&quot;}}
Please help with this issue.</description>
		<content:encoded><![CDATA[<p>Thanks a lot! Great help!</p>
<p>When I test with js everything is ok, but to test this example from objective-c side I got<br />
{&#8220;id&#8221;:2,&#8221;error&#8221;:{&#8220;code&#8221;:591,&#8221;msg&#8221;:&#8221;method not found (session may have timed out)&#8221;}}<br />
Please help with this issue.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JSON-RPC Bridge to XML Web Services and usage in Objective-C in iPhone by Manie Neubig</title>
		<link>http://blog.alkimake.com/2009/09/json-rpc-bridge-to-xml-web-services-and-usage-in-objective-c-in-iphone/comment-page-1/#comment-99</link>
		<dc:creator>Manie Neubig</dc:creator>
		<pubDate>Fri, 28 Jan 2011 03:55:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.alkimake.com/?p=22#comment-99</guid>
		<description>~&#039;, I am very thankful to this topic because it really gives great information &#039;-;</description>
		<content:encoded><![CDATA[<p>~&#8217;, I am very thankful to this topic because it really gives great information &#8216;-;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JSON-RPC Bridge to XML Web Services and usage in Objective-C in iPhone by Alkım Gözen</title>
		<link>http://blog.alkimake.com/2009/09/json-rpc-bridge-to-xml-web-services-and-usage-in-objective-c-in-iphone/comment-page-1/#comment-15</link>
		<dc:creator>Alkım Gözen</dc:creator>
		<pubDate>Wed, 04 Nov 2009 08:01:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.alkimake.com/?p=22#comment-15</guid>
		<description>Seems like you have not implemented libz.1.2.3.dylib to your project. Check it first. This library helps you compression and de-compression of your data.</description>
		<content:encoded><![CDATA[<p>Seems like you have not implemented libz.1.2.3.dylib to your project. Check it first. This library helps you compression and de-compression of your data.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JSON-RPC Bridge to XML Web Services and usage in Objective-C in iPhone by shreedevi</title>
		<link>http://blog.alkimake.com/2009/09/json-rpc-bridge-to-xml-web-services-and-usage-in-objective-c-in-iphone/comment-page-1/#comment-14</link>
		<dc:creator>shreedevi</dc:creator>
		<pubDate>Tue, 03 Nov 2009 15:20:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.alkimake.com/?p=22#comment-14</guid>
		<description>i followed the steps as given in the link .
now t gives me error &quot;_inflate&quot; referenced from:
+[ASIHTTPRequest uncompressZippedData:] in ASIHTTPRequest.o
+[ASIHTTPRequest uncompressZippedDataFronSource:toDestination:]</description>
		<content:encoded><![CDATA[<p>i followed the steps as given in the link .<br />
now t gives me error &#8220;_inflate&#8221; referenced from:<br />
+[ASIHTTPRequest uncompressZippedData:] in ASIHTTPRequest.o<br />
+[ASIHTTPRequest uncompressZippedDataFronSource:toDestination:]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JSON-RPC Bridge to XML Web Services and usage in Objective-C in iPhone by Alkım Gözen</title>
		<link>http://blog.alkimake.com/2009/09/json-rpc-bridge-to-xml-web-services-and-usage-in-objective-c-in-iphone/comment-page-1/#comment-13</link>
		<dc:creator>Alkım Gözen</dc:creator>
		<pubDate>Tue, 03 Nov 2009 11:44:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.alkimake.com/?p=22#comment-13</guid>
		<description>First of all, you can find the setup instructions of ASIHTTPREQUEST class on this site : http://allseeing-i.com/ASIHTTPRequest/Setup-instructions. 

Proceed these steps and if you still get error and write down the error message, i can help you.</description>
		<content:encoded><![CDATA[<p>First of all, you can find the setup instructions of ASIHTTPREQUEST class on this site : <a href="http://allseeing-i.com/ASIHTTPRequest/Setup-instructions" rel="nofollow">http://allseeing-i.com/ASIHTTPRequest/Setup-instructions</a>. </p>
<p>Proceed these steps and if you still get error and write down the error message, i can help you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JSON-RPC Bridge to XML Web Services and usage in Objective-C in iPhone by shreedevi</title>
		<link>http://blog.alkimake.com/2009/09/json-rpc-bridge-to-xml-web-services-and-usage-in-objective-c-in-iphone/comment-page-1/#comment-12</link>
		<dc:creator>shreedevi</dc:creator>
		<pubDate>Tue, 03 Nov 2009 11:38:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.alkimake.com/?p=22#comment-12</guid>
		<description>Hi ..
ASIHTTPRequest *request = [[[ASIHTTPRequest alloc] initWithURL:url] autorelease]; gives me error.

I have downloaded the file at location 
http://github.com/pokeb/asi-http-request/tarball/master
but i don know how to use it
Please help</description>
		<content:encoded><![CDATA[<p>Hi ..<br />
ASIHTTPRequest *request = [[[ASIHTTPRequest alloc] initWithURL:url] autorelease]; gives me error.</p>
<p>I have downloaded the file at location<br />
<a href="http://github.com/pokeb/asi-http-request/tarball/master" rel="nofollow">http://github.com/pokeb/asi-http-request/tarball/master</a><br />
but i don know how to use it<br />
Please help</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JSON-RPC Bridge to XML Web Services and usage in Objective-C in iPhone by Alkım Gözen</title>
		<link>http://blog.alkimake.com/2009/09/json-rpc-bridge-to-xml-web-services-and-usage-in-objective-c-in-iphone/comment-page-1/#comment-8</link>
		<dc:creator>Alkım Gözen</dc:creator>
		<pubDate>Sat, 12 Sep 2009 17:31:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.alkimake.com/?p=22#comment-8</guid>
		<description>Teasing is not allowed here :D</description>
		<content:encoded><![CDATA[<p>Teasing is not allowed here <img src='http://blog.alkimake.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

