From lyle at knology.net Tue Jan 24 10:33:38 2006 From: lyle at knology.net (Lyle Johnson) Date: Tue, 24 Jan 2006 09:33:38 -0600 Subject: [fxruby-announce] [ANN] FXRuby 1.4.4 Now Available Message-ID: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 All, FXRuby version 1.4.4 is now available for download from this page: http://rubyforge.org/frs/?group_id=300&release_id=4063 For a summary of the changes in this release, please see this page: http://www.fxruby.org/doc/changes.html As usual, the code is provided as a Win32 installer or a binary Gem (both compatible with the soon-to-be-available One-Click Installer for Ruby 1.8.4), as a source gem, and as a source tarball. For instructions on compiling FXRuby from source, please see: http://www.fxruby.org/doc/build.html And as always, the FXRuby home page is here: http://www.fxruby.org Enjoy, Lyle -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (Darwin) iD8DBQFD1kjSFXV/hD6oMd0RAsOuAJ9OqyYoK6efjtbYg0hnoYAtVCgbVwCggr6p EFTgRmPJioMSqqktN2xgMto= =SQ3M -----END PGP SIGNATURE----- From brutyn_nick at hotmail.com Mon Jan 30 08:59:56 2006 From: brutyn_nick at hotmail.com (Brutyn Nick hotmail) Date: Mon, 30 Jan 2006 14:59:56 +0100 Subject: [fxruby-announce] FXruby webservices Message-ID: Hey, How can i set up a webservice client in fxruby??? I cant get the webservice to run properly :s when i do the invoke http://twodecode.pilot.localhost.be:3000/backend/invoke, everthign seems to work fine These are the different methods i tried to access the webservice The webservice is written in RoR, and i try to access in ruby (it is a stand alone app) # Initialize the SOAP driver wsdl = "http://twodecode.pilot.localhost.be:3000/backend/wsdl" ns = "urn:ActionWebService" #xml parser error @drv = SOAP::RPC::Driver.new(wsdl, 'urn:ActionWebService') @drv.add_rpc_method_with_soapaction('Authenticate', 'urn:ActionWebService#Authenticate', 'twa', 'login', 'pass') result = @drv.Authenticate('xxx', 'test','test') #xml parser error drv = SOAP::RPC::Driver.new(wsdl,'urn:ActionWebService') drv.add_method_with_soapaction("Authenticate", 'urn:ActionWebService' + "/#Authenticate", 'twa', 'login', 'pass') @result = drv.Authenticate('xxx','test','test') #post not supported,xml parser error wiredump_dev=STDERR service = SOAP::RPC::Driver.new(wsdl, ns) service.wiredump_dev=wiredump_dev service.add_method_with_soapaction("Authenticate", ns + "/#Authenticate", 'twa', 'login', 'pass') @result = service.Authenticate('xxx','test','test') #undefined method Authenticate #wsdl = "http://localhost/Twodecode.Webservices/Webservices.asmx?WSDL" factory = SOAP::WSDLDriverFactory.new(wsdl) @driver = factory.createDriver result = @driver.Authenticate('xxx','test','test') #undefined mehtod create_rpc_driver drv = SOAP::WSDLDriverFactory.new(wsdl).create_rpc_driver drv.wiredump_dev = STDOUT dwml = drv.Authenticate('xxx','test','test') #uninitialized constant ActionWebService soap_client = ActionWebService::Client::Soap.new(BackendApi, wsdl2) result = soap_client.Authenticate('xxx','test','test') Hope u can help me. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/fxruby-announce/attachments/20060130/83ffbad3/attachment-0001.htm From brutyn_nick at hotmail.com Mon Jan 30 09:03:35 2006 From: brutyn_nick at hotmail.com (Brutyn Nick hotmail) Date: Mon, 30 Jan 2006 15:03:35 +0100 Subject: [fxruby-announce] Login application Message-ID: hey, i want to make a application that can do: -user can login in -when login fails, show message -when login is correct, new window(no popup) with some select list of some sort filled with employee records f that user. How can i: -If i click a button i can get the value from the textfield -When login succes show new window (no popup) -fill some select list?? I m pretty new at this, only worked with RoR, how u guys can help me, of have some great example that can do this. Thanks in advance Nick -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/fxruby-announce/attachments/20060130/f36ed3dd/attachment.htm