Re: [Mono-list] Authorization in .NET Remoting channel

2008-06-23 Thread Maciej Paszta
> > You can inject the client identity in the current call context: > > client: > > // this is you sink's process message: > ProcessMessage(IMessage msg, ) > { > MethodCall mc = msg as MethodCall; > if (mc != null) { > mc.LogicalCallContext.SetData ("UserName", > Win

Re: [Mono-list] Newbie to OpenSuse/Mono needs help

2008-06-23 Thread Petit Eric
2008/6/23 neil.young <[EMAIL PROTECTED]>: > > > > Petit Eric wrote: >> >> You run iso cd image in a virtual host ? >> So i think the network card can be virtual, also virtualbox can manage >> "real" network and also a virtual network/share yu see it in the >> network view under Msnetwork, termina/

Re: [Mono-list] Problem with System.Diagnostics.Process and cat

2008-06-23 Thread support
Will Murnane wrote: > On Mon, Jun 23, 2008 at 13:00, snorkel01 <[EMAIL PROTECTED]> wrote: > >> /bin/cat: >: No such file or directory /bin/cat: >> /1001/temp/admsfx_23847.exe: No such file or directory >> > The '>' is shell syntax, not cat syntax, and you're not spawning a > shell. You nee

Re: [Mono-list] Newbie to OpenSuse/Mono needs help

2008-06-23 Thread neil.young
Petit Eric wrote: > > You run iso cd image in a virtual host ? > So i think the network card can be virtual, also virtualbox can manage > "real" network and also a virtual network/share yu see it in the > network view under Msnetwork, termina/ web > Hmm. As I said: ETH is not connected and WI

Re: [Mono-list] Newbie to OpenSuse/Mono needs help

2008-06-23 Thread Petit Eric
2008/6/23 neil.young <[EMAIL PROTECTED]>: > > > > Petit Eric wrote: >> >> >> -You can not directly access to hard disk partion from Virtual machine >> to real (guest ) PC, you must use network ability >> > > OK, would a memory stick be an alternative? I'm running OpenSuse on a Dell > Notebook. Linu

Re: [Mono-list] Newbie to OpenSuse/Mono needs help

2008-06-23 Thread neil.young
Petit Eric wrote: > > > -You can not directly access to hard disk partion from Virtual machine > to real (guest ) PC, you must use network ability > OK, would a memory stick be an alternative? I'm running OpenSuse on a Dell Notebook. Linux isn't able to deal with my wireless adapter and cabl

Re: [Mono-list] Newbie to OpenSuse/Mono needs help

2008-06-23 Thread Robert Jordan
Petit Eric wrote: > 2008/6/23 Robert Jordan <[EMAIL PROTECTED]>: >> neil.young wrote: >>> I have installed Virtual PC 2007 and managed to download and launch the >>> OpenSUSE 10.3/Mono1.9 things. Unfortunately I have no clue, how to access my >>> NTFS Windows harddisk in order to copy some files or

Re: [Mono-list] Newbie to OpenSuse/Mono needs help

2008-06-23 Thread Petit Eric
2008/6/23 Petit Eric <[EMAIL PROTECTED]>: > 2008/6/23 Robert Jordan <[EMAIL PROTECTED]>: >> neil.young wrote: >>> I have installed Virtual PC 2007 and managed to download and launch the >>> OpenSUSE 10.3/Mono1.9 things. Unfortunately I have no clue, how to access my >>> NTFS Windows harddisk in ord

Re: [Mono-list] Newbie to OpenSuse/Mono needs help

2008-06-23 Thread Petit Eric
2008/6/23 Robert Jordan <[EMAIL PROTECTED]>: > neil.young wrote: >> I have installed Virtual PC 2007 and managed to download and launch the >> OpenSUSE 10.3/Mono1.9 things. Unfortunately I have no clue, how to access my >> NTFS Windows harddisk in order to copy some files or to run a .net assembly.

Re: [Mono-list] Newbie to OpenSuse/Mono needs help

2008-06-23 Thread Robert Jordan
neil.young wrote: > I have installed Virtual PC 2007 and managed to download and launch the > OpenSUSE 10.3/Mono1.9 things. Unfortunately I have no clue, how to access my > NTFS Windows harddisk in order to copy some files or to run a .net assembly. > > Anybody able to provide a step by step appro

[Mono-list] Newbie to OpenSuse/Mono needs help

