Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6251353
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T13:35:54+00:00 2026-05-24T13:35:54+00:00

I am developing a application to consume the web service, how to consume the

  • 0

I am developing a application to consume the web service, how to consume the following web-service? http method or ksoap2? I tried Ksoap2, seems can not extract this web service properly, anybody can help on this? thanks in advance.

Here is the wsdl: https://integrator-ut.vegaconnection.com/Authentication.svc?wsdl

Is that the NAME_SPACE is: “http://tempuri.org/” method is CreateToken? and the SOAP_ACTION is http://tempuri.org/IAuthentication/CreateToken?…

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T13:35:54+00:00Added an answer on May 24, 2026 at 1:35 pm

    If you don’t want to use KSOAP, you can use httpUrlconnection and InputStream

            HttpURLConnection my_httpConnection = (HttpURLConnection) new URL("https://integrator-ut.vegaconnection.com/Authentication.svc?wsdl").openConnection();
            my_httpConnection.setRequestMethod("POST");
            my_httpConnection.setDoInput(true);
            my_httpConnection.setDoOutput(true);
            my_httpConnection.setRequestProperty("Content-type", "text/xml; charset=utf-8");
    
    
    
           OutputStream my_outPutStream = this.my_httpConnection.getOutputStream();
           Writer my_writer = new OutputStreamWriter(my_outPutStream);
           my_writer.write(YOUR_REQUEST); //YOUR_REQUEST is a String
           my_writer.flush();
           my_writer.close();           
    
           BufferedReader my_bufferReader = new BufferedReader(new InputStreamReader(this.my_httpConnection.getInputStream()));
            char[] buffer = new char[10000];
            int nbCharRead=0;
            try
            {
                while((nbCharRead = my_bufferReader.read(buffer, 0, 10000)) != -1)
                {
                     /* Your treatement : saving on a file/arraylist/etc
    
                }
            }
    

    You have to make the string YOUR_REQUEST based on the values ​​you want to recover

    It look’s like

    <soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" ... >
    <soapenv:Header/>      
    <soapenv:Body>
    ...
    </soapenv:Body>
    </soapenv:Envelope>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

For the web application (ASP.NET MVC) I'm currently developing, we have the following architecture
I am developing an application which needs to use a web service. Web service
I'm developing a iPad application that will consume a WCF Service HTTPS (using soap
Currently developing an application using the newest version of symfony, obtained through PEAR. This
I developing an application in which i calling web services on iphone. I want
I've been developing a WCF web service using .NET 3.5 with IIS7 and it
I'm developing a web service using NHibernate, WCF and Oracle 11g R1. The web
I am developing a web application using Python, Django and MySql. I have a
I'm developing a class library in .NET that other developers will consume eventually. This
I developing application which using geo-location. Should i ask user right for this when

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.