Does Geronimo 3.0.1 with Tomcat 7 and Axis2 supports rest webservices?

2015-02-11 Thread topstarnetwork
Hello, as I want to use rest webservices instead of soap Does Geronimo 3.0.1 with Tomcat 7 and Axis2 supports rest webservices? If not should I instal the Geronimo 3.0.1 with Tomcat 7 instead and use with it one of the following softwares? https://cwiki.apache.org/confluence/display/TUSCANYWIKI

ejb webservices

2012-10-12 Thread jcyim
://apache-geronimo.328035.n3.nabble.com/ejb-webservices-tp3985903.html Sent from the Users mailing list archive at Nabble.com.

Re: ejb webservices

2012-10-12 Thread Ivan
) at java.lang.ClassLoader.loadClass(ClassLoader.java:248) ... 41 more -- View this message in context: http://apache-geronimo.328035.n3.nabble.com/ejb-webservices-tp3985903.html Sent from the Users mailing list archive at Nabble.com. -- Ivan

WebServices and Spring Injection?

2009-11-28 Thread scot...@iinet.net.au
Hi How can I inject Spring Beans into a WebService created through Annotation and deployed through Geronimo. Scott

Re: WebServices and Spring Injection?

2009-11-28 Thread David Jencks
On Nov 28, 2009, at 3:47 AM, scot...@iinet.net.au wrote: Hi How can I inject Spring Beans into a WebService created through Annotation and deployed through Geronimo. AFAIK you would have to write the following code for geronimo: 1. A spring integration that makes spring modules a

Re: Re: Security and WebServices

2009-01-08 Thread Jochen Zink
-Ursprüngliche Nachricht- Von: David Jencks david_jen...@yahoo.com Gesendet: 08.01.09 00:37:51 An: user@geronimo.apache.org Betreff: Re: Security and WebServices On Jan 7, 2009, at 5:03 AM, Jochen Zink wrote: Hello, I want to use geronimos securitysystem together with a JAX-WS 2.1

Security and WebServices

2009-01-07 Thread Jochen Zink
Hello, I want to use geronimos securitysystem together with a JAX-WS 2.1 WebService (WAR-File). My vision ;): - standard security configuration: all URLs like /services/* are secure - Using a standard LoginModule (A Geronimo one or a self written for BinarySecurityTokens) Is it

Re: Security and WebServices

2009-01-07 Thread David Jencks
On Jan 7, 2009, at 5:03 AM, Jochen Zink wrote: Hello, I want to use geronimos securitysystem together with a JAX-WS 2.1 WebService (WAR-File). My vision ;): - standard security configuration: all URLs like /services/* are secure - Using a standard LoginModule (A Geronimo one or a self

Re: Webservices client problem

2008-06-10 Thread sainath chowdary
Thanks all for the support, I solved the problem by downloading axis2 and adding the jars necessary. Then I searched for the same jars in geronimo and it worked flawlessly. The jars necessary are: axiom-api, axiom-dom, axiom-impl, axis2-adb, axis2-java2wsdl, axis2-jaxws, axis2-jaxws-api,

Re: Webservices client problem

2008-06-10 Thread Lin Sun
Hi, you can just type jaxws-tools.bat wsgen at the bin directory, and it should list all avail options to you, like below - Usage: wsgen [options] SEI where [options] include: -classpath path specify where to find input class files -cp path same as -classpath path

Re: Webservices client problem

2008-06-10 Thread sainath chowdary
This is the error its throwing to me. C:\geronimo-tomcat6-javaee5-2.1\binjaxws-tools.bat wsgen Using GERONIMO_BASE: C:\geronimo-tomcat6-javaee5-2.1 Using GERONIMO_HOME: C:\geronimo-tomcat6-javaee5-2.1 Using GERONIMO_TMPDIR: var\temp Using JRE_HOME:C:\jdk1.5.0_11\jre Exception in thread

Re: Webservices client problem

2008-06-10 Thread sainath chowdary
Hi Lin, Thanks for the help. I downloaded 2.1.1 from geronimo site and its working flawlessly. On Tue, Jun 10, 2008 at 7:49 PM, Lin Sun [EMAIL PROTECTED] wrote: Right - you are using 2.1 below (I think this is a known prob in 2.1). I am just saying it is fixed in 2.1. trunk now when I tried

Re: Webservices client problem

2008-06-09 Thread Jarek Gawor
You have to figure out what sort of jars you need based on the NoClassDefFoundError exceptions. This error indicates that you need wsdl4j.jar. You might also need to add a few axiom-*.jar, XmlSchema-*.jar, neethi-*.jar, etc. Jarek On Mon, Jun 9, 2008 at 1:49 AM, sainath chowdary [EMAIL

Re: Webservices client problem

2008-06-09 Thread sainath chowdary
I just wanted to give this information to know whether this has any relation with the problem. http://cwiki.apache.org/GMOxDOC21/developing-a-simple-calculator-web-service.html As pointed by the above link, when i start gsh and i type jaxws/wsgen its giving me an error Error: NotFoundException:

Re: Webservices client problem

2008-06-09 Thread sainath chowdary
Also if I try running from jaxws-tools.bat utility in server bin directory..then i get a error message like this: Exception in thread main java.lang.NoClassDefFoundError: org/apache/geronimo/c ommon/DeploymentException at

Re: Webservices client problem

2008-06-09 Thread Lin Sun
Hi, Regarding the jaxws-tools.bat prob, it is working in 2.1 trunk when I tried late last week. Might be a limitation in the version of geronimo that you are using. Lin On Mon, Jun 9, 2008 at 6:24 AM, sainath chowdary [EMAIL PROTECTED] wrote: Also if I try running from jaxws-tools.bat

Re: Webservices client problem

2008-06-09 Thread sainath chowdary
Hi, I tried jaxws-tools.bat by building latest trunk also. Can you please explain me how to use it? May be I am not using it in the right way. On Mon, Jun 9, 2008 at 7:12 PM, Lin Sun [EMAIL PROTECTED] wrote: Hi, Regarding the jaxws-tools.bat prob, it is working in 2.1 trunk when I tried

Re: Webservices client problem

2008-06-08 Thread sainath chowdary
Ya, Its a standalone client in Java 5. I have added all the jar's from the directory org/apache/axis2 in geronimo installation directory. Now its throwing me a new error Exception in thread main java.lang.NoClassDefFoundError: javax/wsdl/xml/WSDLLocator at

Webservices client problem

2008-06-06 Thread sainath chowdary
hi, I have the following code in my java class which basically is trying to access the webservice deployed. --URL url = new URL( http://localhost:8080/jaxws-calculator-1.0/calculator?wsdl;); QName qname = new QName(http://jws.samples.geronimo.apache.org;, Calculator); Service service =

Re: Webservices client problem

2008-06-06 Thread Jarek Gawor
That's a standalone client on Java 5, right? You will need to add a bunch of Axis2 (or CXF depending which engine you want to use) jars to the classpath. For example, for Axis2 you will need to add axis2-jaxws-*.jar, axis2-kernel-*.jar, axis2-saaj-*.jar, and a bunch of others jars. Also, if

Re: NotFoundException doing Webservices tutorial...

2008-05-13 Thread Jarek Gawor
You need to do the following (just change the version references to 2.1.1): http://mail-archives.apache.org/mod_mbox/geronimo-user/200803.mbox/[EMAIL PROTECTED] Jarek On Tue, May 13, 2008 at 12:47 PM, [EMAIL PROTECTED] wrote: Hi, I'm running Geronimo 2.1.1 on OS X Leopard under JDK

NotFoundException doing Webservices tutorial...

2008-05-13 Thread lists
Hi, I'm running Geronimo 2.1.1 on OS X Leopard under JDK 1.5.0_13 and was following the tutorial at: http://cwiki.apache.org/GMOxDOC21/developing-a-simple-calculator-web-service.html When I get to the step in the tutorial to run jaxws/wsgen to generate the wsdl document and schema definition,

Re: Basic Auth passwords in webservices

2007-11-01 Thread Neerup
to avoid this, so i could install all my app using only the Ear file. thanks Thomas Neerup -- View this message in context: http://www.nabble.com/Basic-Auth-passwords-in-webservices-tf4726213s134.html#a13525158 Sent from the Apache Geronimo - Users mailing list archive at Nabble.com.

Webservices problem with JAX-RPC in 1.2?

2007-01-02 Thread Kaeto23
-BEGIN PGP SIGNED MESSAGE- Hash: RIPEMD160 Hello, my first try with V1.2 was to deploy my good ol' ws sample. Version 1.1 was refusing to use EJB webservices so I switched to JAX-RPC. At least the war became deployable but not the ear. For now, I tried to deploy the ear which contained

Re: Webservices problem with JAX-RPC in 1.2?

2007-01-02 Thread Jason Dillon
This is not a valid dependency anymore in Geronimo 1.2 (or 2.x): geronimo/geronimo-webservices//jar The groupId has changed for all Geronimo modules. Something like this might get you farther: org.apache.geronimo/geronimo-webservices//jar Though... I'd imagine there are probably

Re: Webservices problem with JAX-RPC in 1.2?

2007-01-02 Thread Kaeto23
-BEGIN PGP SIGNED MESSAGE- Hash: RIPEMD160 Hello, Jason thx for your response and your tip. After some try-n-error I got the final solution/dependency: org.apache.geronimo.modules/geronimo-webservices//jar It's good that http://cwiki.apache.org/GMOxDOC12/simple-web

Re: Geronimo Tomcat vs. EJB Webservices

2006-07-18 Thread Kevan Miller
Hi Dirk, First that I've seen of this sort... I'd say a Jira is definitely in order... This is 1.1, correct? --kevan On Jul 18, 2006, at 1:17 AM, D. Strauss wrote: Hello, geronimo users, as I'm trying to investigate a problem with Geronimo tomcat and webservices, I want to know if you

Re: Geronimo Tomcat vs. EJB Webservices

2006-07-18 Thread D. Strauss
, as I'm trying to investigate a problem with Geronimo tomcat and webservices, I want to know if you encountered some strange behaviour. Something like: Retrieving document at 'META-INF/wsdl/firefox.wsdl'. 06:59:41,443 INFO [ContextConfig] Missing application web.xml, using defaults only

Geronimo Tomcat vs. EJB Webservices

2006-07-17 Thread D. Strauss
Hello, geronimo users, as I'm trying to investigate a problem with Geronimo tomcat and webservices, I want to know if you encountered some strange behaviour. Something like: Retrieving document at 'META-INF/wsdl/firefox.wsdl'. 06:59:41,443 INFO [ContextConfig] Missing application web.xml, using

Re: Creating webservices for Geronimo 1.1 - fixed

2006-06-21 Thread Aaron Mulder
You need to create a Jira account for yourself and then log in. Apparently, only logged in users can create issues for Geronimo. Thanks, Aaron On 6/21/06, D. Strauss [EMAIL PROTECTED] wrote: Hello, David (OT: thx to a wonderful mail server who dropped any responses to my request I have to

Creating Webservices with 1.1

2006-06-18 Thread D. Strauss
any problems. But on final deploy I get a lot of exceptions telling me that there was a problem with my webcontainer. A lot of stacktraces and errors where I have to give up :/ So, what do I have to know about creating webservices with Geronimo using the new 1.1 release? Do I have to say Geronimo

Re: Creating Webservices with 1.1

2006-06-18 Thread David Jencks
, what do I have to know about creating webservices with Geronimo using the new 1.1 release? Do I have to say Geronimo which webcontainer I want to use? Any tutorial or documentation would be great ^^ Best regards Dirk Some more info that could be removed in future replies

Re: WEBSERVICES problem

2006-02-06 Thread Aaron Mulder
OK, can you file a bug for this? I'm not too familiar with the Axis code myself, but it seems clear that extra slashes are getting inserted here and there. http://issues.apache.org/jira/secure/BrowseProject.jspa?id=10220 Thanks, Aaron On 2/6/06, Phani Madgula [EMAIL PROTECTED] wrote: Hi

WEBSERVICES problem

2006-02-05 Thread Phani Madgula
Hi I have deployed a WEBSERVICE implemented using an EJB, and facing a problem while accessing through Dynamic Proxy client. The client is as follows. String urlstr =http://localhost:8080/TestEJB/Hello?wsdl; String argument =phani; System.out.println(Contacting webservice at + urlstr);

Re: WEBSERVICES problem

2006-02-05 Thread Aaron Mulder
I was able to get a web services reference (service-ref) from a web app to connect to an EJB exposed as a web service in Geronimo 1.0 when working through some tests for my web services chapter at: http://chariotsolutions.com/geronimo/web-services.html However, I did not try a dynamic proxy

Re: WEBSERVICES problem

2006-02-05 Thread Phani Madgula
Hi Aaron, Thanks for reply. I have added the following tags in openejb-jar.xml to bind the service to a different URL than what is specified in wsdl file. enterprise-beans session ejb-nameHelloBean/ejb-name jndi-nameHelloBean/jndi-name web-service-address/RAMESH/Hello/web-service-address

WebServices

2006-01-25 Thread Manu George
Hi, I have a Webapp deployed in geronimo that calls an external webservice. If I generate the stubs using wscompile I seem to be able to get a handle to the stub by calling HelloService myHelloService =(HelloService) ic.lookup(java:comp/env/service/HelloService); Now I can also generate the

Re: WebServices

2006-01-25 Thread David Jencks
generated by wscompile for the same wsdl file. When I bundle these stubs with my webapp Geronimo is not giving me the Stub generated by axis with 3 methods and is instead giving me a stub with a single method to invoke the service? Can anyone explain why this is happening? Our webservices