Benefits of browser-based interface:
- Easier to manage, : no installation required on user machines, upgrades need only be performed on server side and are immediately available to all users. Data backup can be performed on a single machine as data won't be spread out across multiple clients.
- Application can be accessed from any machine with a browser.
- Can easily support multiple platforms consistently.
- Memory and CPU requirements may be considerably less on the client side as intensive operations can be performed on the server.
- Increased security, : data is stored on a single server instead of multiple client machines and access can be better controlled.
- Many other benefits of a centralized environment including logging, data entered from multiple sources can immediately be available from other clients, etc.
- In my experience, it is often easier to debug and faster to develop web-based solutions.
Benefits of GUI-based interface:
- May be easier to design a more responsive, fluid interface.
- Can take advantage of OS-specific functionality that may not be available via a browser.
- Doesn't necessarily require network access.
- Don't need to worry about browser compatibility issues.
- No single point of failure if server goes down or becomes unavailable.
