For the rest of this week I am attending TechDays in Milan. I will be presenting JSR-311 and Jersey there. You can see the agenda...
For the rest of this week I am attending TechDays in Milan. I will be presenting JSR-311 and Jersey there. You can see the agenda at http://it.sun.com/sunnews/events/2007/sept/jc07/agenda.jsp.I would like to share some pictures from the event with you.Registration desk in the morning:Beamer checking in the conference room. In front you can see Arun Gupta (white t-shirt)and Alexis Moussine-Pouchkine (sitting at the table):Alexis is giving GlassFish presentation:
For the rest of this week I am attending TechDays in Milan. I will be presenting JSR-311 and Jersey there. You can see the agenda at http://it.sun.com/sunnews/events/2007/sept/jc07/agenda.jsp.I...
Recently Jersey module become available on GlassFish Update Center. It comes along with several examples, which use GlassFish as a web container.The examples...
Recently Jersey module become available on GlassFish Update Center. It comes along with several examples, which use GlassFish as a web container.The examples show how to build RESTful web services using Java.If you want to see such web services in action and find out how to implement them, the fastest way is probably todownload and install GlassFishinstall Jersey module from GlassFish Update CenterTry out the examples bundled with JerseyThis entry will introduce one of the...
Recently Jersey module become available on GlassFish Update Center. It comes along with several examples, which use GlassFish as a web container.The examples show how to build RESTful web services...
Jersey module is now publicly available on GlassFish Development Update Center.For those who would like to give it a try I will describe how to get it from...
Jersey module is now publicly available on GlassFish Development Update Center.For those who would like to give it a try I will describe how to get it from there.Thanks to Rajeshwar, who actually pushed the module on the net,for his support and help.After installing GlassFish V2 run the Update Centerclient% $AS_HOME/updatecenter/bin/updatetoolThen you should see Jersey at the list of available modules.Simply select Jersey module and click on the Installbutton. You will need...
Jersey module is now publicly available on GlassFish Development Update Center.For those who would like to give it a try I will describe how to get it from there.Thanks to Rajeshwar, who...
This entry contained steps to install Jersey modulefrom GlassFish Development Update Center.Due to technical and legal reasons, I had to pull it out. I will...
This entry contained steps to install Jersey modulefrom GlassFish Development Update Center.Due to technical and legal reasons, I had to pull it out. I will post a new blog entry once the modulebecomes available at the "real" Update Center.Thanks for your understanding.
This entry contained steps to install Jersey modulefrom GlassFish Development Update Center.Due to technical and legal reasons, I had to pull it out. I will post a new blog entry once the...
The example is available at http://mediacast.sun.com/share/japod/JsonFromJaxb.zipI have bundled all necessary jar files, so everything you need to run...
The example is available at http://mediacast.sun.com/share/japod/JsonFromJaxb.zipI have bundled all necessary jar files, so everything you need to run the exampleis to unzip the archive, cd to JsonFromJaxb and run % ant distIt will produce dist/JsonFromJaxb.war, which you can deploy to your favorite Java web container.My favorite container is GlassFish, so I would continue with% $AS_HOME/bin/asadmin deploy dist/JsonFromJaxb.warThe flights resource should be then available at...
The example is available at http://mediacast.sun.com/share/japod/JsonFromJaxb.zipI have bundled all necessary jar files, so everything you need to run the exampleis to unzip the archive, cd to...
GlassFish Update Center provides a simple way to add new modules and addons to an existing GlassFish V2 instance (read Nazrul's Weblog to get more...
GlassFish Update Center provides a simple way to add new modules and addons to an existing GlassFish V2 instance (read Nazrul's Weblog to get more information).Jersey support will be soon available there. It will allow users to deploy Jersey based RESTful web applications without need to bundle them together with Jersey base libraries. We will then see, if we can provide something more...
GlassFish Update Center provides a simple way to add new modules and addons to an existing GlassFish V2 instance (read Nazrul's Weblog to get more information).Jersey support will be soon available...
I have recently added support for JSON entity providers to Jersey. Here you can find a simple sample showing how to utilize them. The entity providers follow a...
I have recently added support for JSON entity providers to Jersey. Here you can find a simple sample showing how to utilize them. The entity providers follow a general schema described by Paul.The following resource class will publish CZK exchange rates for EUR and USD. Data willbe provided in JSON format.@UriTemplate("/rates")public class ExchangeRates { @ProduceMime("application/json") @UriTemplate("CZK") public JSONObject getRates() { try { return new JSONObject()...
I have recently added support for JSON entity providers to Jersey. Here you can find a simple sample showing how to utilize them. The entity providers follow a general schema described by...