• 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

need help in a project

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello,
I got a contract to make an accounting software.The company also wants to make their website online(no payments).Which is appropriate for the software, Visual Basic or java? If java i am thinking to use RMI. The database is sqlserver. For online store, will JSP and HTML be enough? This is my first work and I am little confused. Any suggestion?
Thank You
 
Greenhorn
Posts: 11
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hai!
Yea! HTML and JSP are a good choice to develop a dynamic website like online Shop.
No need of RMI. It's good only in distributed computing.
In a couple of days you can learn JSP and start designing the website.
Good Luck!!
 
Ranch Hand
Posts: 47
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
For Web based applications, JSP,HTML will be the ideal choice.
For distributed applications, you can think of RMI or EJB.
You might have to use develop components in Java Beans along with JSP.
All the beat
 
Rakesh Gadre
Ranch Hand
Posts: 47
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
For Web based applications, JSP,HTML will be the ideal choice.
For distributed applications, you can think of RMI or EJB.
You might have to use develop components in Java Beans along with JSP.
All the best
 
Sandra Philip
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
Thank you for the great help. Why I wrote about RMI was, I also got a project to develop an accounting software. That company needs to install it on 5 computers. So I thought RMI would be suitable for that. Please correct me if I am wrong.
Thank you.
 
Ranch Hand
Posts: 40
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Sandra,
So, you have two accounting project ...
If possible try for an integrated solution. The internet application itself can be used in the intranet. The intranet users may have more facilities and features.
If such design is possible, maintainance (spelling?) cost will cut into half.
Regards,
Balaji
[ February 25, 2003: Message edited by: Jeya Balaji ]
 
Rakesh Gadre
Ranch Hand
Posts: 47
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
HI Sandra,
normally, RMI can be used if you want to seperate Presentation from the Business logic. You can keep the business logic in a seperate server and access the same from multiple clients. This approach helps a lot in maintaining the code.
For eg. If you want to make changes in the business logic, you need to change it only once on the server side. No need to make change on each client.
Hope that clarifies your doubt
Rakesh
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic