Results 1 to 7 of 7

Thread: what is SOAP?

  1. #1
    2nox is offline Member
    Join Date
    Feb 2009
    Location
    Indonesia
    Posts
    17

    Default what is SOAP?

    I was read about SOAP in the SugarDeveloperGuidev_52. The book tell us that It is used for making Remote Procedure Calls through the HTTP protocol by relaying messages in XML. I still confuse about it. can you explain it more detail?

  2. #2
    crmsiva's Avatar
    crmsiva is offline A Sugar Hero
    Join Date
    Jan 2009
    Location
    Chennai, India
    Posts
    1,130

    Default Re: what is SOAP?

    Hi

    Check this

  3. #3
    2nox is offline Member
    Join Date
    Feb 2009
    Location
    Indonesia
    Posts
    17

    Default Re: what is SOAP?

    What is NuSOAP toolkit??

  4. #4
    sanjaykatiyar1's Avatar
    sanjaykatiyar1 is offline Sugar Community Member
    Join Date
    Feb 2006
    Location
    Bangalore
    Posts
    600

    Default Re: what is SOAP?

    Search google
    Sanjay Katiyar
    iPhone and Android solutions http://www.apptility.com

  5. #5
    crmsiva's Avatar
    crmsiva is offline A Sugar Hero
    Join Date
    Jan 2009
    Location
    Chennai, India
    Posts
    1,130

    Default Re: what is SOAP?

    Check this. As sanjay said, please do a search before asking anything in forum.

  6. #6
    2nox is offline Member
    Join Date
    Feb 2009
    Location
    Indonesia
    Posts
    17

    Default Re: what is SOAP?

    thank for your information. now i will be to try the SOAP use code below, from the article about "SOAP Intro and Practical Examples "

    <?php
    require_once('nusoap/nusoap.php');

    $client = new soapclient('http://www.example.com/sugar/soap.php?wsdl',true);

    $auth_array = array(
    'user_auth' => array(
    'user_name' => 'bob',
    'password' => md5('mysecretpassword'),
    )
    );

    $login_results = $client->call('login',$auth_array);

    $session_id = $login_results['id'];

    $user_guid = $client->call('get_user_id',$session_id);

    printf("\n".$auth_array['user_auth']['user_name'].' has a GUID of ' . $user_guid . "\n\n");
    ?>
    what the value of $client, wheter still like that or be changged?? n what the destination (value) of site_url in file config.php. I still confuse about that.

  7. #7
    Angel's Avatar
    Angel is offline Sugar Community Member
    Join Date
    Jul 2005
    Location
    Los Angeles
    Posts
    4,813

    Default Re: what is SOAP?

    I think what you are looking for is a bit beyond the scope of what we can help you with on this forum.

    In a nutshell, what you are asking of us is to teach you how to program, which is not really one of the objectives of this forum, and in reality, not something we would be able to do effectively through this medium even if it was.

    As others suggested, Google can be helpful in your research.
    Regards,

    Angel Magaņa
    Co-Author: Implementing SugarCRM 5.x (Packt Publishing -- Sept. 2010)
    Blog: http://cheleguanaco.blogspot.com.
    Twitter: @cheleguanaco.

    ________
    | Projects: |_____________________________________
    |
    | CandyWrapper (.NET Wrapper for SugarCRM SOAP API). Source now available on GitHub!
    | GoldMine to SugarCRM Express Conversion. Latest: 1.0.1.7 (Nov. 3, 2009)
    | CRM SkyDialer (Skype Integration). Latest: 1.0.2 (Feb. 17, 2010)
    | Round Robin Leads Assignment
    | Phone Number Formatter
    | CaseTwit (Twitter Integration)
    ______________________________________________

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. about SOAP.
    By vishwasrao in forum Developer Help
    Replies: 3
    Last Post: 2009-02-09, 02:10 PM
  2. SOAP - setting email for contact via soap
    By darcy.rippon in forum Developer Help
    Replies: 3
    Last Post: 2008-09-22, 08:13 PM
  3. Soap - how?
    By otm187 in forum Help
    Replies: 6
    Last Post: 2008-09-16, 01:53 PM
  4. SOAP and SQL
    By noob2k9 in forum Developer Help
    Replies: 0
    Last Post: 2008-09-02, 09:46 AM
  5. SOAP to SugarCRM using PEAR SOAP?
    By ryaker in forum General Discussion
    Replies: 0
    Last Post: 2005-04-12, 07:23 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •