[Zope] Fetching data from external methods

2000-07-12 Thread Jarkko Veijalainen
Hi! I've been trying almost two weeks with this problem. I have read 'tons' on zope documentation and mailing lists. I have this dtml form, which submits two values to external method. External method searches LDAP directory with submitted values and returns an object(class) with 5-30 values.

RE: [Zope] Fetching data from external methods

2000-07-12 Thread Jarkko Veijalainen
sorry but your example did'nt work: in external method: return (obj1, obj2,) in DTML: dtml-in external_method(your,params) dtml-var value1 dtml-var value2 /dtml-in here is my submit forms code to explain my case form action="LDAPsearch" method=POST ENCTYPE="multipart/form-data"

RE: [Zope] Fetching data from external methods

2000-07-12 Thread Jarkko Veijalainen
FINALY, your code sould look like: In externalMethod: return res #ENTIRE obj DTML code: dtml-let resDTML="LDAPsearch('66','*',REQUEST)" dtml-var "resDTML.cn" dtml-var "resDTML.otherAttributes" /dtml-let yeah, thanks a lot, it works, but i have still a liitle problem

[Zope] dtml-in with sequence problems

2000-07-20 Thread Jarkko Veijalainen
i have this external method called Imap_methods. Why zope refused to pass '[EMAIL PROTECTED]' string to my method. Is there something wrong with my syntax. dtml-in Imap_methods('[EMAIL PROTECTED]') ... do my stuff here (question 2)

RE: [Zope] Zope performance ratios

2000-07-25 Thread Jarkko Veijalainen
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: 24. heinäkuuta 2000 20:54 To: [EMAIL PROTECTED] Subject: [Zope] Zope performance ratios I'm interested in getting performance statistics for Zope. I'm scouring the mailing lists for previous messages but I

re: [Zope] Zope performance ratios

2000-07-26 Thread Jarkko Veijalainen
I'm doing a performance comparance between Zserver and Iplanet servers packages in next couple of weeks, maybe with Apache and Netscape servers too. We have building a prototype with four different sripting languages, including Zope. Goal is to find out wich combination is most effective. Maybe i

[Zope] Problems with LDAPmodule on sunos5

2000-08-10 Thread Jarkko Veijalainen
I have created Zope site on Linux wich uses external methods to access LDAP. I transferred my site to Solaris8/sunos5 but i can't manage to get LDAPmodule working on sunos. Finally after two days of work and with pretty slick manouvers, i managed to build LDAPmodule

[Zope] Problem to access my DTML files

2000-08-14 Thread Jarkko Veijalainen
Hi! I developed my project on Zope 2.1.6 on NT environment. Last week i installed Zope 2.2.0 on Solaris 8. i transferred my project to 'new' Zope. But when i try to access my DTML document comes authentication window. I can't authenticate it in any of my usernames. Traceback (innermost last):

[Zope] Is this a bug? Posting data to another DTML document

2000-08-16 Thread Jarkko Veijalainen
I developed my project on Zope 2.1.6 on NT environment. Last week i installed Zope 2.2.0 on Solaris 8. i transferred my project to 'new' Zope. But when i try to access my DTML document comes authentication window. I can't authenticate it in any of my usernames. Traceback (innermost last): File

[Zope] Old Zope packages

2000-08-17 Thread Jarkko Veijalainen
) and i'm in hurry to test my project on Solaris, so please tell me quickly where can i download older Zopes. look also : 33. Is this a bug? Posting data to another DTML document (Jarkko Veijalainen) on Zope digest, Vol 1 #934 jarkkov ___ Zope

[Zope] Strange behaviour on authorization

2000-08-18 Thread Jarkko Veijalainen
i have been trying to figure this out and get help to this almost one week... i have login form called login: clip form name="LoginForm" action="email_accounts" method="post" div align="center"centerpUsername or ID br input type="text" name="cn"

RE: [Zope] Strange behaviour on authorization

2000-08-21 Thread Jarkko Veijalainen
now, i have defined same owner to every document in that folder, but it did'nt help me. I cranked litle bit my pages and discovered little more where is the problem. Problem isn't POSTING data, it's the return value that Zope doesn't want to publish. clip font face="Verdana, Arial"

[Zope-dev] How to use document templates

2000-07-05 Thread Jarkko Veijalainen
Hi! Where can i find S_I_M_P_L_E example of using document templates with zope/python. I have this external method, wich return several variables from object class. I want to embed to results in DTML page. The method is called from Zope by HTML form with 3 input attributes. Right now i have