Re: complex parameters in http requests

2010-12-23 Thread Charles Galpin
Yes soapUI works great, but not for people who just want to click on a link in a browser :) thanks, charles On Dec 23, 2010, at 1:32 AM, Martin Makundi wrote: > Try SOAPUI > > 2010/12/23 Charles Galpin : >> Hi >> >> We often use http to test services, but usually with simple types for the >

Re: complex parameters in http requests

2010-12-22 Thread Martin Makundi
Try SOAPUI 2010/12/23 Charles Galpin : > Hi > > We often use http to test services, but usually with simple types for the > arguments. Is it possible to pass complex arguments? For example if I had a > web method > > @WebMethod > public void myMethod(int i, MyObj obj) {..} > > public class MyObj

complex parameters in http requests

2010-12-22 Thread Charles Galpin
Hi We often use http to test services, but usually with simple types for the arguments. Is it possible to pass complex arguments? For example if I had a web method @WebMethod public void myMethod(int i, MyObj obj) {..} public class MyObj { private double a; private double b;