<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to bugs</title><link>https://sourceforge.net/p/xmlrpcflash/bugs/</link><description>Recent changes to bugs</description><atom:link href="https://sourceforge.net/p/xmlrpcflash/bugs/feed.rss" rel="self"/><language>en</language><lastBuildDate>Fri, 13 Feb 2009 12:06:43 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/xmlrpcflash/bugs/feed.rss" rel="self" type="application/rss+xml"/><item><title>sanbox securtiy violation </title><link>https://sourceforge.net/p/xmlrpcflash/bugs/6/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Hi,&lt;br /&gt;
I wanted to access a xml rpc server running as a standalone:&lt;/p&gt;
&lt;p&gt;var rpc:Connection = new ConnectionImpl('127.0.0.1:101');&lt;br /&gt;
rpc.onLoad = onPostComplete;&lt;br /&gt;
rpc.call('system.listMethods');&lt;/p&gt;
&lt;p&gt;But I get the following error:&lt;/p&gt;
&lt;p&gt;MethodCallImpl instance created. (v1.0)&lt;br /&gt;
getXml()&lt;br /&gt;
Render(): Creating the params node.&lt;br /&gt;
Render(): Resulting XML document:&lt;br /&gt;
Render(): &amp;lt;methodCall&amp;gt;&amp;lt;methodName&amp;gt;system.listMethods&amp;lt;/methodName&amp;gt;&amp;lt;params /&amp;gt;&amp;lt;/methodCall&amp;gt;&lt;br /&gt;
*** Security Sandbox Violation ***&lt;br /&gt;
Connection to 127.0.0.1:101 halted - not permitted from file:///C|/Test%5FDOCUMENTS/Flash/Alpha5/Test%5FV1.swf&lt;/p&gt;
&lt;p&gt;How to connect without a webserver?&lt;br /&gt;
Regards,kishore&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Kishore kumar</dc:creator><pubDate>Fri, 13 Feb 2009 12:06:43 -0000</pubDate><guid>https://sourceforge.nete29351114cfb0cefc757df3b991d8b3698ffde44</guid></item><item><title>typoe of values not encoded if within a struct - fixed</title><link>https://sourceforge.net/p/xmlrpcflash/bugs/5/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;THe MethodCallImpl class doesn't encode the type of values if they are within a STRUCT. This was a problem for me, so I've fixed it in my own version (although it could probably check for doubles etc, i only needed ints.&lt;/p&gt;
&lt;p&gt;Existing code:&lt;br /&gt;
&amp;lt;snip&amp;gt;&lt;br /&gt;
// add value node               MemberNode.appendChild(this.createElement("value"));        MemberNode.lastChild.appendChild(this.createTextNode(parameter.value[i]));&lt;br /&gt;
&amp;lt;/snip&amp;gt;&lt;/p&gt;
&lt;p&gt;my new code:&lt;br /&gt;
&amp;lt;snip&amp;gt;&lt;br /&gt;
// add value node&lt;br /&gt;
MemberNode.appendChild(this.createElement("value"));&lt;br /&gt;
// ammended by atom to wrap a type around the node values&lt;br /&gt;
var aval = parameter.value[i];&lt;br /&gt;
if (typeof(aval) == "number"){&lt;br /&gt;
var subTypeNode:XMLNode = this.createElement("int");&lt;br /&gt;
} else if (typeof(aval) == "boolean"){&lt;br /&gt;
var subTypeNode:XMLNode = this.createElement("bool");&lt;br /&gt;
} else {&lt;br /&gt;
// must be a string then.&lt;br /&gt;
var subTypeNode:XMLNode = this.createElement("string");&lt;br /&gt;
}&lt;br /&gt;
subTypeNode.appendChild( this.createTextNode( aval ) );&lt;br /&gt;
MemberNode.lastChild.appendChild( subTypeNode );&lt;br /&gt;
// end ammended by atom&lt;br /&gt;
&amp;lt;/snip&amp;gt;&lt;/p&gt;
&lt;p&gt;Adam&lt;/p&gt;
&lt;p&gt;(adam &amp;lt;at&amp;gt; adamhoyle &amp;lt;dot&amp;gt; co &amp;lt;dot&amp;gt; uk)&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Wed, 10 Jan 2007 13:17:34 -0000</pubDate><guid>https://sourceforge.netb5fad717d44d5df7187413cdd8bfe38288222ac0</guid></item><item><title>Suggested direct method call does not work</title><link>https://sourceforge.net/p/xmlrpcflash/bugs/4/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Rather than using the deprecated&lt;br /&gt;
"Connection.Call(method.name)", the library suggests&lt;br /&gt;
using "Connection.method.name()". But this call does&lt;br /&gt;
not work.&lt;/p&gt;&lt;/div&gt;</description><pubDate>Sat, 10 Dec 2005 16:32:49 -0000</pubDate><guid>https://sourceforge.net97d249751478c06927a421094b0f4802a7c9431c</guid></item><item><title>Infinite Loop Reported by Debugger</title><link>https://sourceforge.net/p/xmlrpcflash/bugs/3/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Flash Debugger says the following while calling new&lt;br /&gt;
XMLRPC.Connection():&lt;/p&gt;
&lt;p&gt;256 levels of recursion were exceeded in one action list.&lt;br /&gt;
This is probably an infinite loop.&lt;br /&gt;
Further execution of actions has been disabled in this&lt;br /&gt;
movie.&lt;/p&gt;&lt;/div&gt;</description><pubDate>Sat, 10 Dec 2005 16:28:49 -0000</pubDate><guid>https://sourceforge.net4f1a546c2b6a5156ad513e60b11bc87edaee159e</guid></item><item><title>case sensivity for AS2</title><link>https://sourceforge.net/p/xmlrpcflash/bugs/2/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;on line 582 for AS2 needs to be:&lt;br /&gt;
***********************&lt;br /&gt;
this.type  = Type;&lt;br /&gt;
if ((this.type == 'struct') ||&lt;br /&gt;
(this.type == 'array')) {&lt;br /&gt;
this.value = new Array();&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;not:&lt;br /&gt;
***********************&lt;br /&gt;
this.type  = Type;&lt;br /&gt;
if ((this.Type == 'struct') ||&lt;br /&gt;
(this.type == 'array')) {&lt;br /&gt;
this.value = new Array();&lt;br /&gt;
}&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Wed, 28 Jan 2004 20:34:04 -0000</pubDate><guid>https://sourceforge.neta265c0c3560cc7af9a7ceeb721bb7357cb8dd866</guid></item><item><title>Function GetMember(Arg1) doesn't work properly!</title><link>https://sourceforge.net/p/xmlrpcflash/bugs/1/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Function GetMember(Arg1) doesn't work properly!&lt;/p&gt;
&lt;p&gt;If my server-side method returns an array to the &lt;br /&gt;
client,then I cann't get what i want through the &lt;br /&gt;
GetMember().&lt;/p&gt;
&lt;p&gt;I modify the xml-rpc.as file,and the modified file is &lt;br /&gt;
attached here.In my modified version,GetMember() does &lt;br /&gt;
not return any value of fundamental type,it return an &lt;br /&gt;
XMLRPC_object instance,we acquires  the value from &lt;br /&gt;
this XMLRPC_object instance.&lt;/p&gt;
&lt;p&gt;For examples:&lt;br /&gt;
if my server-side method returns an array!&lt;br /&gt;
then i can get the value as follow&lt;br /&gt;
result=myXMLRPC.GetResults();&lt;br /&gt;
myValue=result.GetMember(0).GetMember(0).GetValue();&lt;/p&gt;
&lt;p&gt;My email:robi@greatbit.com&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Tue, 02 Sep 2003 07:40:02 -0000</pubDate><guid>https://sourceforge.net93fdfcd2afc63bd60c8201d7ff658f6148204c21</guid></item></channel></rss>