Re: [Soaplab-users] Soaplab2, WSDLs and third-party clients
Brought to you by:
marsenger
From: Mahmut U. <ul...@eb...> - 2008-06-06 14:41:30
|
> I'm still not clear about how to access *specific* services > (e.g. helloworld) via that generic interface definition. > > If I load up that WSDL in SoapUI, and create a new 'describe' request for > example, there's no parameter into which I can put the name of the service > I want to describe -- so how does Soaplab know *which* service I want to > get the description for? (Or run any other method on...) Soaplab use the following line of code to find out name of the service called. String serviceName = StringUtils.substringAfterLast (requestURI, "/"); service names should normally include group name as well. for example when using the default helloworld service it should be "classic.helloworld". Regards, Mahmut |