Re: OT: Web Services

2010-08-29 Thread Kalle Korhonen
Second that. CXF is the successor to XFire and its solid. Kalle On Sun, Aug 29, 2010 at 3:56 PM, Daniel Honig wrote: > I know of many projects using CXF without complaints.  I'd say that CXF is > probably a good way to go. > > On Sun, Aug 29, 2010 at 1:35 PM, Jim O'Callaghan > wrote: > >> I'm a

Re: OT: Web Services

2010-08-29 Thread Daniel Honig
I know of many projects using CXF without complaints. I'd say that CXF is probably a good way to go. On Sun, Aug 29, 2010 at 1:35 PM, Jim O'Callaghan wrote: > I'm aware this is off topic, but since there are so many people on the list > with a broad skill set am hoping I can learn from their exp

Update Zone Outside of AjaxFormLoop

2010-08-29 Thread Mark W. Shead
I have a situation similar to the phone book entry shown here: http://tapestry.apache.org/tapestry5.2-dev/tapestry-core/ref/org/apache/tapestry5/corelib/components/AjaxFormLoop.html However, I need to be able to display a count of items in the AjaxFormLoop and have it update when items are added o

Re: OT: Web Services

2010-08-29 Thread Martin Strand
On Sun, 29 Aug 2010 19:35:11 +0200, Jim O'Callaghan wrote: I'm aware this is off topic, but since there are so many people on the list with a broad skill set am hoping I can learn from their experiences / heartbreak. I am evaluating various WS stacks for interfacing with a system - curren

OT: Web Services

2010-08-29 Thread Jim O'Callaghan
I'm aware this is off topic, but since there are so many people on the list with a broad skill set am hoping I can learn from their experiences / heartbreak. I am evaluating various WS stacks for interfacing with a system - currently I am using XFire as it requires very little configuration and pe

Re: File Handling and Buffer Handling

2010-08-29 Thread Charith Madusanka
Hi Donny, I want to do randomly access a file and I was already use java.io.RandomAccessFile class . I'm looking T5 class ... I think your comment help to me. On Sun, Aug 29, 2010 at 6:02 PM, Donny Nadolny wrote: > What are you trying to do? If it's just normal reading / writing of > files,

Re: File Handling and Buffer Handling

2010-08-29 Thread Donny Nadolny
What are you trying to do? If it's just normal reading / writing of files, check out the FileUtils class in Commons IO: http://commons.apache.org/io/api-1.4/org/apache/commons/io/FileUtils.html For input and output streams, http://commons.apache.org/io/api-1.4/org/apache/commons/io/IOUtils.html If

File Handling and Buffer Handling

2010-08-29 Thread Charith Madusanka
Hi! In T5 API, Is there any File Handling and Buffer Handling classes...? charith

Re: How to Inject Servlet Context into My Services Using T5 IoC

2010-08-29 Thread Rui Tang
No, I don't use TapestryFilter. Maybe I should take a look at tapestry-core. Before, I just want to use T5 IoC as an IoC container in my application, but not the whole tapestry project. >From reading the TapestryFile's code, I got some ideas. Thank you! On Sun, Aug 29, 2010 at 4:05 PM, Igor Dro

Re: How to Inject Servlet Context into My Services Using T5 IoC

2010-08-29 Thread Igor Drobiazko
Do I understand you correctly? You are not using the TapestryFilter? If not, you should. This is the place where the registry is built and enriched with all the stuff from the servlet API. On Sat, Aug 28, 2010 at 6:07 PM, Rui Tang wrote: > Hi there, > > I'm using T5 IoC independently. > > I'm de