Can we configure Talend for data integration to use SSL - talend

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.

Related

Is there a way to configure sonar-maven-plugin to store reports via REST API

We are using the maven plugin org.sonarsource.scanner.maven.sonar-maven-plugin to store our reports to our sonar qube instance. For company reasons our CI server is in a different network zone then this instance and postgres default port is closed. I wonder if there is an option to store the reports in a different way then having them written directly to database via jdbc, as opening ports is a tedious task here ;)
Furthermore, we also have some older pieces of software that need to be analyzed with a local sonar runner instance and the same question applies here (so if there is another way to store the reports)
Since version 5.2 there is no connection to the database from the scanners. So the easiest/safest course of action here should be to upgrade to the latest LTS (at time of writing 5.6 )

Enable Data Service on new WSO2 - ESB installation

I am trying to migrate an installation of WSO2 - ESB from an old 2003 server to a new 2012 server. The old server had version 2.0.2 while the new server has version 4.8.1. The application is running and I can log in and browse the system. The problem I have is that it appears to be missing components. For example, on the old server there are a list of services including: Proxy, Data, POJO, Spring, Jar ect..on the new server I only have Proxy service. The main service I only need is the Data service but I have no idea how to get that. I am completely new to Java and this application however my boss wants this up and running as the Data service we had on the old server is designed to pull a data feed from a remote SQL server and push it to another server we have. Please help, I have absolutely no idea how to proceed.
WSO2 has a complete middleware stack and it has many components where each of them has it's own specific functionalities so that users can select according to their requirements without overkill the server with lots of features. In abstract WSO2 ESB do the mediation (proxy), WSO2 Application Server do the service hosting and WSO2 Data Services Server can be use to pull data out from a remote SQL server which you need to engage with.
Also you can install the features of WSO2 Application Server and WSO2 Data Services Server to WSO2 ESB. But it's bit tricky since we may need to add some configuration files in order to work these feature properly.

spring data couchbase client ssl supprt

we have requirement to implement ssl communication between couchbase client and couchbase clusters. I am using spring data couchbase client api to interact with couchbase cluster, the problem with this api I did not find any property to enable ssl on couchbase client, can you please help me out to configure ssl on couchbase client.
the current spring-data-couchbase version runs against the 1.4 Java SDK, which is not able to work with encrypted communication.
The 2.0 SDK can do that, and we are currently in the process of migrating spring-data-couchbase to the new SDK. For now if you want to use it you most likely need to wire up your own beans with the new SDK.

Mule IDE plugin for Eclipse url not working (http://dist.muleforge.org/mule-ide/updates-2.1.x/)

Mule id plugin Url is not working. Can any one help to get an alternate url for the same plugin.
http://dist.muleforge.org/mule-ide/updates-2.1.x/
This url is also mentioned in the below tutorial.
http://www.mulesoft.org/documentation-3.2/display/32X/Installing+Mule+ESB+3+and+the+Mule+IDE
Below is the error which i am receiving after accessing this url in browser.
Network Error (tcp_error)
A communication error occurred: "Connection refused"
The Web Server may be down, too busy, or experiencing other problems preventing it from responding to requests. You may wish to try again at a later time.
For assistance, contact your network support team.
Mule version 2X uses the url :- http://dist.muleforge.org/mule-ide/updates-2.1.x/ and for Mule version 3X the url :- http://www.mulesoft.org/documentation-3.2/display/32X/Installing+Mule+ESB+3+and+the+Mule+IDE is being used.
You need to check the version of Mule you are using and need to use the url that matches your Mule version.
If you are using Mule Enterprise edition you can take support from the MuleSoft Support, else if you are not using Enterprise you can post the issue in their forum
I seriously doubt there is still support for the Mule IDE, it was deprecated in favour of Mule Studio (that then became Anypoint Studio).
Do you really need to do a new development on Mule 2.x? If not, please consider using the much better Anypoint studio. If you need to stick to the 2.x version, you could just use a vanilla version of eclipse that will take care of the the autocompletion and then export to the apps directory of a running mule container for a hot deployment.

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.