Re: [RDB DAS] Consistent use of Parameters in Config

2007-08-29 Thread Amita Vadhavkar
Below is one of the use cases where user will get some benefit:- USE CASE: bigtable{col1, col2,col50} SIMPLEST CLIENT CODE: WITH NAMED PARAM SUPPORT Command insertAdhoc = das.createCommand(insert into bigtable values (?, ?, ?...50 times)); insertAdhoc.setParameter(ID, new Integer(6));

Re: [SDO Java] What shall we do next?

2007-08-29 Thread Fuhwei Lwo
Hi Kelvin, Based on my observation on opened JIRAs, I agree we definitely should pay attention to the first two items you listed below - test generated static SDO APIs and multi-threaded scenario more easily. I did some investigation on GroboUtils for multi-thread testing and still couldn't

Re: Problem configuring and reaching RSS, Atom bindings

2007-08-29 Thread Skip Schuler
Hi, I've successfully deployed and tested the WAR on my Tomcat installation. Thanks! The links from the index.html page works fine, and I'm able to reach e.g. http://localhost:8080/sample-feed-aggregator-webapp/atomAggregator A tiny detail: in your FeedAggregator.composite I see that you specify

Re: Problem configuring and reaching RSS, Atom bindings

2007-08-29 Thread Jean-Sebastien Delfino
Skip Schuler wrote: Hi, I've successfully deployed and tested the WAR on my Tomcat installation. Thanks! The links from the index.html page works fine, and I'm able to reach e.g. http://localhost:8080/sample-feed-aggregator-webapp/atomAggregator Cool :) A tiny detail: in your

Re: SCA support in STP

2007-08-29 Thread Jean-Sebastien Delfino
[snip] Luciano Resende wrote: A related question, regarding SCA support in STP. Any plans to move to the latest releases of Tuscany SCA ? We are targeting a 1.0 release sometime soon, and would be great to have the Eclipse Tooling support based on that release. On 8/28/07, Chandrashekhar Jain

Re: [RDB DAS] Consistent use of Parameters in Config

2007-08-29 Thread Kevin Williams
This sounds good to me since programming model consistency is so very important. I agree that partial index specification should *not* be supported. I was concerned by your example: Parameters Parameter name=ID index=1/ -- rest of the attributes optional Parameter

Having problem with null values in my DAS

2007-08-29 Thread Chu, Wing \(Exchange\)
I am wondering if anyone came across this. I have a simple select A,B,C from TABLE1 where A=? I have no problem get the DataObject back when all the values are not null. However, if any one of the value is null. I would get an object but the values and the list is null. This seems

Re: Is there value in keeping download links for old releases?

2007-08-29 Thread haleh mahbod
I'd like to bring this message back to life. A few users posted to the ML recently and asked about M2. Immediate response has been to use the latest since M2 is very old (IMHO makes sense). This email thread was suggesting to remove the download link of very old releases to avoid confusion. We

Policy samples? (showcasing the killer feature of separation of concerns)

2007-08-29 Thread Skip Schuler
Hi, I'm currently evaluating SCA and Tuscany. I really like much of what I've seen so far, especially when experimenting with the assembly model and different bindings. What I'd like to know more about is the policy framework. I think the clear separation of concern that SCA promotes is a killer,

Re: Having problem with null values in my DAS

2007-08-29 Thread Amita Vadhavkar
Will you please share the config file and the data/table info here, so I can simulate the condition. When tried with a simple sample, it seems that - when any other column other that the one mentioned in DAS as PK has null value, DAS is producing correct result. So, your details will help. Also,