473,797 Members | 2,926 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Is .NET going to be dropped by Microsoft?

I keep hearing persistant rumors (along with my own experience) that .NET is
going to be abandon by Microsoft due to performance & security issues? I
realize no one from Microsoft is likely to confirm this publically, but if
anyone that does have insider knowledge, could you provide some feedback
(private or public). My company is on the verge of migrating to .NET, but
we've ran into several performance issues (mostly on the GUI side) and some
big security issues and we're not sure they can be resolved without a
fundamental "shift" from Microsoft. I've very hesitant to migrate all our
code over until I can get a firm grasp on where .NET is going and for how
long and what issues are going to be resolved.

Thank you.

Rob.
Nov 21 '05 #1
41 1955
No, it is not being dropped. Where did you hear such a thing?

Performance issues will be in the way you implement .NET, not in the
technology itself.

Same with security.

Feel free to post your specific problems here - or write to me directly if
you like.
--
Mike

Mike McIntyre
Visual Basic MVP
www.getdotnetcode.com

"Rob R. Ainscough" <ro*****@pacbel l.net> wrote in message
news:Og******** ******@TK2MSFTN GP11.phx.gbl...
I keep hearing persistant rumors (along with my own experience) that .NET
is going to be abandon by Microsoft due to performance & security issues?
I realize no one from Microsoft is likely to confirm this publically, but
if anyone that does have insider knowledge, could you provide some feedback
(private or public). My company is on the verge of migrating to .NET, but
we've ran into several performance issues (mostly on the GUI side) and some
big security issues and we're not sure they can be resolved without a
fundamental "shift" from Microsoft. I've very hesitant to migrate all our
code over until I can get a firm grasp on where .NET is going and for how
long and what issues are going to be resolved.

Thank you.

Rob.

Nov 21 '05 #2
Performance is more GUI specific, slow redraws/repaints of forms/controls as
compared to VB6 or VC or C++. Data gathering is pretty quick (from SQL
server or Access or whatever else), but control population is VERY slow.

Security in regards to the fundamental implementation of .NET -- since it is
one level removed interpreted (albeit, highly optimized interpretation) it
is pretty easy to swap in "rogue" code.

Another issue is the missing features in the current .NET release that make
it hard for developers to remain in the "managed" world of .NET.

My sources are from some relatively large organizations such as Bank of the
West, Bank of America, SBC, ATI, and a few others -- from senior management
and developers influential in the decision process.

Can YOU be more specific in addressing where Microsoft plan to take .NET in
the next 5 years?

Thanks, Rob.

"Mike McIntyre" <mi****@dotnets howandtell.com> wrote in message
news:O9******** ******@TK2MSFTN GP15.phx.gbl...
No, it is not being dropped. Where did you hear such a thing?

Performance issues will be in the way you implement .NET, not in the
technology itself.

Same with security.

Feel free to post your specific problems here - or write to me directly if
you like.
--
Mike

Mike McIntyre
Visual Basic MVP
www.getdotnetcode.com

"Rob R. Ainscough" <ro*****@pacbel l.net> wrote in message
news:Og******** ******@TK2MSFTN GP11.phx.gbl...
I keep hearing persistant rumors (along with my own experience) that .NET
is going to be abandon by Microsoft due to performance & security issues?
I realize no one from Microsoft is likely to confirm this publically, but
if anyone that does have insider knowledge, could you provide some
feedback (private or public). My company is on the verge of migrating to
.NET, but we've ran into several performance issues (mostly on the GUI
side) and some big security issues and we're not sure they can be resolved
without a fundamental "shift" from Microsoft. I've very hesitant to
migrate all our code over until I can get a firm grasp on where .NET is
going and for how long and what issues are going to be resolved.

Thank you.

Rob.


Nov 21 '05 #3
On Wed, 10 Nov 2004 10:33:03 -0800, "Rob R. Ainscough"
<ro*****@pacbel l.net> wrote:
I keep hearing persistant rumors (along with my own experience) that .NET is
going to be abandon by Microsoft due to performance & security issues? I
realize no one from Microsoft is likely to confirm this publically, but if
anyone that does have insider knowledge, could you provide some feedback
(private or public). My company is on the verge of migrating to .NET, but
we've ran into several performance issues (mostly on the GUI side) and some
big security issues and we're not sure they can be resolved without a
fundamental "shift" from Microsoft. I've very hesitant to migrate all our
code over until I can get a firm grasp on where .NET is going and for how
long and what issues are going to be resolved.

Thank you.

Rob.


If Microsoft was to change anything with .Net it would be with the
compiler not the language or the new programming Studio design,
because it feels much better to code with, and it encourages
programmers to code much better. For example Option Explicit is ON by
default now.

So if MS was to say "you know the whole .Net thing where doing, well
we are scrapping it" they would probably just release an update for
the compiler so it's not like you would loose any of the .Net skills
you had developed.

I don't know how any of that would effect what you are working on, but
you could always try the beta of 2005 to see if .Net 2.0 makes a
difference.
Nov 21 '05 #4
Rob,

"Rob R. Ainscough" <ro*****@pacbel l.net> schrieb:
Performance is more GUI specific, slow redraws/repaints
of forms/controls as compared to VB6 or VC or C++. Data
gathering is pretty quick (from SQL server or Access or whatever
else), but control population is VERY slow.
There are some tricks to make UIs faster, for example, by setting some
controls' 'FlatStyle' property to 'System', avoid using lots of fonts and
background images. And, keeping the number of controls "small", which means
< 50 controls per form.
Security in regards to the fundamental implementation of .NET
-- since it is one level removed interpreted (albeit, highly optimized
interpretation) it is pretty easy to swap in "rogue" code.
Why? You can use strong names to guarantee the referential integrity of an
assembly. Sure, everybody can strong-name his/her assemblies.
'StrongNameIden tityPermission' will be extended in .NET 2.0 to allow calling
assemblies by more than one strong-named assembly. In addition to that,
there are many CAS (Code Access Security) features that can help to reduce
vulnerabilities .
Another issue is the missing features in the current .NET
release that make it hard for developers to remain in the
"managed" world of .NET.


