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

  • SEARCH
  • Home
  • 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 8176275
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T23:06:10+00:00 2026-06-06T23:06:10+00:00

I am getting the response from the web service as follows: response = (SoapPrimitive)

  • 0

I am getting the response from the web service as follows:

response = (SoapPrimitive) envelope.getResponse();
String result =  response.toString();

The “result” is a long string that consist “CredentialAccepted < / > FirstName < / > LastName < / > Picture”. I need to split this result at the tags < / >. I tried the following but BlackBerry does not support. Any help?

List<String> list_result = Arrays.asList(result.split("</>"));
  • 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-06-06T23:06:12+00:00Added an answer on June 6, 2026 at 11:06 pm

    Something like that:

        public static String[] split(String original, String separator) {
            Vector nodes = new Vector();
    
            String trimmed = original.trim();
    
            int start = 0;
            int end;
            while ((end = trimmed.indexOf(separator, start)) != -1) {
                nodes.addElement(trimmed.substring(start, end));
                start = end + separator.length();
            }
    
            if (start < trimmed.length()) {
                nodes.addElement(trimmed.substring(start));
            }
    
            String[] result = new String[nodes.size()];
            nodes.copyInto(result);
    
            return result;
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am getting a return string from web service that I am calling. Now
I am getting response from web service in xml format and data are inside
While calling from my Web Application, WCF response i am getting is : <s:Envelope
I am getting JSON response from the server..Inside that JSON string i am having
I am getting a JSON response from a web service but it is not
I'm struggling getting the JSON string that was sent from a web page to
I am getting a response from a web service call in XML format. I
I'm getting an Ajax response from a web service, and I'm not sure what
I am getting the response from web service shown below <html><head> <style type=text/css> body{
I am getting HTML response through web service and I want xml from web

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.