1. Tapestry is built on top of an IOC container (called unimaginatively
Tapestry IOC)
2. Services are added to the IOC registry by an IOC Module (
http://tapestry.apache.org/tapestry-ioc-modules.html)
3. Components often require Services
4. Component libraries can include a "Tapestry-Module-Classes
do not know why?
Services are not very clear to me and documentation is unclear
it worked when I removed line
binder.bind(KaptchaProducer.class, KaptchaProducerImpl.class);
On Fri, Aug 2, 2013 at 5:21 AM, Nikola Vulovic wrote:
> this is the error:
> java.lang.RuntimeException: Service id 'Kaptc
Why are you binding KaptchaProvider service in your AppModule when it is
already bound in tapestry-kaptcha ?
regards
Taha
On 02-Aug-2013, at 8:51 AM, Nikola Vulovic wrote:
> this is the error:
> java.lang.RuntimeException: Service id 'KaptchaProducer' has already been
> defined by
> org.apach