• 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:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

what java technology can i use for intranet connection programs.

 
Ranch Hand
Posts: 42
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
From next week,i will be embacking on a second project that involves java codes to operate within the intranet. I already have it on a standalone system, so do i need to use servlet, jsp? or i can work on the standalone to achieve this? Note that it is a database connectivity storage project.
 
Bartender
Posts: 10336
Hibernate Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Its a bit vague what you are after. When you say "operate within the intranet" do you mean you need a technology which can open connections to other nodes in a network? If so look at the java.net package.

You would only normally use Servlets/JSP if you intended to write a web based applicaton for multiple users. Is that a requirement?

You mention a database, so I'll also direct you to JDBC.
reply
    Bookmark Topic Watch Topic
  • New Topic