Tagged Questions
0
votes
1answer
34 views
File upload rest service using Mule Error
I have created a File upload rest service using Mule and jersey according to this post. Everything is working fine, but the problem with this is that somehow mule is not releasing the lock on the file ...
0
votes
1answer
115 views
How to access Mule Message properties in jersey component
I am using the Jersey module, Can anybody tell me how to access the mule message properties from within a jersey component?
I need to have access to one of the objects stored in the message ...
1
vote
0answers
58 views
Mule 3.3.0 - ajax connector and jersey resource on same domain
I setup a ajax server in mule that hosts a webpage:
<ajax:connector name="ajaxServer" serverUrl="http://0.0.0.0:8090/test" resourceBase="${app.home}/docroot">
On the webpage, I want to be ...
0
votes
1answer
498 views
Helloworld Mule Rest WS error
I am trying to get the basic http rest helloworld example working in Mule but I get this error
Could not find a transformer to transform "SimpleDataType{type=java.lang.String, mimeType='*/*'}" to ...
0
votes
1answer
610 views
Modify the JSON output with Mule and Jersey
My goal is stupidly simple.
I just want to wrap a json response from Jersey module in Mule in a JSON response such that:
{"status": "ok", message:<json-message>}
I tried to use a ...
0
votes
1answer
179 views
How to filter a single URI from a group of URI's in a Mule inbound endpoint?
I have the following code to configure a Jersey service at "http://localhost:8080/alpha":
*** my mule config ***
<flow name="flow1">
<inbound-endpoint address="http://localhost:8080/" ...
0
votes
0answers
148 views
API security using Mule, Spring, and Jersey JAX-RS
Can someone point me to working code where Mule, Spring, and Jersey JAX-RS are used to secure a collection of web services?
Ultimately I want to define a group (e.g. 'admin'), secure a sub-collection ...
2
votes
1answer
702 views
Mule/Jersey returning 400 on requests for file upload
I'm writing a mule application that implements some web services using Jersey. I'd like to upload a file. I've written the following skeleton
@POST
@Path("/getHtml")
...
1
vote
1answer
136 views
Show Jersey trace in Mule
Jersey has a tracing feature that looks to be helpful. However the instructions on enabling it assume that I have a web.xml file to put the configuration in. My mule instance is standalone and I ...
0
votes
2answers
1k views
How to register a custom exception mapper in Mule + Jersey + Spring?
I built a exception mapper using JAX-RS ExceptionMapper:
@Provider
public class MyCustomExceptionMapper implements ExceptionMapper<MyException>{...}
It is unclear to me is how to register it ...
0
votes
1answer
300 views
How do I receive a file using MuleESB Jersey using PUT or POST?
I'm using Jersey in Mule v2.2.1 to expose a REST interface. I having trouble determining how to expose the service and process the file. For example, I'm looking for something like this:
@POST
...
2
votes
2answers
868 views
How to Use Grizzly Embedded Server for Mule as Well as Jersey
I'm currently using JerseyTest w/ Grizzly embedded server to test some code. I do some very simple configuration to point it to the proper resources:
Map<String, String> initParams = new ...