[Zope] Re: [Urgent] Zope good for multiprocessor hardware (Chalu Kim)

2000-11-23 Thread Red Pineseed

Hi Chalu

I have been runing with Dual_CPU for a year without probelm.
You should be ok and gain the general muilti-cpu advantages,
in performance.



Philip

___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




[Zope] RE: a non-commercial "e-bay" type application

2000-11-23 Thread Red Pineseed


You can use ZOPE and the 6 XML files layed out in the XML
HANDBOOK with some other language. This is all you need for
your application. Let me once you are done.

Philip

> Message: 1
> From: "Diarmaid Lynch" <[EMAIL PROTECTED]>
> Organization: UUC
> To: [EMAIL PROTECTED]
> Date: Thu, 23 Nov 2000 17:47:30 GMT +
> Subject: [Zope] Re: Zope digest, Vol 1 #1067 - 68 msgs
> Reply-to: [EMAIL PROTECTED]
> 
> I'm interested in making a non-commercial "e-bay" type application 
> for selling second hand books @ my university.
> 
> any suggestions?
> Cheers.

___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




[Zope] Re: XMLRPC accessing Zope DTML/SQL methods

2000-11-07 Thread Red Pineseed

Since XML-RPC is already built into Zope, you do not need to
work about that. You need however to write a java client to
access your ZOPE method. There is information and a JAVA
client on the xml-rpc site http://www.xmlrpc.com/. You can
find enough info to start with.


Philip







> Message: 3
> From: "Mayers, Philip J" <[EMAIL PROTECTED]>
> To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]>
> Subject: [Zope] XMLRPC accessing Zope DTML/SQL methods
> Date: Tue, 7 Nov 2000 19:49:54 -
> charset="iso-8859-1"
> 
> I'm planning on using Zope as some middleware to an SQL database backend.
> Zope will implement the per-row ACL checking and such for the database
> application, and there are two clients - a simple web-based Zope frontend,
> and a larger standalone Java application. I'd like the Java app to
> communicate with Zope using XMLRPC, so that I can re-use the middleware
> portion, and take advantage of SSL'd HTTP, along with all the other bonuses
> such as not trusting the client :o)
> 
> But: I'm having problems that indicate I don't understand how External
> Methods or the XMLRPC call support works.
> 
> I have an SQL query method backed by a persistent DB connection. I want to
> call that method over XMLRPC remotely. How do I do that? Namely, how do I
> pass named arguments to the SQL method?
> 
> Also, I did some simple External Method examples, and acquisition doesn't
> seem to work as advertised: This:
> 
> def testf(self, REQUEST):
> return self.index_html()
> 
> Gives an error "standard_html_header not found". What's going on?
> 
> Regards,
> Phil
> 
> +--+
> | Phil Mayers, Network Support |
> | Centre for Computing Services|
> | Imperial College |
> +--+

___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




Re: [Zope] Where is the code?

2000-11-05 Thread Red Pineseed

Thanks Rik,

You answered my question perfectly. This was my guess and
found the Data.fs. This makes me wonder though how the
implementation of the three tier separation, ie
data/logic/presentation is achieved. Do you have any idea?
What is the advantage of putting everything in a db?
Apparently if the db down, we will lose everything and
recovering from a db is pain as you may already know. Even
though it is great performance improvement to load the db in
RAM at run time, do you know of an other benefits?


Philip


Rik Hoekstra wrote:
> 
> 
> DTML and Zope (code) objects are kept in the object database. It is in
> /var/data.fs on your filesystem.
> If you create a new object, Zope creates a new instance of a class that is
> in Zope. They are defined in Products. The products are visible in your zope
> site at http://your.site/Control_Panel/Products
> Zope products/classes may be defined in Python modules. In that case the
> modules live in the /lib/python/Products directory. They may also
> be defined in ZClasses, which are defined completely through the web. They
> are not visible on the filesystem, only in Zope itself.
> 
> I don't know whether that was your question, but DTML is interpreted at
> runtime by the Zope system. It takes the dtml bits from your template and
> returns the filled in template.
> 
> hth
> 
> Rik

___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




[Zope] Where is the code?

2000-11-05 Thread Red Pineseed

Hi all,

I have played with Zope and got everything working. It is
however not clear to me how the code (DTML and so on) is
merged into Zope and where it is kept. Would gurus out there
point this to me? thanks.

Philip

___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )