Re: investigating technology stack with infinispan

2009-07-31 Thread Nail Uenlue
Hello, As you can code your own cache controller it shouldnt be a hard task to archieve this as you can retrieve those instances by your given set of custer members. cheers, Nail On Fri, Jul 31, 2009 at 4:53 PM, sirmak wrote: > > Hi, > > I'm investigating tech. possibilities for a new high traff

Re: how to do error handling?

2009-07-31 Thread Nail Uenlue
lts_list.get(0); >             results[1] = (List) results_list.get(1); >         } >         return results; >     } > The action class uses the Object[] to show the data to the user.  is this an > OK practice to do this way? > So I will be putting try/catch block in action class when

Re: how to do error handling?

2009-07-30 Thread Nail Uenlue
Hello, One solution is to put all the code you dont want to execute into the try/catch...but i think that you're trying to follow a wrong concept ... The getSqlMapClientTemplate is from the Spring class DAO support class and Spring is wrapping the SQLException to a DataAccessException and making

- java.sql.SQLException: Fail to convert to internal representation: ch.xxx.converter.bean.KeywordItem - Problem

2009-07-30 Thread Nail Uenlue
Hi everyone, Im having an issue while trying to submit an Array of Objects to an Oracle Stored procedure. The map file looks like: http://ibatis.apache.org/dtd/sql-map-2.dtd";> {call vvever.pck_ev_te

INOUT mode for Oracle Object Types

2009-07-29 Thread Nail Uenlue
Hi everyone, I have the following code in my map configuration: {call vvever.pck_ev_xxx.if_get_xxx_liste(?,?,?)} My custom typehandler in that case is not that important as i get the correct

Oracle table of object types as parameter to a stored procedure

2009-07-28 Thread Nail Uenlue
Hi everyone, Can someone give me some hints how to find a solution to the problem described in the subject? I pretty tried the sample provided in the FAQ at: http://opensource.atlassian.com/confluence/oss/display/IBATIS/How+do+I+call+a+stored+procedure+and+the+parameter+is+Oracle+Object+Type an