• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

how to deploy a servlet into a web server

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello frens,

I am new to servlets...my task is to send an image to database from netbeans and in return get an acknowledgement from database..

Please help me in this...how to start this....

Many thanks,
Rohit
 
Ranch Hand
Posts: 61
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Rohit Ms wrote:Hello frens,

I am new to servlets...my task is to send an image to database from netbeans and in return get an acknowledgement from database..

Please help me in this...how to start this....

Many thanks,
Rohit



Few things which you need to clarify. What do you mean by sending an image to database? Is this persisting to database. Then why are you bothered about servlets.

Or is this sending an image over HTTP to some remote server, which in turn takes the responsibility of persisting to database and send back an ack. I guess this is what you are looking for.

this is similar to file upload (though I have not personally worked on this). Apache has an open source project called FileUpload which provides this facility. Once you get the file at server, persisting to database is a different operation. Google on apache FileUpload and you are presented with abundant examples.

Happy coding.
 
Ranch Hand
Posts: 2234
Eclipse IDE Firefox Browser Redhat
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Please help me in this...how to start this....



There are many examples , that are aviable in internet .
I will tell you the starting point , on to the Form (to upload images ) , make it as enc


and in your Servlet use the PreparedStatement use this



and use Blob as Datatype for that Database column .
try it.
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic