Jinget.Handlers.ExternalServiceHandlers 8.0.12

Prefix Reserved
dotnet add package Jinget.Handlers.ExternalServiceHandlers --version 8.0.12
                    
NuGet\Install-Package Jinget.Handlers.ExternalServiceHandlers -Version 8.0.12
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Jinget.Handlers.ExternalServiceHandlers" Version="8.0.12" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Jinget.Handlers.ExternalServiceHandlers" Version="8.0.12" />
                    
Directory.Packages.props
<PackageReference Include="Jinget.Handlers.ExternalServiceHandlers" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Jinget.Handlers.ExternalServiceHandlers --version 8.0.12
                    
#r "nuget: Jinget.Handlers.ExternalServiceHandlers, 8.0.12"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=Jinget.Handlers.ExternalServiceHandlers&version=8.0.12
                    
Install Jinget.Handlers.ExternalServiceHandlers as a Cake Addin
#tool nuget:?package=Jinget.Handlers.ExternalServiceHandlers&version=8.0.12
                    
Install Jinget.Handlers.ExternalServiceHandlers as a Cake Tool

Jinget

We are currently in the way to make Jinget an open source project, during this journey we will publish different parts of Jinget

Jinget.Handlers.ExternalServiceHandlers

The purpose of this package is to facilitate communication and use of various types of web services and Web APIs including Rest APIs and SOAP web services.

How to Use:

  1. Download the package from NuGet using Package Manager: Install-Package Jinget.Handlers.ExternalServiceHandlers You can also use other methods supported by NuGet. Check Here for more information. Then register th DI configuration like this:
builder.Services.AddJingetExternalServiceHandler("jinget-client", true);

You can replace jinget-client with your desired client name. if not specified then by default jinget-client will be used as client name.

  1. Create a class which defines the response model.
     public class SampleGetResponse
     {
         public int id { get; set; }
         public string name { get; set; }
         public string username { get; set; }
    }
  1. Create an object of type JingetServiceHandler<> class and pass the response model as its generic type, or Create an object of type JingetServiceHandler class:
var jingetServiceHandler = new JingetServiceHandler<SampleGetResponse>(serviceProvider, "https://jsonplaceholder.typicode.com");
  1. Call your endpoint:
var result = await jingetServiceHandler.GetAsync("users");

How to call SOAP web Services:

  1. For SOAP services, it would be important to create the request envelope before sending the request. To create the request envelop, You need to create classes for different parts of the request envelop. For example suppose that we need to model the following request envelop:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tem="http://tempuri.org/">
   <soapenv:Header/>
   <soapenv:Body>
      <tem:Add>
         <tem:intA>?</tem:intA>
         <tem:intB>?</tem:intB>
      </tem:Add>
   </soapenv:Body>
</soapenv:Envelope>

In this request envelop we have Envelop node which contains two inner nodes: Header and Body. Also for Body, this node contains a node node called Add and finally Add contains two nodes called intA and intB. Also each node belongs to some namespaces which are defined in Envelop node. With all these in mind, we need to define classes for exact this hierarchy as follow:

//This is the whole request envelop
public class SampleSOAPRequest : SOAPRequestBase<SampleSOAPRequest.Envelope, SampleSOAPRequest.SampleSOAPGet>
{
    //This method creates an envelop with the following structure
    public override (Envelope envelope, SampleSOAPGet request) CreateEnvelope()
    {
        var envelope = new Envelope
        {
            Header = new EnvelopeHeader(),
            Body = new EnvelopeBody()
        };
        return (envelope, envelope.Body.Add);
    }

    //request envelop contains the Envelop node with some namespaces
    [Serializable, XmlType(Namespace = "http://schemas.xmlsoap.org/soap/envelope/"), XmlRoot(Namespace = "http://schemas.xmlsoap.org/soap/envelope/")]
    public class Envelope : SOAPEnvelopeBase
    {
	    //When calling this method, the final envelop is returned as string value
        public override string ToString()
        {
            XmlSerializerNamespaces ns = new();
            ns.Add("tem", "http://tempuri.org/");
            ns.Add("soapenv", "http://schemas.xmlsoap.org/soap/envelope/");

            return XmlUtility.SerializeToXml(this, true, ns);
        }

        //Envelop node contains the Header node
        public EnvelopeHeader Header { get; set; }

        //Envelop node contains the Body node
        public EnvelopeBody Body { get; set; }
    }

    //The Header node has the following members. As you see it is empty. Also this node belongs to the http://schemas.xmlsoap.org/soap/envelope/ namespace
    [Serializable, XmlType(Namespace = "http://schemas.xmlsoap.org/soap/envelope/")]
    public class EnvelopeHeader
    {

    }

