RE : [jelly] Jmeter sampler scripting

2005-01-07 Thread Marc DEXET
robert burrell donkin wrote: On 6 Jan 2005, at 10:33, Marc DEXET wrote: Hi guys. Well. The big new goal of my life for today is : create dynamic jmeter sampler, LDAP sampler indeed. I explain myself : I want to load test my LDAP directories (Yes, I have many directories, lucky man)

[jelly] Core FileTag must allow to append to flat file

2005-01-07 Thread Marc DEXET
Core FileTag allows to write only XML or HTML content to file. But there's a need to write flat content unix-like or in pseudo-xml (element collection without document root). So FileTag must allow to write flat content to file. Proposition to add a boolean flat property. There also a need to add

Re: RE : [jelly] Jmeter sampler scripting

2005-01-07 Thread Brant Boehmann
Have you checked out slamd. I won't claim to know anything about it, but some Sun engineers pointed me to it once. http://www.slamd.com/ Marc DEXET wrote: robert burrell donkin wrote: On 6 Jan 2005, at 10:33, Marc DEXET wrote: Hi guys. Well. The big new goal of my life for today is :

RE : RE : [jelly] Jmeter sampler scripting

2005-01-07 Thread Marc DEXET
Brant Boehmann wrote: Have you checked out slamd. I won't claim to know anything about it, but some Sun engineers pointed me to it once. http://www.slamd.com/ Thank, it looks pretty. I take a look asap. Marc DeXeT

RE: [net] Strange System.out behavior

2005-01-07 Thread Chris Bergstresser
Julius Davies wrote: Hi, Chris, To me that sounds like the sort of thing that might happen if: - You changed JDK? - You changed Operating System? - You are using a different console/terminal? Nope. Same JDK, same OS, same console. As it turns out, it works when I run as a standalone

commons-chain: missing context parameter

2005-01-07 Thread Pedro Salgado
Hello to all, On the cookbook, section Load a Catalog From a Web Application, it is missing this piece on the given web.xml. context-param param-nameorg.apache.commons.chain.CONFIG_ATTR/param-name param-valuecatalog/param-value /context-param context-param I

[betwixt] How can I make betwixt accept any attribute id as an element id?

2005-01-07 Thread Christian Aust
Hi, I'd like to use betwixt to serialize data beans to xml. Those beans represent database structures mapped with hibernate, so all of the first-rank entities sport some property id, just like this: public long getId() Those classes implement equals() as such it considers two elements equal if

RE: [betwixt] How can I make betwixt accept any attribute id as an element id?

2005-01-07 Thread Jason Wood
do you want to make the id your from your bean an attribute or id the betwixt generated? -Original Message- From: Christian Aust [mailto:[EMAIL PROTECTED] Sent: Friday, January 07, 2005 11:00 AM To: commons-user@jakarta.apache.org Subject: [betwixt] How can I make betwixt accept any

[digester] help with digester rules

2005-01-07 Thread Wendy Smoak
I've only used Digester as a part of Struts, but now I'm trying a simple standalone example. I have this XML: person key=012456 preferredNameMs. Janice D. Jones/preferredName /person And I'm getting the object created and the key set, but none of the examples I can find shows a property(?)

Re: [digester] help with digester rules

2005-01-07 Thread Wendy Smoak
From: Hubert Rabago [EMAIL PROTECTED] Take a look at the setNestedProperties rule. I believe this sets properties from nested elements, like your preferredName. Thank you. SetNestedPropertiesRule looks *very* useful, unfortunately, I can't find any documentation on how to write the rules xml

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: [digester] help with digester rules

2005-01-07 Thread Wendy Smoak
Since set-nested-properties-rule doesn't seem to exist (??) for the xml rules, I need to set each nested property individually. It works if I do: call-method-rule pattern=preferredName methodname=setPreferredName paramcount=0 / But shouldn't this work as well? bean-property-setter-rule

Re: [betwixt] How can I make betwixt accept any attribute id as an element id?

2005-01-07 Thread Christian Aust
Hi Jason, Am 07.01.2005 um 18:10 schrieb Jason Wood: do you want to make the id your from your bean an attribute or id the betwixt generated? instead of making up some id value, betwixt should simply stick with the id value that the object already provides. In other words: If a bean property id

RE: [betwixt] How can I make betwixt accept any attribute id as an element id?

2005-01-07 Thread Jason Wood
Well, I know you can do the following to remove the betwixt id ... beanWriter.getBindingConfiguration().setMapIDs(false); Then if you want to make the getId() value of your bean an attribute ... beanWriter.getXMLIntrospector().getConfiguration().setAttributesForPrimitive s(false); or if you

ClassCastException obtaining wrapped oracle connection

2005-01-07 Thread Mauricio Aristizabal
Hello all, I am trying to get the actual Oracle connection or statement from the dbcp pool, because I'm trying to use an oracle-specific feature (registerIndexTableOutParameter()), but I cannot cast the underlying connection even after using getInnermostDelegate() to get the wrapped

[fileupload] : Some information about the upload of a file

2005-01-07 Thread Nicolas Maujean
hi, I have used the commons file upload tools, it appears that you can't download more than 2,1GB that is to say 2^31-1 bytes is the size of an int. it is limited to the size of an int, you can bypass it, just put in comment the code looking for the size of the file but in that case you

Re: [digester] help with digester rules

2005-01-07 Thread Hubert Rabago
On Fri, 07 Jan 2005 11:49:25 -0700, Wendy Smoak [EMAIL PROTECTED] wrote: Since SetNestedPropertiesRule is new with 1.6, has it just not been added to the xml rules yet? Oops, yeah, it looks that way. The dtd for the digester rules file doesn't carry that element. I checked, and it looks like

[beanutils] BeanUtils.describe() and Lists of Complex Types

2005-01-07 Thread Lukas Bradley
Forgive my ignorance, but I am attempting to use BeanUtils.describe() on a custom object that contains a List of other complex objects. My getList() method is being described, but is only returning the toString() value of my object. For example, a list with two BeanSerializerData2Test objects

commons functors project status

2005-01-07 Thread Brian Lee
Is the commons functors project dead? If not, will this project and the commons collection project combine / collaborate? Brian - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

newbie ?, empty config

2005-01-07 Thread Don Vawter
I am making my first attempt to use the Configuration capabilities and am obviously doing something wrong. The configuration object is not null but isEmpty() returns true. Any guidance would be greatly appreciated as I struggle up the learning curve. TIA Here is my config.xml ?xml version=1.0