Page 1 of 2 12 LastLast
Results 1 to 40 of 44

Thread: Difference between a web based, Client Server and a Desktop application?

  1. #1
    Expert Member
    Join Date
    Apr 2006
    Answers
    124
    What is the thin line difference between a web based, Client Server and a Desktop application?

    What are the key points we need to take care (test) while testing these applications?



    Thanks in advance,
    Alankar

    Hey Sunny I have posted ur question to the forum pls check ...

    what is the difference between client-server testing and web based testing and what are things that we need to test? plz explain in detail if possible


    Here goes the answer :

    Projects are broadly divided into two types of :
    2 tier applications
    3 tier applications


    CLIENT / SERVER TESTING
    [a] This type of testing usually done for 2 tier applications (usually developed for LAN)
    Here we will be having frontend and backend.

    The application launched on frontend will be having forms and reports which will be monitoring and manipulating data

    Eg : applications developed in VB,VC++,Core Java,C,C++,D2K,PowerBuilder etc.,
    The backend for these applications would be MS Access, SQL Server, oracle, sybase, mysql, quadbase

    The tests performed on these type of applications would be
    - user interface testing
    - manual support testing
    - Functionality testing
    - compatability testing & configuration testing
    - intersystems testing

    WEB TESTING
    [b] This is done for 3 tier applications (developed for Internet / intranet / xtranet)

    Here we will be having Browser, web server and DB server.

    The applications accessable in browser would be developed in HTML, DHTML, XML, JavaScript etc.,
    (we can monitor thru these applications)

    Applications for the webserver would be developed in Adv Java, ASP, JSP, VBScript, JavaScript, Perl, ColdFusion, PHP etc.,
    (all the manipulations are done on the web server with the help of these programs developed)

    The DBserver would be having oracle, sql server, sybase, mysql etc.,
    (all data is stored in the database available on the DB server)


    The tests performed on these type of applications would be
    - user interface testing
    - Functionality testing
    - security testing
    - browser compatability testing
    - load / stress testing
    - interoperability testing/intersystems testing
    - storage and data volume testing

    A web-application is a three tier application.
    This has a
    browser (monitors data) [monitoring is done using html, dhtml, xml, javascript]-> webserver (manipulates data) [ manipulations are done using programming languages or scripts like adv java, asp, jsp, vbscript, javascript, perl, coldfusion, php] -> database server (stores data) [data storage and retrieval is done using databases like oracle, sql server, sybase, mysql] .

    The type of tests which can be applied on this type of applications are :
    1. User interface testing for validation & userfriendliness
    2. Funtionality testing to validate behavious, i/p, error handling, o/p, manipulations, services levels, order of functionality, links, content of web page & backend coverages
    3. Security testing
    4. Browser compatability
    5. Load / stress testing
    6. Interoperability testing
    7. Storage & data volume testing

    a client-server application is a two tier application.
    This has forms & reporting at frontend (monitoring & manipulations are done) [ using vb, vc++, core java, c, c++, d2k, power builder etc.,] -> database server at the backend [data storage & retrieval) [ using ms access, sql server, oracle, sybase, mysql, quadbase etc.,]

    the tests performed on these applications would be
    1. User interface testing
    2. Manual support testing
    3. Functionality testing
    4. Compatability testing
    5. Intersystems testing

    Last edited by jainbrijesh; 05-17-2007 at 07:56 AM.

  2. #2
    Junior Member
    Join Date
    Jun 2006
    Answers
    10

    Re: differenece between client-server / web testing

    Thanks a lot and really good reply.....!


  3. #3
    Contributing Member
    Join Date
    Jul 2006
    Answers
    50

    Re: differenece between client-server / web testing

    That is really as very detailed explanation. It would really help to know briefly about client-server testing and web based testing. Thanks for such posting.


  4. #4
    Junior Member
    Join Date
    Nov 2006
    Answers
    18
    Thank you so very much Bhavani..I appreciate your help.

    Last edited by jainbrijesh; 05-17-2007 at 07:37 AM.

  5. #5
    Junior Member
    Join Date
    Nov 2006
    Answers
    12

    Re: differenece between client-server / web testing

    good bvani goood answer

    Last edited by jainbrijesh; 05-17-2007 at 07:44 AM.

  6. #6
    Junior Member
    Join Date
    Feb 2007
    Answers
    5

    project and product testing

    hi

    What is the Difference between Project and Product testing? What difference you have observed while testing the Clint/Server application and web server application.

    venkat


  7. #7
    Junior Member
    Join Date
    Feb 2007
    Answers
    3

    Re: project and product testing

    Hi Venkat,
    Project and product testing is one and the same. Project refers to the whole software and product (considering all modules of the project integrated to a single whole product in commercial terms) refers to the whole software.


  8. #8
    Expert Member
    Join Date
    Jan 2007
    Answers
    249

    Re: project and product testing

    Hi Venkat,

    Project and Product are not the same...

    Project is a one time process. ie., it has a start time and end time.
    Product is a repeated process. For eg: Microsoft windows, Siebel CRM they are all products.
    We can also say that Project is a short term process and product is a long term process...
    If you consider testing on this... the same difference applies over there...
    Project testing is a short term process and product testing is a long term process... Have u heard about 6 sigma testing process its applicable for product testing...

    Thanks
    Manoj


  9. #9
    Contributing Member
    Join Date
    Oct 2006
    Answers
    67

    Re: Difference between a web based, Client Server and a Desktop application?

    Hi,
    Web based / browser based application means, the application that run thru browser. The executable file may have web files/ html files to run the application.
    Client Server based application means, the application should have a client and server, whereas the server will listen for the new connection and the client will communicate to the server. Both the server and client application should run for this application.

    Please correct me, if i am wrong.

    **********
    with Thanks and Regards,
    [B][I][COLOR="DarkRed"]Anushya.G[/COLOR][/I][/B]:)
    **********

  10. #10
    Contributing Member
    Join Date
    Feb 2007
    Answers
    48

    Re: Difference between a web based, Client Server and a Desktop application?

    Hi,

    Let me add few more points:

    Desktop:
    01. Application runs in single memory (Front end and Back end in one place)
    02. Single user only

    Client/Server:
    01. Application runs in two or more machines
    02. Application is a menu-driven
    03. Connected mode (connection exists always until logout)
    04. Limited number of users
    05. Less number of network issues when compared to web app.

    Web:
    01. Application runs in two or more machines
    02. URL-driven
    03. Disconnected mode (state less)
    04. Unlimited number of users
    05. Many issues like hardware compatibility, browser compatibility, version compatibility, security issues, performance issues, etc

    Regards,
    Ganesh


  11. #11
    Junior Member
    Join Date
    Feb 2007
    Answers
    4

    Re: Difference between a web based, Client Server and a Desktop application?

    great answer ....ganesh....tahnks for it...


  12. #12
    Contributing Member
    Join Date
    Feb 2007
    Answers
    48

    Re: Difference between a web based, Client Server and a Desktop application?

    You are most welcome, Chand05.


  13. #13
    Junior Member
    Join Date
    Dec 2006
    Answers
    25

    Re: differenece between client-server / web testing

    Hello vani,
    It was a quite detail explaination. Thanks a lot. Still I have few confusions....
    Could you please explain me few more thing...
    In Client/server archtecture, geographically how far could be they all from each other? Limited to a building or could be a town or....? Can big companies e.g. Reliance, have client /server administrative applications for their staff e.g. payroll, as they have no. of plants located at different locations? Or they access these internal applications only using web-based intranet?


  14. #14
    Moderator
    Join Date
    Sep 2006
    Answers
    920

    Re: differenece between client-server / web testing

    see friend when we consider the security testing, both application should well secured to internal and external threat.

    As per difference in both application comes where, how to access the resources. In client server once connection is made it will be in state on connected, whereas in case of web testing http protocol is stateless, then there comes logic of cookies, which is not in client server.

    More for client server users are well known, whereas for web any user can login and access the content, he/she will use it as per his intentions.

    so, there are always issuses of security and compatibility for web application.

    Last edited by jainbrijesh; 05-17-2007 at 07:53 AM.
    Regards,
    Brijesh Jain
    ---------------------------------------------------------
    Connect with me on Skype: jainbrijesh
    Google Plus : jainbrijeshji

  15. #15
    Contributing Member
    Join Date
    Mar 2007
    Answers
    42

    Re: differenece between client-server / web testing

    Quote Originally Posted by bvani View Post
    Here goes the answer :

    Projects are broadly divided into two types of :
    2 tier applications
    3 tier applications


    CLIENT / SERVER TESTING
    [a] This type of testing usually done for 2 tier applications (usually developed for LAN)
    Here we will be having frontend and backend.

    The application launched on frontend will be having forms and reports which will be monitoring and manipulating data

    Eg : applications developed in VB,VC++,Core Java,C,C++,D2K,PowerBuilder etc.,
    The backend for these applications would be MS Access, SQL Server, oracle, sybase, mysql, quadbase

    The tests performed on these type of applications would be
    - user interface testing
    - manual support testing
    - Functionality testing
    - compatability testing & configuration testing
    - intersystems testing

    WEB TESTING
    [b] This is done for 3 tier applications (developed for Internet / intranet / xtranet)

    Here we will be having Browser, web server and DB server.

    The applications accessable in browser would be developed in HTML, DHTML, XML, JavaScript etc.,
    (we can monitor thru these applications)

    Applications for the webserver would be developed in Adv Java, ASP, JSP, VBScript, JavaScript, Perl, ColdFusion, PHP etc.,
    (all the manipulations are done on the web server with the help of these programs developed)

    The DBserver would be having oracle, sql server, sybase, mysql etc.,
    (all data is stored in the database available on the DB server)


    The tests performed on these type of applications would be
    - user interface testing
    - Functionality testing
    - security testing
    - browser compatability testing
    - load / stress testing
    - interoperability testing/intersystems testing
    - storage and data volume testing
    I would like to add another point " Load/Stress testing is not only for Web Testing we can do these on Client side (Desk top applications) as well "
    As am working on the same :-)


  16. #16
    Junior Member
    Join Date
    Jun 2007
    Answers
    4

    Client server Vs Web applications

    What is the difference between client server and web application testing


  17. #17
    Junior Member
    Join Date
    Jan 2007
    Answers
    3

    Anand asks

    What are the factors are considedred in client server testing.
    A ex. concurrency, performance are the basic tests to be done. ANy other tests to be conducted?


  18. #18
    Junior Member
    Join Date
    May 2007
    Answers
    1

    Re: project and product testing

    Project is focussed on a single customer and testing is easier and product testing is generic consumption of the users. Product testing is more difficult.


  19. #19
    Junior Member
    Join Date
    Aug 2007
    Answers
    1

    Re: Difference between a web based, Client Server and a Desktop application?

    Thanks for the information


  20. #20
    Junior Member
    Join Date
    Dec 2007
    Answers
    21

    CLIENT-SERVER/WEB Testing

    How is testing a CLIENT-SERVER application and a WEB based application diferent from one another ?


  21. #21
    Junior Member
    Join Date
    Dec 2007
    Answers
    13

    Re: CLIENT-SERVER/WEB Testing

    Please find the attached pdf.. It may be useful to understand this.

    Attached Images Attached Images

  22. #22
    Banned
    Join Date
    Oct 2007
    Answers
    173

    Re: CLIENT-SERVER/WEB Testing

    Testing client/server applications requires some additional techniques to handle the new effects introduced by the client/server architecture.

    Testing client/server systems is definitely different - but it's not "from another planet" type different.

    We're still testing software, so the picture looks like this:


    This class includes all the core testing techniques that you'll need to test any system, including systems that have a client/server design, plus the special techniques needed for client/server.

    Even if you're an experienced tester we think you'll find some interesting and useful new ideas for testing all types of systems.

    So what's different about client/server?

    Testing client/server applications is more challenging than testing traditional systems because:

    1. New kinds of things can go wrong.
    (Example: Data and messages can get lost in the network)

    2. It’s harder to set up, execute, and check the test cases.
    (Example: Testing for proper responses to timeouts)

    3. Regression testing is harder to automate.
    (Example: It’s not easy to create an automated ‘server is busy’ condition)

    4. Predicting performance and scalability become critical.
    (Example: It seems to work fine with 10 users. But what about with 1,000 users? 10,000 users?)

    Obviously some new techniques are needed to test client/server systems. Most of these apply to distributed systems of all kinds, not just the special case of a client/server architecture. So as you encounter various design permutations, “three-tiered” and so on, you’ll be able to put together an effective test plan for them.

    The key to understanding how to test these systems is to understand exactly how and why each type of potential problem arises. With this insight, the testing solution will usually be obvious. So we’ll take a look at how things work, and from that we’ll develop the new testing techniques we need.


    First, let’s define “client/server”.

    We mean it very broadly: one program requests a service from another program. Often the service is ‘providing data’, but we won’t make any assumptions about what the service is.

    Here’s an example of the new kinds of things that can go wrong:

    Suppose Program A, (a client program, because it makes a request) asks Program B, a server program, to update some fields in a database.

    Program B is on another computer.

    Program A expects Program B to report that either:

    (1) the operation was successfully completed,
    or

    (2) the operation was unsuccessful (for example, because the requested record was locked.)

    However, time passes and A hears nothing.

    What should A do?

    Depending on the speed and reliability of the network connecting A and B, there comes a time when A must conclude that something has probably gone wrong. But what?

    Some possibilities are:

    1. The request got lost and it never reached B.
    2. B received the request, but is too busy to respond yet.

    3. B got the request, but crashed before it could begin processing it.

    B may or may not have been able to store the request before it crashed.
    If B did store the request, it might try to service it upon awakening.

    4. B started to process the request, but crashed while processing it.

    5. B finished processing the request (successfully or not), but crashed before it could report the result.

    6. B reported the result, but the result got lost and was never received by A.

    There are more possibilities, but you get the idea.

    So what should A do?





    The problem: A can’t tell the difference between any of the above cases (without taking some further action).

    Dealing with this problem involves complex schemes such as the Two Phase Commit.

    When we test the client program A, we need to see whether it’s robust enough to at least do something intelligent for each of the above scenarios. Otherwise we can’t say that A “works right”.

    This example illustrates one new type of testing that we have to do for client/server systems – testing the client program for correct behavior in the face of uncertainty. To do that we're going to have to create or simulate various conditions, such as "no response from server".

    Later, we’ll look at the other new type of testing, this time on the server side: performance testing and scalability issues.

    For now let's look at some major reasons why client/server systems cause new effects:


    (1) Most of these systems are event-driven.

    Basically, this means:

    "Nothing Happens Until Something Happens"
    Most program action is triggered by an event, such as the user hitting a key, some I/O being completed, or a clock timer expiring.

    The event is intercepted by an "event handler" or "interrupt handler" piece of code, which generates an internal message (or lots of messages) about what it detected.

    This means that it's harder to set up test cases than it is, say, to define a test case for a traditional system that prints a check.

    To set up a test case you need to create events, or to simulate them. That's not always easy, especially because you have to generate these events when the system is in the proper state - but there are ways to do it.

    We have a whole lesson coming up on States and Events, and how to use them for testing.

    (2) The systems never stop.

    Many client server/systems are set up to never stop running unless something goes really wrong.

    It's true for the servers, and in many cases, it's true for the client machines.

    Traditional systems complete an action, such as printing a report, and then turn in for the night. When you restart the program it's a whole fresh new day for it.

    In systems that don't stop (on purpose), things are different.

    Errors accumulate.

    As someone put it, "Sludge builds up on the walls of the operating system."

    So things like memory leaks that are wrong, but that probably wouldn't affect most traditional systems, will eventually bring non-stop systems down if they aren't detected and corrected.

    One good way to minimize these effects is to use something called SOW and HILT variables in testing, which we'll cover in detail in a few lessons.

    (3) The system contains multiple computers and processors which can act (and fail) independently.
    Worse, they communicate with each other over less than perfectly reliable communication lines.

    These two factors are the root cause of the problem detailed above, where Program A makes a request of Program B, but gets no response.

    We'll cover several techniques for testing the robustness of programs in the kind of circumstances that client/server systems can generate.

    First, we want to look at several concepts that form the bedrock for all of testing.




    Summary:






    Client/server systems can create conditions that require new testing techniques.













    Despite the added complexity, there are methods available to deal with most of the testing problems.













    Client/server systems aren't that different from traditional systems. We're going to need to use basic testing techniques as well as more exotic ones to get the job done.


  23. #23
    Junior Member
    Join Date
    Dec 2006
    Answers
    25

    Web testing vs Client/server?

    Can anyone explain me the difference between web testing and client/server testing. I have done only web functionality testing manually. What are the problems (or may be defects)that could be faced in integration and system testing? Is client/server same as intranet testing? Thanks in advance.


  24. #24
    Junior Member
    Join Date
    Mar 2008
    Answers
    2

    Thumbs up Re: Web testing vs Client/server?

    A few of things need to keep in mind while testing c/s applications and web applications. The things are like protocols. So,
    1.Need to know what are the protocols are being used for your web app or c/s application
    2.And there we generally do testing on web URL, hyper link testing on web app
    3.Server architecture will be different for web and c/s app, so need to have look into this as well
    4.Levels of doing security , penetration testing is different on each
    5.For both performance testing again will have different views that also need to consider
    Plz let me know if have any doubt


  25. #25
    Junior Member
    Join Date
    Dec 2006
    Answers
    25

    Re: Web testing vs Client/server?

    Thanks for the reply, but I still have doubts. I was trying to understand what will be the difference in test cases? Of course, there will not be URL testing. Considering server archetecture, say for simple two tier, how will be the testcases/test plan? Or functionality cases remain same but the difference is in the response? I am really not clear...


  26. #26
    Junior Member
    Join Date
    Dec 2006
    Answers
    25

    Re: Web testing vs Client/server?

    I also read somewhere that integration testing is especially relevant to c/s or distributed systems.....why?


  27. #27
    Expert Member
    Join Date
    Oct 2007
    Answers
    375

    Re: Web testing vs Client/server?

    Hi,

    The main aspect that would differentiate C/S testing from a web-based application testing would be System Testing or End-to-End testing.

    Functional Iintegration testing would more or less remain on the same lines as it would focus on testing the intergration between individual modules either on Client Side of C/S system or a web-based application.

    But when testing a n-tier C/S system, System testing would actually encompass testing the data flow, navigation Progressing from -

    Client - AppServer - DBServer.

    Based on the tier acrhitechture, more entities would be added to the above flow.

    But generally we test web-based applications with scope limited to website alone and do not focus on testing WebServer part.

    So your System testing testcases would take into consideration testing -
    1. an Input supplied at the Client Side
    2. response from Server Side
    3. Changes effected at DB Server side


    Cheers....


  28. #28
    Junior Member
    Join Date
    Dec 2006
    Answers
    25

    Re: Web testing vs Client/server?

    Thanks...! Makes sense to me.


  29. #29

    Re: Web testing vs Client/server?

    Quote Originally Posted by spd15 View Post
    Can anyone explain me the difference between web testing and client/server testing. I have done only web functionality testing manually. What are the problems (or may be defects)that could be faced in integration and system testing? Is client/server same as intranet testing? Thanks in advance.
    Hi,

    Following will differentiate you the difference between client server and web based application.

    In client server application you have two different components to test. Application is loaded on server machine while the application exe on every client machine. You will test broadly in categories like, GUI on both sides, functionality, Load, client-server interaction, backend. This environment is mostly used in Intranet networks. You are aware of number of clients and servers and their locations in the test scenario.

    Web application is a bit different and complex to test as tester don’t have that much control over the application. Application is loaded on the server whose location may or may not be known and no exe is installed on the client machine, you have to test it on different web browsers. Web applications are supposed to be tested on different browsers and OS platforms so broadly Web application is tested mainly for browser compatibility and operating system compatibility, error handling, static pages, backend testing and load testing.

    Testing will happen based on the above edplanations.

    Regards,
    Ganesan


  30. #30
    Junior Member
    Join Date
    Nov 2007
    Answers
    2

    Re: Difference between a web based, Client Server and a Desktop application?

    Quote Originally Posted by bvani View Post
    What is the thin line difference between a web based, Client Server and a Desktop application?

    What are the key points we need to take care (test) while testing these applications?



    Thanks in advance,
    Alankar

    Hey Sunny I have posted ur question to the forum pls check ...

    what is the difference between client-server testing and web based testing and what are things that we need to test? plz explain in detail if possible


    Here goes the answer :

    Projects are broadly divided into two types of :
    2 tier applications
    3 tier applications


    CLIENT / SERVER TESTING
    [a] This type of testing usually done for 2 tier applications (usually developed for LAN)
    Here we will be having frontend and backend.

    The application launched on frontend will be having forms and reports which will be monitoring and manipulating data

    Eg : applications developed in VB,VC++,Core Java,C,C++,D2K,PowerBuilder etc.,
    The backend for these applications would be MS Access, SQL Server, oracle, sybase, mysql, quadbase

    The tests performed on these type of applications would be
    - user interface testing
    - manual support testing
    - Functionality testing
    - compatability testing & configuration testing
    - intersystems testing

    WEB TESTING
    [b] This is done for 3 tier applications (developed for Internet / intranet / xtranet)

    Here we will be having Browser, web server and DB server.

    The applications accessable in browser would be developed in HTML, DHTML, XML, JavaScript etc.,
    (we can monitor thru these applications)

    Applications for the webserver would be developed in Adv Java, ASP, JSP, VBScript, JavaScript, Perl, ColdFusion, PHP etc.,
    (all the manipulations are done on the web server with the help of these programs developed)

    The DBserver would be having oracle, sql server, sybase, mysql etc.,
    (all data is stored in the database available on the DB server)


    The tests performed on these type of applications would be
    - user interface testing
    - Functionality testing
    - security testing
    - browser compatability testing
    - load / stress testing
    - interoperability testing/intersystems testing
    - storage and data volume testing

    A web-application is a three tier application.
    This has a
    browser (monitors data) [monitoring is done using html, dhtml, xml, javascript]-> webserver (manipulates data) [ manipulations are done using programming languages or scripts like adv java, asp, jsp, vbscript, javascript, perl, coldfusion, php] -> database server (stores data) [data storage and retrieval is done using databases like oracle, sql server, sybase, mysql] .

    The type of tests which can be applied on this type of applications are :
    1. User interface testing for validation & userfriendliness
    2. Funtionality testing to validate behavious, i/p, error handling, o/p, manipulations, services levels, order of functionality, links, content of web page & backend coverages
    3. Security testing
    4. Browser compatability
    5. Load / stress testing
    6. Interoperability testing
    7. Storage & data volume testing

    a client-server application is a two tier application.
    This has forms & reporting at frontend (monitoring & manipulations are done) [ using vb, vc++, core java, c, c++, d2k, power builder etc.,] -> database server at the backend [data storage & retrieval) [ using ms access, sql server, oracle, sybase, mysql, quadbase etc.,]

    the tests performed on these applications would be
    1. User interface testing
    2. Manual support testing
    3. Functionality testing
    4. Compatability testing
    5. Intersystems testing
    That is really as very detailed explanation. Keep it up such posting.
    Thanks


  31. #31
    Junior Member
    Join Date
    Sep 2008
    Answers
    1

    Re: Difference between a web based, Client Server and a Desktop application?

    How to identify if the project is client-server or web-based ?


  32. #32
    Contributing Member
    Join Date
    Jul 2008
    Answers
    35

    Re: Difference between a web based, Client Server and a Desktop application?

    Hi,



    If you are accessing the application using browser then its a Client-Server application. (Thin Client).


    Client-Server application also can be non-browser based. (Thick Client)

    For example: SAP Client, Yahoo Messenger Client, Gtalk etc etc. (Sometimes
    thick client are hard to identify whether its on a client-server or
    standlone)


    If you still can't find out. You can use the ethereal packet sniffer to find out if the application is client-server application. It will capture the
    communication if there is any. (you can download ethereal packet sniffer for free)



    Thanks,

    J7


  33. #33
    Junior Member
    Join Date
    Oct 2008
    Answers
    1

    Re: Difference between a web based, Client Server and a Desktop application?

    Explained the basic concept very nicely


  34. #34
    Junior Member
    Join Date
    Mar 2009
    Answers
    1

    Re: Difference between a web based, Client Server and a Desktop application?

    Web based application
    1) It communicates to the entire world. 2) Clients are unlimited 3) Server doesn’t have any information about the client.
    Client server application
    1) It can not communicate to entire world. 2) Clients are limited. 3) Server knows the configuration of each and every client.


  35. #35
    Junior Member
    Join Date
    Jul 2009
    Answers
    1

    Re: Difference between a web based, Client Server and a Desktop application?

    Very simple web based applications are the examples of 3 tier client sever apllications are 2 tier and window applications are 1 tier archictechture


  36. #36
    Junior Member
    Join Date
    Sep 2009
    Answers
    1

    Re: Difference between a web based, Client Server and a Desktop application?

    thank you for the answer !!


  37. #37
    Junior Member
    Join Date
    Oct 2007
    Answers
    1

    Smile Re: Difference between a web based, Client Server and a Desktop application?

    In case of Desktop application, the application itself maintains a state [session] for the user. While in case of web applicatioin it is stateless[http], so everytime the user needs authentication.


  38. #38
    Junior Member
    Join Date
    Jan 2010
    Answers
    1

    Re: Difference between a web based, Client Server and a Desktop application?

    Very Nice Explanation, Thank You very much


  39. #39
    Junior Member
    Join Date
    Dec 2006
    Answers
    1

    Re: Difference between a web based, Client Server and a Desktop application?

    Client/Server Appn:
    Server is one place and we are accessing the server remotely.
    Less issues.
    Web based Appn:
    Browser needed and its 3 tier appn.more issues with the web appn.


  40. #40
    Junior Member
    Join Date
    May 2011
    Answers
    1

    Re: Difference between a web based, Client Server and a Desktop application?

    Hi..i need the test case for web application examples of...

    Last edited by admin; 12-13-2012 at 08:05 AM.

Page 1 of 2 12 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
About us
Applying for a job can be a stressful and frustrating experience, especially for someone who has never done it before. Considering that you are competing for the position with a at least a dozen other applicants, it is imperative that you thoroughly prepare for the job interview, in order to stand a good chance of getting hired. That's where GeekInterview can help.
Interact