BTW, HFireHttpServer isn't very complicated.  Here is how I use Jetty
(svn head) with XFire 1.2.4.

// http://docs.codehaus.org/display/JETTY/Embedding+Jetty
Server server = new Server(8080);
Context soap = new Context(server,"/soap");
soap.addServlet(new ServletHolder(XFireServlet.class), "/*");
soap.setAttribute(XFireServlet.XFIRE_INSTANCE, xfire);
//soap.addFilter(SoapDebugFilter.class, "/*", Handler.REQUEST);
//server.addHandler(new DefaultHandler()); // optional, displays links
to contexts
server.start();

Feel free to change the context to your liking.  My SoapDebugFilter
isn't working yet.  Anyone have a simple crude debug filter?  Is that
common practice for debugging SOAP?

Cameron

On 1/12/07, Cameron Taggart <[EMAIL PROTECTED]> wrote:
Why is it so important?  To speed up unit tests, for your deployments,
or something else?  I would suggest waiting for the 6.1.1 final to
come out.

Cameron

On 1/12/07, Juergen Mayrbaeurl <[EMAIL PROTECTED]> wrote:
>
> Please upgrade to Jetty Version 6.x. It's already available in the maven
> repo!
>
> BTW. Does a JIRA issue exist? Have not found it.
>
> Greetings
> Juergen
>
>
> Tomek Sztelak wrote:
> >
> > Hi,
> > Currently i don't know about such plans.
> > Its require some work , not sure if jetty 6.x is full compatible with
> > 5.x, so all junits must be modified in worst case. I also can't see
> > jetty 6 ( final ) in maven repo used by xfire.
> > But if you think that changing jetty version is important, then plz
> > create jira issue.
> >
> > On 10/5/06, Dave Hoffer <[EMAIL PROTECTED]> wrote:
> >> I have a project using XFire 1.2.1 in an embedded configuration which
> >> uses Jetty.  I note that it is using Jetty version 5.1.x.  Are there any
> >> plans to upgrade XFire to use Jetty 6.0.x?
> >>
> >> -dh
> >>
> >> ---------------------------------------------------------------------
> >> To unsubscribe from this list please visit:
> >>
> >>     http://xircles.codehaus.org/manage_email
> >>
> >>
> >
> >
> > --
> > -----
> > When one of our products stops working, we'll blame another vendor
> > within 24 hours.
> >
> > ---------------------------------------------------------------------
> > To unsubscribe from this list please visit:
> >
> >     http://xircles.codehaus.org/manage_email
> >
> >
> >
>
> --
> View this message in context: 
http://www.nabble.com/XFire---Jetty-versions--tf2388811.html#a8295001
> Sent from the XFire - User mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe from this list please visit:
>
>     http://xircles.codehaus.org/manage_email
>
>


---------------------------------------------------------------------
To unsubscribe from this list please visit:

   http://xircles.codehaus.org/manage_email

Reply via email to