      //The Body node has the following members. Also this node belongs to the http://schemas.xmlsoap.org/soap/envelope/ namespace
    [Serializable, XmlType(Namespace = "http://schemas.xmlsoap.org/soap/envelope/")]
    public class EnvelopeBody
    {
	    //Body node contains a node called 'Add' which belongs to the http://schemas.xmlsoap.org/soap/envelope/ namespace
        [XmlElement(Namespace = "http://tempuri.org/")]
        public SampleSOAPGet Add { get; set; }
    }

     //The Add node has the following members.
    [Serializable]
    public class SampleSOAPGet
    {
        public int intA { get; set; }
        public int intB { get; set; }
    }
}
  1. Now that we have our envelop, we can easily call the SOAP web service as following:
var (envelope, request) = new SampleSOAPRequest().CreateEnvelope();
envelope.Body.Add = new SampleSOAPRequest.SampleSOAPGet { intA = 1, intB = 2 };

 var jingetServiceHandler = new JingetServiceHandler<ResponseType>("http://www.dneonline.com/calculator.asmx");

 var result = await jingetServiceHandler.PostAsync("", envelope.ToString(), true, new Dictionary<string, string>
 {
              {"Content-Type","text/xml" },
              {"SOAPAction","http://tempuri.org/Add" }
 });

In line number 2, we have our envelop and all we need to do, is to pass our parameters. In line number 6, the envelop is being send to the PostAsync method as string value. It is important to note the SOAPAction header.


How to use custom Service Handler

You can use your custom service handler instead of using JingetServiceHandler. To do this create your custom class and makes it to inherit from ServiceHandler<> or ServiceHandler class. Also create a custom class for your event management and pass it as generic argument to ServiceHandler<> class. You can also make use of ServiceHandler(non generic class) too. Different between these two class is that ServiceHandler does not provide any event for response deserialization. it returns the raw response and deserialization is up to you. For example suppose that we have a class called CustomHandler as below:

    public class CustomServiceHandler : ServiceHandler<CustomEvents>
    {
        ...
    }

or

    public class CustomServiceHandler(string baseUri, bool ignoreSslErrors = false) : JingetServiceHandler(baseUri, ignoreSslErrors)
    {
        ...
    }

How to install

In order to install Jinget please refer to nuget.org

Further Information

Sample codes are available via Unit Test projects which are provided beside the main source codes.

Contact Me

👨‍💻 Twitter: https://twitter.com/_jinget

📧 Email: farahmandian2011@gmail.com

📣 Instagram: https://www.instagram.com/vahidfarahmandian

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Jinget.Handlers.ExternalServiceHandlers:

Package Downloads
Jinget.AzureDevOps.Connector

