Also, does
<context-priority-classloader>false</context-priority-classloader>
no longer work in geronimo-web.xml following the
<context-root> tag? Is there a replacement?
Tyler
--- Aaron Mulder <[EMAIL PROTECTED]>
wrote:
> You're right -- gbean-ref only works in 1.1. Your
> GBean needs to
> implement an interface, and the gbean-ref and lookup
> should go by the
> interface -- like this:
>
> public interface MyInterface {
> public void doSomething();
> }
>
> public class MyGBean implements MyInterface {
> public void doSomething() {...}
>
> ...
> infoFactory.addInterface(MyInterface.class);
> ...
> }
>
>
> <gbean-ref>
> <ref-name>AGBean</ref-name>
> <ref-type>MyInterface</ref-type>
>
> <pattern><name>MyGBeanInstanceName</name></pattern>
> </gbean-ref>
>
>
> MyInterface mine = (MyInterface)new
> InitialContext().lookup("java:comp/env/AGBean");
> mine.doSomething();
> ...
>
> Thanks,
> Aaron
>
> On 7/15/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]>
> wrote:
> > I have 1.1 up and running, and am now getting an
> error
> > with the <gbean-ref>:
> >
> > Error: Unable to distribute example-1.0.war:
> Could
> > not
> > resolve reference at deploy time for queries
> > [?name=InstanceName#com.example.GBean]
> >
> > No matches for referencePatterns:
> > [?name=InstanceName#com.example.GBean]
> >
> > In my deployment plan for the GBean I have:
> > <gbean name="InstanceName"
> > class="com.example.GBean"/>
> >
> > Can anyone see where I've gone astray?
> >
> > Thanks!
> > Tyler
> >
> >
> >
> > --- [EMAIL PROTECTED] wrote:
> >
> > > Aaron,
> > >
> > > Found this note in your book:
> > >
> > > The schema includes a placeholder element
> > > (gbean-ref)
> > > for GBean references (that is, putting a
> reference
> > > to
> > > an arbitrary GBean in the component's
> java:comp/env
> > > JNDI space), but that is not yet working in
> Geronimo
> > > 1.0 so it is not covered here.
> > >
> > > I guess we need to upgrade to 1.0, huh? Please
> > > verify.
> > >
> > > Tyler
> > >
> > >
> > > --- Aaron Mulder <[EMAIL PROTECTED]>
> > > wrote:
> > >
> > > > The GBean should implement at least one
> interface,
> > > > say
> > > > com.example.Foo, which includes all the
> methods
> > > your
> > > > web app wants to
> > > > call on it.
> > > >
> > > > Then you add a block like this to the
> deployment
> > > > plan for the web app
> > > > (geronimo-web.xml):
> > > >
> > > > <gbean-ref>
> > > > <ref-name>MyGBean</ref-name>
> > > > <ref-type>com.example.Foo</ref-type>
> > > > <pattern>
> > > > <name>YourGbeanInstanceName</name>
> > > > </pattern>
> > > > </gbean-ref>
> > > >
> > > > That will stick the GBean named
> > > > YourGbeanInstanceName (e.g. plan has
> > > > <gbean name="YourGbeanInstanceName"
> class=...>) in
> > > > JNDI for the web
> > > > app at java:comp/env/MyGBean (java:comp/env/
> plus
> > > > the <ref-name>
> > > > above). When you access that JNDI location,
> > > you'll
> > > > get something that
> > > > implements com.example.Foo (the <ref-type>
> above),
> > > > so you can use it
> > > > like this:
> > > >
> > > > Foo foo = (Foo)new
> > > >
> InitialContext().lookup("java:comp/env/MyGBean");
> > > >
> > > > Make sure that the GBeanInfo for your GBean
> has a
> > > > line like
> > > >
> infoFactory.addInterface(com.example.Foo.class);
> > > for
> > > > this to work.
> > > >
> > > > Thanks,
> > > > Aaron
> > > >
> > > > On 7/14/06, [EMAIL PROTECTED]
> <[EMAIL PROTECTED]>
> > > > wrote:
> > > > > I have successfully deployed a GBean using a
> > > > > deployment plan. I have added a new jar to
> the
> > > > > repository, and I reference the class in the
> > > > > deployment plan.
> > > > >
> > > > > Now, my question is: How do I access the
> > > deployed
> > > > > class via the GBean from my web
> > > > service/application?
> > > > >
> > > > > Thanks.
> > > > > Tyler
> > > > >
> > > > >
> > > > >
> > >
> __________________________________________________
> > > > > Do You Yahoo!?
> > > > > Tired of spam? Yahoo! Mail has the best
> spam
> > > > protection around
> > > > > http://mail.yahoo.com
> > > > >
> > > >
> > >
> > >
> > >
> __________________________________________________
> > > Do You Yahoo!?
> > > Tired of spam? Yahoo! Mail has the best spam
> > > protection around
> > > http://mail.yahoo.com
> > >
> >
> >
> > __________________________________________________
> > Do You Yahoo!?
> > Tired of spam? Yahoo! Mail has the best spam
> protection around
> > http://mail.yahoo.com
> >
>
__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com