Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 4 of 4

Thread: java web services

  1. #1
    Junior Member
    Join Date
    Jul 2013
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default java web services

    hi i am new to java,

    i am making my first java web service in which i am going to transfer images from central database to local database on request (from local application)... consider transferring 1000+ images... what you people suggest how do i do it... either make byte array of all of them and send to local site for synchronization or what ?


  2. #2
    Member
    Join Date
    Jul 2013
    Posts
    219
    Thanks
    0
    Thanked 18 Times in 17 Posts

    Default Re: java web services

    Hello.
    You don't have to write webservice for that. Even a standalone java program fits in to your requirements.
    No matter whether the running program is a webservice, servlet, etc; the logic is same.
    You setup connection with the first database and second database.
    Load the data from first database using JDBC and insert into second database.
    I am not going into details. Just give a backbone answer.

    Thanks,
    Syed.

  3. #3
    Junior Member
    Join Date
    Sep 2013
    Posts
    11
    My Mood
    Bored
    Thanks
    0
    Thanked 1 Time in 1 Post

    Default Re: java web services

    Web services are XML-based information exchange systems. It is used for direct application to application interaction. SOAP , UDDI and WSDL are the three components of the java web services.

  4. #4
    Administrator copeg's Avatar
    Join Date
    Oct 2009
    Location
    US
    Posts
    5,320
    Thanks
    181
    Thanked 833 Times in 772 Posts
    Blog Entries
    5

    Default Re: java web services

    @albsmith, please don't resurrect old threads (especially to provide a seemingly copy/paste definition that doesn't answer the original question) - this thread is over six months old which, in internet and forum time, is ancient.

Similar Threads

  1. java web services
    By dizki in forum What's Wrong With My Code?
    Replies: 0
    Last Post: July 14th, 2013, 01:13 PM
  2. Java integration with magento web services issue
    By prabhumachismo in forum Web Frameworks
    Replies: 1
    Last Post: November 22nd, 2012, 05:34 AM
  3. Java web services ws
    By Samashti in forum Web Frameworks
    Replies: 0
    Last Post: August 20th, 2011, 12:10 PM
  4. web services
    By RAMNATH S in forum Web Frameworks
    Replies: 4
    Last Post: June 20th, 2011, 01:56 AM