<?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"
	>
<channel>
	<title>Comments on: BEA &#038; Ajax: Bringing BEA WebLogic Portal up to speed with JSON-RPC</title>
	<atom:link href="http://www.blog.dannynet.net/archives/25/feed" rel="self" type="application/rss+xml" />
	<link>http://www.blog.dannynet.net/archives/25</link>
	<description>Pondering Programming and Poetry</description>
	<pubDate>Thu, 28 Aug 2008 22:57:42 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>By: Danny</title>
		<link>http://www.blog.dannynet.net/archives/25#comment-83181</link>
		<dc:creator>Danny</dc:creator>
		<pubDate>Fri, 05 Oct 2007 07:10:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.blog.dannynet.net/?p=25#comment-83181</guid>
		<description>Trebor,

Without looking at your code it's difficult to say what the problem is. If I remember correctly (it's been almost 2 years since I wrote this, time flies...) the pageflow vars are stored on the session under some BEA specific key. And if they're on the session, you wouldn't expect them to just disappear between calls. So maybe, in the Ajax call, they can't be found because another key is being used? But again, I'm guessing here. Have you searched the BEA forums?

Danny</description>
		<content:encoded><![CDATA[<p>Trebor,</p>
<p>Without looking at your code it&#8217;s difficult to say what the problem is. If I remember correctly (it&#8217;s been almost 2 years since I wrote this, time flies&#8230;) the pageflow vars are stored on the session under some BEA specific key. And if they&#8217;re on the session, you wouldn&#8217;t expect them to just disappear between calls. So maybe, in the Ajax call, they can&#8217;t be found because another key is being used? But again, I&#8217;m guessing here. Have you searched the BEA forums?</p>
<p>Danny</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: trebor</title>
		<link>http://www.blog.dannynet.net/archives/25#comment-83082</link>
		<dc:creator>trebor</dc:creator>
		<pubDate>Thu, 04 Oct 2007 13:56:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.blog.dannynet.net/?p=25#comment-83082</guid>
		<description>Hey Danny,

I've been using ajax, with prototype library, and it works very well, however I'm having problems with my pageflow vars, all they get null when an ajax request is invoqued.

Do you know something about this?

Thanks in advance.</description>
		<content:encoded><![CDATA[<p>Hey Danny,</p>
<p>I&#8217;ve been using ajax, with prototype library, and it works very well, however I&#8217;m having problems with my pageflow vars, all they get null when an ajax request is invoqued.</p>
<p>Do you know something about this?</p>
<p>Thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: V P</title>
		<link>http://www.blog.dannynet.net/archives/25#comment-238</link>
		<dc:creator>V P</dc:creator>
		<pubDate>Tue, 07 Feb 2006 19:12:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.blog.dannynet.net/?p=25#comment-238</guid>
		<description>It's in your application name Cal.... make sure that you are using the correct app name when initializing your jsonrpc object.  The best way is to use  to get the appname into a servlet string.  (It will ask if you want to import the class, make sure you choose com.bea.p13n.management.ApplicationHelper).  Then you can use jsonrpc = new JSONRpcClient("//JSON-RPC");</description>
		<content:encoded><![CDATA[<p>It&#8217;s in your application name Cal&#8230;. make sure that you are using the correct app name when initializing your jsonrpc object.  The best way is to use  to get the appname into a servlet string.  (It will ask if you want to import the class, make sure you choose com.bea.p13n.management.ApplicationHelper).  Then you can use jsonrpc = new JSONRpcClient(&#8221;//JSON-RPC&#8221;);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: V P</title>
		<link>http://www.blog.dannynet.net/archives/25#comment-237</link>
		<dc:creator>V P</dc:creator>
		<pubDate>Tue, 07 Feb 2006 02:08:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.blog.dannynet.net/?p=25#comment-237</guid>
		<description>Never mind.  Got it working.</description>
		<content:encoded><![CDATA[<p>Never mind.  Got it working.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cal</title>
		<link>http://www.blog.dannynet.net/archives/25#comment-235</link>
		<dc:creator>Cal</dc:creator>
		<pubDate>Tue, 07 Feb 2006 01:54:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.blog.dannynet.net/?p=25#comment-235</guid>
		<description>A few things:
The tutorial for adding jsonrpc to your web.xml is found here:
http://oss.metaparadigm.com/jsonrpc-1.0/tutorial.html#jsonrpcservlet
(the link in this post is broken).

Additionally, you need to add the jsron.js file as a reference in your jsp:
/path/to/jsonrpc.js"&#62;

Lastly, I keep getting the error : "Connection error" when trying the sample... it appears that this 'try' is throwing it:
http.send(req.data);
(it's as if the http JSONRpcClient.poolGetHTTPRequest object wasn't initialized correctly?)

Thoughts?</description>
		<content:encoded><![CDATA[<p>A few things:<br />
The tutorial for adding jsonrpc to your web.xml is found here:<br />
<a href="http://oss.metaparadigm.com/jsonrpc-1.0/tutorial.html#jsonrpcservlet" rel="nofollow">http://oss.metaparadigm.com/jsonrpc-1.0/tutorial.html#jsonrpcservlet</a><br />
(the link in this post is broken).</p>
<p>Additionally, you need to add the jsron.js file as a reference in your jsp:<br />
/path/to/jsonrpc.js&#8221;&gt;</p>
<p>Lastly, I keep getting the error : &#8220;Connection error&#8221; when trying the sample&#8230; it appears that this &#8216;try&#8217; is throwing it:<br />
http.send(req.data);<br />
(it&#8217;s as if the http JSONRpcClient.poolGetHTTPRequest object wasn&#8217;t initialized correctly?)</p>
<p>Thoughts?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vince Pangan</title>
		<link>http://www.blog.dannynet.net/archives/25#comment-234</link>
		<dc:creator>Vince Pangan</dc:creator>
		<pubDate>Tue, 07 Feb 2006 01:38:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.blog.dannynet.net/?p=25#comment-234</guid>
		<description>hey danny, thanks for the useful tips.  i'm having getting a connection failed exception thrown when i try to initialize the jsonrpc object.  but since you're detailed instructions for configuring web.xml link is down, do you think you can tell me how to properly configure the servlet?  i tried using the configuration from the metaparadigm website, but am thinking it might not be right.  thanks!!!!

-vince</description>
		<content:encoded><![CDATA[<p>hey danny, thanks for the useful tips.  i&#8217;m having getting a connection failed exception thrown when i try to initialize the jsonrpc object.  but since you&#8217;re detailed instructions for configuring web.xml link is down, do you think you can tell me how to properly configure the servlet?  i tried using the configuration from the metaparadigm website, but am thinking it might not be right.  thanks!!!!</p>
<p>-vince</p>
]]></content:encoded>
	</item>
</channel>
</rss>
