Skip to main content
This forum is closed to new posts and responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:

HCL Software Customer Support Portal for U.S. Federal Government clients
HCL Software Customer Support Portal

HCL Notes/Domino 8.5 Forum (includes Notes Traveler)

HCL Notes/Domino 8.5 Forum (includes Notes Traveler)

Previous Next
Subject: JDBC - Scheduled agent - Error SSLV3 SSL Context not found
Feedback Type: Problem
Product Area: Domino Server
Technical Area: Application Development
Platform: Windows
Release: 8.5.3
Reproducible: -Reproducibility-

A basic java agent that establish connection to a sql database.
when the java run manually this works fine but when the agent ran scheduled on server the agent fails with error "SSLV3 SSL context not found"

Is there some do be configured on Domino server ?

========================
public class JavaAgent extends AgentBase {

public void NotesMain() {

try {
Session session = getSession();
AgentContext agentContext = session.getAgentContext();

String connectionUrl ="jdbc:sqlserver://17x.xx.xx.xx:1433;" +
"databaseName=dbname;user=username;password=password";
Connection con = null;
// Establish the connection.
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
con = DriverManager.getConnection(connectionUrl);
String SQL = "";
System.out.println("Connection enabled");
con.close();
//}
System.out.println("END!!");
} catch(SQLException e) {
System.out.println("bb");
e.printStackTrace();
}catch(Exception e) {
e.printStackTrace();
}
}
}
=========================


Feedback number WEBBB6NFMY created by ~Carol Lopremanjip on 11/19/2018

Status: Open
Comments:





Printer-friendly

Search this forum

Member Tools


RSS Feeds

 RSS feedsRSS
All forum posts RSS
All main topics RSS