[Zope] XML-RPC encrypted?

2006-01-25 Thread José Carlos Senciales
Hello, I need to use XML-RPC to call some functions of a product in zope, but all my xml-rpc conections has user:[EMAIL PROTECTED]:port\folder\method I´m wondering if it´s possible to do a call with xml-rpc with all data encrypted... with ssl...? Thanks. Jose Carlos

Re: [Zope] XML-RPC encrypted?

2006-01-25 Thread Peter Bengtsson
Have you tried https://user:[EMAIL PROTECTED]:port\folder\method.. ? On 1/25/06, José Carlos Senciales [EMAIL PROTECTED] wrote: Hello, I need to use XML-RPC to call some functions of a product in zope, but all my xml-rpc conections has user:[EMAIL PROTECTED]:port\folder\method I´m

Re: [Zope] XML-RPC encrypted?

2006-01-25 Thread Tino Wildenhain
Peter Bengtsson schrieb: Have you tried https://user:[EMAIL PROTECTED]:port\folder\method.. ? On 1/25/06, José Carlos Senciales [EMAIL PROTECTED] wrote: Hello, I need to use XML-RPC to call some functions of a product in zope, but all my xml-rpc conections has user:[EMAIL

Re: [Zope] XML-RPC within ZOPE

2005-12-15 Thread Dieter Maurer
Jan-Ole Esleben wrote at 2005-12-11 19:10 +0100: Is it at all impossible to use XML-RPC _within_ a ZOPE architecture? In principle yes. Be careful however: it is easy to introduce deadlocks! When during request processing you call back into the same Zope via XML-RPC, the calling out request

Re: [Zope] XML-RPC within ZOPE

2005-12-12 Thread Jan-Ole Esleben
The problem is that it isn't my design, and the design is part of a contract. I can't really do anything about that (the major problem is that there will be SOAP components that might even need to be transparently integrated - which completely excludes ZEO). I tried doing my own commits, but it

Re: [Zope] XML-RPC within ZOPE

2005-12-12 Thread Chris Withers
Jan-Ole Esleben wrote: The problem is that it isn't my design, and the design is part of a contract. I can't really do anything about that (the major problem is that there will be SOAP components that might even need to be transparently integrated - which completely excludes ZEO). That

Re: [ZOPE] XML-RPC within ZOPE

2005-12-12 Thread Jan-Ole Esleben
Chris: the errors I get are always ConflictErrors without any usable tracebacks. I would like to give more information, but it really is very complex when you go a little deeper and would probably not be useful. I'll try to describe it a little better anyway: I have an Object that offers an

[Zope] XML-RPC within ZOPE

2005-12-11 Thread Jan-Ole Esleben
Hi! Is it at all impossible to use XML-RPC _within_ a ZOPE architecture? What I mean is: I have a nested call structure: 1. Python script calls a method from a ZODB object 2. That method calls a Python module function 3. That module function dispatches an XML-RPC call to the same ZODB object

Re: [Zope] XML-RPC within ZOPE

2005-12-11 Thread Jan-Ole Esleben
It really *is* in your interests to ensure a single request completes all your functional requirements ;) That's not possible unfortunately. The design of the system is rather complex, and unalterable in this respect. However, it is not true that it is usually possible to fulfil this

Re: [Zope] XML-RPC within ZOPE

2005-12-11 Thread Jan-Ole Esleben
OK, the following is the case: The setup is for functions dispatching either locally or via XML-RPC. At the moment, the mechanism I use is to detect locality is flawed and thus doesn't work well. So I have local XML-RPC calls where I could have global ones. But. 1. I need that possibility for

[Zope-dev] Fat client thoughts, was: RE: [Zope] Zope + XML-RPC + native GUI

