algorithmicCoder
algorithmicCoder

Reputation: 6789

Is a full J2EE server needed for a PHP Client connecting via Thrift to a Java Service?

Java class exposes some method getStuff(); via thrift to a php client so all users interact with are .php files which connect to java via thrift...do i still need tomcat/glassfish etc or does the jdk suffice?

Upvotes: 1

Views: 185

Answers (1)

Nishant
Nishant

Reputation: 3005

JDK /JRE would suffice. You do not need a J2EE server.

Sample Thrift Program details about using Thrift with a C++ Client and a JAVA service.

It should help you get started. Once you have written a (Java) Server class to handle the requests - you can run it as a standalone Java application.

Also, look at the Sample provided on the Thrift Website

Upvotes: 1

Related Questions