On 8/29/06, Johan Compagner <[EMAIL PROTECTED]> wrote:
> ahh can't we then have a middle way somehow?
> That the markup(stream) gets a markupid->component map

we do that already

> and looks up the
> components from that

doesn't work because of all the transparent containers such as Body-,
Auto-, paged Borders etc. The resolvers are there to find the
components where it is not obvious. Look at the number of resolvers
and you can imagine the "exceptions".

> and that map is created upfront by the page.doRender() or what every render
> call it is (ajax)
> So that when streaming the resolving is never be done anymore?
>

I'd much rather attach the markupfragment to each component in the
constructor (but allow for lazy loading) and at the beginning of
render() find the associate component for a markup tag but traversing
the component hierarchy and find the component which has exactly that
markup already assigned.

Juergen

> johan
>
>
>
> On 8/29/06, Juergen Donnerstag < [EMAIL PROTECTED]> wrote:
> >
> On 8/29/06, Johan Compagner < [EMAIL PROTECTED]> wrote:
> > hmm i think we should reverse it then (what igor also proposes)
> > we iterate over the components and let the component handle the markup
> > rendering (which it already should have)
>
> and how to know the order of the components? They must be added in the
> same sequence as they appear in the markup.
>
> Juergen
>
> >
> > johan
> >
> >
> >
> > On 8/29/06, Juergen Donnerstag < [EMAIL PROTECTED]> wrote:
> > >
> > On 8/29/06, Johan Compagner <[EMAIL PROTECTED]> wrote:
> > > but that shouldn't be the case.
> > > in 2.0 in the rendering phase shouldn't happen anything anymore
> > > especially not markup finding. Because that should be already done in
> the
> > > constructor.
> >
> > we don't but we need to find the component for component tags in the tag
> > body.
> >
> > > The component already has exactly the markup (position) it should have,
> so
> > > what
> > > should then be resolved? (except auto components or something like that)
> > >
> >
> > all the child components of course. During render you iterate over the
> > markup and whenever you hit a wicket tag you need to find the
> > component. What may work is that we iterate over the complete
> > component hierarchy to find the component which has the very same
> > markup attached which the container is currently positioned at while
> > rendering the child components.
> >
> > Juergen
> >
> > > johan
> > >
> > >
> > >
> > > On 8/29/06, Juergen Donnerstag < [EMAIL PROTECTED]> wrote:
> > > >
> > > On 8/29/06, Johan Compagner < [EMAIL PROTECTED]> wrote:
> > > > yeah from a purely code view or what ever view at it
> > > > but in the end, the end result is the same.
> > > >
> > > > 1> component finds markup
> > > > 2> markup finds component
> > > >
> > > >
> > > > So if one implements only the first then the second could fail?
> > > > I guess that is maybe not true because if <1> succeeds  then <2> won't
> > > > happen anyway?
> > >
> > > no. IMarkupFinder is called in the constructor and not needed anymore
> > > except for ajax calls. And Icomponentresolver are required during the
> > > render phase.
> > >
> > > Juergen
> > >
> > > >
> > > > But if only 2 is implemented then <1> will fail.. So someone who
> > > implements
> > > > 2 should
> > > > also make sure that <1> works.. But in the end if <1> works then <2>
> > isn't
> > > > needed anymore.
> > > > hmmmmm
> > > >
> > > > johan
> > > >
> > > >
> > > >
> > > > On 8/29/06, Juergen Donnerstag < [EMAIL PROTECTED] > wrote:
> > > > >
> > > > They are doing exactly the opposite
> > > >
> > > > Juergen
> > > >
> > > > On 8/28/06, Johan Compagner < [EMAIL PROTECTED] > wrote:
> > > > > 2 interfaces which do in the end the same (kind) of thing?
> > > > > how are we going to explain that? If they implement one should they
> > also
> > > > do
> > > > > the other?
> > > > > If that is the case the i want 1 interface....
> > > > >
> > > > > johan
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > On 8/28/06, Igor Vaynberg < [EMAIL PROTECTED] > wrote:
> > > > > >
> > > > >
> > > > > ayya!
> > > > >
> > > > > can we at least make it so a component can implement IMarkupFinder
> > just
> > > > like
> > > > > it can IComponentResolver? otherwise its too disjointed to create a
> > > > separate
> > > > > imarkupfinder that you register somewhere far away from AnyIdAdapter
> > > even
> > > > > though thats the only place that its used at.
> > > > >
> > > > > so you are too busy to do the refactor we talked about in that
> > prototype
> > > i
> > > > > wrote? that would make all these things almost obsolete. i still
> dont
> > > > > understand/have knowledge about how all this markupstream/resolvers
> > work
> > > > to
> > > > > do that refactor on my own.
> > > > >
> > > > >
> > > > > -Igor
> > > > >
> > > > >
> > > > > On 8/28/06, Juergen Donnerstag < [EMAIL PROTECTED]>
> wrote:
> > > > > > Create a IMarkupFinder which does exactly the opposite to
> > > > > > IComponentResolver and register it with the Application. The
> > resolver
> > > > > > tries to find the component to be associated with the Markup
> (tag).
> > > > > > And the MarkupFragmentFinder tries to find the markup associated
> > with
> > > > > > the component. Because we are now calling MarkupFragmentFinder in
> > the
> > > > > > Component constructor to find the markup associated with
> > > > > > Label("somelable", ..") in your case, it will of course fail. Your
> > > > > > IMarkupFinder must check if component parent == AnyIdAdapter and
> if
> > > > > > yes position the markup stream at the open tag.
> > > > > >
> > > > > > Thats not especially elegant I know and may be we should a method
> to
> > > > > > IComponentResolver which is called from MarkupFragmentFinder. In
> > > > > > principle I don't like the idea of having to implement two
> > > > > > complementary algorithms to achieve what we want but I have no
> idea
> > > > > > yet on how to solve it. We always need to find the markup
> associated
> > > > > > to a component and if a container we need to iterate of the Markup
> > and
> > > > > > find the component associated with a tag.
> > > > > >
> > > > > > Juergen
> > > > > >
> > > > > > On 8/28/06, Igor Vaynberg <[EMAIL PROTECTED] > wrote:
> > > > > > > so what do i need to do to make my original example work in 2.0?
> > > > > > >
> > > > > > > -Igor
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > On 8/28/06, Juergen Donnerstag < [EMAIL PROTECTED] >
> > > wrote:
> > > > > > > > You can't. Please see Border.resolve () or all the
> XXXResolver.
> > > I'm
> > > > > not
> > > > > > > > sure you are viewing the IComponentResolvers the right way.
> See
> > > > > > > > MarkupContainer.renderNext() as well. Whenever during a render
> > > > get(id)
> > > > > > > > does not find the component associated with the id, and that
> > > happens
> > > > > > > > more often than you might think, than first the container and
> > all
> > > > its
> > > > > > > > parents are checked if they implement IComponentResolver. If
> > yes,
> > > it
> > > > > > > > is called and only if not successful it will continue with the
> > > > search.
> > > > > > > > After the parent hierarchy all IComponentResolvers registered
> > with
> > > > the
> > > > > > > > application are called as well, until a resolver returned with
> > > > > > > > success. Basically the resolvers can do whatever they want and
> > > they
> > > > > > > > are not at all limited to finding a component and render it.
> > > > > > > >
> > > > > > > > Juergen
> > > > > > > >
> > > > > > > > On 8/28/06, Johan Compagner < [EMAIL PROTECTED] > wrote:
> > > > > > > > > thats fine by me.
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > On 8/28/06, Igor Vaynberg < [EMAIL PROTECTED] > wrote:
> > > > > > > > > >
> > > > > > > > > > why not refactor the icomponentresolver to do what it says
> -
> > > > > resolve
> > > > > > > the
> > > > > > > > > index of the component in the markup - the rendering can be
> > > > factored
> > > > > out
> > > > > > > to
> > > > > > > > > places that call resolve()
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > -Igor
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > On 8/28/06, Johan Compagner < [EMAIL PROTECTED] >
> wrote:
> > > > > > > > > > >
> > > > > > > > > > > i think this is the discussion we had (juergen) in
> another
> > > > > thread.
> > > > > > > > > > > If you write a IComponentResovler you should also write
> > > > > something
> > > > > > > else
> > > > > > > > > to be able to look up the childs components markup.
> > > > > > > > > > > Can't we add another method on IComponentResolver? That
> > the
> > > > > > > markupfinder
> > > > > > > > > can call on the parent for a child?
> > > > > > > > > > >
> > > > > > > > > > > johan
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > On 8/28/06, Igor Vaynberg < [EMAIL PROTECTED] >
> > wrote:
> > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > if i understand correctly in 1.2 i can do something like
> > > this
> > > > > > > > > > >
> > > > > > > > > > > class AnyIdAdapter extends WebMarkupContainer implements
> > > > > > > > > IComponentResolver {
> > > > > > > > > > >    ....
> > > > > > > > > > >  public final boolean resolve(MarkupContainer container,
> > > > > > > MarkupStream
> > > > > > > > > markupStream, ComponentTag tag)
> > > > > > > > > > >     {
> > > > > > > > > > >
> > > > iterator().next().render(markupStream);
> > > > > > > > > > >         return true;
> > > > > > > > > > >     }
> > > > > > > > > > > }
> > > > > > > > > > >
> > > > > > > > > > > so this webmarkup container would render any child with
> > any
> > > id
> > > > > so i
> > > > > > > can
> > > > > > > > > do
> > > > > > > > > > >
> > > > > > > > > > > AnyIdAdapter adapter=new AnyIdAdapter("adapter");
> > > > > > > > > > > adapter.add(new Label("somelabel", "hi"));
> > > > > > > > > > >
> > > > > > > > > > > <span wicket:id="adapter"><span wicket:id="
> > > > > > > somerandomid"></span></span>
> > > > > > > > > > >
> > > > > > > > > > > and this should work nicely, but it doesnt work in 2.0 -
> i
> > > get
> > > > > > > > > > >
> > > > > > > > > > > wicket.WicketRuntimeException: Unable to find the markup
> > for
> > > > the
> > > > > > > > > component: item
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > at
> > > > > > > > >
> > > > > > > wicket.MarkupFragmentFinder.find
> > > > > ( MarkupFragmentFinder.java:89)
> > > > > > > > > > > at
> > > > > > > > > wicket.Component.loadMarkupStream
> > > > > (Component.java:663)
> > > > > > > > > > > at wicket.Component .<init>(Component.java:629)
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > because MarkupFragmentFinder doesnt take
> > IComponentResolver
> > > > into
> > > > > > > account
> > > > > > > > > - and how could it because IComponentResolver also renders
> the
> > > > > component
> > > > > > > > > while MarkupFragmentFinder only locates it.
> > > > > > > > > > >
> > > > > > > > > > > so what should we do? have some IComponentFinder
> > interface,
> > > > > tweak
> > > > > > > > > something else?
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > -Igor
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > > >
> > >
> >
> -------------------------------------------------------------------------
> > > > > > > > > > > Using Tomcat but need to do more? Need to support web
> > > > services,
> > > > > > > > > security?
> > > > > > > > > > > Get stuff done quickly with pre-integrated technology to
> > > make
> > > > > your
> > > > > > > job
> > > > > > > > > easier
> > > > > > > > > > > Download IBM WebSphere Application Server v.1.0.1 based
> on
> > > > > Apache
> > > > > > > > > Geronimo
> > > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > > >
> > >
> >
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> > > > > > > > > > >
> > > > > > > > > > >
> > > > _______________________________________________
> > > > > > > > > > > Wicket-develop mailing list
> > > > > > > > > > > Wicket-develop@lists.sourceforge.net
> > > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > > >
> > >
> >
> https://lists.sourceforge.net/lists/listinfo/wicket-develop
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > > >
> > >
> >
> -------------------------------------------------------------------------
> > > > > > > > > > > Using Tomcat but need to do more? Need to support web
> > > > services,
> > > > > > > > > security?
> > > > > > > > > > > Get stuff done quickly with pre-integrated technology to
> > > make
> > > > > your
> > > > > > > job
> > > > > > > > > easier
> > > > > > > > > > > Download IBM WebSphere Application Server v.1.0.1 based
> on
> > > > > Apache
> > > > > > > > > Geronimo
> > > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > > >
> > >
> >
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> > > > > > > > > > >
> > > > > > > > > > >
> > > > _______________________________________________
> > > > > > > > > > > Wicket-develop mailing list
> > > > > > > > > > > Wicket-develop@lists.sourceforge.net
> > > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > > >
> > >
> >
> https://lists.sourceforge.net/lists/listinfo/wicket-develop
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > > >
> > >
> >
> -------------------------------------------------------------------------
> > > > > > > > > > Using Tomcat but need to do more? Need to support web
> > > services,
> > > > > > > security?
> > > > > > > > > > Get stuff done quickly with pre-integrated technology to
> > make
> > > > your
> > > > > job
> > > > > > > > > easier
> > > > > > > > > > Download IBM WebSphere Application Server v.1.0.1 based on
> > > > Apache
> > > > > > > Geronimo
> > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > > >
> > >
> >
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> > > > > > > > > >
> > > > > > > > > >
> > > _______________________________________________
> > > > > > > > > > Wicket-develop mailing list
> > > > > > > > > > Wicket-develop@lists.sourceforge.net
> > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > > >
> > >
> >
> https://lists.sourceforge.net/lists/listinfo/wicket-develop
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > > >
> > >
> >
> -------------------------------------------------------------------------
> > > > > > > > > Using Tomcat but need to do more? Need to support web
> > services,
> > > > > > > security?
> > > > > > > > > Get stuff done quickly with pre-integrated technology to
> make
> > > your
> > > > > job
> > > > > > > > > easier
> > > > > > > > > Download IBM WebSphere Application Server v.1.0.1 based on
> > > Apache
> > > > > > > Geronimo
> > > > > > > > >
> > > > > > >
> > > > >
> > > >
> > >
> >
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> > > > > > > > >
> > > > > > > > >
> > _______________________________________________
> > > > > > > > > Wicket-develop mailing list
> > > > > > > > > Wicket-develop@lists.sourceforge.net
> > > > > > > > >
> > > > > > >
> > > > >
> > > >
> > >
> >
> https://lists.sourceforge.net/lists/listinfo/wicket-develop
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > >
> > > > >
> > > >
> > >
> >
> -------------------------------------------------------------------------
> > > > > > > > Using Tomcat but need to do more? Need to support web
> services,
> > > > > security?
> > > > > > > > Get stuff done quickly with pre-integrated technology to make
> > your
> > > > job
> > > > > > > easier
> > > > > > > > Download IBM WebSphere Application Server v.1.0.1 based on
> > Apache
> > > > > Geronimo
> > > > > > > >
> > > > > > >
> > > > >
> > > >
> > >
> >
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> > > > > > > >
> _______________________________________________
> > > > > > > > Wicket-develop mailing list
> > > > > > > > Wicket-develop@lists.sourceforge.net
> > > > > > > >
> > > > > > >
> > > > >
> > > >
> > >
> >
> https://lists.sourceforge.net/lists/listinfo/wicket-develop
> > > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > >
> > > >
> > >
> >
> -------------------------------------------------------------------------
> > > > > > > Using Tomcat but need to do more? Need to support web services,
> > > > > security?
> > > > > > > Get stuff done quickly with pre-integrated technology to make
> your
> > > job
> > > > > > > easier
> > > > > > > Download IBM WebSphere Application Server v.1.0.1 based on
> Apache
> > > > > Geronimo
> > > > > > >
> > > > >
> > > >
> > >
> >
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> > > > > > >
> > > > > > > _______________________________________________
> > > > > > > Wicket-develop mailing list
> > > > > > > Wicket-develop@lists.sourceforge.net
> > > > > > >
> > > > >
> > > >
> > >
> >
> https://lists.sourceforge.net/lists/listinfo/wicket-develop
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
> -------------------------------------------------------------------------
> > > > > > Using Tomcat but need to do more? Need to support web services,
> > > > security?
> > > > > > Get stuff done quickly with pre-integrated technology to make your
> > job
> > > > > easier
> > > > > > Download IBM WebSphere Application Server v.1.0.1 based on Apache
> > > > Geronimo
> > > > > >
> > > > >
> > > >
> > >
> >
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> > > > > > _______________________________________________
> > > > > > Wicket-develop mailing list
> > > > > > Wicket-develop@lists.sourceforge.net
> > > > > >
> > > > >
> > > >
> > >
> >
> https://lists.sourceforge.net/lists/listinfo/wicket-develop
> > > > > >
> > > > >
> > > > >
> > > > >
> > > >
> > >
> >
> -------------------------------------------------------------------------
> > > > >
> > > > > Using Tomcat but need to do more? Need to support web services,
> > > security?
> > > > > Get stuff done quickly with pre-integrated technology to make your
> job
> > > > > easier
> > > > > Download IBM WebSphere Application Server v.1.0.1 based on Apache
> > > Geronimo
> > > > >
> > > >
> > >
> >
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> > > > >
> > > > > _______________________________________________
> > > > > Wicket-develop mailing list
> > > > >   Wicket-develop@lists.sourceforge.net
> > > > >
> > > >
> > >
> >
> https://lists.sourceforge.net/lists/listinfo/wicket-develop
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > >
> > >
> >
> -------------------------------------------------------------------------
> > > > > Using Tomcat but need to do more? Need to support web services,
> > > security?
> > > > > Get stuff done quickly with pre-integrated technology to make your
> job
> > > > > easier
> > > > > Download IBM WebSphere Application Server v.1.0.1 based on Apache
> > > Geronimo
> > > > >
> > > >
> > >
> >
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> > > > >
> > > > > _______________________________________________
> > > > > Wicket-develop mailing list
> > > > > Wicket-develop@lists.sourceforge.net
> > > > >
> > > >
> > >
> >
> https://lists.sourceforge.net/lists/listinfo/wicket-develop
> > > > >
> > > > >
> > > > >
> > > >
> > > >
> > >
> >
> -------------------------------------------------------------------------
> > > >
> > > > Using Tomcat but need to do more? Need to support web services,
> > security?
> > > > Get stuff done quickly with pre-integrated technology to make your job
> > > > easier
> > > > Download IBM WebSphere Application Server v.1.0.1 based on Apache
> > Geronimo
> > > >
> > >
> >
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> > > > _______________________________________________
> > > > Wicket-develop mailing list
> > > > Wicket-develop@lists.sourceforge.net
> > > >
> > >
> >
> https://lists.sourceforge.net/lists/listinfo/wicket-develop
> > > >
> > > >
> > > >
> > > >
> > >
> >
> -------------------------------------------------------------------------
> > > > Using Tomcat but need to do more? Need to support web services,
> > security?
> > > > Get stuff done quickly with pre-integrated technology to make your job
> > > > easier
> > > > Download IBM WebSphere Application Server v.1.0.1 based on Apache
> > Geronimo
> > > >
> > >
> >
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> > > >
> > > > _______________________________________________
> > > > Wicket-develop mailing list
> > > > Wicket-develop@lists.sourceforge.net
> > > >
> > >
> >
> https://lists.sourceforge.net/lists/listinfo/wicket-develop
> > > >
> > > >
> > > >
> > >
> > >
> >
> -------------------------------------------------------------------------
> > >
> > > Using Tomcat but need to do more? Need to support web services,
> security?
> > > Get stuff done quickly with pre-integrated technology to make your job
> > > easier
> > > Download IBM WebSphere Application Server v.1.0.1 based on Apache
> Geronimo
> > >
> >
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> > > _______________________________________________
> > > Wicket-develop mailing list
> > > Wicket-develop@lists.sourceforge.net
> > >
> >
> https://lists.sourceforge.net/lists/listinfo/wicket-develop
> > >
> > >
> > >
> > >
> >
> -------------------------------------------------------------------------
> > > Using Tomcat but need to do more? Need to support web services,
> security?
> > > Get stuff done quickly with pre-integrated technology to make your job
> > > easier
> > > Download IBM WebSphere Application Server v.1.0.1 based on Apache
> Geronimo
> > >
> >
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> > >
> > > _______________________________________________
> > > Wicket-develop mailing list
> > > Wicket-develop@lists.sourceforge.net
> > >
> >
> https://lists.sourceforge.net/lists/listinfo/wicket-develop
> > >
> > >
> > >
> >
> >
> -------------------------------------------------------------------------
> >
> > Using Tomcat but need to do more? Need to support web services, security?
> > Get stuff done quickly with pre-integrated technology to make your job
> > easier
> > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> >
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> > _______________________________________________
> > Wicket-develop mailing list
> > Wicket-develop@lists.sourceforge.net
> >
> https://lists.sourceforge.net/lists/listinfo/wicket-develop
> >
> >
> >
> >
> -------------------------------------------------------------------------
> > Using Tomcat but need to do more? Need to support web services, security?
> > Get stuff done quickly with pre-integrated technology to make your job
> > easier
> > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> >
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> >
> > _______________________________________________
> > Wicket-develop mailing list
> > Wicket-develop@lists.sourceforge.net
> >
> https://lists.sourceforge.net/lists/listinfo/wicket-develop
> >
> >
> >
>
> -------------------------------------------------------------------------
>
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job
> easier
> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> _______________________________________________
> Wicket-develop mailing list
> Wicket-develop@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-develop
>
>
>
> -------------------------------------------------------------------------
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job
> easier
> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
>
> _______________________________________________
> Wicket-develop mailing list
> Wicket-develop@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-develop
>
>
>

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Wicket-develop mailing list
Wicket-develop@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-develop

Reply via email to