Latest News

the latest news from our team

eFORMz API/Endpoints (Called as a Web Service)

Please refer to the following post for more details: eFORMz API Management (Developer Resources)

Calling a Web Service vs. Calling eFORMz as a Web Service

The majority of times web services are used with eFORMz, the eFORMz project calls a remote web service. There is extensive documentation about this process at the following page:

https://minisoft.com/support/index.php/web-services-sample-weather-project/.

That said, eFORMz can also be called as a web service. We loosely refer to eFORMz calling itself as the eFORMz API (Application Programming Interface). For example, eFORMz can call a web service to post data to a queue, as described in the following post:

https://minisoft.com/support/index.php/post-data-to-eformz-via-a-web-service-call/.

There are two primary endpoints available to eFORMz customers. These are the ‘director’ and ‘output’ endpoints. For more information, consult the following post: Director Endpoint with ServiceConfiguration (API/Web Service Call)

Sample of eFORMz being called as a Web Service

Below, you can find working examples of calling eFORMz as a web service. Various utilities and applications can be used to access eFORMz as a web service. These include SQL Server, VB.Net, curl (a Linux utility), ABAP (scripting language in SAP), and many more. While working samples of these various languages and utilities are available, the samples below are in eFORMz format, via eFORMz projects (.efz) and actions within those projects. Together, the following projects parse and pass XML files with embedded ZPL and return a PDF file.

ProjectA.efz This project is used to format XML data to an output format. Essentially it’s the source of the PDF file.
ProjectB.efz This project calls eFORMz using a configuration file stored on the eFORMz Web Server. A single URL parameter of “config” with a relative file location of the configuration file is used. The data is POSTed as an XML file.
ProjectC.efz This project calls eFORMz for “output” using a ServiceConfiguration wrapper. The URL has no additional parameters. The XML data is wrapped in an <InputData> element within a <ServiceConfguration> root. The root contains the processing details.
ProjectE.efz This project calls eFORMz for “director” using a ServiceConfiguration wrapper, similar to ProjectC. In place of a PDF return, the XML data is passed to a background instance of eFORMz Director for processing asynchronously.

Download

Processing Types

Type “output” = Process synchronously, return when the current project is complete with a file in the format requested.

Type “director” = Process asynchronously, return immediately with the data passed on for processing in another thread. The other thread can be configured to start when the data arrives or at a configurable time interval.

Default Ports

The default ports used by eFORMz as a Web Server are 8000 and 8001. These are the secure (https) and unsecure (http) ports respectively. There are configurable options for the ports used and to redirect unsecure requests to the secure port. When calling the eFORMz web server from the local system (where hostname would be localhost), the hostname, port, username and password are not required. For more information on eFORMz ports, please consult the following page:

https://minisoft.com/support/index.php/eformz-ports/

eFORMz API .NET Web Service Call

For detailed steps on setting up a web service call to the eFORMz API, view the eFORMz API .NET Web Service Call tutorial.

References

For more details on the eFORMz API, consult the following posts:

eFORMz API .NET Web Service Call
eFORMz API URL Parameters
Web Service POST call to “Wake Up” a “Sleeping” Queue: Part 1
Web Service POST call to “Wake Up” a “Sleeping” Queue: Part 2
Web Service POST call to “Wake Up” a “Sleeping” Queue: Part 3
Web Service POST Call Output Advantages
Web Service POST Call Output

Leave a Reply

Your email address will not be published. Required fields are marked *