Unmanaged code is not bad per-se. All of us used unmanaged applications for
years, and many "sensitive" applications were written using unmanaged code.
There were many security features available, and .NET provides its own
security features.

--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>

Nov 21 '05 #5
On Wed, 10 Nov 2004 10:33:03 -0800, "Rob R. Ainscough"
<ro*****@pacbel l.net> wrote:
I keep hearing persistant rumors (along with my own experience) that .NET is
going to be abandon by Microsoft due to performance & security issues? I
realize no one from Microsoft is likely to confirm this publically, but if
anyone that does have insider knowledge, could you provide some feedback
(private or public). My company is on the verge of migrating to .NET, but
we've ran into several performance issues (mostly on the GUI side) and some
big security issues and we're not sure they can be resolved without a
fundamental "shift" from Microsoft. I've very hesitant to migrate all our
code over until I can get a firm grasp on where .NET is going and for how
long and what issues are going to be resolved.

Thank you.

Rob.


If Microsoft was to change anything with .Net it would be with the
compiler not the language or the new programming Studio design,
because it feels much better to code with, and it encourages
programmers to code much better. For example Option Explicit is ON by
default now.

So if MS was to say "you know the whole .Net thing where doing, well
we are scrapping it" they would probably just release an update for
the compiler so it's not like you would loose any of the .Net skills
you had developed.

I don't know how any of that would effect what you are working on, but
you could always try the beta of 2005 to see if .Net 2.0 makes a
difference.
Nov 21 '05 #6
Rob,

"Rob R. Ainscough" <ro*****@pacbel l.net> schrieb:
Performance is more GUI specific, slow redraws/repaints
of forms/controls as compared to VB6 or VC or C++. Data
gathering is pretty quick (from SQL server or Access or whatever
else), but control population is VERY slow.
There are some tricks to make UIs faster, for example, by setting some
controls' 'FlatStyle' property to 'System', avoid using lots of fonts and
background images. And, keeping the number of controls "small", which means
< 50 controls per form.
Security in regards to the fundamental implementation of .NET
-- since it is one level removed interpreted (albeit, highly optimized
interpretation) it is pretty easy to swap in "rogue" code.
Why? You can use strong names to guarantee the referential integrity of an
assembly. Sure, everybody can strong-name his/her assemblies.
'StrongNameIden tityPermission' will be extended in .NET 2.0 to allow calling
assemblies by more than one strong-named assembly. In addition to that,
there are many CAS (Code Access Security) features that can help to reduce
vulnerabilities .
Another issue is the missing features in the current .NET
release that make it hard for developers to remain in the
"managed" world of .NET.


Unmanaged code is not bad per-se. All of us used unmanaged applications for
years, and many "sensitive" applications were written using unmanaged code.
There were many security features available, and .NET provides its own
security features.

--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>

Nov 21 '05 #7
Are you sure your not trolling Rob?

Richard
Nov 21 '05 #8
Are you sure your not trolling Rob?

Richard
Nov 21 '05 #9
I don't have time to troll, I need to make an important decision.
Microsoft's shift in "supported" directions have left open questions and
fear in the past -- there are some pretty significant issues with .NET and
how these issues are address now and in the future is critical to my
decision.

And I certainly don't include fa**@address.co m as you do, so please none of
this "integrity" crap, I don't have time for it.

"Richard Myers" <fa**@address.c om> wrote in message
news:uw******** ******@TK2MSFTN GP15.phx.gbl...
Are you sure your not trolling Rob?

Richard

Nov 21 '05 #10

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

Similar topics

1
1897
by: D A H | last post by:
I have gotten the same exception in multiple projects. I have solved the underlying problem. My question is if anyone knew of a setting that would cause this exception to be thrown. A codeveloper on the same project can get a copy of the project from VSS and does not get this exception, ever. I do. We both have the code that causes this exception to be thrown. We do NOT checkin our
1
3016
by: MaxBlack | last post by:
This is not working and for my life I can't figure out why: Private Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click Dim firstLetter As String firstLetter = empIDtextBox.Text.Remove(1, 3)
3
1751
by: beenapatni | last post by:
Hi We need to identify difference between a dropped call and normally ended calls in windows mobile phone Dropped calls: Call diconnected due to no n/w signal, low battery level...etc Normally disconnected calls: Call ended by either user Is there a way we can identify the above scenario. Is there any API we can use to identify the same
0
3535
by: bbkm | last post by:
when i am doing dropped table reccovery step1- the tablespace should be in recovery mode is it rite step2 - the database should be in archivelog mode is it rite step-3 - identify the dropped table and get it's DDL and note the dropped table id. step4 - now restore the appropriate tablespace in the which the table is dropped step5 - rollforward the database step6 - now create the dropped table by using the ddl generated at LIST HISTORY...
4
3450
by: DaveL | last post by:
hi, we have a database in simple recovery mode if a table were dropped Is there a way to recover the dropped table thanks DaveL
0
9685
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9536
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
10245
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
10021
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...
0
9063
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
7559
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...
1
4131
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
3748
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2933
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.