2008-06-23 Thread neil.young
I have installed Virtual PC 2007 and managed to download and launch the OpenSUSE 10.3/Mono1.9 things. Unfortunately I have no clue, how to access my NTFS Windows harddisk in order to copy some files or to run a .net assembly. Anybody able to provide a step by step approach? Regards -- View thi

Re: [Mono-list] Authorization in .NET Remoting channel

2008-06-23 Thread Atsushi Eno
Angel "Java" Lopez wrote: > I don't know if it's supported under Mono, but It isn't. And won't, at least won't work like on .NET without any kind of trick to provide current user information in Windows domain context. Atsushi Eno ___ Mono-list maillis

Re: [Mono-list] Problem with System.Diagnostics.Process and cat

2008-06-23 Thread Robert Jordan
snorkel01 wrote: > Hi, > I am trying to use System.Diagnostics.Process and the Unix cat command to > concatentate two files and I can't seemt to get it to work. > > myStartInfo.FileName = "cat"; > myStartInfo.Arguments = string.Format("{0} {1} > {2}", newSFXstub, > zipfilename, newSFXFilename);

Re: [Mono-list] Running dbLinq application

2008-06-23 Thread Nagappan A
Hello Andrus, You should not copy MS .NET libraries under Mono directory to use them. The binary compatibility of Mono is for applications using .NET only and not for the MS .NET libraries. You need to check your application with MoMA[1] just to verify all the API that you have used are Mono compl

Re: [Mono-list] Problem with System.Diagnostics.Process and cat

2008-06-23 Thread Will Murnane
On Mon, Jun 23, 2008 at 13:00, snorkel01 <[EMAIL PROTECTED]> wrote: > /bin/cat: >: No such file or directory /bin/cat: > /1001/temp/admsfx_23847.exe: No such file or directory The '>' is shell syntax, not cat syntax, and you're not spawning a shell. You need to either spawn a shell which runs cat

[Mono-list] Problem with System.Diagnostics.Process and cat

2008-06-23 Thread snorkel01
Hi, I am trying to use System.Diagnostics.Process and the Unix cat command to concatentate two files and I can't seemt to get it to work. myStartInfo.FileName = "cat"; myStartInfo.Arguments = string.Format("{0} {1} > {2}", newSFXstub, zipfilename, newSFXFilename); The arguments in this case ar

[Mono-list] Running dbLinq application

2008-06-23 Thread Andrus
I want to run .NET 3.5 Dblinq application with MONO 1.9 in Windows to test WinForms GUI parts of application with MONO. I copied MS System.Core.dll and System.Data.Linq.dll assemblies to application directory. I got exception ** (myapp.exe:5208): WARNING **: Missing method System.Reflection.

Re: [Mono-list] Authorization in .NET Remoting channel

2008-06-23 Thread Robert Jordan
Angel "Java" Lopez wrote: > Hi people! > > I don't know if it's supported under Mono, but you can read about SSPI over > Remoting Channels: It's not supported. That's the reason why the OP is implementing a custom sink. Robert ___ Mono-list maillist

Re: [Mono-list] Authorization in .NET Remoting channel

2008-06-23 Thread Angel "Java" Lopez
Hi people! I don't know if it's supported under Mono, but you can read about SSPI over Remoting Channels: http://community.bartdesmet.net/blogs/bart/archive/2006/08/26/4277.aspx The trick is simple but a bit underdocumented. First of all, since .NET 2.0 the TcpChannel (as well as the HttpChannel)

Re: [Mono-list] how to use 'Conversions.ToInteger' in mono?

2008-06-23 Thread Rolf Bjarne Kvinge
> From: Josh Hammond [mailto:[EMAIL PROTECTED] > > Ok, I'm compiling mono-basic now but that's what I get: > > Error : VBNC9: Unexpected error: Array index is out of range. > at > System.Collections.Generic.Dictionary`2+Enumerator[System.String,vbnc.M > emberCacheEntry].get_CurrentValue Thi

Re: [Mono-list] Authorization in .NET Remoting channel

2008-06-23 Thread Robert Jordan
paszczi wrote: > Hi, > > I'm struggling to find a way of implementing authorization in .NET > remoting. The issue is that I've developed custom sink and I'm able > to pass some credentials which then can be authenticated by server. > But what I want to do is to check whether remote user who has ca

[Mono-list] Authorization in .NET Remoting channel

2008-06-23 Thread paszczi
Hi, I'm struggling to find a way of implementing authorization in .NET remoting. The issue is that I've developed custom sink and I'm able to pass some credentials which then can be authenticated by server. But what I want to do is to check whether remote user who has called shared object's met