Hello, ... server than the svg file and i have the same message of security violation. In fact i am building the svg file on the fly with a servlet which...
Hello all, I have fixed a couple of bugs. On in the lang module concerning negative numbers. The other int he XML-RPC module. I removed the toXmlRpc method...
Hi, We are new to use json rpc. We downloaded json-rpc from jsolait.net. We want to know the flow how to use it? We have front end html file with java script...
Hello, have you looked at these examples: http://jsolait.net/examples/jsonrpc/index.xhtml If that's not enough let me know. For the PHP part I cannot realy...
Hello, I have been playing a bit with iterators to create iteratable objects and to allow the iteration to be run asynchronously using timers. In a synchronous...
Can I download this module yet? It would fit right in one of the svg UI modules I'm working on. I don't mind if it is still alpha since my project is at...
Hi Jan. After working with several modules for a few weeks it would be nice to have "friend" modules which can access each other's "protected" properties....
Hi, I'm new to jsolait. This is GREAT idea! I stucked on following exception: "TypeError: server.getRandomCookie is not a function" The server script...
I think it's some library bug -> I lunched tester (from xml-rpc examples.zip) and the result was exactly the same: "Error trace: service.echo is not a...
... You probably did not tell the ServiceProxy constructor that the service has a method "getRandomCookie" so it did not know to create a proxy method. ... ...
Than you for fast replay! I appretiate it. ... are ... That's it! It works now. But another problem raises: "Error trace: RequestOpenFailed [module 'urllib'...
Hi, ... Serve your html page from the same server the rpc service is running on. e.g rpc is running on http://localhost/rpcservice/ then load your page from...
... I got Firebird but I know what you mean. I got another problem and I really want to make it work today. So I especially appreciate your help. "Error trace:...
... This error is produced by your server side XML-RPC impl. It tells you that the method you are calling is not provided by the service. Are you sure that you...
... Hello (i know , 15 days after, but sorry i was busy.) Thank you Jan , i think i'll try to embed my xmlrpc server in a servlet instead of execute it as...
Jean-Bernard Cavarec
publicm@...
Dec 14, 2004 9:32 pm
56
... Well it works fine, thank you very very much Jan. If somebody is interested here is my test : ... import java.io.*; import javax.servlet.*; import...
... No, not yet. I was thinking of writing a SOAP module but did not have the time yet (or the resources to have enough spare time to write it). If someone...
The following function is within a class in a module. Is it possible to return "oNewMenu" from the function or to make "oNewMenu" a class property? If so,...
Hello Dave, ... you can not return oNewMenu from the function because oNewMenu gets set asynchronously "long after" the function returns. You can though make...
I used the "var oSelf = this;" option and it works great! Unless it is easy to impliment the "bound" method improvement I tend to think that it isn't worth the...
Here is the code ( the part that I don't understand what's happening) which deals the class inheritence... //GLOBAL var oNodeManager = null; oNodeManager = new...
I made a dumb mistake: I put the alert inside a callback function! So the "var oSelf = this;" solved the problem. With egg on my face, Dave ... supr){ ... ...
Does jsolait fully support UTF-8? For example would it support sending data like this? The example chat program throws an error when this string is received. ...
Hello. Great work on the library! I have a small question though. When I create a new class using Class all private variables are static: mod.TestClass =...
... TestClass ... Actually public variables are static as well. This pretty much imposes single object at a time for the class limit, or the objects of the...
... I would say no, but that is not 100% correct. It depends how you access it. if you use this.publVar = ... (or from the outside obj.publVar) then it is a...
I attempted to perform the test cases for the HTML chat using Safari for both JSON-RPC and XML-RPC. In both cases I received error conditons. Is Safari not...