KTF
KTF

Reputation: 317

How to test a REST WS using URL

I've Googled how to but I can't seem to find a step-by-step guide for a beginner. I just want to make sure a class is working and printing fine. A lot of tutorials said to just put the URL in the browser but I don't even know how to get the URL of my web service.

What I've done so far: 1. Created a WAR file out of the project 2. Deployed the WAR file on Tomcat

Upvotes: 1

Views: 41

Answers (1)

Joshua Dickerson
Joshua Dickerson

Reputation: 36

By default, the path will be based on the name of your WAR file, but can be easily configured.

see this response: How to set the context path of a web application in Tomcat 7.0

Upvotes: 1

Related Questions