Is it possible to protect webservices with NTLM authentication only? I have NTLM authentication setup for my application, but when calling my first webservice, I'm getting an error that talks about header information -
Caused by: com.ctc.wstx.exc.WstxEOFException: Unexpected EOF in prolog
at [row,col {unknown-source}]: [1,0]
at com.ctc.wstx.sr.StreamScanner.throwUnexpectedEOF(S treamScanner.java:661)
at com.ctc.wstx.sr.BasicStreamReader.handleEOF(BasicS treamReader.java:2134)
at com.ctc.wstx.sr.BasicStreamReader.nextFromProlog(B asicStreamReader.java:2040)
at com.ctc.wstx.sr.BasicStreamReader.next(BasicStream Reader.java:1069)
at com.ctc.wstx.sr.BasicStreamReader.nextTag(BasicStr eamReader.java:1095)
at org.apache.cxf.binding.soap.interceptor.ReadHeader sInterceptor.handleMessage(ReadHeadersInterceptor. java:83)
... 65 more

Using the same webservice with basic auth works fine. Is it not possilbe to simply protect the webservice with NTLM? IS there something else I have to do?

Thanks for any help.
aaron