Re: HttpClient + Session

2007-03-30 Thread Craig McClanahan
On 3/30/07, Tatiana Lloret Iglesias [EMAIL PROTECTED] wrote: Hi all, I'm using jakarta httpclient classes to generate a Request from a stand alone application: HttpClient client = new HttpClient(); URL filesURL = new URL(myURL); PostMethod postMethod = new PostMethod(filesURL.toString());

Re: What tool can I use to substitute marked expressions in a string?

2007-02-28 Thread Craig McClanahan
On 2/28/07, Karr, David [EMAIL PROTECTED] wrote: I know that there are several related tools in this area, but I'm not sure from a superficial look exactly which one I need. I just need to have a string with occurrences of substrings like ${foo}, and I need to be able to replace that with a

Re: [validator] intRange(between 0-100) validation fails for 1234 value because of a locale issue

2007-02-28 Thread Craig McClanahan
On 2/28/07, Niall Pemberton [EMAIL PROTECTED] wrote: This question relates to Shale's validation rather than commons validator - you're more likely to get an answer asking this on their user list. Actually, Niall, there are C-V related issues here. Even in the US locale, the Commons

Re: [httpclient_common]_why httpclient's speed is the same with JDK httpurlconnection

2007-02-06 Thread Craig McClanahan
On 2/6/07, allen huang [EMAIL PROTECTED] wrote: Hi, I have a problem when trying to comparing the speed between JDK HttpURLConnection and HttpClient. Now I have two methods, one is performed with jdk(1.5) httpurlConnection, the other is performed with httpClient( 3.0.1). Both of them try to

Re: commons threadpool:Any body can share the source code (or jar files) and examples? I cannot log on apache cvs server

2007-02-04 Thread Craig McClanahan
Apache stopped using CVS two years ago. Every project has the appropriate instructions to download the sources from the *Subversion* repository. For example, if you want the instructions on how to access the repository for Commons BeanUtils, go to [1]. Note that a large number of Apache

Re: Commons-logging 1.1 POM: why isn't servlet-api scope=provided ?

2007-01-23 Thread Craig McClanahan
On 1/23/07, Yoav Shapira [EMAIL PROTECTED] wrote: Hola, I think that the commons-logging Maven POM ( http://svn.apache.org/repos/asf/jakarta/commons/proper/logging/trunk/pom.xml in SVN) should specify scope=provided for its Servlet API dependency. That helps users by not including the Servlet

Re: [configure] - context.xml vs Tomcat Admin

2007-01-22 Thread Craig McClanahan
On 1/22/07, Garth Keesler [EMAIL PROTECTED] wrote: So, if I read you right, I need to do one or the other but not both and either one does pretty much the same thing. It also appears that doing it in the Admin page does it for all Axis web services, right? You are correct about one or the

Re: [configure] - context.xml vs Tomcat Admin

2007-01-22 Thread Craig McClanahan
On 1/22/07, James Carman [EMAIL PROTECTED] wrote: Using the server admin lets you take the same web application and deploy it *unmodified* in different environments where you really want to connect to different services (such as a testing server, a staging server, and a production server). If

Re: TC 5.5.20 Config

2007-01-20 Thread Craig McClanahan
On 1/20/07, Garth Keesler [EMAIL PROTECTED] wrote: This email concerns the deployment of DBCP in a TC 5.5.20 site. The subject was poorly chosen. Sorry... Actually, I suspect that the subject line *is* pretty accurate :-). * As an off topic comment, I would generally start with the

Re: Commons Pool.. anyone using?

2007-01-08 Thread Craig McClanahan
On 1/8/07, Barrie Selack [EMAIL PROTECTED] wrote: I was looking at Commons Pool for some SOAP/HTTP connection objects. Is anyone using Pool/ Any hint/tips/warnings etc? One population of such users is anyone using the Commons DBCP connection pool, which uses Commons Pool under the covers.

Re: [Chain]: Frameworks and Products using chain api

2006-12-20 Thread Craig McClanahan
On 12/20/06, Virender Singh [EMAIL PROTECTED] wrote: Hi, I am analysing commons-chain for use in our framework. Are there any frameworks/products that are using commons-chain api? I have heard of struts-chain. I do not have any idea as to how much is it in use? The list of products would help

Re: [scxml] including chunks of scxml code.

2006-11-01 Thread Craig McClanahan
On 11/1/06, Nestor Urquiza [EMAIL PROTECTED] wrote: Hello guys, I need to apply DRY ;-) so I do not want to be duplicating SCXML code that is to be included in many different states. Just wondering about the options we have here: 1)XInclude 2)A special tag from scxml??? 3) Any other idea?

Re: FW: Using tomcat with commons-digester in commons/lib won't work

2006-10-23 Thread Craig McClanahan
On 10/23/06, Allen,Eva [EMAIL PROTECTED] wrote: Someone else suggested that earlier. That didn't work (I figure there's something wrong with my environment--I know it should have worked) but I put it in shared/lib for now and that did work. For the record, the reason common/lib doesn't work

Re: digester parsing with html content

2006-09-28 Thread Craig McClanahan
On 9/27/06, Torgeir Veimo [EMAIL PROTECTED] wrote: I'm trying to use digester for parsing xml that were previously parsed with jaxb 1.0-ea. Some of the content is xhtml fragments inside xml, eg. body-textxhtml.../xhtmlbody-text and I'd like to retrieve the content as a String bean property.

Re: Boolean getters in Betwixt

2006-09-25 Thread Craig McClanahan
On 9/25/06, J. H. [EMAIL PROTECTED] wrote: I can confirm that! This weekend i traced through Betwixt's attempt to extract the properties of my bean and saw that it was in java.beans.Introspector where the list of properties were coming from and my Boolean isSomeValue() was not being put in

Re: Boolean getters in Betwixt

2006-09-23 Thread Craig McClanahan
. Craig McClanahan

Re: [SCXML] Need to resume a state machine (SCXML-19)

2006-09-07 Thread Craig McClanahan
On 9/6/06, Rahul Akolkar [EMAIL PROTECTED] wrote: On 9/6/06, Madhwaraj Rao [EMAIL PROTECTED] wrote: Hi, I have the following use case: A state machine defines states {S1, S2, S3, S4}. This state machine can run from state S1 - S3 and would be waiting on an event to transition to S4. I

Re: Shale + SCXML integration:

2006-08-30 Thread Craig McClanahan
On 8/30/06, THOMAS, JAYANT (SBCSI) [EMAIL PROTECTED] wrote: Ok, Thanks, so basically for each user/session we will have a single instance of the SCXMLExecutor We'll still need to look at synchronization, though ... it's legal for there to be multiple requests active on the same session, and

Re: Shale + SCXML integration:

2006-08-30 Thread Craig McClanahan
On 8/30/06, Rahul Akolkar [EMAIL PROTECTED] wrote: On 8/30/06, Craig McClanahan [EMAIL PROTECTED] wrote: On 8/30/06, THOMAS, JAYANT (SBCSI) [EMAIL PROTECTED] wrote: Ok, Thanks, so basically for each user/session we will have a single instance of the SCXMLExecutor snip/ Yes, additionally

Re: [SCXML] nightly builds

2006-06-14 Thread Craig McClanahan
On 6/14/06, Rahul Akolkar [EMAIL PROTECTED] wrote: On 6/14/06, Breeze Meadow [EMAIL PROTECTED] wrote: I am trying to locate the latest scxml builds but couldn't find it at: http://people.apache.org/builds/jakarta-commons/nightly/commons-scxml/. Does anybody know where it is now? Thanks in

Re: [Beanutils] Determine type of bean field

2006-06-01 Thread Craig McClanahan
On 6/1/06, Frank W. Zammetti [EMAIL PROTECTED] wrote: Next question :) Because it's related to what I'm doing with the first, I figured go with the same thread... I have an instance of the Test class, which contains the following: private List children; public void setChildren(final List

Re: [Beanutils] Determine type of bean field

2006-06-01 Thread Craig McClanahan
On 6/1/06, Frank W. Zammetti [EMAIL PROTECTED] wrote: On Thu, June 1, 2006 4:43 pm, Craig McClanahan wrote: Have you tried: ((List)fieldValues).toArray(new String[0]) which offers control over the runtime type of the returned array, here an array of Strings? That's part of the equation

Re: [Chain] re: Problem with CatalogFactory - getCatalog() returns null

2006-04-10 Thread Craig McClanahan
On 4/10/06, Chris Clarke [EMAIL PROTECTED] wrote: Hi all, I'm having an issue with getting a Catalog from the CatalogFactory with Commons Chain. I've defined my own XML configuration file as follows: ?xml version=1.0 ? chains chain name=logon command name=CheckCredentials

Re: Commons Connection Pool -Why is remove-abandoned deprecated?

2006-04-06 Thread Craig McClanahan
On 4/6/06, starki78 [EMAIL PROTECTED] wrote: Hi! I make thoughts of using the Commons Connection Pool perhaps also the tomcat-implementation) One very interesting feature is remove abandoned, if connections in a pool are not closed they will be closed after being unused for a while.

Re: [fileupload] Form params from the request command line?

