I was unsuccessful in finding an answer to this question in the archives
of this User List.

I want to pass through Kerberos tokens in my SOAP request.  If I were to
do this to just a regular Web Server, my code would look like this:

URLConnection conn = myURL.openConnection( );
conn.setUseCaches( false );
conn.setRequestProperty( "Authorization", "Negotiate " +
myBase64EncodedTokens );

InputStream is = conn.getInputStream( );
...
...
...

Would someone either provide sample code or a plan of attack?

Thanks in advance,
Perry


Reply via email to