|
Hi,
I was wondering if it is possible to program a low level network application in .net. I mean I want to choose the network interface that handles the packets sent from my app, I want to get every IP packet that passes thru my computer, and so on...
Can anyone give me any pointers?
Thanks a lot,
Andrei Matei
andreimatei@home.ro
|
|
|
|
|
I'm pretty sure there was an article posted on CodeProject doing something similar to what you want. Bascially the code resembled a packet sniffer applied on a particular interface. The article is here http://www.codeproject.com/csharp/networkmonitor.asp?target=network%7Cpacket[^]
There are actually a few articles here on CodeProject. Do an article search on network packet.
Hope this helps.
Andy
He who knows and knows that he knows, is wise; follow him
He who knows and knows not that he knows, is asleep; wake him
He who knows not, and knows that he knows not, is simple; teach him
He whoe knows not and knows not that he knows not, is a fool; kick him
|
|
|
|
|
Hi all,
I create a worker thread to do some stuff, when that thread completes I would like to make a call from that thread to main thread to tell it to take a new course of action.
In a windows forms environment you can call:
this.Invoke
but what if your developing an assembly or console app , is there an equivalent. I've tried using delegates etc but when you look at the
Threading.Thread.CurrentThread.Name property your still 'in' the worker thread.
Anyone know about this.
TIA.
|
|
|
|
|
Are you trying to make sure that after something happens in your worker thread that a method is executed within the context of the main thread, or are you just trying to signal the main thread from your worker thread.
Probably the easiest way would be to pass a waithandle to your worker thread and get your main thread to wait on the handle (or check it regularly) for the handle to be signaled and then go from there. But if thats the case then you might as well recode the worker thread as an asynchronous method call.
The above may not be to your liking Looking at the Mono project, the way they have implemented System.Windows.Forms.Control.Invoke() is place the delegate passed ot Invoke() in a queue. This queue is then checked in the windows message loop (which executes in the same thread as the control was created in), and any delegates in the queue are then called.
So you could create a synchronized queue, get your worker thread to place a delegate in this queue, and then either get your main thread to periodically check this queue or signal a waithandle, and then get the main thread to execute the delegates in the queue.
|
|
|
|
|
Hi Andy,
I was looking to actually call a method on the main thread in the same way as Control.Invoke() 'marshals' the call to the main thread in a windows form.
Your suggestions of passing a waithandle to the worker thread or using an asynchronous method call sound good and I will certainly look into them ( especially the async call, that hadn't occured to me at all )
Your description of how Mono works is very interesting and I imagine that microsoft do it in a similar way or at least thats how it appears to work. But it does seem to be a bit tricky for my feable brain and right now I need a quick and dirty solution.
Thank you very much for help, it was very useful to me.
|
|
|
|
|
I am having the same problem.
I am calling the FileWatcher component in the .NET framework from a server (middleware) class. If I place this on a form, I'm set, I just hand the FileWatcher class a reference to my form. The file watcher class then calls the form's Invoke method.
However I don't have a form, so am forced to implement the ISynchronizeInvoke interface myself.
Your suggestion to go look at the mono project seems like a good start. Can you tell me where to find this project?
My solution so far is to implement ISnychronizeInvoke and to create an delegate instance that will be executed when the callback is executed.
1. I register a call back.
2. The call back is executed. The sender is the operating system.
3. I then execute a delegate that I instantiated on the "target" thread.
David Minor
Applications Programmer
NC State Archives
|
|
|
|
|
|
Will my C# .Net programs work on other opperating system? Like OSX?
/\ |_ E X E GG
|
|
|
|
|
Visual Studio .NET only creates Windows apps, but there is a cross-platform, open-source version of .NET called Mono. You can use SharpDevelop[^] which can create Mono apps. SharpDevelop currently does not have many of the features of VS .NET, but it is being steadily improved, and it is FREE. You cannot currently run SharpDevelop on any OS but Windows, but I believe next version (0.95) will allow you to do this. You cannot build windows forms apps that are cross-platform yet, because System.Windows.Forms cannot be ported to other platforms.
"Do unto others as you would have them do unto you." - Jesus
"An eye for an eye only makes the whole world blind." - Mahatma Gandhi
|
|
|
|
|
As long as theres a clr on that operating system it will work. Take that with a pinch of salt though cos who knows what features etc will be supported on that version of the clr.
Mircosoft have made one called rotor that runs on
'Windows XP, the FreeBSD operating system, and Mac OS X 10.2'
here[^]
Also someones doing it for linux, mono.
mono[^]
Which looks cool.
I have no experience with either of these implementations but I'll bet your in for some headaches trying to get your code to run on them as they seem to still be in development.
Hope this helps.
|
|
|
|
|
I am creating a "Visual Studio .NET" deployment project to install some component assemblies.
I would like that the setup program make the assemblies appear in the Visual Studio .NET "Customize Toolbox" dialog box.
|
|
|
|
|
In your deployment project for you "developer" version, create a new registry key under HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\.NETFramework\AssemblyFolders. Use a unique string for the key name. The Default value should point to the directory where your assembly is located.
You'll need two copies of your assembly, one in the GAC, and one in a normal directory.
Hope that helps.
Burt Harris
|
|
|
|
|
I've been using Visual Studio 7.0 to develop a C# application for a while. Today, I downloaded and installed the .NET 1.1 framework and SDK. But I can't figure out how to get Visual Studio to start using the new version of the SDK. If I rebuild my project and run, it's still using .NET 1.0... you can see this in the output:
'DefaultDomain': Loaded 'c:\winnt\microsoft.net\framework\v1.0.3705\mscorlib.dll', ...
...
How do I get Visual Studio to start using the new version?
Part of my problem may be that I didn't install Visual Studio in its default location. I put Visual Studio in one place, but I installed the new SDK in the default place (i.e., Program Files).
I hope that I don't have to buy another copy of Visual Studio just to use the new SDK
|
|
|
|
|
I hope that I don't have to buy another copy of Visual Studio just to use the new SDK
I know you may not want to but you can upgrade to VS 2003 just for a "cost-of-materials" price, i.e., about $30.
However, there should be a way to do what you want but I've no idea how!
Kevin
|
|
|
|
|
Not if you're an academic
|
|
|
|
|
Actually, Visual Studio 2002 only targets NET 1.0.You you can not use the .NET 1.1 from within Visual Studio 2002. (
To build a .NET 1.1 App you have two options:
1. Use Visual Studio to write and organize your files and then use the command line compiler on the 1.1 SDK folder to build your app (but remember that NET 1.1 introduces some code-breaking changes to NET 1.0)
2. Upgrade to Visual Studio 2003
|
|
|
|
|
I have question. We are planning to write major stand alone app in .NET which hosts various GUI (Windows)
Screens( in ActiveX Objects) . Does .NET Remoting help us to host GUI Objects display remotely ?
Does .NET Support to display GUI Obejcts? or its just messaging protocol?
If you have good links please point me there
Thanks
Pavi
|
|
|
|
|
I am creating a setup project and I would like to install some assembly files into the Global Assembly Cache (GAC). How to indicate that in the setup project?
|
|
|
|
|
It depends on the setup program. But if it supports custom actions, then you can do
"gacutilpath\gacutil.exe" /i "assemblypath\assemblyname.dll"
where gacutil path is the path to gacutil.exe and assemblypath is the path to the assembly.
"Do unto others as you would have them do unto you." - Jesus
"An eye for an eye only makes the whole world blind." - Mahatma Gandhi
|
|
|
|
|
I have finally discovered that the Deployment project in Visual Studio .NET offers a GAC folder. I have just, when creating my deployment project, to place my assemblies in this folder.
And now, I have another question: I would like that the setup program make the assemblies appear in the Visual Studio .NET "Customize Toolbox" dialog box. How to do that?
|
|
|
|
|
Hi. Can you please tell me what the AutoEventWireUp is for? I've read the explanations in SDK but I couldn't understand what it does.
|
|
|
|
|
I know you can make web-references dynamic, which then only need a small change in the web.config file to repoint them to the new location you want to look at.
My question is, can you do something aking to this with regular (non-web) references? Perhaps using the web/<application>.config file, or a manifest file or something?
We are looking to create a central library directory where we can keep our common libraries for access from any machine which needs them. One consideration was 2K's Distributed File System, but that is an awful lot of complications, especially since it means getting our domain administrators involved. So i was thinking there might be an easier way by being able to just put in a line which tells the app where to look for the reference at run-time. yes??
Thanks in advance.
|
|
|
|
|
There is a way of doing this with regular refrences though you are required to use reflection to dynamically load the assembly you are looking for.
Have a squizz here http://msdn.microsoft.com/library/en-us/cpguide/html/cpconhowruntimelocatesassemblies.asp[^]
It would probably be eaiser to just setup a network share for the library, and add a project reference. I think deciding which asseblies to use at runtime is most suited to situations where you know the interface but you want the freedom to decide which assembly you will use to implement that interface.
|
|
|
|
|
That sounds about right.
I would just point out that assemblies run from a network share will have reduced permissions when using the default security settings for .NET. Depending on what your assemblies do, you may need to alter these settings to give your assemblies the necessary permissions.
Regards
Mark Smithson
|
|
|
|
|
Sorry for the long post, but I need some help. I'm writing a class that implements IComparer, and I'm having some problems. What do you make of this:
My class looks like this:
class RandomComparer : IComparer
{
private static Random c_random;
private static RandomComparer c_instance;
public static IComparer Default
{
get {return c_instance;}
} // End Default
static RandomComparer()
{
c_random = new Random();
c_instance = new RandomComparer();
} // End RandomComparer()
int IComparer.Compare(object objA, object objB)
{
// Are the objects different?
if (Comparer.Default.Compare(objA, objB) != 0)
{
// Get two random numbers.
int numberA = c_random.Next(0, m_maxSample);
int numberB = c_random.Next(0, m_maxSample);
// Compare them and return the results.
if (numberA > numberB)
return 1;
else if (numberA < numberB)
return -1;
} // End if the objects are not the same.
return 0;
} // End Compare()
} // End class RandomCompare
I use this class to sort an array like this:
string[] someArray = new string[] {"item 0", "item 2", ... "item N"};
Array.Sort(someArray, RandomComparer.Default);
Everything works fine most of the time, but every now and then the framework throws an exception that says:
"An unhandled exception of type System.ArgumentException occured in mscorlib.dll
Additional information: IComparer (or the IComparable methods it relies upon) did not
return zero when Array.Sort called x.CompareTo(x). x: value 7 x's type: String
The IComparer: RandomComparer"
If I set Visual Studio.NET to break for all exceptions, I get a different exception, this time it says:
"A first chance exception of type 'System.IndexOutOfRangeException' occured in mscorlib.dll
Addition information: Index was outside the bounds of the array."
If I elect to continue debugging in this case, the framework then throws the first exception.
I searched the Microsoft knowledge base, and did a Google search, but I couldn't find anything.
Sheesh! This should be a five minute programming task, but I've worked on this all morning long!
Has anyone ever run across this? Does anyone have any ideas?
|
|
|
|