I'm trying to use a CustomAuthorizationPolicy with an authorizationType = 'Digest' but I'm not having any luck. Similar to the example grails-cxf-client-demo, but 'Digest' vs. 'Basic'.
resources.groovy
customAuthorizationPolicy(AuthorizationPolicy) {
userName = 'test'
password = 'test'
authorizationType = 'Digest'
}
Config.groovy
someServiceClient {
wsdl = 'some.wsdl'
namespace = 'some.namespace'
clientInterface = 'some.interface'
serviceEndpointAddress = 'some.endpoint'
authorizationPolicy = 'customAuthorizationPolicy'
}
Is an authorizationType = 'Digest' supported?
I'm trying to use a CustomAuthorizationPolicy with an
authorizationType = 'Digest'but I'm not having any luck. Similar to the example grails-cxf-client-demo, but 'Digest' vs. 'Basic'.resources.groovy
Config.groovy
Is an
authorizationType = 'Digest'supported?