Re: wsdl 2 soap

2010-02-13 Thread Hemant Borole
soapui http://www.soapui.org/ On Fri, Feb 12, 2010 at 9:40 PM, Demetris demet...@ece.neu.edu wrote: Hi all, is there a tool that can generate SOAP messages directly from a WSDL files (without needing to generate and execute stubs)? Thanks -- Hemant Borolé

Re: Can a web service be deployed on a server that is not an application server

2008-05-21 Thread Hemant Borole
Back to basics. Web service is any service that can be provided over web, meaning via the http protocol. So it even need not be SOAP. (Soap is a layer over http). So if you build anything that can handle http requests, that could be as good as a web service. (I haven't heard of any web service

Re: Can a web service be deployed on a server that is not an application server

2008-05-20 Thread Hemant Borole
Yes, you just need a web server. Or if your web service is serving just static pages ( no servlets etc ) then just a plain http server is also enough. By the way a lot depends on what type of web service you want to provide. You also have option of coding your own cgi scripts on http server On

Re: Return raw XML

2008-02-07 Thread Hemant Borole
try the tcpmon util provided by axis. Set the axis jars in your classpath and then execute java org.apache.axis.utils.tcpmon I hope this is what you are looking for. On Feb 7, 2008 7:23 AM, Luna, Abraham [EMAIL PROTECTED] wrote: Is there a way to return the raw XML returned by a web service

Re: Using Map in DTO

2008-01-10 Thread Hemant Borole
Axis 1.4 or Axis 2? I am not sure about Axis 2.0. But I have used axis 1.4 with very little success with searializing Maps, or for that matter even HashMaps. One reason being the value for the keys in the HashMap can have an undefined structure and hence I believe Axis cannot figure out how to

Re: code too large error

2007-12-20 Thread Hemant Borole
Hi Amila, This is the same issue that I have reported about limitation on the number of operations in the WSDL. I am not using the -u option, will give it a try. I am using axis 1.4 I am using document encoded. Unfortunately due to privacy concerns I am not able to share the WSDL. P.S. The issue

Re: code too large error

2007-12-20 Thread Hemant Borole
Sorry, The binding we are using is rpc. On Dec 20, 2007 8:16 AM, Hemant Borole [EMAIL PROTECTED] wrote: Hi Amila, This is the same issue that I have reported about limitation on the number of operations in the WSDL. I am not using the -u option, will give it a try. I am using axis 1.4 I am

No of operations in WSDL

2007-12-19 Thread Hemant Borole
Does Axis have a limit of number of operations in a single WSDL file. I have about 90+ operations in my wsdl file, when I add a new operation I get an error 12: code too large [javac]private static java.util.Map _myOperations = new java.util.Hashtable(); If I remove an existing operation

overloading based on return types.

2007-04-17 Thread Hemant Borole
What I am looking at is a way to have same method names but different return types in the java code, generated from the wsdl schema. So I am looking at a schema structure that allows me to generate a method getValue, that can return me one of the 2 data types, namely String and user defined