0

Does anyone know if it is possible to do implement servlets using the RTC Java API ? My goal is to do a web page which connects to rtc and retrieves a snapshot desired by the user. Thank you.

1 Answers1

2

It is more for the servlet classes you can write to call the Rational Team Concert plain Java API's, not the reverse.

In other words, that API doesn't know about Java EE, but nothing prevents your Java EE app to use RTC java API.

Make sure you don't call TeamPlatform.shutdown() though:

You need to start the platform the first time the servlet executes, but if you stop it in your servlet code, you'll get the exception when another user calls the servlet.

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250