1 / 28

Sage CRM Developers Course

Sage CRM Developers Course. Using the Web Services API (1). Looking ahead to the classes. DP01: Introduction to the Development Partner Program DP02: Entities and the Data Model (Part 1 of 2) DP03: Entities and the Data Model (Part 2 of 2) DP04: Implementing Screen Based Rules (Part 1 of 2)

marilu
Télécharger la présentation

Sage CRM Developers Course

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Sage CRM Developers Course Using the Web Services API (1)

  2. Looking ahead to the classes • DP01: Introduction to the Development Partner Program • DP02: Entities and the Data Model (Part 1 of 2) • DP03: Entities and the Data Model (Part 2 of 2) • DP04: Implementing Screen Based Rules (Part 1 of 2) • DP05: Implementing Screen Based Rules (Part 2 of 2) • DP06: Screen and User Independent Business Rules • DP07: Workflow (Part 1 of 2) • DP08: Workflow (Part 2 of 2) • DP09: Using the API Objects in ASP Pages (Part 1 of 2) • DP10 : Using the API Objects in ASP Pages (Part 2 of 2) • DP11: Using the Component Manager • DP12: Programming for the Advanced Email Manager • DP13: Using the Web Services API • DP14: Using the Web Services API (Part 2 of 2) • DP15: Coding the Web Self Service COM API (Part 1 of 2) • DP16: Coding the Web Self Service COM API (Part 2 of 2) • DP17: Using the .NET API (Part 1 of 2) • DP18: Using the .NET API (Part 2 of 2)

  3. Agenda • Introduction to the Web Services API • Configuration and Setup of Web Services • Creating a Session • Usage of Objects and Functions

  4. Introduction to the SOAP Web Services API

  5. Software Requirements • To set up Web Services, you will need: • CRM installed on a server with a standard license key. • For the SOAP web services • All up-to-date development environments that are compatible with Soap 1.1 are compatible with Sage CRM Web Services. • For the SData Rest web services • Sage CRM Version 7.x

  6. Limitations • Does not provide users with a GUI • Web Services share business logic, data, and processes • Can add the Web Service to a GUI, such as a Web page or an executable program, to provide users with the required functionality • Programmer must control error handling and session management • Performance Considerations • SOAP overheads include: extracting the SOAP envelope; parsing the contained XML information; • The XML parser will also have to carry out type checking and conversion, wellformedness checking, or ambiguity resolution, and this all affects speed. • The Web Service SOAP messages move much more data than the average HTTP GET or POST call, adversely impacting network performance. Repeated SOAP-client calls to access the server could start to degrade the performance. So you may have to consider the design of the web service client application. • To ensure secure transfer of XML data then HTTPS maybe desirable for the Web Service access. Web Services that only use HTTP are vulnerable to eavesdroppers and "man in the middle attacks". HTTPS requests are very slightly slower than HTTP requests. • There are a range of factors that will affect performance such as: web server response time and availability; client application execution time; database views and indexes that are implicitly referenced in CRM.

  7. Configuration and Set Up of Web ServicesPreparation for Use

  8. http://server/CRM/eware.dll/webservice/webservice.wsdl WSDL file contents

  9. Control & Configuration of Web Services • Forcing Logons • Date Considerations • Restriction of Requests to Known Machines • Controlling absolute request size • Controlling Records Returned

  10. Configuring Web Services

  11. Web Service Requests from Specific Clients • Accept web request from IP Address • Controls the unique IP address that you want the WSDL file to be accessed from • If a single IP address is entered here then only the machine that has this address may make calls to use the WSDL file. • Any other machine having a different IP address will be unable to access the WSDL file and will be returned with an "IP Address Mismatch" error. • Possible to specify a range of machines that can access the WSDL file by entering a partial IP address. • Only numeric characters are allowed and the * (asterisk) wildcard character is not supported. • Example usage: • If the following is entered into "Accept web request from IP Address": • 192.168 • Then machines with IP addresses that begin • 192.168.1.* • 192.168.2.* • 192.168.3.* • etc • can access the wsdl file. • If the following is entered • 192.168.2 • Then only machines within IP addresses beginning with this will be allowed to access the wsdl file • 192.168.2.1 • 192.168.2.2 • etc.

  12. Enabling the Web Services User • Administration -> Users -> Users • Allow Web Service Access = True • Option for dedicated user or reuse existing user • Cannot be a resource user • NB: security is applied to the user!

  13. Control of SOAP and REST access • New Checkboxes to control access in Table Customization screen • Can also be set in Advanced Customization wizard • New entities and existing tables can then be access either by standard SOAP requests or by SData URLs • E.g. http://myserver/sdata/crm72j/sagecrm/-/project • Externally linked tables can also be made available via webservices and the SData provider. • Meta Data information may be accessed using SOAP Functions • getmetadata() • getallmetadata(); • SData REST • http://myserver/sdata/crm72j/sagecrm/-/$schema • http://myserver/sdata/crm72j/sagecrm/-/company/$schema

  14. Adding Web Reference • Wide range of methods to allow data manipulation of exposed tables • Logon/Logoff, session management • Querying • Update • Delete • Insert/Create • NOTE: Rights controlled by user logon used • May trigger Table level scripts

  15. Creating a Session

  16. Session Management • Log on and Log off • Error Handling • Interaction with Security

  17. Web Service Session (logon/logoff) • Web Services are Session based similar to interactive user logons • To initiate a session call the logon method • logon(string username, string password) • To end a session call the logoff method • logoff(string sessionId)

  18. Usage: logon() • Syntax • logon ( username As string , password As string ) As logonresult • Usage • private void buttonLogon_Click(object sender, EventArgs e) • { • try • { • logonresultCRMlogon = crm72.logon("Admin", ""); • crm72.SessionHeaderValue = new SessionHeader(); • crm72.SessionHeaderValue.sessionId = CRMlogon.sessionid; } • catch (Exception exc) • { • MessageBox.Show(exc.Message); • } • } • Note • Exception handling required/Existing Session Management

  19. Usage: logoff() • Syntax • logoff ( sessionId As string ) As logoffresult • Usage private void buttonLogoff_Click(object sender, EventArgs e) { crm72.logoff(crm72.SessionHeaderValue.sessionId); }

  20. Using /sysadmin to control sessions during build

  21. Interactions • Session Usage • Web Service usage shows in Activity Reports • Activity table • SysAdmin • Locking • Web and Web Service logon • 1 instance of each allowed • C.f. “Force Web Service Logon” • Triggering of Tablelevel scripts • Information Available • Values() Collection • WhereClause

  22. Logging • CRM Web Service Logs provide details of Interactions • SOAP Requests • These are logged when logging level is set to max • Tip: • Where data is being migrated or a system is being tested then these files could become very large.

  23. Log Information

  24. Example Task • Build a simple ‘3 button form’ • Logon • Display Version • Logoff

  25. Q&A

  26. Looking ahead to the classes • DP01: Introduction to the Development Partner Program • DP02: Entities and the Data Model (Part 1 of 2) • DP03: Entities and the Data Model (Part 2 of 2) • DP04: Implementing Screen Based Rules (Part 1 of 2) • DP05: Implementing Screen Based Rules (Part 2 of 2) • DP06: Screen and User Independent Business Rules • DP07: Workflow (Part 1 of 2) • DP08: Workflow (Part 2 of 2) • DP09: Using the API Objects in ASP Pages (Part 1 of 2) • DP10 : Using the API Objects in ASP Pages (Part 2 of 2) • DP11: Using the Component Manager • DP12: Programming for the Advanced Email Manager • DP13: Using the Web Services API • DP14: Using the Web Services API (Part 2 of 2) • DP15: Coding the Web Self Service COM API (Part 1 of 2) • DP16: Coding the Web Self Service COM API (Part 2 of 2) • DP17: Using the .NET API (Part 1 of 2) • DP18: Using the .NET API (Part 2 of 2)

More Related