473,668 Members | 2,611 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Smart Client

Avi
Hi there,

Sorry, newbie, learning my way around ...

I understand that ASP.Net is built on the assumption that the client
does not run the .net framework, and that when you can assume that the
client does run the framework, you should go the smart client way.

I did a fast "is the buzzword alive" check: The Microsoft smart client
development center is dead, and on Amazon I found just one book on that
subject, and that book is centered on VS 2003.

What gives? What's the new New?

Jun 18 '06 #1
7 1699
V
Hi,

Both Smart Clients and Web apps have their own space depending on your
requirements.

Of course the new "New" is Windows Vista and application running on
Xaml.

But that is some ways away as of now.

- Vaibhav

Avi wrote:
Hi there,

Sorry, newbie, learning my way around ...

I understand that ASP.Net is built on the assumption that the client
does not run the .net framework, and that when you can assume that the
client does run the framework, you should go the smart client way.

I did a fast "is the buzzword alive" check: The Microsoft smart client
development center is dead, and on Amazon I found just one book on that
subject, and that book is centered on VS 2003.

What gives? What's the new New?


Jun 18 '06 #2
Avi
V thanks for answering!

Please clarify: Vista ans Xaml - are they a new "architectu re" (as
opposed to specifying the user interface as XML which why should I care
about this, probably handled with tools anyhow)?

ASP: Work on the server, pure XHTML on the client
Smart Client: Work on the client using .Net, interact with the server
(using web services?)
Vista + Xaml???

If it's a new architecture, it might be worth getting into it if it's
stable.

Jun 19 '06 #3
V
Windows Vista is Microsoft's latest Operating System.

For development of applications on Vista, although you can use
WinForms, the new technology is Xaml. It is not so much an
architecture, as it is a development tool, i feel.

Designer support for creating Xaml apps is also some time away (it will
be integrated in the next version of Visual Studio). However, at this
time you can do your Xaml apps by hand.

Why you should care about Xaml is that on the Vista platform, the same
code (i.e. Xaml code) can be used to deploy your application as either
a webapp or a windows app.

And of course, Xaml (or rather Windows Presentation Framework) offers
you the ability to have a very much richer UI API, which in turn means
better looking apps.

Going back to the other two:

ASP.Net - yes, purely server with Xhtml on the client

Smart Client - yes, it would mean logic is on the client, and
communication with server can be through web services, remoting, or a
custom protocol.

A quick note, presence of .net 1.1 framework on client machines is not
a big deal. It is not really a barrier.

Also, once again, it really depends on your application scenario
whether you would want to chose a Smart Client vs a Web Application.
For example, if you wanted to provide an offline mode to your
application, then it may be better to go for a Smart Client...

- V

Avi wrote:
V thanks for answering!

Please clarify: Vista ans Xaml - are they a new "architectu re" (as
opposed to specifying the user interface as XML which why should I care
about this, probably handled with tools anyhow)?

ASP: Work on the server, pure XHTML on the client
Smart Client: Work on the client using .Net, interact with the server
(using web services?)
Vista + Xaml???

If it's a new architecture, it might be worth getting into it if it's
stable.


Jun 19 '06 #4
Avi
I'd like like part of my application to be a web site, and part of it -
additional functionality - to work on the client and integrate
seamlessly with the web site.

