Hi, I see your problem. ... The declaration is abit long, I agree, but the calls should not: var r2 = remote.someObj; r2.method1(); r2.method2(); Also, not all...
... That would be propably the best, since the library won't loose backward compatibility. I started with changes in this way, but since I am JS beginner (more...
Hello, ... Sounds like you want to build a framework which does session handling ontop of XML-RPC. There are some authentication/sessionhandling proposals out...
Hello. First of all, I would like to congratulate you for the excelent work done in the jsolait library. Beginning to use it extensively in my project, and...
Hello, ... Nice to hear that. ... in tag <HEAD>. Is there something like this object in jsolait? No, there is nothing like that in jsolait, I don't realy have...
hi i cannot send message to my java xml-rpc server (which works with xml-rpc java client) with jsolait . I have this error message: SendFailed[module 'urllib'...
Jean-Bernard Cavarec
publicm@...
Nov 30, 2004 11:36 am
39
Hello, ... failed. ... This exception is thrown by the browser/viewer. Mozilla and Adobe's SVG viewer and other impl. have a same domain policy. Meaning that...
... Thank you very much jan I am using Adobe SVGViewer but java xml-rpc server is on the same server than the svg file and i have the same message of security...
Jean-Bernard Cavarec
publicm@...
Nov 30, 2004 5:52 pm
41
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...