RXN.AspNetCore.QuickBookWCSoap2Rest 3.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package RXN.AspNetCore.QuickBookWCSoap2Rest --version 3.0.0
NuGet\Install-Package RXN.AspNetCore.QuickBookWCSoap2Rest -Version 3.0.0
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="RXN.AspNetCore.QuickBookWCSoap2Rest" Version="3.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add RXN.AspNetCore.QuickBookWCSoap2Rest --version 3.0.0
#r "nuget: RXN.AspNetCore.QuickBookWCSoap2Rest, 3.0.0"
#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.
// Install RXN.AspNetCore.QuickBookWCSoap2Rest as a Cake Addin
#addin nuget:?package=RXN.AspNetCore.QuickBookWCSoap2Rest&version=3.0.0

// Install RXN.AspNetCore.QuickBookWCSoap2Rest as a Cake Tool
#tool nuget:?package=RXN.AspNetCore.QuickBookWCSoap2Rest&version=3.0.0

RXN.AspNetCore.QuickBookWCSoap2Rest

A simple library was written by C# using with ASP.Net Core that supported communicates with QuickBook Web Connector XML. A product made in RXN Viet Nam.

Once upon ago, QBWC XML only support communication with Web method via SOAP. But now we support the way of converting SOAP to REST for ASP .Net Core server API.

Installation

Use Package Manager to install it.

Install-Package RXN.AspNetCore.QuickBookWCSoap2Rest -Version 3.0.0

Or .NET cli

dotnet add package RXN.AspNetCore.QuickBookWCSoap2Rest --version 3.0.0

Or PackageReference

<PackageReference Include="RXN.AspNetCore.QuickBookWCSoap2Rest" Version="3.0.0" />

Or Paket CLI

paket add RXN.AspNetCore.QuickBookWCSoap2Rest --version 3.0.0

Usage

There are two interfaces for handling Request of .Net core API that IWCWebMethod and IWCWebMethodAsync.

  • Implement from IWCWebMethod if you just want the synchronous function.
  • Implement from IWCWebMethodAsyncif you just want the asynchronous function.

Example

  • Implement IWCWebMethod
using RXN.AspNetCore.QuickBookWCSoap2Rest.Interfaces;

// ...

// The handle class take care all business when QBWC requested to server
public class MyRequestHandler : IWCWebMethod
{
    // must implement all methods supporting WC Connector
    // In each method, you can write you business and return the type method need

    public string ServerVersion(string strVersion)
    {
        return _config.GetValue<string>("App:Version");
    }

    public string ClientVersion(string strVersion)
    {
        // maybe save client version or check for update
        return null;
    }

    // ...
}
  • Implement IWCWebMethodAsync
using RXN.AspNetCore.QuickBookWCSoap2Rest.Interfaces;

// ...

// The handle class take care all business when QBWC requested to server
public class MyRequestHandlerAsync : IWCWebMethodAsync
{
    // must implement all methods supporting WC Connector
    // In each method, you can write you business and return the type method need

    public async Task<string> ServerVersionAsync(string strVersion)
    {
        var assembly = System.Reflection.Assembly.GetExecutingAssembly();
        var serviceVersion = assembly.GetName().Version.ToString();

        return serviceVersion;
    }

    public async Task<string> ClientVersionAsync(string strVersion)
    {
        // maybe save client version or check for update
        return null;
    }

    // ...
}

Now in your Api Controller call WCController and passing WC handler to it.

Example:


using Microsoft.AspNetCore.Mvc;
using RXN.AspNetCore.QuickBookWCSoap2Rest;
using RXN.AspNetCore.QuickBookWCSoap2Rest.Interfaces;

[Route("api")]
[ApiController]
[Produces("text/xml")]
public class ApiController
{
    [HttpPost]
    public Task<XElement> Handle()
    {
        var wcController = new WCController(new MyRequestHandlerAsync());

        // Request from AspNetCore <Microsoft.AspNetCore.Http.HttpRequest> Request
        // a property of Controller Base
        // Now all QBWC request will be handle and return at here
        return wcController.HandleAsync(Request);
    }
}


Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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. 
.NET Core netcoreapp3.1 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.4.0 412 9/20/2021
3.3.0 391 1/16/2021
3.2.0 454 1/15/2021
3.1.1 466 1/15/2021
3.1.0 449 1/15/2021
3.0.0 451 1/15/2021