When you develop a vista application, is ASP.Net 2.0 relevant? How can
an application run on the web the same as it runs on the client (e.g.
consider the state and connected/disconnected mode issues)? How does
this correlate to Atlas (which I've heard claims the same "develop for
both the server and client").

Is there some "new architecture overview" out there that explains all
this stuff?

Jun 20 '06 #5
V
Although, I would like to answer all your questions... but I am afraid
I don't know a lot of these answers myself.

You can read up on www.msdn.com for a lot of these technologies.

Asp.Net 2.0 is independent of Vista.

Sorry, for such short answers.

- Vaibhav
Avi wrote:
I'd like like part of my application to be a web site, and part of it -
additional functionality - to work on the client and integrate
seamlessly with the web site.

When you develop a vista application, is ASP.Net 2.0 relevant? How can
an application run on the web the same as it runs on the client (e.g.
consider the state and connected/disconnected mode issues)? How does
this correlate to Atlas (which I've heard claims the same "develop for
both the server and client").

Is there some "new architecture overview" out there that explains all
this stuff?


Jun 20 '06 #6
Vaibhav,

Thank you for your answers, you have help me clarify my question :-)
I'm posting a new thread.

Avi

Jun 21 '06 #7
V
Avi,

I have responded on your other thread as well :D.

- Vaibhav
bm*****@gmail.c om wrote:
Vaibhav,

Thank you for your answers, you have help me clarify my question :-)
I'm posting a new thread.

Avi


Jun 23 '06 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

27
3393
by: Susan Baker | last post by:
Hi, I'm just reading about smart pointers.. I have some existing C code that I would like to provide wrapper classes for. Specifically, I would like to provide wrappers for two stucts defined as ff: typedef struct { float *data ; int count ;
6
3091
by: Shankar | last post by:
Hello, We have a smart pointer class which provides the dereference operator -> to access the underlying object pointer. Now, we have a new requirement where a different type of object (e.g from memory, disk, network etc) needs to be returned by the smart pointer on access. I was thinking of using the function call operator () since that can take arguments e.g :-
3
2655
by: Marc Gravell | last post by:
Kind of an open question on best-practice for smart-client design. I'd really appreciate anyones views (preferably with reasoning, but I'll take what I get...). Or if anybody has any useful links on the subject? (and yes, I have already googled it at length, but still no strong decision) ============= After a long stint of pure-desktop / pure-server applications, I'm currently working on a number of smart-client projects in C# using...
2
2378
by: Jeff | last post by:
Please note this is NOT a rant or complaint! And yes, I'm over-simplifying, but intentionally. Here goes... With ASP.NET Web applications I like that I can access data from anywhere without installing anything on the client (but I hate HTML and markup in general and it's limitations, the request/response model, state management, etc). AFAIK, Smart apps or smart clients or whatever we call them are simply variations of Web applications...
1
2427
by: HM | last post by:
Hi, I have an existing web application in ASP/VB which uses OCX controls. I want to replace them with a Smart client solution, but I do not want to change the whole application at the first go. First I want to change my Local OCX control and replace it with a smart client. Is there any way the smart client can be called form a web application? Also please suggest me a good site where I can see some examples and build a smart client...
3
326
by: jack | last post by:
HI all im have heard little of smart client and wanted to implement it .. is there any one who could help me with some example or some explanation of smart client please . Thanks for replying me.
10
2052
by: Pieter Coucke | last post by:
Hi, What's in general the most performant for a VB.NET Windows Forms (2.0) application: - a fat client (everything one the client, the server hosts only the database) - a smart client (an application on the client, that communicates with an application on the server via Webservices/Remoting/..) I would somehow think a smart client, but would just like to have the
1
3515
by: Rasheed | last post by:
We are building a smart client application (.NET 2.0) which uses Web Services to access the business objects. Services: The Web Services have been secured by brokered authentication using X509 certificate along with message level security. (Right now the web services are consumed only by the smart client application in intranet environment. However, few services would be exposed as enterprise services in future. Such services can be...
4
3201
by: Ronald S. Cook | last post by:
What is Smart Client Software Factory and how does it related to/fit in with Composite UI Application Block (CAB)? Thanks, Ron
0
1473
by: Ekart Laszlo | last post by:
Hi, there We have currently a Java Applet based solution that we would like to rewrite to a .NET solution. The scenario is the following: 1. Starter Client application opens up a web browser window and makes a HTTP request with a big raw postdata to a remote server. 2. In this web browser window a Java Applet based application shall start and he will retrieve the posted data and he will work with it.
0
8381
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
8586
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8658
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6209
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5681
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4205
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4380
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2792
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1786
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.