Hi,

I have an existing spring application using grails1.3.4 framework. I added new service called apiService.

class ApiService implements IWebServicesSessionBean {

def IWebServicesSessionBean webServicesSession

static transactional = true

static expose = [ "cxfjax" ]\

method1
.......

}

When I access the soap URL http://localhost:8080/myapp/services/api?wsdl from any IE

I get stadarg login page which I get for looging into my application (from URL http://localhost:8080/myapp)

I could see the WSDL when enter login details.

But when I try to access WSDL using any soap client (say nusaop php client) I get the standard login page html retuned my client which is unable understand the response.


Please suggest If I need to do any other configurations.

Thanks,