javascript + Tomcat JSP

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Jason

    javascript + Tomcat JSP

    Is javascript + Tomcat JSP a good combination?


  • Laurent Bugnion, GalaSoft

    #2
    Re: javascript + Tomcat JSP

    Hi,

    Jason wrote:
    [color=blue]
    > Is javascript + Tomcat JSP a good combination?[/color]

    I assume you mean "client-side JavaScript".

    If that's the case, then it doesn't really matter. There is no direct
    communication between the client and the server in the HTTP protocol.
    It's a request/response based protocol, and the client ignores what the
    server runs.

    As such, you can have anything on the server, it won't make much of a
    difference. Client-side JavaScript is good for all kind of tasks, but
    you should always have a "backup plan" in case the client doesn't
    support JavaScript (too old, too small, or simply JavaScript off). Don't
    rely on client-side JavaScript for important tasks.

    As for the server, the platform you use depends on the server you have,
    its OS, your knowledge of such or such language, performances, price,
    etc... Tomcat and JSP is certainly a good combination.

    HTH,

    Laurent
    --
    Laurent Bugnion, GalaSoft
    Webdesign, Java, JavaScript: http://www.galasoft-LB.ch
    Private/Malaysia: http://mypage.bluewin.ch/lbugnion
    Support children in Calcutta: http://www.calcutta-espoir.ch

    Comment

    Working...