Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6172429
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T23:23:27+00:00 2026-05-23T23:23:27+00:00

i want to make web service for my android client basically i m android

  • 0

i want to make web service for my android client basically i m android developer and i have no idea to develop a web service

please send a good tutorials link so that i can start with basic.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T23:23:29+00:00Added an answer on May 23, 2026 at 11:23 pm

    So, I’m guessing you want to create the webservice in Java yeh? I’d use Jersey (which is the reference implementation of JAX-RS).

    The website above has pretty good documentation on how to use Jersey, but in short you can do the following:

    Download the jars and add them to your project or add the following to your pom.xml file

    <dependency>
      <groupId>com.sun.jersey</groupId>
      <artifactId>jersey</artifactId>
      <version>0.8-ea</version>
    </dependency>
    

    Annotate your Resource pojo class with @Path to specify the url for that resource.

    Annotate your methods with @Path to specify more fine grained urls.

    Annotate your method arguments with @PathParam if you want to get access to the parts of the url path designated for that resource method.

    Annotate your methods with @GET, @POST, @PUT or @DELETE to specify which HTTP method they will respond to.

    Annotate your methods with @Produces/@Consumes to specify what MIME type the resource accepts or produces.

    An example of a class that might use some or all of these methods is as follows:

    @Path("/users/{username}")
    public class UserResource {
    
        @GET
        @Produces("text/xml")
        public String getUser(@PathParam("username") String userName) {
          ...
        }
    }
    

    That’s the basics. It’s as easy as that. Knock yourself out.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to make a site where there user can basically navigate the web
I have a Web Service application and it has alogin view. I want to
I want to make a request to a SOAP Web Service but I don't
I created a web service that I want to make more secure by using
I want to make a web service that runs other people's code locally. Naturally,
I want to make an android app which can stream video to the web.
I want to make Restful - Web Service using netbean 6.5, glassfish V 2
We have two components: enterprise application X, and Web service Y We want to
In our application,we have a web service which wll return images to the client
I have to make a web-service in Zend Framework for getting data from java

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.