Splunk Dev

Connecting to Splunk via Java SDK, why am I getting error "java.lang.IllegalArgumentException: URI can't be null."

thewho123
Explorer

I am trying to connect to Splunk using the Java SDK. I created a new project in Java using Maven and have the following code provided by Splunk.

ServiceArgs loginArgs = new
ServiceArgs();
loginArgs.setUsername("username");
loginArgs.setPassword("password");
loginArgs.setHost("hostname");
loginArgs.setPort(8089);

Service service = Service.connect(loginArgs);

When I run this, I get "java.lang.IllegalArgumentException: URI can't be null."

What am I supposed to use for the hostname? Most examples show hostname as localhost.

I normally access Splunk using a url "mycompany.splunkcloud.com" and enter my credentials.

Tags (4)
0 Karma

steelecomp99
Explorer

Hi thewho123,

I had the same problem recently. The issue turned out to be a default setting when running Java 1.8. I'm linking to the resolution here: https://answers.splunk.com/answers/463594/severe-uri-cant-be-null.html

You have to explicitly set the SslSecurityProtocol before calling Service.connect:

 HttpService.setSslSecurityProtocol( SSLSecurityProtocol.TLSv1_2 );

Hope this helps

0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...