CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 9 of 9

Hybrid View

  1. #1
    Join Date
    Sep 2006
    Posts
    49

    Question what is used at Server side?

    hi

    what is used at server side in AJAX? measn JSP or what?

  2. #2
    Join Date
    Feb 2001
    Location
    Sydney, Australia
    Posts
    1,909

    Post Re: what is used at Server side?

    Quote Originally Posted by ujjvalpandya
    hi

    what is used at server side in AJAX? measn JSP or what?
    it depends... I would go with ASP.NET running on W2K3, but my Java friends would probably choose something a liitle bit more open-sourced
    Best regards,
    Igor Sukhov

    www.sukhov.net

  3. #3
    Join Date
    Mar 2002
    Location
    St. Petersburg, Florida, USA
    Posts
    12,125

    Re: what is used at Server side?

    Basically the entire point of AJAX is to integrate client and server side code so the developer needs to only think about the server side. As a result, the server side code is 100% vendor dependant.

    Like many others' I tend to use the Microsoft implementation (which was developed under the codename 'ATLAS').
    TheCPUWizard is a registered trademark, all rights reserved. (If this post was helpful, please RATE it!)
    2008, 2009,2010
    In theory, there is no difference between theory and practice; in practice there is.

    * Join the fight, refuse to respond to posts that contain code outside of [code] ... [/code] tags. See here for instructions
    * How NOT to post a question here
    * Of course you read this carefully before you posted
    * Need homework help? Read this first

  4. #4
    Join Date
    Aug 2002
    Location
    Brazil
    Posts
    730

    Talking Re: what is used at Server side?

    Quote Originally Posted by TheCPUWizard
    Basically the entire point of AJAX is to integrate client and server side code so the developer needs to only think about the server side. As a result, the server side code is 100% vendor dependant.
    TheCPUWizard, i must disagree with you as I successfully use ajax from a different point of view.

    I use ajax in it's most simple way: to reduce overhead. I use it so I don't refresh the hole page just to show some content in the page. I use an ajax lib i wrote myself from scratch in javascript. All it does is make GET and POST calls to the server and write content received back to an specified div (or any other suitable element).

    The difference? My lib is language free, you can use it with ASP, JSP, PHP, Python, Ruby on Rails, Perl, CGI or any things that runs on a webserver. I don't have to know any other language to use it, just the server side language.
    All consequences are eternal in some way.

  5. #5
    Join Date
    May 2002
    Posts
    10,943

    Re: what is used at Server side?

    To sum this all up into a simple answer to the original question...
    Quote Originally Posted by bubu
    ...you can use it with ASP, JSP, PHP, Python, Ruby on Rails, Perl, CGI or any things that runs on a webserver
    If the post was helpful...Rate it! Remember to use [code] or [php] tags.

  6. #6
    Join Date
    Mar 2000
    Location
    Vancouver, BC, Canada
    Posts
    278

    Re: what is used at Server side?

    Bubu,

    I think you may have misread the post by CPUWizard. You're response has not proven him incorrect, you've merely mentioned that you used a client side script you wrote yourself (in javascript) that handles responses from the server.

    CPUWizard on the other hand, merely stated the correct - in ajax, you use javascript to talk to the server, and the server side language is purely dependant on the server/vendor configuration. It could be coldfusion, java, asp, dot net, php.

    So to answer ujjvalpandya, you can use just about ANY server side language to handle requests from the client using ajax.
    David Meikle
    Quantum Unit Solutions, LLC
    www.quantumunit.com

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured