Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagepy
title~/workspace/client.py
from Acspy.Clients.SimpleClient import PySimpleClient
 
client = PySimpleClient()
 
hc_java = client.getComponent("HelloWorldJava")
print(hc_java.printHello())

Run clientcomponent:

Code Block
languagebash
# in one terminal
acsStart
# in a different terminal
acsStartContainer -java frodoContainer
# in a different terminal
python client.py

Example output:

...