Getting Data In

Accessing via C# RESTful

wajihullahbaig
Explorer

Hi
I have been looking around to build an application to using C# RESTful services to gain access to splunk. So far I have not been able to get even the session. Below is the code that I have implemented

private static string BaseUrl = "http://localhost:8000";
        static void Main(string[] args)
        {
            var client = new WebClient();
            var parameters = new Dictionary<string, string>         
                { 
                    { "username", "admin" },
                    { "password", "mypassword" }
                };

            var result = client.UploadString(String.Format("{0}/services/auth/login", BaseUrl),UrlEncode(parameters));
            var doc = XDocument.Load(result);  // load response into XML document (LINQ)
            var key = doc.Elements("sessionKey").Single().Value; // get the one-and-only <sessionKey> element.
            Console.WriteLine("====>sessionkey:  {0}  <====", key);
        }

        // Utility function: 
        private static string UrlEncode(IDictionary<string, string> parameters)
        {
            var sb = new StringBuilder();
            foreach (var val in parameters)
            {
                // add each parameter to the query string, url-encoding the value.
                sb.AppendFormat("{0}={1}&", val.Key, HttpUtility.UrlEncode(val.Value));
            }
            sb.Remove(sb.Length - 1, 1); // remove last '&'
            return sb.ToString();
        }

I keep getting the "404" error continuously on client.UploadString() method. Am I missing something? Do I need to startup some service related to Splunk before I can execute the code above? Splunkd and SplunkWeb are already running as a service. Win7 X64.

Thanks!

Tags (3)
0 Karma
1 Solution

Damien_Dallimor
Ultra Champion

Your Base URL is wrong.

Try :

private static string BaseUrl = "https://localhost:8089";

FYI : Java, Python and Javascript SDK's available here

View solution in original post

chhavi
Explorer
0 Karma

Damien_Dallimor
Ultra Champion

Your Base URL is wrong.

Try :

private static string BaseUrl = "https://localhost:8089";

FYI : Java, Python and Javascript SDK's available here

wcolgate_splunk
Splunk Employee
Splunk Employee
0 Karma

wajihullahbaig
Explorer

OK. Seems to I now have a weak eye sight! But thanks. Working.

0 Karma

wajihullahbaig
Explorer

@Damien- Thanks for the answer. I know the other SDK's. But I have to use C#. Trying out your suggestion for the fix.

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Can’t Make It to Boston? Stream .conf25 and Learn with Haya Husain

Boston may be buzzing this September with Splunk University and .conf25, but you don’t have to pack a bag to ...

Splunk Lantern’s Guide to The Most Popular .conf25 Sessions

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...

Unlock What’s Next: The Splunk Cloud Platform at .conf25

In just a few days, Boston will be buzzing as the Splunk team and thousands of community members come together ...