473,803 Members | 2,949 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

dumb question?

PJ6
Are there any plans for broswers to support a real language client-side, and
not just "cripple script"? Will we ever have the luxury of programming using
Framework classes client-side some day?

Paul
Nov 19 '05 #1
13 1147
Sure... it's called WinForms.
Seriously though, the security risk is so great that most would never allow
it to be installed.

--
Curt Christianson
site: http://www.darkfalz.com
blog: http://blog.darkfalz.com

"PJ6" wrote:
Are there any plans for broswers to support a real language client-side, and
not just "cripple script"? Will we ever have the luxury of programming using
Framework classes client-side some day?

Paul

Nov 19 '05 #2
The reason, for client side langauges having restricted features, is
security concerns. Seeing the frequency viruses/hacks are being
announced, I belive it will only become even more restricted in the
future :)

Nov 19 '05 #3

"PJ6" <no****@nowhere .net> wrote in message
news:u2******** ******@TK2MSFTN GP10.phx.gbl...
Are there any plans for broswers to support a real language client-side,
and not just "cripple script"? Will we ever have the luxury of programming
using Framework classes client-side some day?


I think your best bet for a "real" programming language that runs on the
client side is Java (note that this is distinct from "JavaScript ").

- Oliver
Nov 19 '05 #4
> Are there any plans for broswers to support a real language client-side,
and
not just "cripple script"? Will we ever have the luxury of programming using Framework classes client-side some day?


If you're using a real language and wanting to make applications, then why
bother with the browser in the first place?

-Darrel
Nov 19 '05 #5

"PJ6" <no****@nowhere .net> wrote in message
news:u2******** ******@TK2MSFTN GP10.phx.gbl...
Are there any plans for broswers to support a real language client-side,
and not just "cripple script"? Will we ever have the luxury of programming
using Framework classes client-side some day?


I'd be happy with cripple script and a consistent API.

While IE may have almost the entire markets share, it would still be nice to
have your client script run on every browser.

Nov 19 '05 #6
PJ6
"darrel" <no*****@hotmai l.com> wrote in message
news:O9******** ******@TK2MSFTN GP15.phx.gbl...
If you're using a real language and wanting to make applications, then why
bother with the browser in the first place?

-Darrel


You're preaching to the choir, man. But everyone's all web this, web that. I
avoided it as long as I could.

Paul
Nov 19 '05 #7
PJ6
I just don't see a necessary correlation between the power of a language and
it's ability to do damage - proper design should separate object
creation/execution and whatever else the language allows at runtime from
direct system access. Java has this whole "virtual machine" thing (which I
admit I know very little about), it would seem to me not an overly difficult
(if labor-intensive) concept to apply security restrictions to the Framework
as a whole, to allow WinForms-style functionality over the web. The
Framework has been compiled for Linux, I think it would be an excellent
candidate for a new web UI standard. Screw this clunky HTML/Java crap. To me
it all looks like just a hack to get around a system that was never intended
to do what it does now.

If you're next response is "you don't know what you're talking about", then
fine; I admit I'm a newbie. This is just how I see the state of web
application development at the moment. I come from years of real application
development, its ugliness frustrates and surprises me.

Paul

<sr**********@g mail.com> wrote in message
news:11******** *************@g 49g2000cwa.goog legroups.com...
The reason, for client side langauges having restricted features, is
security concerns. Seeing the frequency viruses/hacks are being
announced, I belive it will only become even more restricted in the
future :)

Nov 19 '05 #8
"PJ6" <no****@nowhere .net> wrote in message
news:em******** ******@TK2MSFTN GP14.phx.gbl...
[snip]
Framework has been compiled for Linux, I think it would be an excellent
candidate for a new web UI standard. Screw this clunky HTML/Java crap. To
me it all looks like just a hack to get around a system that was never
intended to do what it does now.

[snip]

Theres a paradigm shift moving from Windows apps to web-apps. You lose the
ability to quickly respond to user actions. IMHO; trying to compensate for
that with applets or smartclient is not the way to go. Don't get me wrong,
applets & smartclients have thier place, but I don't think compensating for
the limitations of HTML qualifies.

Why do you want a client heavy UI functionality? Why don't you do all the
real application work on the server & deliver standard HTML to the client,
with as little client side script as possible?

There are good ways to handle this; ASP.NET and Java are both great. If you
prefer Java, look into MVC architecture and STRUTS.
http://struts.apache.org/

If you REALLY WANT an app with immediate response functionality similar to a
windows application and pages refresh; it is possible .. I've done it.
Keep in mind that the more browsers & browser versions you try to support,
the more problems you will have. But if you insist on doing it that way,
build your application in client side script and have a 0x0 iframe which
submits and recieves data.

That's my 2 cents FWIW, I hope it helps.

--
Regards,
John MacIntyre
http://www.johnmacintyre.ca
Specializing in; Database, Web-Applications, and Windows Software

Nov 19 '05 #9
woops .. typo

.....
If you REALLY WANT an app with immediate response functionality similar to
a windows application and pages refresh; it is possible .. I've done it.

...

that line should be "and NO page refresh"

Nov 19 '05 #10

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

Similar topics

16
2518
by: squash | last post by:
a dumb question i had on my mind: Say you have a dynamically created web page . Isn't it more secure to write it in php since a visitor will not be able to tell it is dynamically created? But if you write it in perl, you have to put it in your cgi-bin which automatically means it's a dynamically generated page? security by obscurity . Is this true or hardly means anything? thx!
15
2689
by: Good Man | last post by:
Hey there I have a dumb question.... Let's say i have a database full of 4000 people.... I select everything from the database by: $result = mysql_query("SELECT * FROM People");
3
1477
by: ed | last post by:
I've just started working with .Net, so appologize for what is probably a really dumb question. Did Windows XP originally come with the .Net framework installed, and if so which version? thanks in advance, ed
2
2283
by: InvisibleMan | last post by:
Hi, I feel a little dumb for asking this (considering im writing TSQL) but there doesn't seem to be any definitive answers on the search engines... Okay I understand that if you open the ADO connection that you close it with: adoCon.Close Set adoCon = Nothing
2
1306
by: TGF | last post by:
How do you copy a String type into a native char buffer? Dumb question, but not sure how to do it :( TGF
5
1550
by: Need Help | last post by:
This might be an extremely dumb question; I'm new to Visual C++, and am trying to use the simple Spooler API, OpenPrinter, but when I try to compile my source file, it says OpenPrinter is an undeclared identifier. Here's how I'm trying to use it HANDLE newPrinter = NULL BOOL op = OpenPrinter(ps09, &newPrinter, NULL) Now, as far as I'm concerned there should be nothing wrong with that code, but does anyone else know what might be the...
10
2322
by: Edward | last post by:
I've just taken over maintaining a system from a colleague who has left. I find the following line in her code: Dim params(2) As SqlClient.SqlParameter params(0) = New SqlClient.SqlParameter("@UserName", pvstrUsername) params(1) = New SqlClient.SqlParameter("@Password", pvstrPassword) params(2) = New SqlClient.SqlParameter("@MachineName", Environment.MachineName())
4
1326
by: Stelrad Doulton | last post by:
Hi, Apologies if this isn't the correct forum. I am writing a communication solution (actually on the Compact Framework) based on HttpWebRequests hooking up with custom handlers on the server side. My dumb question is this: how reliable is http? For example if I use PUT and call GetResponse on my request object with no problem, can I guarantee that every byte of my file will always arrive at the web server?
2
2228
by: Bill Nguyen | last post by:
I would like to add a new VB.NET project using the same folder being used by another project so that I can share several forms already creaded by the other project. However, .NET created a new folder using whatever project name I supplied. Is there a work around for this? Thanks Bill
6
282
by: Robert Dufour | last post by:
What is the meaning of the word marshal and unmarshal in plain english as applied to an exe file? Does it mean the application has started and ended? Thanks for any help, Happy new year, Bob
0
9566
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,...
0
10555
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10300
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
9127
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7607
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
5503
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...
1
4277
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
3802
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2974
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.