Using this package, you can easily connect to Azure DevOps and integrate it with your software applications

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
8.0.12 54 4/5/2025
8.0.11 186 3/9/2025
8.0.10 158 3/9/2025
8.0.9 165 3/9/2025
8.0.8 146 2/27/2025
8.0.7 100 2/27/2025
8.0.6 94 2/27/2025
8.0.5 103 2/26/2025
8.0.4 98 2/25/2025
8.0.3 100 2/24/2025
8.0.2 96 2/24/2025
8.0.1 97 2/20/2025
8.0.0 99 1/22/2025
8.0.0-preview013 82 12/19/2024
8.0.0-preview012 87 12/19/2024
8.0.0-preview011 87 12/17/2024
8.0.0-preview010 85 12/16/2024
8.0.0-preview009 76 12/15/2024
8.0.0-preview008 78 11/25/2024
8.0.0-preview007 96 11/11/2024
8.0.0-preview006 84 11/2/2024
8.0.0-preview005 77 11/2/2024
8.0.0-preview004 88 11/1/2024
8.0.0-preview003 78 11/1/2024
8.0.0-preview002 79 11/1/2024
8.0.0-preview001 75 11/1/2024
6.2.23-preview003 83 10/31/2024
6.2.23-preview002 79 10/31/2024
6.2.22 112 10/26/2024
6.2.21 95 10/26/2024
6.2.20 94 10/26/2024
6.2.19-preview037 77 10/14/2024
6.2.19-preview036 81 9/30/2024
6.2.19-preview035 107 9/10/2024
6.2.19-preview034 99 9/9/2024
6.2.19-preview033 95 9/1/2024
6.2.19-preview032 90 9/1/2024
6.2.19-preview031 99 8/31/2024
6.2.19-preview029 97 8/26/2024
6.2.19-preview028 110 8/26/2024
6.2.19-preview027 115 8/26/2024
6.2.19-preview026 116 8/21/2024
6.2.19-preview025 120 8/21/2024
6.2.19-preview024 114 8/19/2024
6.2.19-preview023 94 8/8/2024
6.2.19-preview022 97 8/8/2024
6.2.19-preview021 93 8/5/2024
6.2.19-preview020 98 8/5/2024
6.2.19-preview019 91 8/5/2024
6.2.19-preview018 59 8/3/2024
6.2.19-preview017 57 7/30/2024
6.2.19-preview016 68 7/29/2024
6.2.19-preview015 70 7/29/2024
6.2.19-preview014 74 7/26/2024
6.2.19-preview013 97 7/20/2024
6.2.19-preview012 88 7/20/2024
6.2.19-preview011 96 6/15/2024
6.2.19-preview010 94 6/14/2024
6.2.19-preview009 91 6/14/2024
6.2.19-preview008 92 6/13/2024
6.2.19-preview007 87 6/13/2024
6.2.19-preview006 85 6/13/2024
6.2.19-preview005 72 6/13/2024
6.2.19-preview004 83 6/13/2024
6.2.19-preview003 99 6/11/2024
6.2.19-preview002 102 6/8/2024
6.2.19-preview001 98 6/8/2024
6.2.18 129 6/6/2024
6.2.18-preview020 106 6/6/2024
6.2.18-preview019 113 6/6/2024
6.2.18-preview018 111 6/6/2024
6.2.18-preview017 106 6/2/2024
6.2.18-preview016 110 6/1/2024
6.2.18-preview015 117 5/28/2024
6.2.18-preview014 102 5/28/2024
6.2.18-preview013 105 5/28/2024
6.2.18-preview012 103 5/28/2024
6.2.18-preview011 98 5/26/2024
6.2.18-preview010 100 5/26/2024
6.2.18-preview009 99 5/26/2024
6.2.18-preview008 107 5/26/2024
6.2.18-preview007 113 5/22/2024
6.2.18-preview006 106 5/22/2024
6.2.18-preview005 93 5/19/2024
6.2.18-preview004 87 5/19/2024
6.2.18-preview003 83 5/19/2024
6.2.18-preview002 84 5/19/2024
6.2.17 86 5/19/2024
6.2.16 92 5/18/2024
6.2.15 99 5/18/2024
6.2.14 92 5/18/2024
6.2.13 100 5/17/2024
6.2.12 99 5/17/2024
6.2.11 101 5/17/2024
6.2.10 106 5/17/2024
6.2.9 122 5/12/2024
6.2.8 130 5/9/2024
6.2.7 136 5/9/2024
6.2.6 133 5/7/2024
6.2.5 113 4/24/2024
6.2.4 148 2/1/2024
6.2.3 119 2/1/2024
6.2.2 116 1/31/2024
6.2.1 127 1/23/2024
6.2.0 125 1/23/2024
6.2.0-preview013 109 1/19/2024
6.2.0-preview012 112 1/19/2024
6.2.0-preview011 121 1/18/2024
6.2.0-preview010 123 1/14/2024
6.2.0-preview009 126 1/11/2024
6.2.0-preview008 140 1/1/2024
6.2.0-preview007 122 1/1/2024
6.2.0-preview006 127 1/1/2024
6.2.0-preview005 132 1/1/2024
6.2.0-preview001 130 12/30/2023
6.1.0 233 12/2/2023
6.1.0-preview003 152 12/2/2023
6.1.0-preview002 144 12/2/2023
6.1.0-preview001 150 12/2/2023
6.0.2 165 11/27/2023
6.0.1 174 11/22/2023
6.0.0 144 11/22/2023
3.5.0 208 10/28/2023
3.4.0 208 10/1/2023
3.3.1 191 9/30/2023
3.3.0 169 9/28/2023
3.2.5 182 9/28/2023
3.2.4 184 9/28/2023
3.2.3 176 9/28/2023
3.2.2 181 9/28/2023
3.2.1 161 9/28/2023
3.2.0 182 9/28/2023
3.1.0 187 9/27/2023
3.0.1 167 9/27/2023
3.0.0 192 9/14/2023
3.0.0-preview001 166 9/14/2023
2.3.2 205 9/12/2023
2.3.1 246 8/20/2023
2.3.0 234 8/20/2023
2.2.0 213 8/12/2023
2.1.1 252 8/5/2023
2.1.0 226 8/5/2023
2.0.5 205 7/20/2023
2.0.4 213 7/15/2023
2.0.3 648 7/1/2023
2.0.1 218 7/1/2023
2.0.0 250 6/29/2023