Can I call web services from Streamserve script?

Kanok ECM
edited February 24, 2021 in Exstream #1

Hi All,

Can I call web services from Streamserve script to get or set data after the job done?

Regards,
Kanok

Comments

  • Streamserve Script has a method to invoke custom external Java code namely the JavaInvokeMethod and JavaInvokeStaticMethod . There is support for calling statically defined Java methods directly without instantiating any objects.
    This can used to invoke any custom Java code. Probably you can build your webservices in a custom Java code and invoke them using the above methods.

  • sunilsas
    #3 Answer ✓

    Streamserve Script has a method to invoke custom external Java code namely the JavaInvokeMethod and JavaInvokeStaticMethod . There is support for calling statically defined Java methods directly without instantiating any objects.
    This can used to invoke any custom Java code. Probably you can build your webservices in a custom Java code and invoke them using the above methods.

  • Thank you Sunil. Let me try.