Changes for page Configure your SOAP web service
Last modified by Erik Bakker on 2024/08/26 12:38
From version 40.1
edited by Eva Torken
on 2023/06/27 10:16
on 2023/06/27 10:16
Change comment:
There is no comment for this version
Summary
-
Page properties (5 modified, 0 added, 0 removed)
-
Attachments (0 modified, 4 added, 0 removed)
Details
- Page properties
-
- Title
-
... ... @@ -1,1 +1,0 @@ 1 -Configure your SOAP web service - Parent
-
... ... @@ -1,1 +1,0 @@ 1 -Main.eMagiz Academy.Microlearnings.Novice.SOAP Web service Connectivity.WebHome - Author
-
... ... @@ -1,1 +1,1 @@ 1 -XWiki. etorken1 +XWiki.marijn - Default language
-
... ... @@ -1,1 +1,0 @@ 1 -en - Content
-
... ... @@ -1,92 +1,97 @@ 1 -{{container}}{{container layoutStyle="columns"}}((( 2 -{{warning}} 3 -Please note that this Microlearning is for Gen3. 4 -{{/warning}} 1 +{{html wiki="true"}} 2 +<div class="ez-academy"> 3 + <div class="ez-academy_body"> 5 5 6 - When setting up a point at which your customers can talk to you eMagiz offers various methods of creating such a point. One of those options is by hosting a SOAP Webservicein eMagiz that handles XML messages asynchronously or synchronously. In this microlearning, we will learn the basicsf thisconfiguration in the various phases of the platform so you can easily set up your SOAP web service.5 +<div class="doc"> 7 7 7 + 8 + 9 += Annotations = 10 + 11 +In this microlearning, we will focus on using annotations to clarify your thought process. In the annotation, you either describe a best practice everyone should follow when they change that flow (i.e. within the asynchronous routing), describe how the (more complex) parts of the flow work or describe (parts of) of your message definitions (i.e. CDM, API Gateway Data model, system message, etc.). This will help yourself and others every time changes are needed. 12 + 8 8 Should you have any questions, please contact academy@emagiz.com. 9 9 15 +* Last update: May 9th, 2021 16 +* Required reading time: 5 minutes 17 + 10 10 == 1. Prerequisites == 19 + 11 11 * Basic knowledge of the eMagiz platform 12 12 13 13 == 2. Key concepts == 14 -This microlearning centers around configuring your SOAP web service. 15 15 16 -By configuring, we mean: Designing and determining the characteristics of the SOAP web service 24 +This microlearning centers around using annotations. 25 +With annotations, we mean: A piece of text to explain something to yourself and others 17 17 18 -Crucial parts in the configuration are: 19 -* Operation Name 20 -* SOAP Webservice Namespace 21 -* Validation 22 -* Authentication 27 +Annotations can be used for: 23 23 24 -Of these four points, the last two will be discussed in separate microlearnings. 29 +* Describing a best practice everyone should follow 30 +* Describing (more complex) parts of the flow 31 +* Describe (parts of) your message definitions 25 25 26 -== 3. Configure your SOAP Webservice == 27 27 28 -When setting up a point at which your customers can talk to you eMagiz offers various methods of creating such a point. One of those options is by hosting a SOAP Webservice in eMagiz that handles XML messages asynchronously or synchronously. In this microlearning, we will learn the basics of this configuration in the various phases of the platform so you can easily set up your SOAP web service. 29 29 30 -Crucial parts in the configuration are: 31 -* Operation Name 32 -* SOAP Webservice Namespace 33 -* Validation 34 -* Authentication 35 +== 3. Annotations == 35 35 36 - Of these four points, the last two will be discussed in separate microlearnings.In this microlearning, we will focus onthe firsttwoaspectsofthe configuration. Asyou might havenoticedI did notmention the factwhetherthe integrationis synchronousorasynchronousas a crucialpartoftheconfiguration.The reasonbeingthat when configuringa (SOAP) webserviceyoualwaysneed tosend an acknowledgmentbackto the clientcalling theweb servicetoetthem know what thestatus of themessage is. Incase you want to setupthe restofyourintegration asynchronouslyyoucan sendanemptymessageback as acknowledgment.In caseyouwantto set up therest ofyour integrationsynchronouslyyouneed tosend theesponseyou havereceived fromthebackend operationback to theclient. Moreonthechoicebetween asynchronous andsynchronousina laterstage.37 +In this microlearning, we will focus on using annotations on the flow level to clarify our thought process. In the annotation, you either describe a best practice everyone should follow when they change that flow (i.e. within the asynchronous routing) or describe how the (more complex) parts of the flow work. This will help yourself and others every time changes are needed within the flow. 37 37 38 - === 3.1 OperationName===39 +Annotations can be used for: 39 39 40 -Let us first zoom in on the parts of the configuration before we learn how you can implement it in eMagiz. Starting with the operation name. When you have dealt with the API Gateway offering of eMagiz in the past or have some knowledge of how APIs work the notion of an operation name should not be unfamiliar. In essence, it is a unique name that defines a certain operation. In eMagiz the best practice for naming the operation is as follows: 41 +* Describing a best practice everyone should follow 42 +* Describing (more complex) parts of the flow 43 +* Describe (parts of) your message definitions 41 41 42 - *Send{technicalnameoftheoperation}45 +To clarify the use cases let us take a look at how annotations can be added within the eMagiz platform. In our first example, we will take a look at asynchronous routing. In many eMagiz projects, a best practice is followed on how to add something to the asynchronous routing (or change something within the asynchronous routing). Because the best practice contains multiple steps it makes sense to use the annotation functionality of eMagiz to define all these steps and register them at the place you need them (i.e. the asynchronous routing). Having done so will result in something like this: 43 43 44 - WhenyouareinCreateyou willnoticethat eMagiz uses thedefault suffixof Request and Responseisadded to the operationame. Thereforethe full operationname a clientneeds tocallto get the desired result if you adhere to thebestis:47 +<p align="center">[[image:novice-devops-perspectives-annotations--annotation-best-practice-async-routing.png||]]</p> 45 45 46 - *Send{technicalnameoftheoperation}Request49 +The second example is about using annotations on the flow level to describe parts of the flow. In this example, we will use the annotation to describe that we use a filter to determine which messages are picked up from a local directory and how we filter. That way anyway opening the flow has to merely read the annotation to get the context. Having done so will result in something like this: 47 47 48 - ===3.2 SOAP WebserviceNamespace===51 +<p align="center">[[image:novice-devops-perspectives-annotations--describe-parts-of-flow.png||]]</p> 49 49 50 -The secondpartofthe configurationistheSOAPWebserviceNamespace.When hosting aSOAPWebservice via thestandard eMagiztoolingyouneedto definea namespace.Tosmoothen this processeMagizautomaticallygeneratesanamespacebasedontheconfigurationettingsyouchoosein theDesignphase ofeMagiz.53 +The third example does not take place on the flow level but the message definition level. Therefore instead of going to Create, we go to Design. In Design when you navigate to the CDM, API Gateway Data model, Event Streaming Data model, message definitions, etc. you have the option to add annotations to the canvas. In this example, we want to make clear to all that make changes that a certain part of our CDM is used by a lot of integrations within eMagiz and therefore everyone should be careful and think twice before adjusting anything related to that part. Having done so will result in something like this: 51 51 52 - ===3.3 ConfigurationneMagiz ===55 +<p align="center">[[image:novice-devops-perspectives-annotations--describe-crucial-part-of-cdm.png||]]</p> 53 53 54 -Now that we knowwhatconfigurationsarerequired,wecanseehowwecanimplementthisineMagiz.IntheCapturephase,nothingchanges.You simplydrawasystem on the canvasincludingatleastoneline thatgoesfromthesystem towards eMagiz.Whenyouaredoneyoumoveto theDesign phaseineMagiz.Inthis phase,you need tocorrectlysetuptheoperationname(s)andtheSOAP WebserviceNamespace.57 +Now that we saw some examples let us turn our attention to the how. How can I add an annotation and how can I link it. Adding the annotation is simple. You drag the annotation icon from the left context menu onto the canvas. As a result, an empty annotation will be shown on the canvas. By double-clicking on it you can type whatever you want. Note that you need to be in "Start Editing" mode to change anything, including annotations. 55 55 56 - Theconfiguration in Designstarts at thesystem level. At the system level, youneedto define the technical name (or let eMagiz automatically fill it in for you) andselect the checkbox called SOAP Entry Connector. Byselecting this checkbox youtell eMagizthat you want to hostaSOAP endpoint for others to call. After you have done so eMagiz will automatically definetheSOAP Webservice Nameand SOAP Webservice Namespace.59 +<p align="center">[[image:novice-devops-perspectives-annotations--annotation-icon-context-menu.png||]]</p> 57 57 58 - [[image:Main.Images.Microlearning.WebHome@novice-soap-webservice-connectivity-configure-your-soap-webservice-gen3--soap-entry-check.png]]61 +When you are satisfied with what you have written down you can press the Save button. After you have done so you can rescale the annotation to ensure that the complete text is visible. To link the annotation to a component (on flow level) or an entity (on message definition level) you hover over the annotation until your mouse indicator changes to a + icon, execute a right-click and drag from the annotation to the component in question. 59 59 60 - With this, you are donewithyourconfiguration on the system level. Don't forget to update the status of your task. Nowthatwe have configured the system it is time to configurethe integrationthat isdrawn from thesystem to eMagiz. We can dosobydouble-clickingon it (orbyaccessing the context menu andselecting the editoption).Whenyouopen the Edit page on the integration level you will notice that anewsegment isadded(comparedto other integrations). This segmentdefinesthe settingsonthesystem level we have just specifiedand defines the operation name.63 +Now you know what annotations are good for and how you can add them within the eMagiz platform. 61 61 62 - [[image:Main.Images.Microlearning.WebHome@novice-soap-webservice-connectivity-configure-your-soap-webservice--edit-integration.png]]65 +===== Practice ===== 63 63 64 -As you can see eMagiz has already prefilled the operation name for you based on the best practice at eMagiz. If you want to change you have the option to do so. Do note that for the sake of consistency it would be smart to use the same naming convention within a single project to avoid confusion. 65 - 66 -=== 3.4 Add integration to Create === 67 - 68 -Now that we have finished the configuration in Design the last step of this microlearning is to add the integration to Create. You can simply do so by navigating to Create -> Add integrations and selecting the integration to move it to Create. After you have selected it press Save to add the integration to Create. 69 - 70 70 == 4. Assignment == 71 71 72 - ConfigureaSOAPwebservice thatconsistsofatleast oneoperationand add it toCreate.69 +Add annotation on the flow level that describes how (a part of) a flow works. 73 73 This assignment can be completed with the help of the (Academy) project that you have created/used in the previous assignment. 74 74 75 75 == 5. Key takeaways == 76 76 77 -* Crucial parts in the configuration are: 78 - ** Operation Name 79 - ** SOAP Webservice Namespace 80 - ** Validation 81 - ** Authentication 82 -* For ease, you can use the default naming convention of eMagiz 74 +* Annotations can be used for: 75 + * Describing a best practice everyone should follow 76 + * Describing (more complex) parts of the flow 77 + * Describe (parts of) your message definitions 78 +* You can add annotations by dragging and dropping the annotation icon on the canvas. 83 83 80 + 81 + 84 84 == 6. Suggested Additional Readings == 85 85 86 - Ifyouareinterested inthis topic and wantmoreinformation onitpleasereadthe help text provided by eMagiz.84 +There are no suggested additional readings on this topic 87 87 88 88 == 7. Silent demonstration video == 89 89 90 - {{videoattachment="novice-soap-webservice-connectivity-configure-your-soap-webservice-gen3.mp4" reference="Main.Videos.Microlearning.WebHome"/}}88 +This video demonstrates how you could have handled the assignment and gives you some context on what you have just learned. 91 91 92 -)))((({{toc/}}))){{/container}}{{/container}} 90 +<iframe width="1280" height="720" src="../../vid/microlearning/novice-devops-perspectives-annotations.mp4" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> 91 + 92 +</div> 93 + 94 +</div> 95 +</div> 96 + 97 +{{/html}}
- novice-devops-perspectives-annotations--annotation-best-practice-async-routing.png
-
- Author
-
... ... @@ -1,0 +1,1 @@ 1 +XWiki.marijn - Size
-
... ... @@ -1,0 +1,1 @@ 1 +25.7 KB - Content
- novice-devops-perspectives-annotations--annotation-icon-context-menu.png
-
- Author
-
... ... @@ -1,0 +1,1 @@ 1 +XWiki.marijn - Size
-
... ... @@ -1,0 +1,1 @@ 1 +774 bytes - Content
- novice-devops-perspectives-annotations--describe-crucial-part-of-cdm.png
-
- Author
-
... ... @@ -1,0 +1,1 @@ 1 +XWiki.marijn - Size
-
... ... @@ -1,0 +1,1 @@ 1 +15.5 KB - Content
- novice-devops-perspectives-annotations--describe-parts-of-flow.png
-
- Author
-
... ... @@ -1,0 +1,1 @@ 1 +XWiki.marijn - Size
-
... ... @@ -1,0 +1,1 @@ 1 +18.9 KB - Content