Re: webservices deployment.

2014-01-20 Thread André Warnier

Vicky B wrote:

HI All,

  If I want to deploy the webapplication which uses webservice like soap or
rest do I need a soap engine or rest engine in tomcat ? 


Short answer : no.  You do not need any "extra additional Tomcat package" for 
that.
The web application is what provides the SOAP or Rest "Web Service".  Tomcat just provides 
the client/server connectivity and the fact of running that web application when the 
client asks for it.


or including

libraries in the war file is enough?



It should be (I presume you are talking about the war-file containing the "Web Service 
application").


Maybe the SOAP/Rest web-application of which you are thinking, requires other things to be 
added to Tomcat before you can use it.  But that is an issue of that application, not of 
Tomcat.  The documentation of your web-application will tell you what is needed.




-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



Re: webservices deployment.

2014-01-20 Thread Daniel Mikusa
On Jan 20, 2014, at 11:17 AM, Vicky B  wrote:

> if I don't have to do anything special for soap or rest then when going for
> paid app server we don't get any other advantage other then support + ejb
> container?

First, don’t top post.  Post inline, like this comment, or at the bottom.

Second, Tomcat implements the Servlet, JSP, EL and WebSocket (7.0.x & 8.0.x) 
specs [1].  This is intentionally a minimal set, that provides a nice 
foundation on which you build applications.

Beyond that, you can include support for other specifications by including the 
proper JAR files with your application.  Things like JPA, Transactions, JSF and 
others.  I believe JAX-WS and JAX-RS are possible to include like this.  I 
don’t use them though, so perhaps someone else can confirm that.

As far as what you get from commercial app servers, I’ll leave that up to their 
marketing pages to explain.

Dan

[1] - http://tomcat.apache.org/whichversion.html


> 
> 
> On Sun, Jan 19, 2014 at 7:21 PM, Daniel Mikusa wrote:
> 
>> On Jan 19, 2014, at 4:34 AM, Vicky B  wrote:
>> 
>>> HI All,
>>> 
>>> If I want to deploy the webapplication which uses webservice like soap
>> or
>>> rest do I need a soap engine or rest engine in tomcat ? or including
>> libraries in the war file is enough?
>> 
>> You are not required to add anything to Tomcat.  You could simply build
>> your app with whatever libraries it requires and deploy to Tomcat.  I've
>> done this with SOAP & REST apps using Spring Web Services & Spring MVC.
>> Works great.
>> 
>> Do you have a particular framework / set of libraries you're targeting?
>> Perhaps someone on this list has used them with an app deployed to Tomcat.
>> 
>> Dan
>> 
>>> 
>>> 
>>> --
>>> 
>>> 
>>> 
>>> *Thanks & Regards Vickyb*
>> 
>> 
>> -
>> To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
>> For additional commands, e-mail: users-h...@tomcat.apache.org
>> 
>> 
> 
> 
> -- 
> 
> 
> 
> *Thanks & Regards Vickyb*


-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



Re: webservices deployment.

2014-01-20 Thread Vicky B
if I don't have to do anything special for soap or rest then when going for
paid app server we don't get any other advantage other then support + ejb
container?


On Sun, Jan 19, 2014 at 7:21 PM, Daniel Mikusa wrote:

> On Jan 19, 2014, at 4:34 AM, Vicky B  wrote:
>
> > HI All,
> >
> >  If I want to deploy the webapplication which uses webservice like soap
> or
> > rest do I need a soap engine or rest engine in tomcat ? or including
> libraries in the war file is enough?
>
> You are not required to add anything to Tomcat.  You could simply build
> your app with whatever libraries it requires and deploy to Tomcat.  I've
> done this with SOAP & REST apps using Spring Web Services & Spring MVC.
>  Works great.
>
> Do you have a particular framework / set of libraries you're targeting?
>  Perhaps someone on this list has used them with an app deployed to Tomcat.
>
> Dan
>
> >
> >
> > --
> >
> >
> >
> > *Thanks & Regards Vickyb*
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
> For additional commands, e-mail: users-h...@tomcat.apache.org
>
>


-- 



*Thanks & Regards Vickyb*


Re: webservices deployment.

2014-01-19 Thread Daniel Mikusa
On Jan 19, 2014, at 4:34 AM, Vicky B  wrote:

> HI All,
> 
>  If I want to deploy the webapplication which uses webservice like soap or
> rest do I need a soap engine or rest engine in tomcat ? or including 
> libraries in the war file is enough?

You are not required to add anything to Tomcat.  You could simply build your 
app with whatever libraries it requires and deploy to Tomcat.  I've done this 
with SOAP & REST apps using Spring Web Services & Spring MVC.  Works great.

Do you have a particular framework / set of libraries you're targeting?  
Perhaps someone on this list has used them with an app deployed to Tomcat.

Dan

> 
> 
> -- 
> 
> 
> 
> *Thanks & Regards Vickyb*


-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



webservices deployment.

2014-01-19 Thread Vicky B
HI All,

  If I want to deploy the webapplication which uses webservice like soap or
rest do I need a soap engine or rest engine in tomcat ? or including
libraries in the war file is enough?

-- 



*Thanks & Regards Vickyb*