Does Oracle jdbc driver support SOCKS5 proxy? - oracle10g

I am trying to figure out if Oracle JDBC driver supports SOCKS proxy or not. I am not finding any documentation related to this. Please let know if you are aware.

Yes, but only when disabling java NIO for jdbc by passing -Doracle.jdbc.javaNetNio=false to jvm or setting the property programmatically.
You can then use the standard socksproxyHost and socksproxyPort properties to configure the proxy.

No the Oracle JDBC driver doesn't support SOCKS5 proxy. In the soon to be release 18.1 version of the thin driver there will be support for HTTPS proxy and websocket.

Related

How to create a datasource for mongodb in websphere

Can some one help in providing steps for creating a datasource for mongodb in websphere
A recommended approach for using the MongoDB java driver in WebSphere Application Server Liberty is documented here:
https://openliberty.io/blog/2019/02/19/mongodb-with-open-liberty.html
If you are using traditional WebSphere Application Server rather than Liberty, the CDI aspect of the approach is all standard and will work there as well, however, the MicroProfile Config part would not be available.

Can we configure Talend for data integration to use SSL

Can we configure Talend for data integration to use SSL.
I have gone through some the links and talend community and learnt that it could be done for Talend ESB .Wanted to know how we do the same for Talend for data integration
Try to add -Dhttps.protocols=TLSv1.2,TLSv1.1,TLSv1 option to your JVM.
If you are facing some problems with component (like tRest) and you are using java <= 7 know that the TLSv1 is used by default to perform TLS handshake. This can block connection with servers using greater version of TLS.
Think that this issue is resolved with java 8.

Monitoring Wildfly with Zabbix

Wildfly supports monitoring over http-remoting-jmx protocol and Zabbix uses rmi. So is it good practise to use "standard" way of specifying JMX (in the Java opts) in the Wildfly? Or how can i achieve monitoring Wildfly using Zabbix?
Usually the applications that support remoting-jmx do no not work very well with rmi. You can patch the Java gateway to support remoting-jmx - there are community patches floating around. Keep in mind that it is completely unsupported. This support is supposedly coming with Zabbix 3.4 - see https://support.zabbix.com/browse/ZBXNEXT-1274 .

Using oreintdb in production with jdbc

I am planning to use orientdb in production using the jdbc drive so i need confirm some points
is jdbc driver can give all the orientdb Features like (transaction and links ...etc) or using the the java api is the best choice
I noticed that you have spring data implementation in the orientdb github is it ready to use in the production
At this link a discussion on the issue that you wrote.
in general, JDBC driver supports only a subset of OrientDB, only the part you can use with commands.
If you're a Java developer, I suggest you to use the Java Graph API: http://orientdb.com/docs/last/Graph-Database-Tinkerpop.html

Integrated Authentication in Jboss Teiid

I want to use Integrated authentication using jdbc connector in Teiid. I have tried to create a connecton to Database using:
1. Create Teiid Model Project-> Source ->Import->JDBC Connection
2. I see a feature called integrated security checkbox in Specify a Driver and Connection profile.
When i am inserting values there , it is giving me an error. I want to understand if it is supported by Teiid or not
Yes, this is supported as general JBoss EAP feature, but there is no tooling support like in the Teiid Designer as you describe above.
When you create a data source configuration for Oracle in JBoss EAP, define "security-domain", and then configure a JAAS based security domain that based on Caller Idenity Login Module. See https://access.redhat.com/documentation/en-US/JBoss_Enterprise_Data_Services/5/html/Data_Services_Administration_Guide/chap-Login_Modules.html
Once you configure that, if Oracle source is being used as one of the sources under Teiid VDB, then the credentials used to log into Teiid will be used to issue queries on Oracle.