Symbian Learning Notes (19)--preliminary study on the use of the WebServices API (next)

Source: Internet
Author: User
Tags web services

Go ahead and see how to get the result value, which is the string HelloWorld in the

View Plaincopy to Clipboardprint?

Tptrc8chelloworldresult::result ()

{

Csenelement*pelement=aselement (). Element (Khelloresult);

if (pelement)

{

_lit (STR, "result----");

LOG (STR);

Returnpelement->content ();

}

else{

LOG (_l ("Noresult"));

ReturnKNullDesC8 ();

}

}

TPtrC8 CHelloWorldResult::Result()
  {
    CSenElement * pElement = AsElement().Element(KHelloResult);
    if(pElement)
      {
      _LIT(STR,"result----");
      LOG(STR);
      return pElement->Content();
      }
    else {
      LOG(_L("no result"));
      return KNullDesC8();

    }
  }

In fact, here is better to understand, look at the Csenelement SDK documentation will know a sorta.

To sum up:

1. Using Symbian's Web services APIs to implement a Web service client is annoying, and the main trouble is that the XML content of the SOAP request and response has to be constructed and parsed itself.

2. The commonly used webservice only endpoint does not have an ID service, so it should be the underlying WS framework.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.