Skip to main content

Hi there,


I successfully completed the tutorial on REST Service Interfaces (http://documentation.microfocus.com/help/topic/com.microfocus.eclipse.infocenter.visualcobol.vs2013/GUID-58BF06B8-029A-46A0-8AA2-3E9A0A52B162.html?cp=5_4_0_5_0_2_2)

And everything works find with the generated client. But now I want to use another client but I cannot find any information about the url and how to post parameters. (The service handler has the path temppath/ProgramRest/1.0#CheckAppt)

-> I want to use a rest client integrated into the browser.

Is there any information about the generated rest urls (and parameters/load)?


Thanks for your help!

Hi there,


I successfully completed the tutorial on REST Service Interfaces (http://documentation.microfocus.com/help/topic/com.microfocus.eclipse.infocenter.visualcobol.vs2013/GUID-58BF06B8-029A-46A0-8AA2-3E9A0A52B162.html?cp=5_4_0_5_0_2_2)

And everything works find with the generated client. But now I want to use another client but I cannot find any information about the url and how to post parameters. (The service handler has the path temppath/ProgramRest/1.0#CheckAppt)

-> I want to use a rest client integrated into the browser.

Is there any information about the generated rest urls (and parameters/load)?


Thanks for your help!

A json schema file will have been generated as part of the deployment process.

If you look in the deployment folder under the project with the name <projectname>.deploy you will find a file with the extension .json. This can be used to describe the web service to other REST client technologies.

In the tutorial this would be something like: C:\\IMTKTutorialsESA\\IMTKTutorialsESA\\ProgramREST\\ProgramREST.deploy\\ProgramREST.json

Thanks