Hi, I'm looking at your library (framework?) with great interest. I found it very useful and easy to use. Right now I'm trying to implement some RPC using it...
Hi Jan First I'd like to thank you for your great tool. I'd ask you if there's some way to pass an object which is not exactly a string within an xml-rpc...
Hi Jan, Downloaded jsolait yesterday to see if it fits one of my projects. I am encountering problems testing it however. Created a small test html file with a...
Hello, ... exactly a string within an xml-rpc connection. It should be possible to return all types which are supported by XML-RPC back to the script, this...
Hi, ... Sounds like a security issue. What browser are you using? For mozilla there is a same-domain policy, meaning you can only make requests to the same...
... I am using IE 6.0.2900 on WinXP servicepack 2. Now you mention it, SP2 is well known for its 'enhanced security'. It is very possible that there is some...
Hello. First of all, thank you Jan for the jsolait Javascript module. I have a quick question for the group. I assume I'm overlooking something simple, but...
Hi, ... You are probably right about the security restriction. Are you serving the HTML page from the same server the XML-RPC service is running on? Mozilla...
Hello, ... So, your html page is served from: http://some_ip/some_folder/html_file.html Then ypu should be able to make a request to any URL on that server: ...
Hi, We are using jsolait along with perl RPC-XML module as a server. It seems that jsolait is unable to parse xmlrpc method response containing an empty struct...
Hi, ... As you said the specs don't realy say. What I figured was that as described above the struct would contain one member, This member has an empty string...
Hi, Our actual problem is that jsolait throws an exception when it receives this kind of response: <?xml version="1.0"?> <methodResponse> <params> <param> ...
Hello, I will fix the lib. Personally, to me a: <struct></struct> makes more sence than a: <struct><member><name></name><value></value></struct> But that's I...
Hello Jan, Thank you for your support. I also believe that <struct></struct> would be a better choice, but apparently that's not in the mind of everyone. ...
Hi I am very new to this so please bear with me I am trying to use Jscript dhtml pages as a GUI front end for an AV system, communicating using XMLRPC calls....
... Yes, it is a security problem. If the local host was "trusted" then any webpage could open connections to any service running on your local machine. That...
Just discovered your library yesterday - great stuff! Can someone post an example of getURL/parseXML using a callback that will work in ASV? If possible, I...
Works great! Thanks. There's nothing like an example to help me learn how to use a new code library. dave ... that ... an ... working ... functions....
Is there a way to protect properties and functions within a module? within a class? (protect from outside use but available to all within the module or class)...
Hi, ... Yes, this is actually one reason for writing jsolait, to be able to have some data/function hiding. have a look at the following: Module("someModule",...
Below is an exceprt from a the post I made to the XUL developer's forum: I'm using the jsolait JS library for its XML-RPC functions, talking to a XML-RPC...
Hi all, I finally had some time to work on jsolait a bit again. The long awaited fix for the IE memory leak has arrived. Though some more testing would be...
Hi, I'm trying to get an asynchronous xmlrpc call working and so far have not been successful. Does anyone have any working examples I can go off of? Thanks! ...
Hi, This should do: var xmlrpc = importModule("xmlrpc"); var s = new xmlrpc.ServiceProxy("someserver", ["echo"]); s.echo("Hello SVG", function(result, err){ ...