2006-04-04 Thread Craig McClanahan
On 4/4/06, Christopher L Merrill [EMAIL PROTECTED] wrote: Sven Schliesing wrote: I know that this is a direct answer to your question, but why do you mix GET-params to a POST-Request? I'm not pretty sure if this is even supported in the HTTP 1.1-standard. I am fairly certain there is no

Re: [fileupload] Form params from the request command line?

2006-04-04 Thread Craig McClanahan
On 4/4/06, Martin Cooper [EMAIL PROTECTED] wrote: On 4/4/06, Craig McClanahan [EMAIL PROTECTED] wrote: On 4/4/06, Christopher L Merrill [EMAIL PROTECTED] wrote: Sven Schliesing wrote: I know that this is a direct answer to your question, but why do you mix GET-params

Re: [digester] DTD dependant rules?

2006-03-11 Thread Craig McClanahan
On 3/11/06, Niall Pemberton [EMAIL PROTECTED] wrote: Is it possible to have different digester rules depending on the DTD declared? I do not believe that is possible :-(. AFAICT, the JAXP APIs that Digester uses under the covers do not provide a way to access the DTD (if any) that was

Re: [dbcp] Jumping in...

2006-03-07 Thread Craig McClanahan
On 3/7/06, Phil Steitz [EMAIL PROTECTED] wrote: There is a growing backlog of bugs open against [dbcp]. Unless other committers object, I am going to jump in and start committing patches and develop a maintenance release plan. +1 (and thanks) for Phil stepping up to the plate! Craig

Re: [Digester] Converting String value of an attribute to array of integers

2006-02-17 Thread Craig McClanahan
2/17/06, Siddharth Mathur [EMAIL PROTECTED] wrote: Dear all, I am trying to use Digester to read my own XML format (shown below) and convert it to correctly initialized objects. List A ID=1 author=Home made range90/range /A B ID=2 author=Apple Inc. depends=1

Re: [Digester] Converting String value of an attribute to array of integers

2006-02-17 Thread Craig McClanahan
On 2/17/06, Simon Kitching [EMAIL PROTECTED] wrote: Actually, SetPropertiesRule has the ability to specify explicit attrname-propname mappings. You *see* what happens when I'm not looking? :-) Thanks Simon. Simon Craig

Re: [VFS] build broken

2006-01-05 Thread Craig McClanahan
Here's the log from the nightly builds (using Ant) that are failing. Looks like a problem in the way one of the dependency URLs is specified: Craig Buildfile: build.xml init: setProxy: noProxy: [echo] Proxy not used. get-custom-dep-ant.jar: get-dep-ant.jar: [get] Getting:

Re: [digester] instantiationException if using internal classes ?

2005-12-28 Thread Craig McClanahan
On 12/28/05, Diogo Quintela (EF) [EMAIL PROTECTED] wrote: -Original Message- From: Thomas Dudziak [mailto:[EMAIL PROTECTED] Sent: quarta-feira, 28 de Dezembro de 2005 15:23 To: Jakarta Commons Users List Subject: Re: [digester] instantiationException if using internal classes ?

Re: [Chain] - Settable Parameter Question.

2005-12-18 Thread Craig McClanahan
On 12/18/05, Md. Rezaul Hoque [EMAIL PROTECTED] wrote: Hi, Can you tell me please where can I get dtd/xsd to know about to write config-chain.xml of commons-chain? Regards -Babu There is no formal DTD for this document, because you can do things (like define the names of the elements

Re: [chain] DTD/XSD of config-chain.xml

2005-12-18 Thread Craig McClanahan
On 12/18/05, Wendy Smoak [EMAIL PROTECTED] wrote: On 12/18/05, Rahul Akolkar [EMAIL PROTECTED] wrote: I'm not aware of one. Some thoughts that may help, based on my understanding: * A catalog element (usually the root) can contain any number of commands. * A command may be

Re: [chain] DTD/XSD of config-chain.xml

2005-12-18 Thread Craig McClanahan
On 12/18/05, Wendy Smoak [EMAIL PROTECTED] wrote: On 12/18/05, Craig McClanahan [EMAIL PROTECTED] wrote: As usual in Apache land, we tried to stay backwards compatible with the old syntax, even though it ideally would have gotten pulled before the 1.0release. I would suggest sticking

Re: Using CatalogManager in Struts

2005-12-09 Thread Craig McClanahan
(which points at a resource file included in struts.jar) is being turned into a URL by calling ServletContext.getResource() -- exactly what you need to gain access to anything stored under WEB-INF/classes or WEB-INF/lib. Please help Thanks. Upkar Saimbi Craig McClanahan

Re: [RESOURCES] Messages vs. regular properties

2005-12-01 Thread Craig McClanahan
On 12/1/05, Michael Jouravlev [EMAIL PROTECTED] wrote: On 11/30/05, Niall Pemberton [EMAIL PROTECTED] wrote: On 12/1/05, Michael Jouravlev [EMAIL PROTECTED] wrote: Do I miss something or messages and resources are incompatible? From my point of view they are basically the same thing.

Re: [RESOURCES] Messages vs. regular properties

2005-12-01 Thread Craig McClanahan
On 12/1/05, Michael Jouravlev [EMAIL PROTECTED] wrote: On 12/1/05, Craig McClanahan [EMAIL PROTECTED] wrote: Even with JSTL expressions, I think a Map would be more useful than a List. Yes, of course Map is better. Thanks for correction, Craig. Btw, seems like ResourcesFactoryBase which

Re: [logging] Advice on static/instance/transient Log variables

2005-11-22 Thread Craig McClanahan
On 11/22/05, Niall Pemberton [EMAIL PROTECTED] wrote: I recently noticed a change in BeanUtils that indicated its not a good idea to use static Log variables in a shared classloader environment:

Re: [Chain] - Settable Parameter Question.

2005-11-10 Thread Craig McClanahan
uses of Digester, I would suggest looking at the source code for Struts or Tomcat, which both use Digester to parse their respective configuration files. Craig Thanks, Cass On 11/8/05, Craig McClanahan [EMAIL PROTECTED] wrote: On 11/8/05, Ramaswamy, Muthu [EMAIL PROTECTED] wrote

Re: [Chain] - Settable Parameter Question.

2005-11-08 Thread Craig McClanahan
On 11/8/05, Ramaswamy, Muthu [EMAIL PROTECTED] wrote: Hi All- I believe one can define (settable) parameters in the Catalog file for each command. Is it true? Yes. If yes, where I can find the proper syntax to define the parameters. Any sample file/segment would help. Commons Chain uses

Re: [digester]

2005-11-02 Thread Craig McClanahan
On 11/2/05, Simon Kitching [EMAIL PROTECTED] wrote: On Wed, 2005-11-02 at 10:37 +0200, Arto Pastinen wrote: Hi! Yes i know the problem, i think that it was bug in ATOM 0.3 specification, i havent find DTD or Schema for it, and my test data is taken from specification text, and there is

Re: Chain - Catalog Question.

2005-10-19 Thread Craig McClanahan
On 10/18/05, Ramaswamy, Muthu [EMAIL PROTECTED] wrote: Hi All- I am new to using the Chain Framework. Followed the examples and got all of them working! Question: Can I use multiple Catalog? Yes. If yes, how can I load multiple catalog In one or more configuration resources, you

Re: [DBCP] Anther lame pool exhausted exception question

2005-07-14 Thread Craig McClanahan
The key to returning connections to the connection pool is to call close() on the *connection* itself. The most common way people get themselves in trouble is to skip this somehow (perhaps because an exception is thrown). To avoid that sort of problem, I tend to use an idiom like this for JDBC

Re: Converting properties to String

2005-06-08 Thread Craig McClanahan
Just for the record, this is why the Converter interface in JavaServer Faces is explicitly two-way: public interface Converter { public Object getAsObject(FacesContext context, UIComponent component, String value); public String getAsString(FacesContext context, UIComponent

Re: Commons chain: Registring commands outside web application?

2005-06-02 Thread Craig McClanahan
On 6/2/05, Vinicius Caldeira Carvalho [EMAIL PROTECTED] wrote: Hello there! Since ConfigParser.parse(Catalog, URL) is deprecated. What's the right way to load a catalog descriptor from a non web application? Thanks As the deprecation message says, use ConfigParser.parse(URL) instead, and

Re: [chain] When does a filter run?

2005-05-06 Thread Craig McClanahan
On 5/6/05, Samad Haytham [EMAIL PROTECTED] wrote: Question about how filters work as we are seeing behaviour that is a little different from what we expected. We setup a filter as the second command in a 4 command chain. Following is an example config file. chain name=myChain command

Re: [Digester] Unable to get validation working

2005-04-25 Thread Craig McClanahan
On 4/25/05, Frank W. Zammetti [EMAIL PROTECTED] wrote: Whew! Got it! Wendy, you WERE right, at least partially, in terms of the point on pathing... what I wound up doing was putting the DTD in a JAR in the webapp lib directory, so it's of course in the path. In the code I do: URL cURL =

Re: Configuring Catalogs via Spring

2005-04-05 Thread Craig McClanahan
On Apr 5, 2005 1:03 AM, Marco Mistroni [EMAIL PROTECTED] wrote: Hello all, Does anybody know how to configure a commons chain catalog via Spring using XML file? I had a look at code, and the only component that configures catalog via XML is the ChainListener. And, if I use

Re: chains: refering to another chain in my chain

2005-04-04 Thread Craig McClanahan
On Apr 4, 2005 6:06 AM, Vinicius Caldeira Carvalho [EMAIL PROTECTED] wrote: Vinicius Caldeira Carvalho wrote: PS: I'm using org.apache.commons.chain.CONFIG_WEB_RESOURCE I thought this may add some extra info :-) - To

Re: chains: refering to another chain in my chain

2005-04-01 Thread Craig McClanahan
On Apr 1, 2005 9:12 AM, Vinicius Caldeira Carvalho [EMAIL PROTECTED] wrote: Hello there folks... Isnt it possible to refer to a chain as a command from another chain? let me explain: chain name=doSomething command name=foo className=foo/ command name=bar className=bar/ /chain

Re: Chain: too damn buggy to be out of sandbox

2005-03-30 Thread Craig McClanahan
On Wed, 30 Mar 2005 14:24:03 -0300, Vinicius Caldeira Carvalho [EMAIL PROTECTED] wrote: Einstein used to say : Two things are infinite: the universe and human stupidity; and I'm not sure about the the universe. Well I guess I fit right in to it. Sorry, no bugs, just dumb user and stressed

Re: commons logging class level logging

2005-03-25 Thread Craig McClanahan
On Thu, 24 Mar 2005 13:42:04 -0700, Trenton D. Adams [EMAIL PROTECTED] wrote: I thought I read somewhere that JCL allows one to turn on/off debug logging based on the package or class name. Is that right? I'm looking on the JCL website, but can't find information on that. Perhaps that's

Re: [chain] fixed, one-way chains, only?

2005-03-15 Thread Craig McClanahan
On Tue, 15 Mar 2005 21:54:29 +0100, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: It does perfectly match my requirement. The only problem it that the chain is fixed hierarchical and does not implement any logic which element to be the next to be able to handle the object properly. So, it's

Re: Commons Chain And Branching/Iterating

2005-03-14 Thread Craig McClanahan
Sorry for the late response on this -- I was in Tokyo all of last week and not able to stay current on mailing list emails. Out of the box, the closest any of the commands come to performing conditional behavior is org.apache.commons.chain.generic.LookupCommand, which executes a specified command

Re: [chain] fixed, one-way chains, only?

2005-03-13 Thread Craig McClanahan
Commons Chain isn't about parsing documents, it is about executing commands. If you are after converting your XML document into some sort of data structure, you probably want to look at Commons Digester instead. Craig On Sun, 13 Mar 2005 17:43:40 +0100, [EMAIL PROTECTED] [EMAIL PROTECTED]

Re: Why Template Method instead of Strategy in Commons Chain?

2005-03-06 Thread Craig McClanahan
On Sat, 5 Mar 2005 20:34:06 -0800, Dakota Jack [EMAIL PROTECTED] wrote: I inquired why the Template Method pattern is being used with Commons Chain instead of Strategy, but never got an answer. Back in town (for at least one day), and snipping off the flamebait :-), it's worth philosophizing

Re: Chain: Is it really CoR or Template Method? or both?

2005-02-09 Thread Craig McClanahan
The key reason I think of Commons Chain as implementing CoR is that any given command in the chain can say that's it; this 'request' has been handled; do not go any further, which is part of the classic description of this pattern. That happens to not be the way that things like the request

[ALL] Checking Out Trunk Of All Commons Packages

2005-01-29 Thread Craig McClanahan
of the paths above. * Commons committers should use https in place of http in the above URLs, so that you'll be able to do commits. Craig McClanahan - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: [ALL] Checking Out Trunk Of All Commons Packages

2005-01-29 Thread Craig McClanahan
Jan 2005 22:33:13 -0800, Craig McClanahan [EMAIL PROTECTED] wrote: Martin Cooper took advantage of an ability of Subversion (after being pointed at it by Tim O'Brien -- thanks Tim and Martin!) to use the svn:externals capability to create a pseudo-directory of the trunk subdirectory for each

Re: [digester] Can rules be re-used?

2005-01-20 Thread Craig McClanahan
On Thu, 20 Jan 2005 20:27:47 +, robert burrell donkin IIRC we talked with ceki about using digester directly but reached the consensus that the best course was to reuse the design rather than the implementation. not only does that mean no dependency issues but also allowed log4j to limit

Re: [chain] catalog config - implementation

2005-01-19 Thread Craig McClanahan
already implement the singleton factory pattern when you use CatalogFactory.getInstance().getCatalog(). Plus, code that uses this will work either inside or outside a webapp with no changes, even in standalone apps that don't define any JNDI support. Craig tia, V Craig McClanahan wrote

Re: [digester] Can rules be re-used?

2005-01-17 Thread Craig McClanahan
On Mon, 17 Jan 2005 09:47:16 -0700, Wendy Smoak [EMAIL PROTECTED] wrote: From: Hubert Rabago [EMAIL PROTECTED] The set of rules would be used by multiple threads. It would be a different digester instance per thread, but I'm not sure about the rules themselves. I don't know if this is

Re: [digester] Can rules be re-used?

2005-01-17 Thread Craig McClanahan
On Mon, 17 Jan 2005 20:24:29 +0100, Michael Schuerig [EMAIL PROTECTED] wrote: On Monday 17 January 2005 18:29, Craig McClanahan wrote: On Mon, 17 Jan 2005 09:47:16 -0700, Wendy Smoak [EMAIL PROTECTED] wrote: From: Hubert Rabago [EMAIL PROTECTED] The set of rules would be used

Re: [digester] Can rules be re-used?

2005-01-17 Thread Craig McClanahan
On Mon, 17 Jan 2005 21:45:51 +0100, Michael Schuerig [EMAIL PROTECTED] wrote: On Monday 17 January 2005 20:39, Craig McClanahan wrote: Too bad. I had tried the same trick as Hubert did. What, then, is the proper way to cache sets of rules? I'd like to avoid reloading them from an XML

Re: [digester] Can rules be re-used?

2005-01-17 Thread Craig McClanahan
On Mon, 17 Jan 2005 16:44:33 -0700, Wendy Smoak [EMAIL PROTECTED] wrote: From: Craig McClanahan [EMAIL PROTECTED] Not with the way that the APIs are currently set up. Rules instances become bound to a corresponding Digester instance once you install them into that Digester. Would

Re: [chain] catalog config

2005-01-16 Thread Craig McClanahan
As the javadoc deprecation message tells you, you should call the parse method that only takes a URL, not the one that takes a Catalog and a URL. This allows the CatalogFactory mechanism to look up the appropriate Catalog instance(s), creating them as necessary. I would also suggest

Re: [digester] Can rules be re-used?

2005-01-16 Thread Craig McClanahan
On Sun, 16 Jan 2005 17:22:43 -0700, Wendy Smoak [EMAIL PROTECTED] wrote: From: Craig McClanahan [EMAIL PROTECTED] The only restriction on reuse is that you can't use the same Digester instance on two different threads at the same time. Other than that, you can reuse Rules instances

Re: [chain] catalog config

2005-01-16 Thread Craig McClanahan
On Sun, 16 Jan 2005 19:42:15 -0600, Vic [EMAIL PROTECTED] wrote: Craig McClanahan wrote: As the javadoc deprecation message tells you, you should call the parse method that only takes a URL, not the one that takes a Catalog and a URL. This allows the CatalogFactory mechanism to look up

Re: [digester] Can rules be re-used?

2005-01-16 Thread Craig McClanahan
On Sun, 16 Jan 2005 20:49:21 -0700, Wendy Smoak [EMAIL PROTECTED] wrote: From: Craig McClanahan [EMAIL PROTECTED] Wild cards in Digester are prefix matches, not regular expressions. So, you'll need to add a rule (you can reuse the same instance) for each tail element that you are processing

Re: [digester] Can rules be re-used?

2005-01-15 Thread Craig McClanahan
The only restriction on reuse is that you can't use the same Digester instance on two different threads at the same time. Other than that, you can reuse Rules instances as needed. Craig On Sat, 15 Jan 2005 20:45:05 -0700, Wendy Smoak [EMAIL PROTECTED] wrote: Can rules be re-used or is this

Re: [Digester] using (X)HTML in XML

2005-01-12 Thread Craig McClanahan
The issue is that you're wanting to read body text in addition to elements and attributes, and Digester was never really targeted for that use case. If you really want to do something like this, check out NodeCreateRule, which will give you back a DOM structure representing the nested content.

Re: [Digester] using (X)HTML in XML

2005-01-12 Thread Craig McClanahan
On Wed, 12 Jan 2005 20:41:51 +0100, Matthias Wessendorf [EMAIL PROTECTED] wrote: Wendy, Craig, thanks for the responses. Is't it posible to say all what's inside of text, should be *copied* to property value of clazz Text ? like a String fooBarbr/barFoo Or will I need to create own

Re: [DBCP] Configure multiple database servers in one pool

2005-01-10 Thread Craig McClanahan
The BasicDataSource implementation included in DBCP does not support this (after all, it's a basic implementation :-). However, you could create an extended version of this class which accepted the configuration properties for a second database, and did the failover trick you are describing.

Re: commons-chain: missing context parameter

2005-01-07 Thread Craig McClanahan
Setting a context init parameter to define the catalog name was the original configuration mechanism. However, configuration was later enhanced so you can specify the catalog name on a catalog element directly in your config file, and therefore even load different catalogs from the same document:

Re: [DBCP] Is BasicDataSource pooling?

2004-12-30 Thread Craig McClanahan
Yes it is a connection pooling DataSource. It also happens to be the implementation that Tomcat uses to provide JNDI-accessed data sources: http://jakarta.apache.org/tomcat/tomcat-5.0-doc/jndi-datasource-examples-howto.html Craig On Thu, 30 Dec 2004 09:39:51 -0500, Jerome Jacobsen [EMAIL

Re: [chain] xml properties

2004-12-30 Thread Craig McClanahan
On Thu, 30 Dec 2004 19:18:25 -0600, Vic [EMAIL PROTECTED] wrote: If in a catalog I do this: definename=fts className=org.sandra.servicer.textsrch.SrchCmd fileLoc=/usr/local/xfts/boardidx / How can I in get a the value of fileLoc in my command instance?

Re: [Digester] Is Digester.parse Thread Safe ??

2004-12-27 Thread Craig McClanahan
to set up something like this. Regards, Harish Pandia Craig McClanahan - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [digester] Problems with Custom Rules

2004-12-22 Thread Craig McClanahan
On Wed, 22 Dec 2004 10:49:00 -0500, Jason Vinson [EMAIL PROTECTED] wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Carey, I implemented it by hand because the object type is determined at parse time by the type attribute of the entity node. I am open to suggestions of how to

Re: [fileupload] jsp mime type

2004-12-21 Thread Craig McClanahan
On Tue, 21 Dec 2004 21:11:54 -0800, Dakota Jack [EMAIL PROTECTED] wrote: File types, of which there are thousands (see infra), have protocols, of course, which can be checked to determine whether they are real, fakes, ill constructed, etc. If you check the list archives you will see some

Re: [FileUpload] Very Basic Question

2004-12-19 Thread Craig McClanahan
Along the same lines, you might find some info from the Struts User's Guide, when discussing the desire lots of people have to put struts.jar (and its dependencies) in the common or shared directories: http://struts.apache.org/userGuide/configuration.html#config_add The bottom line is that you

Re: [Digester] class-specific parsing

2004-12-19 Thread Craig McClanahan
While not necessarily covering *all* of your potential requirements, you can get a long ways if you follow some relatively simple conventions for using the standard rules: * The Set Properties rule will match up attribute names on a source element to settable properties on the corresponding

Re: [chain] dispatch via lookup

2004-12-03 Thread Craig McClanahan
How about this? Context context = ...; // Commons Chain context for this command String catalogName = ...; // Name of catalog containing the command you want String commandName = ...; // Name of command you want (from this catalog) Catalog catalog =

Re: [chain] dispatch via lookup

2004-12-03 Thread Craig McClanahan
On Fri, 03 Dec 2004 15:30:59 -0600, Vic [EMAIL PROTECTED] wrote: Craig McClanahan wrote: How about this? Context context = ...; // Commons Chain context for this command Just a Map in my case. String catalogName = ...; // Name of catalog containing the command you want

Re: [chain] dispatch via lookup

2004-12-03 Thread Craig McClanahan
On Fri, 03 Dec 2004 16:24:40 -0600, Vic [EMAIL PROTECTED] wrote: Sorry for so many questions. One more. Craig McClanahan wrote: On Fri, 03 Dec 2004 15:30:59 -0600, Vic [EMAIL PROTECTED] wrote: Craig McClanahan wrote: How about this? Context context = ...; // Commons Chain

Re: about connection

2004-12-02 Thread Craig McClanahan
One simple approach is to set the validationQuery property to an SQL statement that does a simple select or something. If this is set, DBCP will ensure that this query works successfully before handing you back the connection. If the database has timed out the connection while it was sitting in

Re: about connection

2004-12-02 Thread Craig McClanahan
On Thu, 2 Dec 2004 15:55:06 -0500, Scott Heaberlin [EMAIL PROTECTED] wrote: This would vary by the jdbc driver, correct? I ask this because we read the wiki comment regarding the necessity of the validation query and since we use DB2Connect Enterprise, we have all but abandoned usage of

Re: [modeler] Intro: How do I monitor?

2004-12-02 Thread Craig McClanahan
Modeler is really about making it easy for the server side application you want to embed JMX support in to do so. As such, you woudn't focus on monitoring the Registery itself, but you would monitor the JMX server that is created ... using the usual techniques, such as the remote HTML monitor

Re: [modeler] what is guard?

2004-12-02 Thread Craig McClanahan
On Thu, 02 Dec 2004 18:19:17 -0600, Vic [EMAIL PROTECTED] wrote: getRegistry(x,y) is used to get a handle on registry. What is the 2nd argument, guard? Javadoc: guard - Prevent access to the registry by untrusted components The problem that guard solves is that any code in your entire

Re: [modeler] Intro: How do I monitor?

2004-12-02 Thread Craig McClanahan
On Thu, 02 Dec 2004 21:29:59 -0600, Vic [EMAIL PROTECTED] wrote: Thanks. So let me see if I understand: 1. I have Registry create my objects and then my applications gets a handle to those objects via the Registry. Or do I create the objects and then register. I think the 2nd. Actually,

Re: Create Serializable DataSource and DataSourceFactory

2004-11-30 Thread Craig McClanahan
It's not possible to make BasicDataSource serializable, because the underlying JDBC Connection objects that it holds are not serializable. So, that begs the question of why you care about this. The only reason I can think of is that you want to store such an object in session scope in a web

Re: about basicdatasource

2004-11-28 Thread Craig McClanahan
When you are done with a connection that you retrieved from a DataSource, simply call close() on it -- that is the signal to return the connection to the pool. (The pool is wrapping the real connection objects, so the underlying database connection is not closed.) One common programming error is

Re: [dbcp] Call Oracle stored procedure via DBCP?

2004-11-25 Thread Craig McClanahan
On Thu, 25 Nov 2004 18:45:09 +0300, Sergey Karpov [EMAIL PROTECTED] wrote: Hello! Is Tomcat + DPCP + JNDI and Oracle + stored procedure... When from the application on Tomcat the call of stored procedure is carried out through direct connection with Oracle - all normally... And results in

Re: [Digester] DynaBean Hierarchy and set-next-rule XML rule

2004-11-25 Thread Craig McClanahan
The Set Next rule is optimized for the case of attaching a child to a parent via a standard JavaBean property setter, so it doesn't know anything about DynaBeans. However, you might want to take a look at the Call Method rule instead ... you can set up a call to a method that takes parameters, so

Re: [digester] Setting arbitrary XML attributes

2004-11-24 Thread Craig McClanahan
On Thu, 25 Nov 2004 10:00:16 +1030, Lance Semmens [EMAIL PROTECTED] wrote: I'm not familiar with DynaBeans. Is there some form of DynaBeanPropertySetterRule out there? No special case rule is needed -- BeanUtils and PropertyUtils (which Digester uses under the covers) are smart enough to know

Re: Deigester.parse(File f) method

2004-11-13 Thread Craig McClanahan
Without seeing the exception message and the stack trace, it is almost impossible for anyone to offer you much assistance. If you're using the parse(File) method, one thing to ensure is that you are calculating the path of the file you are trying to parse correctly. If it is a resource inside

Re: Lucene : avoiding locking

2004-11-12 Thread Craig McClanahan
the else }//close the else for a new index }//close the else if to handle file types }//close the indexDocs method } - Original Message - From: Craig McClanahan [EMAIL PROTECTED] To: Jakarta Commons Users List [EMAIL PROTECTED] Sent: Thursday, November 11, 2004 6:13 PM

Re: avoiding locking

2004-11-11 Thread Craig McClanahan
In order to get any useful help, it would be nice to know what you are trying to do, and (most importantly) what commons component is giving you the problem :-). The traditional approach is to put a prefix on your subject line -- for commons package foo it would be: [foo] avoiding locking

Re: [digester] Version JDK

2004-11-01 Thread Craig McClanahan
Digester should definitely work under 1.3.1. Craig On Mon, 01 Nov 2004 14:55:42 +0100, Fabrice SZNAJDERMAN [EMAIL PROTECTED] wrote: Hello everybody! Can I use Commons Digester under JDK 1.3.1? I can't find this information on the web site. thank you before! -- Fabrice

Re: Enabling JDK1.4 logging for DEBUG level

2004-10-28 Thread Craig McClanahan
The default mapping of Commons Logging levels to JDK logging levels is: debug() -- FINE error() -- SEVERE fatal() -- SEVERE info() -- INFO trace() -- FINEST warn() -- WARNING Craig On Thu, 28 Oct 2004 20:20:38 -0700 (PDT), Ronaldo Nascimento [EMAIL PROTECTED] wrote: I'm using

  1   2   >