2002-01-22 Thread Jon Edwards
No, I haven't done this, but I plan to do something like this to create a fat client to interact with content objects in a CMF site I am building. I've been playing around with wxPython and Boa Constructor (http://boa-constructor.sourceforge.net). I'd be interest in finding out ways in

[Zope-dev] RE: Fat client thoughts, was: RE: [Zope] Zope + XML-RPC + native GUI

2002-01-22 Thread Jon Edwards
My apologies, I meant to send this to the general Zope list. Sorry! Cheers, Jon -Original Message- From: Jon Edwards [mailto:[EMAIL PROTECTED]] Sent: 22 January 2002 12:32 To: Zope Dev list Cc: [EMAIL PROTECTED] Subject: Fat client thoughts, was: RE: [Zope] Zope + XML-RPC

Re: [Zope-dev] Fat client thoughts, was: RE: [Zope] Zope + XML-RPC + native GUI

2002-01-22 Thread Brad Clements
I'm working with IBM's Sash http://sash.alphaworks.ibm.com/ Unfortunately the client is programmed in Javascript.. -- I'm also doing a lot of DHTML, XML/XSLT browser based stuff on IE. So-called one- page web applications based on XML-RPC, works nice. Brad Clements,[EMAIL

[Zope] XML-RPC problem solved!!

2000-12-22 Thread I-Min Mau
OK, with help of my boss we were able to get the xmlrpclib patch to work with Authentication. Basically I did as before, with a duplicated, modified version "xmlrpclibx", and used it: import xmlrpclibx t = xmlrpclibx.BasicAuthTransport('myusername','mypassword') # I have to create the new

Re: [Zope] XML-RPC

2000-11-21 Thread Steve Spicklemire
A number of folks have asked me about ming-0.0.4 and Zwiff. I have just uploaded a new Zwiff that uses ming-0.0.4+ (there is actually a full ming distribution this time with all the patches needed to work with Zwiff.) Let me know how it goes! http://www.zope.org/Members/sspickle/Zwiff -steve

Re: [Zope] XML-RPC

2000-11-12 Thread Steve Spicklemire
OK... I thought I'd put a little effort into this concept, and out came: http://www.zope.org/Members/sspickle/Zwiff Take a look it's a start at the concept of 'on the fly' swf from Zope. I needed a quick way to get up and running so I sub-classed PythonMethod and used the existing swf

Re: [Zope] XML-RPC

2000-11-10 Thread Steve Spicklemire
Hi Jason, I've been working with Flash some lately as well.. with an eye toward useful vector graphics for Zope. There is a library called ming (http://www.opaque.net/ming) with a (SWIG'ed) python extension that I've been slowing working through, adding wrapping fuctions and getting to the

[Zope] XML-RPC

2000-11-08 Thread David Nimmons
I am trying to develop a web based interface to automation equipment (Allen Bradley plc's in this case) to use for an operator interface. I am using SVG to develop graphics and want to use javascript to manipulate the graphics based on data from the plc. I am looking for a way to pull more data

Re: [Zope] XML-RPC

2000-11-08 Thread Hannu Krosing
David Nimmons wrote: I am trying to develop a web based interface to automation equipment (Allen Bradley plc's in this case) to use for an operator interface. I am using SVG to develop graphics and want to use javascript to manipulate the graphics based on data from the plc. I am looking

Re: [Zope] XML-RPC

2000-11-08 Thread Phil Harris
ROTECTED] Cc: [EMAIL PROTECTED] Sent: Wednesday, November 08, 2000 10:16 PM Subject: Re: [Zope] XML-RPC | David Nimmons wrote: | | I am trying to develop a web based interface to automation equipment (Allen | Bradley plc's in this case) to use for an operator interface. I am using | SVG to devel

Re: [Zope] XML-RPC

2000-11-08 Thread Jason Cunliffe
Hello I am missing the start of this thread, so I may be off topic, but you might want to look seriously at Flash5 for the client side programming and graphics. PROS: 1. Flash5 ActionScript is _very_ close to JavaScript 2. Flash Player/Plugin is much smaller than SVG 300Kb vs. 13Mb I think +

Re: [Zope] XML-RPC vs External method?

2000-11-02 Thread Irene Barg
Kapil, Thank you for this simple solution! I'm new to XML and Zope and sometimes I get caught in learning too many new things at once, we forget to think "simply":-) Thanks to you, I don't need to use either External method, or XML-RPC. The following simple DTML method works: dtml-call

[Zope] XML-RPC vs External method?

2000-11-01 Thread Irene Barg
Hello all, I have setup a query form to query a small MySQL database using Zope. It consists of: 1. ZMySQL Database Connection (ZMySQLDA) 2. ZSQL method 3. A search interface. Now, what I want is the user to have the option of viewing the results in HTML or raw XML. I think there can be

Re: [Zope] XML-RPC vs External method?

2000-11-01 Thread Ender
if the xml format is simple you could just do it dtml, it would end up with some extra white space but it would still be valid. a dtml method akin to ?xml version="1.0"? dtml-in mysqlretrieve item contentdtml-var content/content squishydtml-var squishy/content /item /dtml-in

RE: [Zope] XML-RPC and Zope

2000-08-02 Thread Chris McDonough
Lots. If you have Zope 2.2, see the API Documentation in the help system. -Original Message- From: Gijs Reulen [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 02, 2000 8:33 AM To: Mailinglist Zope Subject: [Zope] XML-RPC and Zope Hi there I am experimenting with XMP-RPC

[Zope] (XML-RPC) Calling Database.manage_pack

2000-07-21 Thread Oleg Broytmann
Hello! I wrote a simple script to pack Data.fs on a regular basis. It is very simple, actually, just urllib.urllretrieve("http://my.zope/Control_Panel/Database/manage_pack?days:float=3") (a little bit harder than that, but I did it) Now I am trying to achieve the same with XML-RPC. No