-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Autowire PortType implementation doesn´t work #43
Comments
What version of grails are you using? |
Grails 2.3.7 |
Similar problem here on Grails 2.4.3 - also tried to use the generated classes directly but getting |
I had some other problems also but now I got it working. (Doing anything where SOAP is involved always requires a "random changes until it works"-session.....) I think the missing thing in your code is that the I believe this issue can be closed or maybe result in better documentation. |
Hello, I have a problem with correct settings (propably) of cxf-client 1.6.0. My config.groovy:
// cxf config
cxf {
client {
authLdService {
wsdl = "docs/wsdl/auth.wsdl"
namespace = "cxf.client.ld.auth"
outputDir = "src/java"
clientInterface = cxf.client.ld.auth.AuthService
serviceEndpointAddress = "${service.ld.url}/services/Auth"
}
}
}
Wsdl2java script executed successfully (java classes were generated). But when I want to test a service:
class LdAuthService {
}
I always got a null pointer exception (at use authLdService in controller). I supposed that authLdService should be wired automatically.... What do I wrong?
Thanks a lot.
The text was updated successfully, but these errors were encountered: