Open
Description
Our Open Edge Progress database is behind a firewall and is accessible on port 10100. But regardless of giving the port number in the connection string, we have noticed that additional calls are being made to random ports, e.g. 1128 and 1129 in the screenshot below that are blocked by the firewall.
Here's my code:
var builder = new JdbcConnectionStringBuilder
{
FetchSize = -1,
DriverPath = "mydriver.jar",
DriverClass = "com.ddtek.jdbc.openedge.OpenEdgeDriver",
JdbcUrl = "jdbc:datadirect:openedge://132.42.1.41:10100;databaseName=mydb;user=myuser;password=mypwd;"
};
Console.WriteLine(sql);
var connection = new JdbcConnection(builder);
connection.Open();
Since the subsequent calls to random port numbers are blocked, we never get a response back.
Is there a way to control which port numbers will the library call?
Metadata
Metadata
Assignees
Labels
No labels