Tagged Questions

Enunciate is an engine for dramatically enhancing your Java Web service API.

learn more… | top users | synonyms

2
votes
1answer
97 views

Using Enunciate with Grails

I am creating Web APIs, in a RESTful manner. Grails of course has good support for creating REST web services. Enunciate claims to help in the API part, where things like documentation, client ...
2
votes
3answers
512 views

A Good Enunciate Tutorial?

Can anyone offer a good, cut-out-the-crap way of learning Enunciate? I've been trying to read through the website but it's just not informative at all. I learn from examples and brief bullet points. ...
1
vote
3answers
52 views

Exception while accessing Jersey REST webservice

I am trying to get REST webservices working in my app. I am using jersey with Spring 2.5. The endpoints for the webservices are generated with enunciate 1.9. When I deploy the generated war file with ...
1
vote
1answer
236 views

How do I change the REST context generated by enunciate?

I have the following annotation in my RESTEasy code: @Path("/v1/authenticateService") Enunciate generates a "Mount Point" in the documentation as: /rest/v1/authenticateService/authenticate I ...
1
vote
1answer
104 views

Selectively ignore certain api's for documentation

Does enunciate provide a means to selectively ignore certain api's? For example, if I have the following REST service: @PUT @Path("/somePath") @Produces({"application/xml"}) Response ...
1
vote
1answer
465 views

Apache CXF -Enunciate wsdl generation Error

We are using Apache CXF code-first approach to create web-services. We have a custom soap header to pass user credentials. I am trying to pass the usercredentials in the SEI using a @webparam ...
1
vote
2answers
982 views

Enunciate http error 404

I tried to setup a simple project with spring and enunciate+jax-ws/jax-rs annotation, but I didn't get it work. I used some great tutorial for the enunciate integration tutorial Enunciate create ...
1
vote
3answers
365 views

Expose a web service (wsdl) as a webform

Just wanted to ask if anyone knows of a reliable & easy way to expose a webservice (wsdl) as a webform to end-users. Our team develops a lot of software for external contacts, which often involve ...
1
vote
2answers
1k views

Spring not finding Hibernate mappings file

So I am taking Enunciate for a spin and have run into an issue when my servlet starts up. For some reason, despite the file being there, in the classpath, and everything being specified correctly, ...
0
votes
1answer
81 views

AMF/JAX-RS questions (some general, some Enunciate-specific)

Please forgive me if any of this is wrong -I'm completely new to Java. My task is to set up the client/server architecture for an upcoming Facebook game. On the server-side, I have: Java Tomcat ...
0
votes
1answer
82 views

using Enunciate with Maven/multiple modules

I have multiple Maven modules that expose various REST for my service. On top of that, I have an (almost empty) module, called project-docs, that I want to use and generate an aggregated Enunciate api ...
0
votes
1answer
169 views

Enunciate with spring mvc rest and other Enunciate Questions

Does any knows if Enunciate supports Spring MVC @RequestMapping rest annotations. If so does anyone have an enunciate.xml and pom.xml file for running the mvn plugin. The mvn plugin is not merging ...
0
votes
1answer
200 views

XmlJavaTypeAdapter and enunciate?

I'm having a hard time running Enunciate on my project. The project is a multi-module maven project, available from https://svn.opentripplanner.org/trunk . All I want out of enunciate is API docs. ...
0
votes
1answer
392 views

Enunciate CXF plugin for JAX-RS

I am attempting to use the Enunciate plugin for CXF to generate documentation for my REST interfaces via the Maven plugin configured as follows: <plugin> ...
0
votes
1answer
245 views

Enunciate not can't determine output type for javax.ws.rs.core.Response

I have a REST web service that returns a "javax.ws.rs.core.Response" entity. When I run enunciate, it can't determine the output type, so the response in the generated wadl is left blank: If the ...
0
votes
1answer
146 views

Enunciate error during invocation when full CRUD is supported in JAX-RS annotated service

I've run into a rather interesting enunciate error: "No more than one JAX-RS entity parameter is allowed (all other parameters must be annotated with one of the JAX-RS resource parameter ...
0
votes
1answer
357 views

JAX-WS and Enunciate - How to change Enunciate's default XSD naming convention

I'm using Enunciate to generate a SOAP endpoint for a Wicket web application I am working on and I have a couple of questions that I haven't figured out the solution to yet. 1 How do I change the ...
0
votes
2answers
394 views

GWT Compile Error

I've been compiling my application all day absolutely fine however it's suddenly started to fail. As you can see from below, it's a NullPointException but I have no idea about what is wrong. Has ...
0
votes
1answer
295 views

Error while generating API docs using Enunciate

I created a webservice and would like to generate documentation for the API. So I looked into Enunciate downloaded the maven enunciate plugin. However I get the below error on compile as the ...
0
votes
1answer
680 views

How to document a Symfony based REST API (similar to enunciate's documentation capabilities)

If I have a REST based service written in the Symfony [symfony-project.org] framework (i.e. PHP), is there any decent tools/frameworks out there that will parse my code and generate API documentation? ...
0
votes
2answers
277 views

Why do Jars get Excluded from Enunciate's Deployment?

I'm using Enunciate to build a prototype REST api and need to include a jar containing custom code as a library. My Ant Script looks like this: <!--include all jars--> <path ...