Re: Native SSPI library not loaded. Check the java.library.path system property.
Posted by: Carlos Albor
Date: March 15, 2007 08:58PM

Solution:


Change Web.xml from:
<init-param>
<param-name>jdbcURL</param-name> <param-value>jdbc:jtds:sqlserver://host_server:1433/Database_name</param-value>
</init-param>

to:
<param-name>jdbcURL</param-name> <param-value>jdbc:jtds:sqlserver://host_server:1433/Database_name;user=XXX;password=YYY</param-value>
</init-param>

When URL not contains user and password properties, systems uses Windows authentication method, and "SSPI Native library not found" error appears.

Bye,
Carlos A

Options: ReplyQuote


Subject
Written By
Posted
Re: Native SSPI library not loaded. Check the java.library.path system property.
March 15, 2007 08:58PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.