Discussion:
System.Runtime.Remoting.Channels.Tcp namespace gone missing
(too old to reply)
Andrew Jarvis
2009-02-16 16:58:59 UTC
Permalink
Since development began several months ago, my app has created a TcpChannel
object for remoting.
Suddenly the word 'Tcp' in the line 'using
System.Runtime.Remoting.Channels.Tcp;' has a squiggly red line under it -
the namespace has gone.

I still have a reference to System.Runtime.Remoting - I removed it and added
it in again just to make sure.

Where can my Tcp have gone?
Tommaso Caldarola
2009-02-16 17:11:57 UTC
Permalink
Post by Andrew Jarvis
Since development began several months ago, my app has created a TcpChannel
object for remoting.
Suddenly the word 'Tcp' in the line 'using
System.Runtime.Remoting.Channels.Tcp;' has a squiggly red line under it -
the namespace has gone.
I still have a reference to System.Runtime.Remoting - I removed it and added
it in again just to make sure.
Where can my Tcp have gone?
using System.Runtime.Remoting.Channels;
using System.Runtime.Remoting.Channels.Tcp;

tommaso
Andrew Jarvis
2009-02-17 08:59:35 UTC
Permalink
Post by Tommaso Caldarola
Post by Andrew Jarvis
Since development began several months ago, my app has created a
TcpChannel object for remoting.
Suddenly the word 'Tcp' in the line 'using
System.Runtime.Remoting.Channels.Tcp;' has a squiggly red line under it -
the namespace has gone.
I still have a reference to System.Runtime.Remoting - I removed it and
added it in again just to make sure.
Where can my Tcp have gone?
using System.Runtime.Remoting.Channels;
using System.Runtime.Remoting.Channels.Tcp;
tommaso
Tommaso,

I already have those two lines in my code.
My code has been working for many months but just yesterday the Tcp
namespace disappeared and I still have not managed to get it back.
Tommaso Caldarola
2009-02-17 09:39:17 UTC
Permalink
Post by Andrew Jarvis
Post by Tommaso Caldarola
Post by Andrew Jarvis
Since development began several months ago, my app has created a
TcpChannel object for remoting.
Suddenly the word 'Tcp' in the line 'using
System.Runtime.Remoting.Channels.Tcp;' has a squiggly red line under it -
the namespace has gone.
I still have a reference to System.Runtime.Remoting - I removed it and
added it in again just to make sure.
Where can my Tcp have gone?
using System.Runtime.Remoting.Channels;
using System.Runtime.Remoting.Channels.Tcp;
tommaso
Tommaso,
I already have those two lines in my code.
My code has been working for many months but just yesterday the Tcp
namespace disappeared and I still have not managed to get it back.
Missing reference?
Andrew Jarvis
2009-02-17 14:08:42 UTC
Permalink
Post by Tommaso Caldarola
Post by Andrew Jarvis
Post by Tommaso Caldarola
Post by Andrew Jarvis
Since development began several months ago, my app has created a
TcpChannel object for remoting.
Suddenly the word 'Tcp' in the line 'using
System.Runtime.Remoting.Channels.Tcp;' has a squiggly red line under
it - the namespace has gone.
I still have a reference to System.Runtime.Remoting - I removed it and
added it in again just to make sure.
Where can my Tcp have gone?
using System.Runtime.Remoting.Channels;
using System.Runtime.Remoting.Channels.Tcp;
tommaso
Tommaso,
I already have those two lines in my code.
My code has been working for many months but just yesterday the Tcp
namespace disappeared and I still have not managed to get it back.
Missing reference?
In my original message I wrote:

"I still have a reference to System.Runtime.Remoting - I removed it and
added it in again just to make sure."

=========

I recently installed VS9 SP1 (which installs .Net 3.5) so I removed it in
case that was the cause of the problem.

I then found that I could not even create a new project in VS because it
complained that .Net 3.5 components were missing.

In frustration I removed every installation and upgrade of .Net, .Net SDKs
and VS9 then reinstalled VS9 and VS9 SP1.

Four hours later, I am back up and running.

Loading...