Incomplete Web services scripts list

SOLVED

Hello, I am getting started with web services.  I'm attempting to follow along with various introductory articles, however, our X3 only has 4 web services scripts listed where the list in most of the tutorials have way more.

Here's our list:


Any thoughts on how to add the additional scripts so our system better matches the example from this support article:


Parents
  • +1
    verified answer

    I've only been working with soap webservices a few months, but In my experience you have to add these manually, the system doesn't come with predefined SOAP Webservices, unless those are included in a SEED folder or something like that, which I have not used. 

    There are two types of webservices that can be added, object based web services which key off existing X3 Object/Window Definitions which will pull in all the necessary fields and apply the same business logic when interacting with the API.  As I have been warned, you have to be careful though as not all objects can be used with webservices (you'll have to find that out the hard way with trial and error, as I have not found any documentation on this). The other options is sub program web services where you have to write a script/subprogram to interact with X3 data, more complex and does not follow the same business logic unless you build that in the script. 

Reply
  • +1
    verified answer

    I've only been working with soap webservices a few months, but In my experience you have to add these manually, the system doesn't come with predefined SOAP Webservices, unless those are included in a SEED folder or something like that, which I have not used. 

    There are two types of webservices that can be added, object based web services which key off existing X3 Object/Window Definitions which will pull in all the necessary fields and apply the same business logic when interacting with the API.  As I have been warned, you have to be careful though as not all objects can be used with webservices (you'll have to find that out the hard way with trial and error, as I have not found any documentation on this). The other options is sub program web services where you have to write a script/subprogram to interact with X3 data, more complex and does not follow the same business logic unless you build that in the script. 

Children