Ted Steen <ted.steen <at> gmail.com> writes:
>
> i got this hivemodule
> <service-point
> id="hibernateSession"
> interface="org.hibernate.Session"/>
>
> <service-point
> id="hibernateSessionFactory"
>
> interface="org.apache.hivemind.ServiceImplementationFactory"/>
>
> <implementation service-id="hibernateSessionFactory">
> <invoke-factory>
> <construct
> class="se.liu.studorg.blaskan.web.HibernateSessionFactory"
> initialize-method="init"/>
> </invoke-factory>
> </implementation>
>
> and yet I get this error:
> Error: No module has contributed a service constructor for service
> point se.liu.studorg.blaskan.web.hibernateSession.
It's saying there is no implementation for hibernateSession. Maybe
you'd like something like:
<service-point
id="hibernateSession"
interface="org.hibernate.Session">
<invoke-factory service-id="hibernateSessionFactory"/>
</service-point>
--
Author of an e-Book for learning Tapestry (http://www.agileskills2.org/EWDT)
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]