I would like to use something like this in a LoginPage:
@InjectObject("service:ServicesWeb.ILogin")
public abstract ILogin getLoginService();
With a hivemodule.xml whose last declaration is:
<sub-module descriptor="web-module.xml"/>
and within web-module.xml i got only this:
<module id="ServicesWeb" version="1.0.0" package="proto.web.services">
<service-point id="ILogin">
<invoke-factory>
<construct class="impl.LoginLDAP"/>
</invoke-factory>
<interceptor service-id="hivemind.LoggingInterceptor"/>
</service-point>
</module>
with interface as proto.web.services.ILogin and implementation as
proto.web.services.impl.LoginLDAP, every time i try to access the
login page i got an ApplicationRuntimeException saying: "Service point
ServicesWeb.ILogin does not exist."
It smells to me like an obvious missing point which i cannot see...
Regards
--
Massimo
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]