5
votes
0answers
127 views

Microsoft ISA Server Authentication in Android

I have an application in Android, in which I were reading files from the remote server, code for reading file is given below; URI uri = null; try { uri = new ...
1
vote
1answer
72 views

NTLM authentication fails after type 2 response

I have a site with SSO, which is using NTLM authentication, which was working perfectly so far on XP and win 7 (32bit), but recently my company decided to use win 7 (64bit) computers as well. On these ...
0
votes
0answers
96 views

Java Mail Microsoft Exchange NTLM

I have searched online, but can't find a solution that works. I receive the following Exception: Authentication failed; nested exception is javax.mail.AuthenticationFailedException: 535 5.7.3 ...
0
votes
0answers
42 views

Manually Execute JAX-WS Request and pass the response for the normal processing

What I'm currently doing is, I have implemented the Exchange Web Service by generating the client code using JAX-WS. I have implemented all the required functionality and have tested it with the trial ...
0
votes
0answers
118 views

Apache CXF (SOAP) and NTLM Proxy - Connection refused

I have some trouble to call a SOAP web service with Apache CFX and authenticate it versus our corporate NTLM proxy. I have to use JCFS because our Setup use Java 5. The application server ist ...
-3
votes
0answers
41 views

Groovy ws-lite to access NTLM authenticated server [closed]

I am trying to access a SOAP service on a IIS served machine from my grails application using groovy ws-lite. When I send the SOAP message I always get a HTTPClientException with 401 Unauthorized ...
0
votes
2answers
43 views

javax.naming.AuthenticationException in gssapi

I'm trying to perform NTLM bind using JAVA GSSAPI. I'm receiving this error: javax.naming.AuthenticationException: GSSAPI [Root exception is javax.security.sasl.SaslException: GSS initiate failed ...
0
votes
2answers
158 views

GSSException: Message stream modified (41)

I'm working with an LDAP in forest architecture (all servers and my server are windows). I'm binding to the AD using NTLM authentication. I have a JAVA code that perform the operations against the ...
1
vote
0answers
183 views

Cannot create a session after the response has been committed in IE7 and IE8

I am working with an application that allows the user to login using NTLM and a form login simultaneously. I mean that a user can log using their windows credentials (using jespa), but it is possible ...
3
votes
2answers
94 views

Pass username to Spring Security

We are having a application which returns logged in username (Windows NTLM) and we normally pass to all other applications to check authentication part. I would like to know is it possible to pass ...
2
votes
2answers
105 views

Spring 3 and NTLM authentication

I am using a spring 3 web application, as Spring 3 doesn't support NTLM authentication, what are the other alternatives that can be used along with Spring security? So that users are authenticated to ...
1
vote
0answers
33 views

Is it possible to retrieve custom property from AD using ADVAPI

I am doing NTLM/Kerberos SSO using com.sun.jna.platform.win32.Sspi, com.sun.jna.platform.win32.Secur32 and com.sun.jna.platform.win32.AdvapiUtils to actually authenticate the user against the AD and ...
3
votes
1answer
135 views

Connecting to NTLMv2 from Java\httpclient 3\linux

I am using MAC and LINUX, java6 and apache http-client 3.1 to connect to sharepoint with NTLM auth. I connect to ntlm using http://jcifs.samba.org/ and it worked fine until I had to connect to ...
2
votes
1answer
675 views

Java URLConnection error with ntlm authentication, but only on Linux and only Java 7

I am trying to open an http connection to an url protected with the NTLM authentication scheme. This code has been working correctly for 2 year when we were on Java 6.I wrote a small java program ...
0
votes
2answers
577 views

Using NTLM authentication in Java applications

I want to use Windows NTLM authentication in my Java application to authenticate intranet users transparently. The users should not notice any authentication if using their browsers (single sign-on). ...
0
votes
0answers
93 views

NTLM v.2 auth with AXIS2 1.4

I'm using AXIS2 (1.4.2) and related common httpclient 3.1 for creation of webservices. Now I need to create WebService with NTLM v1&2 auth. I found one ticket on AXIS2's ...
0
votes
2answers
238 views

NTLM solution for RESTful web services in JAVA

I am writing a client for Restful web services. public static void main(String[] args){ // Use apache commons-httpclient to create the request/response HttpClient client = new ...
1
vote
1answer
185 views

Connecting to LDAP (Active Directory) with NTLM security protocol

Currently, I'm using user and password as the connection credentials to ldap (in order to authenticate user of AD). For authentication here I had created an initial context (for Active Directory) by ...
0
votes
2answers
150 views

Configure kerberos without krb5.conf

I'm using kerberos authentication to login to ActiveDirectory. I'm doing it with GSSAPI. Currently, I'm using krb5.conf file, that describes the realms, encryption algs and more, and the ...
2
votes
0answers
909 views

Failure authenticating with NTLM when calling from Java

I'm doing the tutorial "Integrate Java with Microsoft SQL Server Reporting Services 2005/2008". I am using the following setup: SQL Server 2012 Business Intelligence Windows 7 Home Premium http ...
2
votes
1answer
73 views

Authentication and SSO Application

My team is developing a Common Authentication-SSO (CASSO) application to be used within a corporates LAN. Any Web application under the company's domain needs to authenticate the user through this ...
2
votes
1answer
521 views

NTLM authentication with httpclient 4.2.1

I need to do a HTTP GET to a URL that needs NTLM authentication. I can access the URL using Firefox or Chrome on a MacBook Pro. The browser asks for the username/password combo and it works. I am now ...
0
votes
1answer
150 views

JGSS and NTLMSSP/NegoEx

I'm working on a web application running on JRE 7u7 that uses the SPNEGO library from Sourceforge for authentication. All is well as long as Kerberos is working, but since it's deployed in a complex ...
0
votes
1answer
148 views

Can't integrate NTLM and JAVA

I can't integrate NTLM auth in my web app. I use this library for connecting to Samba-server. I don't understand what some of the parameters mean: <init-param> ...
1
vote
1answer
163 views

NTLM Authentication in Asp.net

After reading this article. I have some questions about NTLM Authentication. When I apply NTLM in a asp.net web site Does the challenge/response process happened between Web Browser and IIS? Where ...
0
votes
1answer
492 views

Connecting to LDAP (Active Directory) with NTLM

Currently, I'm using user and password as the connection credentials to ldap (in order to search on this AD). My code looks like: env = new Hashtable(); env.put(Context.INITIAL_CONTEXT_FACTORY, ...
0
votes
2answers
297 views

NTLM Authentication - is it simply a prompt(challenge), or does it actually authenticate?

I have a (java) web-application, and i have enabled NTLM Authentication. When the logon prompt is presented by the browser in our (windows) intranet environment. The behavior i see is: NTLM prompt ...
0
votes
2answers
3k views

NTLM Authentication in a Web Application (java)

I am using following filter to enable NTLM Authentication, in my web-application. I get the windows browser authentication prompt. It is working fine. Except for the fact that - I am unable to tell ...
0
votes
0answers
235 views

HTTP request not retreiving ntlm credentials

I am trying to stablish connection to an URL that requires NTLM credentials, but I always receive a 401 Unauthorized response despite providing correct domain\username and password. Browser access ...
4
votes
3answers
928 views

Android: Downloading an NTLM-authentication-protected file

I want to download a file from a Sharepoint server that protected with NTLM authentication from my Android application. I found some tutorials and couldn't successful. I tried using The Java CIFS ...
1
vote
1answer
847 views

Verifying NTLMv2 authentication in Java

So I'm trying to track down a strange bug with NTLMv2 and Java. It seems like NTLM is ignoring any information I pass in during the Java based authentication, and finds the information somewhere else. ...
1
vote
0answers
653 views

Java 6 HTTPURLConnection and Project Server NTLM Authentication from RHEL5.5

Currently at a loss for authenticating with a Microsoft Project Server 2007 instance running on IIS with Integrated Windows Authentication enabled from a Java 1.6(u19) client running on linux, RHEL ...
0
votes
1answer
255 views

Why won't WAFFLE sign me in when I provide the password manually?

I'm using WAFFLE to integrate a web server with Windows authentication. When I visit the web server using the short hostname, the server is considered "trusted" by both Chrome and IE, and everything ...
2
votes
1answer
307 views

Is there a Java replacement for CFHTTP to use NTLM Authentication from Coldfusion?

Facts I need to access a web service protected by NTLM authentication. I am using Coldfusion 8. I need this solution to be cross platform, ex. Windows, Linux, OS-X (aka no .NET component) Java seems ...
1
vote
2answers
520 views

Suppress NTLM Auth in Java

I am currently pen-testing a web application and came across an interesting phenomenon. During my testing sessions, I gathered URLs using a proxy. Now I wanted to test my URL list for anonymous ...
1
vote
1answer
1k views

apache httpclient + ntlm Authentication

I have a client to upload a file to a server over https post. It uses proxy and this is my code public void upload() throws Exception { //create default client DefaultHttpClient client = ...
2
votes
1answer
5k views

“The matching wildcard is strict, but no declaration can be found for element 'http'” Error

I am trying to configure NTLM authentication, but receive error: cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element 'http'. I read a lot of ...
1
vote
0answers
152 views

VM specific HTTP proxy authentication

I assumed that this should be easy to find with Google, but after thorough searching and trying to understand the actual implementation without full success, I thought someone here might perhaps have ...
2
votes
0answers
308 views

NLTM auth using HttpUrlConnection failing

I am trying to authenticate against a server supporting NTLM authentication in my Java application using java.net's HttpUrlConnection. The problem is that the application fails to send the ...
0
votes
1answer
909 views

What parameters for an NTLM authentication can be automatized , and how to do it with java?

I want to know what parameters can be automatized out of the 6 used during an NTLM authentication, which are: "Username" - The one used to login on the Operating System's profile currently in use. ...
3
votes
2answers
1k views

HttpClient using both SSL encryption and NTLM authentication fails

I'm trying to do simple REST calls on a Sharepoint 2010 server that uses SSL encryption (https), as well as NTLM authentication. When the server is set up to not require SSL (just for testing, the ...
0
votes
1answer
280 views

Using jcifs in jython in order to access site using NTLM security

For a while now I have been trying to find a way for jython to access site using NTLM. I have just basic knowledge of python and next to none in java, so I could use some help (or an example) how to ...
2
votes
2answers
373 views

ntlm implementation in java?

I know that I can set proxyhost and proxyport for the java application to work through a normal proxy server. But (at least) on corporate networks there are authentication schemes on proxies. I am ...
1
vote
1answer
2k views

NTLM fails when consuming SharePoint web service from Java?

I have a Java client that consumes SharePoint 2010 standard web services (sitedata.asmx, permissions.asmx, etc) written with JAX-WS implementation from the JDK 6. So far, authentication is done with ...
0
votes
0answers
256 views

Securing Java Web Service using NTLM [duplicate]

Possible Duplicate: Java client for SOAP web service with NTLM authentication I need to secure a Java Web Service (JAX-WS) by using the NTLM authentication protocol. I have gone through a ...
1
vote
0answers
2k views

java.net.ProtocolException: Server redirected too many times (20)

I'm using NTLM authentication in my web application similar to this one to restfully retrieve some data from another domain. It used to work fine. After JDK 1.7 upgrade, I've started receiving ...
0
votes
1answer
1k views

Accessing Sharepoint List in java using NTLM authentication

I am using JAX-WS for accessing sharepoint list from java client. I am not able to crack the ntlm authentication part. It's giving me 403 forbidden error.But I am able to authenticate when there is ...
2
votes
1answer
138 views

What is the windows system setting to use the primitive NTLM authentication supported by Apache Http Client?

We are using Apache Axis client to communicate to a report server. The Apache Client uses Apache Http Client for NTLM authentication. Based on the below post How can I get jcifs to play nicely with ...
1
vote
2answers
1k views

Java HTTP NTLM Implementation Differences

This link details on the various http client java implementations. I am looking for any links which could provide information about their NTLM protocol implementation differences. On one of the ...
1
vote
1answer
910 views

Java 6 with NTLM2

I have a component that is written in C# to overcome NTLM2 authentication protocol (or at least that what I was told) I'd like to convert this component to Java 6 - will java support the NTLM2 ?

1 2