-1
votes
1answer
14 views

Building Jersey web services executable

I have developed Jersey web services for the first time. Right now I am running my services on my pc only using eclipse. How can I Make executable file for services so that I can install it on other ...
0
votes
1answer
113 views

JAX-RS modifying project /tomcat

I've been reading a lot on StackOverflow but this is my first question! I've read the rules but bear with me if I miss something :). Don't hesitate to let me know if I'm missing something in my ...
1
vote
1answer
181 views

How to add JAX-RS to an existing project

I am using Java EE, Java 1.7, glassfish 3 and Eclipse Indigo. I have an existing web project that I built from this tutorial: ...
1
vote
1answer
398 views

Google App Engine -

I'm struggling to get JAX-RS configured within Eclipse Juno for deployment to the Google App Engine, in fact, I haven't got as far as getting a local deployment to work (Jetty). Here's the stack ...
1
vote
2answers
316 views

deploying and testing rest-webservice with eclipse

I have used eclipse + glassfish to deploy my first web-service from eclipse. I have the following class: package com.restfully.shop.services; import javax.ws.rs.core.*; import java.util.*; public ...
0
votes
2answers
158 views

JAX-RS @Path Embedded Variables

I'm using the latest Jax-RS + Glassfish versions and I've been trying to version my API. For some reason, if I include embedded variables in my @Path Root Resource Class it doesn't even take the ...
0
votes
0answers
61 views

Show @Path next to method in Outline

I just thought how useful it would be if I could easily see which methods have a Jersey @Path annotation on them from the Outline view. Bonus point it it actually displays the path. Does anything ...
0
votes
1answer
499 views

Exception after adding JAX-RS facet to Dynamic Web Project in Eclipse

I am a newbie to Oracle Plugin for Eclipse (OEPE) and EJB. I am following the tutorial on following the tutorial on http://www.youtube.com/watch?v=on557289GzA&feature=relmfu titled JavaEE6 and ...
4
votes
2answers
3k views

How to retrieve data from database using webservices (JAX - RS) in eclipse using Java

I have done inserting a record into database but I don't know how to retrieve it. My code is: Account.java: package com.fetch; import java.io.Serializable; import javax.persistence.Column; import ...
2
votes
1answer
222 views

Detailed instructions on running maven built resteasy project from inside eclipse's tomcat server?

I could use some detailed instructions on how to do this. By "this", I mean that I have a maven pom.xml, and I have installed it. The project uses resteasy and is a simple jax-rs webservice. Now I ...
0
votes
2answers
760 views

why is my @EJB not getting injected to my web service?

I have a basic EJB 3.0 (Java EE 5) project in IBM RAD (aka Eclipse 3.4) and WebSphere 7.0 I created an EAR project, an EJB project (for the EJBs), a JPA project (for the domain objects), and a ...
0
votes
1answer
1k views

what is Eclipse “Dynamic Web Module” number, why isn't JAX-RS in the project facets list?

I'm trying to build a JAX-RS based web service using IBM RAD 7.5.5 (which is basically Eclipse + plugins) and WebSphere 6.1. When I create a new Dynamic Web Project, I get the "New Dynamic Web ...
0
votes
2answers
442 views

How to use Jersey with Eclipse Helios?

My base need is to use the Jersey framework to develop very basic REST webservices. I've read several tutorials regarding Jersey (JAX-RS framework) and writing webervices but so for I've not found an ...
2
votes
1answer
2k views

Java Repository of Eclipse with Maven : Missing artifact:compile

I am trying to intigrate jersey-server and the grizzly-servlet-webserver into my Maven Webapp to try a hellworld with JAX-RS. Unfortunately the Jersey and Grizzly dependencies are trouble and not ...
1
vote
1answer
735 views

Java web service tomcat not able to find a shared lib

I'm using eclipse and I have a java web service (rest jax-rs) I also have another java project that contains a class Employee In the web service project and I have gone to Java Build Path/Projects ...
1
vote
2answers
512 views

How to publish javadoc instead of index.jsp page for a REST web service

I was wondering if it is possible for a client to hit my webservice and instead of it showing the normal index.jsp page (and list off what is available etc here) I can instead have it show the ...
2
votes
2answers
4k views

Java EE 6 Eclipse JAX-RS deployment issue

I am following a tutorial that shows how to setup JAX-RS. However, I am getting an error when I reach a certain part in the tutorial. The tutorial is here: ...