XML-RPC uses the XMLHTTPRequest object to make it's requests to the server. And it uses the Browser's XML parsers to create objects from the server response....
Hello Jan-Klaas, Sunday, May 1, 2005, 7:44:46 PM, you wrote: JKK> XML-RPC uses the XMLHTTPRequest object to make it's requests to the JKK> server. And it uses...
Hello when i use jsolait with firefox (1.0.3/ Win and MacOsX) i get the mentioned error message (urllib.js line 240) while trying to make an asynchronous...
... should be it since it's easier to be parsed by Javascript. I personally feel that should be negligible except for very large chunks of data, what is always...
Hi. I'm trying to get started with Javascript O Lait -- I got one project working, but now I'm stumped on another test. I keep getting this message: Error:...
Hi, ... jsonrpc.ServiceProxy('http://localhost:8080/?_action_=jsonaction',['run']); it should be: var servlet = new jsonrpc.ServiceProxy because you are...
... Doh. It looks close enough to Python for me to forget. I don't know if other people have this problem (which plagues me in all my intermittent Javascript...
Hello, Im trying to learn jsolait to do xmlrpc. The examples are a bit too complicated. First of all, the example zipfile doesnt expand into a new directory, ...
... know if other people have this problem (which plagues me in all my intermittent Javascript use), but it might be helpful to check for this case and give a...
I am not too fond of the tone of your mail. Maybe you can frase things a bit different the next time. I work on jsolait in my freetime, there is only so much I...
The problem is that in each svg file to be loaded the first <svg> or <g> must have xmlns ="http://www.w3.org/2000/svg" in it. We live and learn..... Here's...
... I think that would probably be a bad idea. I just need to remember Javascript is not Python; reminders are good, coddling me is unnecessary ;) -- Ian...
Hello, ... I don't quite understand the above. Could you clearify that? I am not sure what you mean by the "LAST value is kept" and "prop value is used for ALL...
... You don't need to import jsolait it is a global object. Though I should fix the importMoidule to return the jsolait object if one wants to import it. ... ...
So, I've been experimenting with different ways of doing RPC calls, and I had something working with jsonrpc.ServerProxy, but it was *really* slow. Like 3...
... OK, removing importModule fixes it. Just including the basic pattern for doing this in the documentation would be a help. Also, throwing an exception...
I'm not sure how to implement this in Javascript, but it would be useful if you could do String::encode('html') to quote all HTML special characters, and...
Jan, You're right: I am working with the classes directly. I didn't realize that I was but I am. Instead of "o1 = new SomeClass(1)" my code is just "new...
... was ... 3 seconds is way to long. Unless you have a huge amount of data that needs to be converted from JavaScript to JSON I doubt you should get these...
... pattern for doing this in the documentation would be a help. Also, throwing an exception when someone tries this would also help; that way unnecessary...
Hello all, How do I pass arguments to a remote XML-RPC method ? I need to pass an arbitrary XML to the server. The XML is mounted client-side. I can't see a...
Hello Jan-Klaas, ... JKK> if you create a ServiceProxy object it will have all the JKK> methods(XMLRPCMethod instances) you specified. JKK> e.g. JKK> var...
Hi, Browser: Firefox. While loading the the javascript source xmlrpc.js, the browser stalls for 3 seconds... Can anyone has a possible solution to avoid this? ...
Hello all, Are there any plans to add Opera support for XML-RPC ? Opera offers XmlHttpRequest support for some time (since 7.6X I believe), but it is still not...
... I will have a look at it and try to make the urllib work in Opera too. Don't realy have an excuse/reason for not supporting Opera, just never got around...
Hello Jan-Klaas, ... JKK> I will have a look at it and try to make the urllib work in Opera too. JKK> Don't realy have an excuse/reason for not supporting...
Hey, you were right. I've just encountered a performance problem related to the creation of the class functions inside constructor so I thought I'll share it. ...