Bhavesh Shah
Bhavesh Shah

Reputation: 3389

How to came know that some web services is present in project in java

I don't know much about the J2EE/Web Project in Java.

Actually the thing is like that I have git some projects (10-12) inter-related with each other (contains lots of packages, classes, etc). And it requires JBOSS server to run the complete project.

I am confused after seeing some little bit code of it. When I tried to run it using JBOSS server then it opens a link in the browser.

I want to know that actually where the web service is present in the project so that I can come to know the little bit by bit things.

Sorry for asking idiot question. Please advice.

Thanks

Upvotes: 0

Views: 180

Answers (2)

kundan bora
kundan bora

Reputation: 3889

Bhavesh.. Firstly you should know which type of webservice has been developed in your project. Either REST or SOAP service.

Second thing you should know that on which library or technologies your web service built on.

for example REST based service can be developed by using Jersey or Spring MVC (in this case you can find some annotation like @RequestMappling or @GET).

SOAP based web-services commonly contain WSDL file and some .XSD (in case of contract first webservice) file.

Being without specific information it is pretty hard to tell about where is your web-service part in project.

Upvotes: 0

JHS
JHS

Reputation: 7871

Have a look at the web.xml file of the Project. It will give you a head start.

Upvotes: 1

Related Questions