Skip to content

Integration Development

IFS Cloud’ extensive integration support includes everything from packaged integration services to other IFS Products such as IFS Planning and Scheduling Optimization (PSO) to connectors for third-party products.

IFS Cloud also exposes data with the restful api that can be used for integrations. Datastructures can easily be created using structures in projections, which will generate code that can be exposed with functions and actions, example:

structure Expose using MyEntity {
   nestedwithcrud = ReadAndWrapWithJson, ReadAndWrapWithXml, Create;
}

There is also possibilities to use IFS/Connect. IFS/Connect is IFS’ own lightweight integration broker, designed for XML and web services. It provides additional integration value, such as development of own transport connectors and development of transformers.

You can also use a projection structure within an entity or utility to get datastructures to send via IFS/Connect, example:

structure Expose using MyEntity {    nestedwithcrud = ReadAndWrapWithJson, ReadAndWrapWithXml, Create;    implementation = "Utility"; }

Contents