Re: packaging a recommender as a war file

2012-03-08 Thread Manuel Blechschmidt
iliar > with Java EE. > > -Original Message- > From: Ted Dunning [mailto:ted.dunn...@gmail.com] > Sent: Wednesday, March 07, 2012 1:53 PM > To: user@mahout.apache.org > Subject: Re: packaging a recommender as a war file > > A separate project like this is a better way t

Re: packaging a recommender as a war file

2012-03-07 Thread Sean Owen
RecommenderService.jws is a JWS file, which is one standard for making SOAP-based web services. RecommenderServlet is a 'raw' servlet wrapper. Both are just wrappers around a Recommender that expose it over HTTP. Neither is quite REST-ful; both are JavaEE, yes. You can do anything you want here an

RE: packaging a recommender as a war file

2012-03-07 Thread Ben Brodie
: packaging a recommender as a war file A separate project like this is a better way to package this in any case. It is bad practice to have developers modifying Mahout itself in order to build their applications. Nice work, Manuel! On Wed, Mar 7, 2012 at 10:00 AM, Manuel Blechschmidt

Re: packaging a recommender as a war file

2012-03-07 Thread Ted Dunning
l > > > On 07.03.2012, at 17:54, Ben Brodie wrote: > > > Hi, > > > > I am not all that familiar with maven, and perhaps that is the source of > my troubles. I can not figure out how to use the "integration" directory > for packaging a recommender a

Re: packaging a recommender as a war file

2012-03-07 Thread Manuel Blechschmidt
Brodie wrote: > Hi, > > I am not all that familiar with maven, and perhaps that is the source of my > troubles. I can not figure out how to use the "integration" directory for > packaging a recommender as a war file. The website only gives an example that > is already s

Re: packaging a recommender as a war file

2012-03-07 Thread Sean Owen
derServlet. Sean On Wed, Mar 7, 2012 at 4:54 PM, Ben Brodie wrote: > Hi, > > I am not all that familiar with maven, and perhaps that is the source of my > troubles. I can not figure out how to use the "integration" directory for > packaging a recommender as a war file. The

packaging a recommender as a war file

2012-03-07 Thread Ben Brodie
Hi, I am not all that familiar with maven, and perhaps that is the source of my troubles. I can not figure out how to use the "integration" directory for packaging a recommender as a war file. The website only gives an example that is already set up, but that doesn't tell me ho