... Here the example: var xmlrpc=imprt('xmlrpc'); var service = new xmlrpc.ServiceProxy('/test.py', ['echo']); service.echo('Hello jsolait', function(result,...
Hello all. I've created a JavaScript GUI library based on JSOLait. It comes with two controls (a menu and a tree). It also provides foundation to develop...
Ideas for JSOLait 2.0. 1) Change jsolait.js - mod.moduleSearchURIs = [".", "%(baseURI)s/lib", "%(baseURI)s/.."]; This will allow people to place directory with...
Hi, ... I guess "%(baseURI)s/lib" should be removed as the build script should take care of all lib files that come with jsolait. Other than that I see no...
Slava has pointed out a couple of problems regarding the priv parameter passed to the class' scope function. (http://jsolait.net/ticket/5) Here are some...
Hi all, imprt('moduleName') and imprt('libName.moduleName') has the following semantic: if ther is an object jsolait.modules['moduleName'] the object is ...
What is the problem here? A. in module #1 mod.ISingleton = Class("ISingleton", function(publ){ var bIsValid = true; // CONSTRUCTOR publ.init= function(){ ...
Hi, ... If you use 'new SomeConstructor()' and inside the constructor you return null then that will cause the engine to return the object created by the...
That worked. Thanks. I'm currently refactoring my webPhrame project for SVG using RESTful design and your urllib. Are there any plans to include PUT and...
Hi, if you look at http://jsolait.net/wiki/documentation/urllib you see the sendRequest method. Use 'PUT' / 'DELETE' for the type argument. That should work. ...
I have started playing with jsolait and I love it! Thanks for the work, I think it is going in the right direction. I have a question about the usage which I...
Hi, this shows I have not written the docs well enough (http://jsolait.net/wiki/documentation/core#moduleimportfunctionality) What you want to do is change...
... No worries, as I said, it is not quite clear in the docs. If you find similar things that are not quite clear just add a new tiket to the ticket system on...
Hello! I'm using just urllib to get content into my javascript, mainly due to problems with my SOAP implementation (unrelated to jsolait). Can I in any way...
... getHTTP() is not visible outside of urllib. So the only way to find out if a request would fail is to make the request. If you think it would be good to...
Hello there, and thanks! Yes, I'd very much like you to do that. In my case, I've got a check to try to determine whether HTTPRequest is available in the login...
No, you are correct and I believe your aproach is not only the right way but the way developers should do it. With all the AJAX hype going on people start...
Hello, I tried to set up the example from the tutorial (http://www.jsolait.net/wiki/tutorials/creatingamodule) for this purpose I've placed a copy of the...
... There should have been another error showing that the module could not be imported. What you want to do is save the module named "tutorial" in the file ...
In case you have not been watching jsolait.net changes, I have added some new code. There is a new strings module for string manipulation. It extends the...
Hi all, just some updates, I have rewritten the iter module which provides some iteration funcitonality. Basically it enables objects to be iterable and to...
... I am struggling with this as well. I am using PHP to return an XML-RPC struct and I am unclear how to get at the struct contents. The server returns a...
... a struct returned is accessed like a JavaScript object: <struct> <member> <name>lowerBound</name> <value><i4>18</i4></value> </member> <member> ...
Although the documentation states that jsonrpc implements introspection, it presently seems to be absent. Can you confirm this? Is it going to be implemented...