Help with Component Configuration

2005-11-11 Thread Matt Kendall
I'm trying to write a component that will connect to CVS. I'm using a component because I need to interact with it from several different sitemap components, so I figured that this was easiest. The problem I'm having is that Cocoon doesn't seem to pick up the configuration that I'm placing in coco

Re: Help with Component Configuration

2005-11-12 Thread Bertrand Delacretaz
Le 12 nov. 05, à 00:15, Matt Kendall a écrit : I'm trying to write a component that will connect to CVS. I'm using a component because I need to interact with it from several different sitemap components, so I figured that this was easiest Have you looked at the CVSSource at http://cocoon

Re: Help with Component Configuration

2005-11-12 Thread Matt Kendall
Yes, I had seen it, but thanks for the response. I need multiple repositories, and I'm actually more interested in the metadata provided by CVS (diff reports, logs, etc) than just browsing files in a CVSSource. I have viewcvs for that. That's another reason that I'm making this a component rather t

Re: Help with Component Configuration

2005-11-12 Thread Joerg Heinicke
On 12.11.2005 00:15, Matt Kendall wrote: I'm trying to write a component that will connect to CVS. I'm using a component because I need to interact with it from several different sitemap components, so I figured that this was easiest. The problem I'm having is that Cocoon doesn't seem to pick u

Re: Help with Component Configuration

2005-11-14 Thread Matt Kendall
Right, I'm trying to use the Serviceable interface with my action and to get my component through the lookup() method. Here's my action: public class CVSUpdateAction extends AbstractAction implements Serviceable { private CVSComponent cvs; public Map act(Redirector redirector, Sour

Re: Help with Component Configuration

2005-11-14 Thread Upayavira
Matt Kendall wrote: > Right, I'm trying to use the Serviceable interface with my action and > to get my component through the lookup() method. Here's my action: > > public class CVSUpdateAction extends AbstractAction implements Serviceable { > private CVSComponent cvs; > public Map act

Re: Help with Component Configuration

2005-11-14 Thread Matt Kendall
I have absolutely no idea what I changed, but it works now. I just incrementally rewrote the component and it works now. Thanks for everyone's input! Matt On 11/14/05, Upayavira <[EMAIL PROTECTED]> wrote: > Matt Kendall wrote: > > Right, I'm trying to use the Serviceable interface with my action