[Mono-list] Using Virtual-PC image with Hyper-V

2010-05-25 Thread Jochen Wezel - CompuMaster GmbH
Hi,

has anybody got the same problems when trying to use the mono appliance created 
for VirtualPC at a Hyper-V system?

As soon as I try to insert the .vhd file as the hard disc, I get the following 
errors:

 GERMAN LOG 
Mono: Die Anlage G:\Virtual Machines\Mono\Mono-2.6.4.vhd kann nicht 
geöffnet werden. Fehler: Die Datei oder das Verzeichnis ist beschädigt und 
nicht lesbar. (7864368) (ID des virtuellen Computers 
6C8CDD97-D389-41E8-BF5C-4E9921E9D842).

Mono: Es können keine Informationen für die Anlage G:\Virtual 
Machines\Mono\Mono-2.6.4.vhd abgerufen werden (ID des virtuellen Computers 
6C8CDD97-D389-41E8-BF5C-4E9921E9D842).

Mono: Die Anlage G:\Virtual Machines\Mono\Mono-2.6.4.vhd kann nicht 
geöffnet werden. Fehler: Die Datei oder das Verzeichnis ist beschädigt und 
nicht lesbar. (7864368) (ID des virtuellen Computers 
6C8CDD97-D389-41E8-BF5C-4E9921E9D842).

Mono: Fehler beim Ändern des Geräts Microsoft Virtual Hard Disk (ID des 
virtuellen Computers 6C8CDD97-D389-41E8-BF5C-4E9921E9D842).

Mono: Die Anlage G:\Virtual Machines\Mono\Neue virtuelle Festplatte2.vhd 
kann nicht geöffnet werden. Fehler: Die Datei oder das Verzeichnis ist 
beschädigt und nicht lesbar. (7864368) (ID des virtuellen Computers 
6C8CDD97-D389-41E8-BF5C-4E9921E9D842).

Mono: Es können keine Informationen für die Anlage G:\Virtual 
Machines\Mono\Neue virtuelle Festplatte2.vhd abgerufen werden (ID des 
virtuellen Computers 6C8CDD97-D389-41E8-BF5C-4E9921E9D842).

Mono: Die Anlage G:\Virtual Machines\Mono\Neue virtuelle Festplatte2.vhd 
kann nicht geöffnet werden. Fehler: Die Datei oder das Verzeichnis ist 
beschädigt und nicht lesbar. (7864368) (ID des virtuellen Computers 
6C8CDD97-D389-41E8-BF5C-4E9921E9D842).

Mono: Fehler beim Ändern des Geräts Microsoft Virtual Hard Disk (ID des 
virtuellen Computers 6C8CDD97-D389-41E8-BF5C-4E9921E9D842).
 END GERMAN LOG 

The most important lines are translated here:

1. Die Anlage G:\Virtual Machines\Mono\Neue virtuelle Festplatte2.vhd kann 
nicht geöffnet werden.
-- The attachment G:\ can't be opened

2. Fehler: Die Datei oder das Verzeichnis ist beschädigt und nicht lesbar.
-- Error: The file or directory is damaged or not readable.


Since everybody has got full access and other VHD files in the same directory 
work as expected, it should work - I hoped...

Regards
Jochen
___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] ASP.Net default language setting lost while update

2009-07-03 Thread Jochen Wezel - CompuMaster GmbH
Hi Robert,

 VB cannot be set as default, because its compiler and providers are
 not as mature as gmcs'.
Okay, hopefully the VB.Net compiler will get as mature as the gmcs in near 
future ;-)
I'm looking forward...

My idea is to better change it as soon as possible to reduce compatibility 
conflicts with existing Mono web applications (currently with a relatively 
small distribution grade in comparison to the distribution grade in approx. 2 
years)

 BTW, your 'S' key is damaged.
Yeah, sorry - err - $orry ;-)

Regards
Jochen

-Ursprüngliche Nachricht-
Von: mono-list-boun...@lists.ximian.com 
[mailto:mono-list-boun...@lists.ximian.com] Im Auftrag von Robert Jordan
Gesendet: Donnerstag, 2. Juli 2009 12:50
An: Mono-list@lists.ximian.com
Betreff: Re: [Mono-list] ASP.Net default language setting lost while update

Jochen Wezel - CompuMaster GmbH wrote:
 Is there any plan to prevent overriding of my custom settings? Or if
 no and it always overrides, can it override with the default M$ value
 (=VB) to keep compatible to M$ behaviour?

Use your app's web.config for this kind of changes.

VB cannot be set as default, because its compiler and providers are
not as mature as gmcs'.

BTW, your 'S' key is damaged.

Robert

___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


[Mono-list] ASP.Net compilation error with C# and Mono V2.4.2

2009-07-02 Thread Jochen Wezel - CompuMaster GmbH
Hello,

I've got this error when trying to access my test website and if I've put a 
file cammWM.dll into my bin directory:

Given is the ASPX file with this content:

debopweb02:/srv/_default/htdocs # cat hello_world_csharp.aspx
%@ Page Language=C# %
%@ Register TagPrefix=camm TagName=WebManager 
Src=/system/cammWebManager.ascx %
camm:WebManager id=cammWebManager SecurityObject=@@Public 
runat=server/camm:WebManager
html
body
%
Response.Write (h1This is a C# demo/h1);
%
h3asp:Label runat=server id=UserWelcome //h3
/body
/html
script runat=server
void Page_Load()
{
UserWelcome.Text = And you are  + 
cammWebManager.CurrentUserInfo().FullName() + ; a warm welcome to you!;
}
/script


C# fails if I use a control on my page provided by that cammWM.dll. Here the 
message from my hello_world_csharp.aspx:

Server Error in '/' Application



The classes in the module cannot be loaded.
Description: HTTP 500. Error processing request.

Stack Trace: 

System.Reflection.ReflectionTypeLoadException: The classes in the module cannot 
be loaded.
  at (wrapper managed-to-native) System.Reflection.Assembly:GetTypes (bool)
  at System.Reflection.Assembly.GetTypes () [0x0] 
  at System.Web.UI.TemplateParser.FindNamespaceInAssembly 
(System.Reflection.Assembly asm, System.String namesp) [0x0] 
  at System.Web.UI.TemplateParser.AddAssemblyForNamespace (System.String 
namesp) [0x0] 
  at System.Web.UI.TemplateParser.AddImport (System.String namesp) [0x0] 
  at System.Web.UI.TemplateParser.RegisterNamespace (System.String tagPrefix, 
System.String ns, System.String assembly) [0x0] 
  at System.Web.UI.TemplateControlParser.AddDirective (System.String directive, 
System.Collections.Hashtable atts) [0x0] 
  at System.Web.Compilation.AspGenerator.TagParsed (ILocation location, TagType 
tagtype, System.String tagid, System.Web.Compilation.TagAttributes attributes) 
[0x0] 
  at System.Web.Compilation.AspParser.OnTagParsed (TagType tagtype, 
System.String id, System.Web.Compilation.TagAttributes attributes) [0x0] 
  at System.Web.Compilation.AspParser.Parse () [0x0] 
  at System.Web.Compilation.AspGenerator.Parse (System.IO.TextReader reader, 
System.String filename, Boolean doInitParser) [0x0] 
  at System.Web.Compilation.GenericBuildProvider`1[TParser].Parse () [0x0] 
  at 
System.Web.Compilation.GenericBuildProvider`1[TParser].get_CodeCompilerType () 
[0x0] 
  at System.Web.Compilation.BuildManager.GetCodeDomProviderType 
(System.Web.Compilation.BuildProvider provider) [0x0] 
  at System.Web.Compilation.BuildManager+BuildItem..ctor 
(System.Web.Compilation.BuildProvider provider) [0x0] 
  at System.Web.Compilation.BuildManager.LoadBuildProviders 
(System.Web.VirtualPath virtualPath, System.String virtualDir, 
System.Collections.Generic.Dictionary`2 vpCache, 
System.Web.Compilation.BuildKind kind, System.String assemblyBaseName) 
[0x0] 


  at System.Web.Compilation.BuildManager.BuildAssembly (System.Web.VirtualPath 
virtualPath) [0x0] 
  at System.Web.Compilation.BuildManager.GetCompiledType (System.String 
virtualPath) [0x0] 
  at System.Web.Compilation.AspComponentFoundry+TagNameFoundry.LoadType () 
[0x0] 
  at System.Web.Compilation.AspComponentFoundry+TagNameFoundry.GetType 
(System.String componentName, System.String source, System.String ns) 
[0x0] 
  at System.Web.Compilation.AspComponentFoundry.CreateComponent 
(System.Web.Compilation.Foundry foundry, System.String tagName, System.String 
prefix, System.String tag) [0x0] 
  at System.Web.Compilation.AspComponentFoundry.GetComponent (System.String 
tagName) [0x0] 
  at System.Web.UI.RootBuilder.GetChildControlType (System.String tagName, 
IDictionary attribs) [0x0] 
  at System.Web.UI.ControlBuilder.CreateSubBuilder (System.String tagid, 
System.Collections.Hashtable atts, System.Type childType, 
System.Web.UI.TemplateParser parser, ILocation location) [0x0] 
  at System.Web.Compilation.AspGenerator.ProcessTag (ILocation location, 
System.String tagid, System.Web.Compilation.TagAttributes atts, TagType 
tagtype, System.Boolean ignored) [0x0]  


Version information: Mono Version: 2.0.50727.1433; ASP.NET Version: 
2.0.50727.1433


In case you need my cammWM.dll for testing purposes, please tell me your e-mail 
address so that I can send it directly to you (it shall be handled 
confidentially).

Environment configuration:
==
- OpenSUSE 11.1
- Mono 2.4.2 with installed mono-basic 2.4.2 (installed with zypper as advised 
by mono website)


Regards
Jochen

___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


___
Mono-list maillist  -  

[Mono-list] ASP.Net compilation error with VB and C# and Mono V2.4.2

2009-06-30 Thread Jochen Wezel - CompuMaster GmbH
Hello,

I've got this error when trying to access my test website and if I've put a 
file cammWM.dll into my bin directory:

Server Error in '/' Application



VBNC_CRASH: Visual Basic.Net Compiler version 0.0.0.5914 (Mono 2.4.2 - r) 
Copyright (C) 2004-2008 Rolf Bjarne Kvinge. All rights reserved. 
Error : VBNC9: Unexpected error: The classes in the module cannot be loaded.
at (wrapper managed-to-native) System.Reflection.Assembly:GetTypes (bool) at 
System.Reflection.Assembly.GetTypes () [0x0] in 
/usr/src/packages/BUILD/mono-2.4.2/mcs/class/corlib/System.Reflection/Assembly.cs:348
 at vbnc.TypeManager.LoadReferencedTypes () [0x00028] in 
/usr/src/packages/BUILD/mono-basic-2.4.2/vbnc/vbnc/source/General/TypeManager.vb:441
 at vbnc.TypeManager.LoadReferenced () [0x000e3] in 
/usr/src/packages/BUILD/mono-basic-2.4.2/vbnc/vbnc/source/General/TypeManager.vb:306
 at vbnc.Compiler.Compile () [0x001e2] in 
/usr/src/packages/BUILD/mono-basic-2.4.2/vbnc/vbnc/source/General/Compiler.vb:534
 
Compilation took 00:00:00.8301500 
Description: HTTP 500. Error processing request.

Stack Trace: 

System.Web.Compilation.CompilationException: VBNC_CRASH: Visual Basic.Net 
Compiler version 0.0.0.5914 (Mono 2.4.2 - r)
Copyright (C) 2004-2008 Rolf Bjarne Kvinge. All rights reserved.

Error : VBNC9: Unexpected error: The classes in the module cannot be 
loaded.  at (wrapper managed-to-native) System.Reflection.Assembly:GetTypes 
(bool)
  at System.Reflection.Assembly.GetTypes () [0x0] in 
/usr/src/packages/BUILD/mono-2.4.2/mcs/class/corlib/System.Reflection/Assembly.cs:348
 
  at vbnc.TypeManager.LoadReferencedTypes () [0x00028] in 
/usr/src/packages/BUILD/mono-basic-2.4.2/vbnc/vbnc/source/General/TypeManager.vb:441
 
  at vbnc.TypeManager.LoadReferenced () [0x000e3] in 
/usr/src/packages/BUILD/mono-basic-2.4.2/vbnc/vbnc/source/General/TypeManager.vb:306
 
  at vbnc.Compiler.Compile () [0x001e2] in 
/usr/src/packages/BUILD/mono-basic-2.4.2/vbnc/vbnc/source/General/Compiler.vb:534
 Compilation took 00:00:00.8301500

  at System.Web.Compilation.AssemblyBuilder.BuildAssembly 
(System.Web.VirtualPath virtualPath, System.CodeDom.Compiler.CompilerParameters 
options) [0x0] 
  at System.Web.Compilation.AssemblyBuilder.BuildAssembly 
(System.Web.VirtualPath virtualPath) [0x0] 
  at System.Web.Compilation.BuildManager.GenerateAssembly 
(System.Web.Compilation.AssemblyBuilder abuilder, 
System.Collections.Generic.List`1 buildItems, System.Web.VirtualPath 
virtualPath, BuildKind buildKind) [0x0] 
  at System.Web.Compilation.BuildManager.BuildAssembly (System.Web.VirtualPath 
virtualPath) [0x0] 
  at System.Web.Compilation.BuildManager.GetCompiledType (System.String 
virtualPath) [0x0] 
  at System.Web.Compilation.BuildManager.CreateInstanceFromVirtualPath 
(System.String virtualPath, System.Type requiredBaseType) [0x0] 
  at System.Web.UI.PageParser.GetCompiledPageInstance (System.String 
virtualPath, System.String inputFile, System.Web.HttpContext context) [0x0] 
  at System.Web.UI.PageHandlerFactory.GetHandler (System.Web.HttpContext 
context, System.String requestType, System.String url, System.String path) 
[0x0] 
  at System.Web.HttpApplication.GetHandler (System.Web.HttpContext context, 
System.String url, Boolean ignoreContextHandler) [0x0] 
  at System.Web.HttpApplication.GetHandler (System.Web.HttpContext context, 
System.String url) [0x0] 
  at System.Web.HttpApplication+Pipelinec__Iterator2.MoveNext () [0x0]  


Version information: Mono Version: 2.0.50727.1433; ASP.NET Version: 
2.0.50727.1433


Given is the ASPX file with this content:
debopweb02:/srv/_default/htdocs # cat index.aspx
%@ Page %
htmlbodyTEST
p.NET Version=%= System.Environment.Version.ToString %
pNow=%= Now %
pIP Remote User=%= Request.ServerVariables(REMOTE_ADDR) %/body/html


The same executed with C# works; here is the content:

debopweb02:/srv/_default/htdocs # cat index.cs.aspx
%@ Page Language=C# %
htmlbodyTEST
p.NET Version=%= System.Environment.Version.ToString() %
pNow=%= System.DateTime.Now.ToString() %
pIP Remote User=%= Request.ServerVariables[REMOTE_ADDR] %
/body/html


Both, C# and VB.NET fail if I use a control on my page provided by that 
cammWM.dll. Here the message from my hello_world_csharp.aspx:

Server Error in '/' Application



The classes in the module cannot be loaded.
Description: HTTP 500. Error processing request.

Stack Trace: 

System.Reflection.ReflectionTypeLoadException: The classes in the module cannot 
be loaded.
  at (wrapper managed-to-native) System.Reflection.Assembly:GetTypes (bool)
  at System.Reflection.Assembly.GetTypes () [0x0] 
  at System.Web.UI.TemplateParser.FindNamespaceInAssembly 
(System.Reflection.Assembly 

[Mono-list] ASP.Net default language setting lost while update

2009-06-30 Thread Jochen Wezel - CompuMaster GmbH
Hello,

after I updated to Mono 2.4.2, I realized that the webserver doesn't work any 
more as expected.
This is because I configured the /etc/mono/2.0/web.config to use VB.NET as 
default language (before I installed the update).
After the update, this setting was overridden and pointed to C# again.

Since updates can be installed automatically by the Auto-Updater feature of 
OpenSUSE, it may fail again in future when next update is available.

Is there any plan to prevent overriding of my custom settings? 
Or if no and it always overrides, can it override with the default M$ value 
(=VB) to keep compatible to M$ behaviour?

Regards
Jochen

___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


[Mono-list] Install fails with OpenSuse 10.3 x64

2008-10-31 Thread Jochen Wezel - CompuMaster GmbH
Hi all,

I'm trying to download mono 2 with yast from
http://download.opensuse.org/repositories/Mono/openSUSE_10.3/
as the download section tells me to do for my opensuse x64.

I added the repository successfully, but when I go to Software Management in 
yast menu, it is trying to build the repository and ends up with a warning:
There was an error in the repository initialization.  │ │
'Mono_2': Parse error

Is something wrong there in the downloaded files?
Or do I have to do anything?

Regards
Jochen
___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


AW: [Mono-list] Please solve .exe s conflict?

2006-01-31 Thread Jochen Wezel - CompuMaster GmbH
Hi!
 
Yepp, I strongly agree with Atsushi. Many apps are already written in MS.NET 
framework technology and they should be able to run without changes on Linux, 
[EMAIL PROTECTED], etc. 

One example: Renaming the executables might lead to dead file links when a main 
program tries to start the executable of a sub application called sub.exe, 
because it wouldn't be there when you rename those files to .exe.mono.

So, if you want to start your executable with Mono and a nice picture, better 
create file links with normal windows technology with nice icons and reference 
to the desired mono instance.

Regards
Jochen

-Ursprüngliche Nachricht-
Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Atsushi Eno
Gesendet: Dienstag, 31. Januar 2006 07:41
An: Paulo Augusto
Cc: mono-list@lists.ximian.com
Betreff: Re: [Mono-list] Please solve .exe s conflict?

Hi,

 Please make future Windows instalers of mono register .mono files to 
 be open with the proper executor (mono.exe) and compilers compile as 
 standard to output of .exe.mono files!

It could be possible (only) when it is under Windows, but your suggestion 
contradicts one of our purpose i.e. have managed code (.exe and
.dll) runnable under Linux *as is*.

Atsushi Eno


___
Mono-list maillist  -  Mono-list@lists.ximian.com 
http://lists.ximian.com/mailman/listinfo/mono-list


___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


AW: [Mono-list] Configuring virtualhost to use vb code

2005-12-23 Thread Jochen Wezel - CompuMaster GmbH



In some strange situation when the compiler breaks, the 
(temporary) dll doesn't get written.
The 404 File not found exception is misleading in that 
case, since the ASPX file is there. Better it would be a 500 Compilation 
error.


Von: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] Im Auftrag von Jorge 
BastosGesendet: Mittwoch, 21. Dezember 2005 12:16An: 
Mono-list@lists.ximian.comBetreff: [Mono-list] Configuring 
virtualhost to use vb code

Hi people,
I've been for some weeks trying to use vb style 
code ina certein virtualhost, so i have in a file "d.aspx" the 
folowing:
---
%@ Page Language="vb" %% 
response.write("hi there its me!") %
---

in the virtualhost i have:

MonoApplications demo2 
"site.com:/:/home/alojamento/site.com"
MonoServerPath demo2 
/usr/local/lib/xsp/2.0/mod-mono-server2.exe
Directory 
/home/alojamento/site.com/ 
MonoSetServerAlias 
demo2 
SetHandler mono/Directory
when i go to the browser, http://site.com/d.aspx, i get what i pasted 
below.
I think it is using the vb compiler from the 
information from below but, not working and from what i see from the 404 error 
seams something about path's, i may have something wrong in the configuration, 
how can help me?

Many thanks,
Jorge Bastos




Server error in '/' application


File not foundDescription: 
Error processing request. 
Error Message: HTTP 404. File not found 
Stack Trace: 

  
  
System.IO.FileNotFoundException: /tmp/www-data-temp-aspnet-0/342b47eb/50422.dll : /tmp/www-data-temp-aspnet-0/342b47eb/50422.dll
in 0x0 unknown method
in (wrapper managed-to-native) System.Reflection.Assembly:LoadFrom (string,bool)
in 0xc System.Reflection.Assembly:LoadFrom (System.String assemblyFile)
in 0x00391 Microsoft.VisualBasic.VBCodeCompiler:CompileFromFileBatch (System.CodeDom.Compiler.CompilerParameters options, System.String[] fileNames)
in 0x00022 Microsoft.VisualBasic.VBCodeCompiler:CompileAssemblyFromFileBatch (System.CodeDom.Compiler.CompilerParameters options, System.String[] fileNames)
in 0x002f5 Microsoft.VisualBasic.VBCodeCompiler:CompileFromDomBatch (System.CodeDom.Compiler.CompilerParameters options, System.CodeDom.CodeCompileUnit[] ea)
in 0x00022 Microsoft.VisualBasic.VBCodeCompiler:CompileAssemblyFromDomBatch (System.CodeDom.Compiler.CompilerParameters options, System.CodeDom.CodeCompileUnit[] ea)
in 0x0003c Microsoft.VisualBasic.VBCodeCompiler:CompileAssemblyFromDom (System.CodeDom.Compiler.CompilerParameters options, System.CodeDom.CodeCompileUnit e)
in 0x0014e System.Web.Compilation.CachingCompiler:Compile (System.Web.Compilation.BaseCompiler compiler)
in 0x00259 System.Web.Compilation.BaseCompiler:GetCompiledType ()
in 0x000fa System.Web.Compilation.AspGenerator:GetCompiledType ()
in 0x00029 System.Web.UI.PageParser:CompileIntoType ()
in 0x00011 System.Web.UI.TemplateControlParser:GetCompiledInstance ()
in 0x00035 System.Web.UI.PageParser:GetCompiledPageInstance (System.String virtualPath, System.String inputFile, System.Web.HttpContext context)
in 0x00010 System.Web.UI.PageHandlerFactory:GetHandler (System.Web.HttpContext context, System.String requestType, System.String url, System.String path)
in 0x001e6 System.Web.HttpApplication:GetHandler (System.Web.HttpContext context)
in 0x00b8a System.Web.HttpApplication+Pipeline__1:MoveNext ()
___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


AW: [Mono-list] Configuring virtualhost to use vb code

2005-12-23 Thread Jochen Wezel - CompuMaster GmbH



Hi 
Jorge,

So, 
it's not a not a configuration but an MonoBasic compiler 
problem.
You might solve this 
issue when you help in development of the MonoBasic 
(MBAS)compiler.

Please remind: MonoBASIC is still alpha code, no beta, 
no stable. If you need to execute web applications for production use, my 
current recommendation is to use C# or 
Microsoft.Windows.

Regards
Jochen



Von: Jorge Bastos 
[mailto:[EMAIL PROTECTED] Gesendet: Freitag, 23. Dezember 2005 
13:59An: Jochen Wezel - CompuMaster GmbH; 
Mono-list@lists.ximian.comBetreff: Fw: [Mono-list] Configuring 
virtualhost to use vb code

Yes, using c# is works with the virtualhost 
configured to use xsp2.

Jorge Bastos

- Original Message - 
From: Jochen Wezel - 
CompuMaster GmbH 
To: Jorge Bastos 
Sent: Friday, December 23, 2005 12:42 PM
Subject: AW: [Mono-list] Configuring virtualhost to use vb 
code

does it works when you change the language to C# 
?


Von: Jorge Bastos 
[mailto:[EMAIL PROTECTED] Gesendet: Freitag, 23. Dezember 2005 
13:41An:  ; [EMAIL PROTECTED]; Jochen Wezel - 
CompuMaster GmbHBetreff: Fw: [Mono-list] Configuring virtualhost to 
use vb code

Jochen thanks for your reply.
I looked at apache logs and i have 
this:
Could i be missing something? This 
/usr/local/lib/mono/1.0/mbas.exe maybe shouldn't be 2.0?
I think my virtualhost setup to use xsp2 is ok, 
correct me if im wrong.
So.. do you thing there anything else i can do or 
this is a bug?
I'm sending this reply to Gonzalo directly so that 
i may help me :)

So many thanks and i hope you can help 
me.
Jorge Bastos


** (/usr/local/lib/mono/1.0/mbas.exe:7555): WARNING 
**: The class System.Collections.Generic.IEnumerable`1 could not be loaded, used 
in mscorlib, Version=2.0.0.0, Culture=neutral, 
PublicKeyToken=b77a5c561934e089

=Got 
a SIGSEGV while executing native code. This usually indicatesa fatal error 
in the mono runtime or one of the native librariesused by your 
application.=

Stacktrace:

in 0x4 (wrapper managed-to-native) 
System.Reflection.Assembly:GetTypes (bool)in 0xffe4 (wrapper 
managed-to-native) System.Reflection.Assembly:GetTypes (bool)in 0xc 
System.Reflection.Assembly:GetTypes ()in 0x91 
Mono.MonoBASIC.TypeManager:AddAssembly (System.Reflection.Assembly)in 
0xfaa2 (wrapper delegate-invoke) 
System.MulticastDelegate:invoke_void_Assembly (System.Reflection.Assembly)in 
0x11a Mono.GetOptions.Useful.CommonCompilerOptions:LoadAssembly 
(Mono.GetOptions.Useful.AssemblyAdder,string,int,bool)in 0xc7 
Mono.GetOptions.Useful.CommonCompilerOptions:LoadReferencedAssemblies 
(Mono.GetOptions.Useful.AssemblyAdder)in 0x3f 
Mono.Languages.Driver:LoadReferencedAssemblies ()in 0x128147 
(wrapper delegate-invoke) System.MulticastDelegate:invoke_bool ()in 
0xdf Mono.Languages.Driver:Execute (string[])in 0x27 
Mono.Languages.Driver:Main (string[])in 0x50b51147 (wrapper 
runtime-invoke) System.Object:runtime_invoke_int_string[] 
(object,intptr,intptr,intptr)

Native stacktrace:

 
/usr/local/bin/mono(mono_handle_native_sigsegv+0x7c) 
[0x8146eac] /usr/local/bin/mono 
[0x81176db] 
[0xe440] /usr/local/bin/mono 
[0x8092494] 
/usr/local/bin/mono(mono_type_create_from_typespec_full+0x160) 
[0x8094f00] /usr/local/bin/mono 
[0x80ea371] /usr/local/bin/mono 
[0x80ea525] 
/usr/local/bin/mono(mono_class_get_full+0x15) 
[0x80ea665] 
/usr/local/bin/mono(mono_metadata_interfaces_from_typedef_full+0x149) 
[0x8093909] /usr/local/bin/mono 
[0x80eac87] /usr/local/bin/mono 
[0x80ea4e5] /usr/local/bin/mono 
[0x80d813e] /usr/local/bin/mono 
[0x80d8456] 
[0xb74554db] 
[0xb7455495] 
[0xb7430aa2] 
[0xb74309f9] 
[0xb7430453] 
[0xb7430168] 
[0xb7430050] 
[0xb7454ca0] 
[0xb757cdb0] 
[0xb757c970] 
[0xb757c874] 
/usr/local/bin/mono(mono_runtime_exec_main+0x80) 
[0x80cd990] 
/usr/local/bin/mono(mono_runtime_run_main+0x12f) 
[0x80d038f] 
/usr/local/bin/mono(mono_main+0xeef) 
[0x805d5ff] 
/lib/tls/libc.so.6(__libc_start_main+0xd0) 
[0xb7d78ed0] /usr/local/bin/mono 
[0x805c1b1]




- Original Message - 
From: Jochen Wezel - 
CompuMaster GmbH 
To: Jorge Bastos ; Mono-list@lists.ximian.com 
Cc: Gonzalo Paniagua Javier 
Sent: Friday, December 23, 2005 10:58 AM
Subject: AW: [Mono-list] Configuring virtualhost to use vb 
code

In some strange situation when the compiler breaks, the 
(temporary) dll doesn't get written.
The 404 File not found exception is misleading in that 
case, since the ASPX file is there. Better it would be a 500 Compilation 
error.


Von: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] Im Auftrag von Jorge 
BastosGesendet: Mittwoch, 21. Dezember 2005 12:16An: Mono-list@lists.ximian.comBetreff: 
[Mono-list] Configuring virtualhost to use vb code

Hi people,
I've been for some weeks trying to use vb style 
code ina certein virtualhost, so i have in a file "d.aspx" the 
folowing:
---
%@ Page Language="vb" %% 
response.wr

AW: [Mono-list] To compile with mono mbas

2005-11-11 Thread Jochen Wezel - CompuMaster GmbH
Hi Valentina,

In Form.aspx, there should be a directive like
%@ Page Language=VB Src=Form.aspx.vb 
Inherits=MyNamespace.MyClassName.Form %

Please pay attention to the difference between Codebehind= and Src=; the 
first one is a hint for Visual Studio only, the second leads to a real JIT 
compilation of Form.aspx.vb.

-Jochen

-Ursprüngliche Nachricht-
Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von [EMAIL 
PROTECTED]
Gesendet: Donnerstag, 10. November 2005 20:37
An: Mono mainling-list
Betreff: [Mono-list] To compile with mono mbas

Hi,

Sorry for the stupid question but I'm new in mono/mbas.

I have Form.aspx and Form.aspx.vb files with the imports 
System.Windows.Forms, System.Data and MySql.Data.MySqlClient

What I have to do to compile?

Thank's to all,

Valentina.
___
Mono-list maillist  -  Mono-list@lists.ximian.com 
http://lists.ximian.com/mailman/listinfo/mono-list


___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


AW: [Mono-list] cgi and asp.net

2005-09-23 Thread Jochen Wezel - CompuMaster GmbH
Hi Ivar,

It's not exactly what you're asking for, but when your CGI only provides data, 
you could provide it as XML data (e. g. DataSet syntax) or as a WebService.
In ASP.NET you would access this XML data and include/process it in your page.

-Jochen

-Ursprüngliche Nachricht-
Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Ivar Bratberg
Gesendet: Mittwoch, 14. September 2005 11:12
An: mono-list@lists.ximian.com
Betreff: [Mono-list] cgi and asp.net

Hello, is it possible for a cgi script to tell the apache server that the 
returned data should be intpreted as asp.net code ?
We are about to extend our publishing system, based in cgi to include asp.net, 
using mono.
The best solution I have come up with so for is to redirect the apache simply 
returning Location=asp-net-file.aspx, and then use OnLoad function in the 
asp.net file to include the dynamic data.
But to access the dynamic data we will have to call a c# -c++ wrapper, which 
takes time.
The best would be to tell apache to intpret it as asp.net is this possible ?
Best regards
IB
___
Mono-list maillist  -  Mono-list@lists.ximian.com 
http://lists.ximian.com/mailman/listinfo/mono-list


___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


AW: [Mono-list] IMAP libraries

2005-05-23 Thread Jochen Wezel (CompuMaster GmbH)
Some months ago, I tried some simple tests with Quiksoft EasyMail .NET 
successfully.
-Jochen

-Ursprüngliche Nachricht-
Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Howard Cole
Gesendet: Montag, 23. Mai 2005 15:23
An: Mono List
Betreff: [Mono-list] IMAP libraries

Does anyone know of any .NET IMAP/POP3 libraries - commercial or otherwise that 
are compatible with mono?
___
Mono-list maillist  -  Mono-list@lists.ximian.com 
http://lists.ximian.com/mailman/listinfo/mono-list


___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


AW: [Mono-list] does mono support Character set?

2005-05-11 Thread Jochen Wezel (CompuMaster GmbH)




Hi Woody,

Have you already defined acharacter set in your web 
page? 
And has your browser recognized it 
correctly?
Do you use UTF-8 character set or an ANSI character 
set?

Regards
Jochen


Von: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] Im Auftrag von 
[EMAIL PROTECTED]Gesendet: Mittwoch, 11. Mai 2005 
08:36An: mono-list@lists.ximian.comBetreff: [Mono-list] 
does mono support Character set?

Hello~
i'm making a web application with mono,
and it's such a wonderful experience :)
thanks for mono developers.

but when i make web forms with foreign characters such as 
korean, japanese...,
theyjustshow "??" from the apache 
server.

how can i fix this?

please help me.
thanks


AW: [Mono-list] VB Good Mono Project

2005-03-22 Thread Jochen Wezel (CompuMaster GmbH)
Hi Aaron,

I can say this because on
1. Some readings in (German) magazines and 
2. the logical consequence for MS: too many developers haven't migrated from 
VB6 to .NET, yet. But if MS wants to be successfull, they have to ensure that 
most of VB6 programmers make the switch and not only 30 %.
3. In the .NET 2 Beta (or Visual Studio 2005 Beta), you'll notice that many 
additional namespaces and improvements have been implemented. Typically is i. 
e. the DoEvents command in VB6, which I've already seen there in the new .NET 
2 classes.

-Jochen

-Ursprüngliche Nachricht-
Von: Aaron DeRenard [mailto:[EMAIL PROTECTED] 
Gesendet: Dienstag, 22. März 2005 00:29
An: Jochen Wezel (CompuMaster GmbH)
Betreff: Re: [Mono-list] VB Good Mono Project

I had dinner with a Microsoft champion, and he made no mention of a better 
migration tool.  Where did you obtain this information?


On Mon, 21 Mar 2005 15:11:55 +0100, Jochen Wezel (CompuMaster GmbH) [EMAIL 
PROTECTED] wrote:
 Regarding the request to reuse VB6 controls:
 
 There will be a new release of Visual Studio 2005 in the next weeks by 
 Microsoft. As far as I know, it will contain a better migration assistant to 
 convert MS VB 6 projects to VB.NET.
 
 Then, those self-created controls from VB 6 should be easily portable to a 
 fullly .NET compliant control, this way.
 After that, you should be able to use the new .NET source code and reuse it 
 in all your .NET projects - on Windows and also on Linux and Mac (Mono).
 
 -Jochen
 
 -Ursprüngliche Nachricht-
 Von: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] Im Auftrag von Aaron 
 DeRenard
 Gesendet: Donnerstag, 17. März 2005 20:34
 An: mono-list@lists.ximian.com
 Betreff: [Mono-list] VB Good Mono Project
 
 In Re: 
 http://lists.ximian.com/archives/public/mono-list/2005-March/026303.ht
 ml
 
 I would like to say this and this only.
 
 VB6 isn't only about using 3rd party controls.  In fact, most vb6 users 
 choose vb6 the ease of creating their own reusable controls to use in other 
 vb6, vc++6, and web projects.  I only want to strongly encourage anyone to 
 take a crack at this compiler.  There are lots of people out there still 
 writing vb6 and wishing there were a portability solution.
 
 Thank you,
 
 Aaron DeRenard
 ___
 Mono-list maillist  -  Mono-list@lists.ximian.com 
 http://lists.ximian.com/mailman/listinfo/mono-list
 



___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


AW: [Mono-list] VB Good Mono Project

2005-03-21 Thread Jochen Wezel (CompuMaster GmbH)
Regarding the request to reuse VB6 controls:
 
There will be a new release of Visual Studio 2005 in the next weeks by 
Microsoft. As far as I know, it will contain a better migration assistant to 
convert MS VB 6 projects to VB.NET. 

Then, those self-created controls from VB 6 should be easily portable to a 
fullly .NET compliant control, this way.
After that, you should be able to use the new .NET source code and reuse it in 
all your .NET projects - on Windows and also on Linux and Mac (Mono).

-Jochen

-Ursprüngliche Nachricht-
Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Aaron DeRenard
Gesendet: Donnerstag, 17. März 2005 20:34
An: mono-list@lists.ximian.com
Betreff: [Mono-list] VB Good Mono Project

In Re: http://lists.ximian.com/archives/public/mono-list/2005-March/026303.html

I would like to say this and this only.

VB6 isn't only about using 3rd party controls.  In fact, most vb6 users choose 
vb6 the ease of creating their own reusable controls to use in other vb6, 
vc++6, and web projects.  I only want to strongly encourage anyone to take a 
crack at this compiler.  There are lots of people out there still writing vb6 
and wishing there were a portability solution.

Thank you,

Aaron DeRenard
___
Mono-list maillist  -  Mono-list@lists.ximian.com 
http://lists.ximian.com/mailman/listinfo/mono-list


___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


AW: AW: [Mono-list] asp.net with vb.net

2005-02-22 Thread Jochen Wezel (CompuMaster GmbH)
I just tried to upgrade my mono and xsp to today's 1.1.4 and your sample 
continues working for me.
-Jochen

-Ursprüngliche Nachricht-
Von: Harsh Busa [mailto:[EMAIL PROTECTED] 
Gesendet: Montag, 21. Februar 2005 20:32
An: Jochen Wezel (CompuMaster GmbH)
Cc: mono
Betreff: Re: AW: [Mono-list] asp.net with vb.net

On Mon, 21 Feb 2005 14:32:00 +0100, Jochen Wezel (CompuMaster GmbH) [EMAIL 
PROTECTED] wrote:
 With my 1.1.3 version (not yet updated), your sample works fine for me.
 
 -Jochen
 

let me try down grading ... anyone else with 1.0.6 with similar issues ? 

-- Harsh

--
__
http://www.ebackend.com/blog


___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


AW: [Mono-list] asp.net with vb.net

2005-02-21 Thread Jochen Wezel (CompuMaster GmbH)
With my 1.1.3 version (not yet updated), your sample works fine for me.

-Jochen

-Ursprüngliche Nachricht-
Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Harsh Busa
Gesendet: Montag, 21. Februar 2005 11:10
An: mono
Betreff: [Mono-list] asp.net with vb.net

hello all 

i have downloaded and installed mono 1.0.6 on novell linux desktop using 
bitrock installer.

trying to run following code
code

   %@ Page Language=VB %
   html
   head
   script runat=server 
Sub Page_Load(s As Object, e As EventArgs)
   lblMessage.Text = Hello World
End Sub
   /script
   /head
   body
   form runat=server
 asp:Label id=lblMessage runat=server /
   /form
   /body
   /html

/code
~
and it is throwing following error
ERROR 
Compilation Error
Description: Error compiling a resource required to service this request. 
Review your source file and modify it to fix this error.

Error message: (0,0) : error : THIS IS STILL ALPHA AND UNSUPPORTED SOFTWARE, 
USE AT YOUR OWN RISK. /tmp/51317.vb(61,0) : error BC30284:
`ASP.monovb_aspx.AutoHandlers' no suitable properties found to override (0,0) : 
error failed: 1 Error(s), 0 warnings

File name: /home/hbusa/bin/monovb.aspx

/ERROR 

The .VB file generated in the temp  is attached , Line 61 where error is 
reported is blank .

TIA
 Harsh

--
__
http://www.ebackend.com/blog
___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


AW: [Mono-list] asp.net with vb.net

2005-02-21 Thread Jochen Wezel (CompuMaster GmbH)
Have you also installed the latest visual basic version (might not be part of 
the standard distribution of mono 1.0.6, currently)?

-Ursprüngliche Nachricht-
Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Harsh Busa
Gesendet: Montag, 21. Februar 2005 11:10
An: mono
Betreff: [Mono-list] asp.net with vb.net

hello all 

i have downloaded and installed mono 1.0.6 on novell linux desktop using 
bitrock installer.

trying to run following code
code

   %@ Page Language=VB %
   html
   head
   script runat=server 
Sub Page_Load(s As Object, e As EventArgs)
   lblMessage.Text = Hello World
End Sub
   /script
   /head
   body
   form runat=server
 asp:Label id=lblMessage runat=server /
   /form
   /body
   /html

/code
~
and it is throwing following error
ERROR 
Compilation Error
Description: Error compiling a resource required to service this request. 
Review your source file and modify it to fix this error.

Error message: (0,0) : error : THIS IS STILL ALPHA AND UNSUPPORTED SOFTWARE, 
USE AT YOUR OWN RISK. /tmp/51317.vb(61,0) : error BC30284:
`ASP.monovb_aspx.AutoHandlers' no suitable properties found to override (0,0) : 
error failed: 1 Error(s), 0 warnings

File name: /home/hbusa/bin/monovb.aspx

/ERROR 

The .VB file generated in the temp  is attached , Line 61 where error is 
reported is blank .

TIA
 Harsh

--
__
http://www.ebackend.com/blog
___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


AW: [Mono-list] Domain.c

2005-01-04 Thread Jochen Wezel (CompuMaster GmbH)
Hi Sebastien,

What can I do more than following? There was no error anywhere...

wget mono-1.1.3.20050103.tar.gz
cd mono-1.1.3.20050103
./configure --prefix=/usr
make
make uninstall
make install

Thanks
Jochen

-Ursprüngliche Nachricht-
Von: Sébastien Pouliot [mailto:[EMAIL PROTECTED] 
Gesendet: Montag, 3. Januar 2005 20:02
An: Jochen Wezel (CompuMaster GmbH); mono-list@lists.ximian.com
Betreff: RE: [Mono-list] Domain.c

 Domain.c raises exceptions; any ideas?

Your runtime (mono) is more recent than your corlib.

 This is nightly build from 2005-01-03, I use RedHat 9.
 
 [EMAIL PROTECTED] tmp]# mono test.exe
 
 ** ERROR **: file domain.c: line 594 (mono_init_internal): assertion
 failed: (mono_defaults.runtimesecurityframe_class != 0) aborting...
 Abgebrochen
 [EMAIL PROTECTED] tmp]#

Sebastien



___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


[Mono-list] Domain.c

2005-01-03 Thread Jochen Wezel (CompuMaster GmbH)
Domain.c raises exceptions; any ideas?
This is nightly build from 2005-01-03, I use RedHat 9.

[EMAIL PROTECTED] tmp]# mono test.exe

** ERROR **: file domain.c: line 594 (mono_init_internal): assertion
failed: (mono_defaults.runtimesecurityframe_class != 0)
aborting...
Abgebrochen
[EMAIL PROTECTED] tmp]#



When compiling with mbas, same error message :(


[EMAIL PROTECTED] tmp]# mbas test2.vb

** ERROR **: file domain.c: line 594 (mono_init_internal): assertion
failed: (mono_defaults.runtimesecurityframe_class != 0)
aborting...
Abgebrochen
[EMAIL PROTECTED] tmp]# cat test2.vb
module test
public sub Main ()
console.writeline (kjdfd)
end sub
end module
[EMAIL PROTECTED] tmp]# mbas test2.vb

** ERROR **: file domain.c: line 594 (mono_init_internal): assertion
failed: (mono_defaults.runtimesecurityframe_class != 0)
aborting...
Abgebrochen
[EMAIL PROTECTED] tmp]#



Thanks and Regards
Jochen
___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


AW: AW: AW: [Mono-list] Daily build errors

2004-10-29 Thread Jochen Wezel (CompuMaster GmbH)
Hi gennady!

Make uninstall and make clean worked fine, but make bootstrap-clean leads to an error:
rm -f libmonogc.la/so_locations
rm -f libmonogc-static.la/so_locations
rm -f *.o core *.core
rm -f *.lo
make[2]: Verlassen des Verzeichnisses Verzeichnis 
»/mono-dev/mono-cvs-auth/mono/libgc«
make[1]: Verlassen des Verzeichnisses Verzeichnis 
»/mono-dev/mono-cvs-auth/mono/libgc«
Making clean in .
make[1]: Wechsel in das Verzeichnis Verzeichnis »/mono-dev/mono-cvs-auth/mono«
rm -rf .libs _libs
rm -f *.lo
make[1]: Verlassen des Verzeichnisses Verzeichnis »/mono-dev/mono-cvs-auth/mono«
cd ./../mcs  make clean-profiles
make[1]: Wechsel in das Verzeichnis Verzeichnis »/mono-dev/mono-cvs-auth/mcs«
make profile-do--default--clean profile-do--net_2_0--clean
make[2]: Wechsel in das Verzeichnis Verzeichnis »/mono-dev/mono-cvs-auth/mcs«
make PROFILE=default clean
make[3]: Wechsel in das Verzeichnis Verzeichnis »/mono-dev/mono-cvs-auth/mcs«
*** You need a C# compiler installed to build MCS. (make sure mcs works from the 
command line)
*** Read INSTALL.txt for information on how to bootstrap
*** a Mono installation.
make[3]: *** [platform-check] Fehler 1
make[3]: Verlassen des Verzeichnisses Verzeichnis »/mono-dev/mono-cvs-auth/mcs«
make[2]: *** [profile-do--default--clean] Fehler 2
make[2]: Verlassen des Verzeichnisses Verzeichnis »/mono-dev/mono-cvs-auth/mcs«
make[1]: *** [clean-profiles] Fehler 2
make[1]: Verlassen des Verzeichnisses Verzeichnis »/mono-dev/mono-cvs-auth/mcs«
make: *** [mcs-do-clean-profiles] Fehler 2
[EMAIL PROTECTED] mono]#

A following make aborts again:
make[3]: Wechsel in das Verzeichnis Verzeichnis 
»/mono-dev/mono-cvs-auth/mono/runtime«
test -f ../../mcs/monoresgen/monoresgen.exe
make[3]: *** [monoresgen.exe] Fehler 1
make[3]: Verlassen des Verzeichnisses Verzeichnis 
»/mono-dev/mono-cvs-auth/mono/runtime«
make[2]: *** [all-recursive] Fehler 1
make[2]: Verlassen des Verzeichnisses Verzeichnis 
»/mono-dev/mono-cvs-auth/mono/runtime«
make[1]: *** [all-recursive] Fehler 1
make[1]: Verlassen des Verzeichnisses Verzeichnis »/mono-dev/mono-cvs-auth/mono«

Regards
Jochen

-Ursprüngliche Nachricht-
Von: gennady wexler [mailto:[EMAIL PROTECTED] 
Gesendet: Donnerstag, 28. Oktober 2004 20:53
An: Jochen Wezel (CompuMaster GmbH); Paul; mono
Betreff: Re: AW: AW: [Mono-list] Daily build errors

add this to your build commands:

make uninstall
make clean
make bootstrap-clean


On 10/28/04 9:47 AM, Jochen Wezel (CompuMaster GmbH)
[EMAIL PROTECTED] wrote:

 Hi Paul,
 
 I needed to update my mono runtime because I cannot compile via CVS.
 
 In folder mono, I started with:
 
 ./autogen.sh --prefix=/usr
 make
 
 
 make install
 [..]
 /bin/sh ../../mkinstalldirs /usr/lib/mono/1.0  /usr/bin/install -c -m 
 644 mscorlib.dll /usr/lib/mono/1.0/mscorlib.dll /usr/bin/install -c -m 
 644 ./mscorlib.dll.mdb /usr/lib/mono/1.0/mscorlib.dll.mdb
 MONO_PATH=. ../../mono/mini/mono --config ../../data/config 
 ./../gacutil.exe /i ./Accessibility.dll /f /package 1.0 /gacdir 
 /usr/lib /root /usr/lib Corlib not in sync with this runtime: expected corlib 
 version 28, found 26.
 Download a newer corlib or a newer runtime at http://www.go-mono.com/daily.
 make[3]: *** [install-data-local] Fehler 1
 make[3]: Verlassen des Verzeichnisses Verzeichnis 
 »/mono-dev/mono-cvs-auth/mono/runtime/net_1_1«
 make[2]: *** [install-am] Fehler 2
 make[2]: Verlassen des Verzeichnisses Verzeichnis 
 »/mono-dev/mono-cvs-auth/mono/runtime/net_1_1«
 make[1]: *** [install-recursive] Fehler 1
 make[1]: Verlassen des Verzeichnisses Verzeichnis 
 »/mono-dev/mono-cvs-auth/mono/runtime«
 make: *** [install-recursive] Fehler 1
 
 
 For testing purposes, I also started that:
 
 [EMAIL PROTECTED] mono]# make bootstrap
 rm -f ./../mcs/mcs/mcs.exe ./../mcs/class/lib/default/mscorlib.dll
 ./../mcs/class/lib/default/System.dll
 ./../mcs/class/lib/default/System.Xml.dll
 ./../mcs/class/lib/default/Mono.CompilerServices.SymbolWriter.dll
 for dir in jay mcs class/corlib class/System; do \
   (cd ./../mcs/$dir  make PROFILE=default NO_SIGN_ASSEMBLY=yes 
 USE_BOOT_COMPILE=yes BOOTSTRAP_MCS=mcs -d:BOOTSTRAP_WITH_OLDLIB) || 
 exit 1 ; \ done
 make[1]: Wechsel in das Verzeichnis Verzeichnis 
 »/mono-dev/mono-cvs-auth/mcs/jay«
 make all-local
 make[2]: Wechsel in das Verzeichnis Verzeichnis 
 »/mono-dev/mono-cvs-auth/mcs/jay«
 make[2]: Für das Target »all-local« gibt es nichts zu tun.
 make[2]: Verlassen des Verzeichnisses Verzeichnis 
 »/mono-dev/mono-cvs-auth/mcs/jay«
 make[1]: Verlassen des Verzeichnisses Verzeichnis 
 »/mono-dev/mono-cvs-auth/mcs/jay«
 make[1]: Wechsel in das Verzeichnis Verzeichnis 
 »/mono-dev/mono-cvs-auth/mcs/mcs«
 make all-local
 make[2]: Wechsel in das Verzeichnis Verzeichnis 
 »/mono-dev/mono-cvs-auth/mcs/mcs«
 mcs -d:BOOTSTRAP_WITH_OLDLIB   -d:NET_1_1 -d:ONLY_1_1 -g /target:exe
 /out:mcs.exe cs-parser.cs  @mcs.exe.sources Corlib not in sync with 
 this runtime: expected corlib version 28

AW: WG: AW: [Mono-list] Daily build errors

2004-10-29 Thread Jochen Wezel (CompuMaster GmbH)
 mscorlib.dll.mdb
make[2]: [../../class/lib/default/mscorlib.dll] Fehler 1 (ignoriert)
make[2]: Verlassen des Verzeichnisses Verzeichnis 
»/mono-dev/mono-cvs-auth/mcs/class/corlib«
make[1]: Verlassen des Verzeichnisses Verzeichnis »/mono-dev/mono-cvs-auth/mcs/


But at the end of this make bootstrap, we find us again at these lines:
Mono.Xml.Schema/XsdValidatingReader.cs(212) warning CS0612: 
'System.Xml.IXmlNamespaceResolver.LookupPrefix(string, bool)' is obsolete
Mono.Xml.Schema/XsdValidatingReader.cs(204) warning CS0612: 
'System.Xml.IXmlNamespaceResolver.LookupPrefix(string, bool)' is obsolete
System.Xml.Schema/XmlSchemaUtil.cs(122) error CS0117: `System.Xml.XmlTextReader' does 
not contain a definition for `GetInternalParserContext'
System.Xml.Schema/XmlSchemaUtil.cs(125) error CS0117: `System.Xml.XmlNodeReader' does 
not contain a definition for `GetInternalParserContext'
System.Xml.Schema/XmlSchemaUtil.cs(128) error CS0117: `System.Xml.XmlValidatingReader' 
does not contain a definition for `GetInternalParserContext'
Compilation failed: 3 error(s), 3 warnings
make[3]: *** [../../class/lib/default/System.Xml.dll] Fehler 1
make[3]: Verlassen des Verzeichnisses Verzeichnis 
»/mono-dev/mono-cvs-auth/mcs/class/System.XML«
make[2]: *** [all.real] Fehler 2
make[2]: Verlassen des Verzeichnisses Verzeichnis 
»/mono-dev/mono-cvs-auth/mcs/class/System.XML«
make[1]: *** [mcs-do-short-build] Fehler 1
make[1]: Verlassen des Verzeichnisses Verzeichnis »/mono-dev/mono-cvs-auth/mono«
make: *** [bootstrap] Fehler 2
[EMAIL PROTECTED] mono]#


Wondering and wondering...
Jochen

-Ursprüngliche Nachricht-
Von: Raja R Harinath [mailto:[EMAIL PROTECTED] 
Gesendet: Freitag, 29. Oktober 2004 10:35
An: Jochen Wezel (CompuMaster GmbH)
Cc: Paul; Mono List
Betreff: Re: WG: AW: [Mono-list] Daily build errors

Hi,

Jochen Wezel (CompuMaster GmbH) [EMAIL PROTECTED] writes:

 Now I removed my complete old content of my CVS folder and checked out again.

 export CVS_RSH=ssh
 export [EMAIL PROTECTED]:/cvs/public
 rm -f -R -d mcs mono xsp monkeyguide monocov cvs -z3 co mcs mono xsp 
 monkeyguide monocov cd mono ./autogen.sh --prefix=/usr make

You need to use some form of bootstrapping.  I'm working on a patch that will do the 
bootstrap automatically, but for now, on a fresh checkout from CVS, you _need_ to use 
'make bootstrap' or 'make monolite-bootstrap'.

 This is the new and well-known error message:

 Making all in runtime
 make[2]: Wechsel in das Verzeichnis Verzeichnis 
 »/mono-dev/mono-cvs-auth/mono/runtime«
 Making all in .
 make[3]: Wechsel in das Verzeichnis Verzeichnis 
 »/mono-dev/mono-cvs-auth/mono/runtime«
 test -f ../../mcs/monoresgen/monoresgen.exe
 make[3]: *** [monoresgen.exe] Fehler 1
 make[3]: Verlassen des Verzeichnisses Verzeichnis 
 »/mono-dev/mono-cvs-auth/mono/runtime«
 make[2]: *** [all-recursive] Fehler 1
 make[2]: Verlassen des Verzeichnisses Verzeichnis 
 »/mono-dev/mono-cvs-auth/mono/runtime«
 make[1]: *** [all-recursive] Fehler 1
 make[1]: Verlassen des Verzeichnisses Verzeichnis 
 »/mono-dev/mono-cvs-auth/mono«
 make: *** [all] Fehler 2

It's saying: the command

  test -f ../../mcs/monoresgen/monoresgen.exe

failed.  It failed because that file doesn't exist.  That file doesn't exist because 
you didn't build in the 'mcs' tree.  If you use one of the bootstrapping targets 
('bootstrap' or 'monolite-bootstrap'), it automatically builds in the 'mcs' tree in 
the right order.

- Hari


___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Daily build errors - Mission successfull ;-)

2004-10-29 Thread Jochen Wezel (CompuMaster GmbH)
Hi Paul, hi gennady, hi Atsushi, hi Hari!

Yep. I reported it to the mono-devel-list this morning. Hopefully there will be a fix 
in tonights cvs
This is letting me hope... :)

I just read that Atsushi has fixed it.

And retried it.
And installed it.

And got no more error :))

Thanks for your help!

Regards
Jochen

-Ursprüngliche Nachricht-
Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von PFJ
Gesendet: Freitag, 29. Oktober 2004 13:45
An: mono
Betreff: Re: AW: WG: AW: [Mono-list] Daily build errors

nderungszeit aus der Zukunft (2004-10-29 03:16:28  
 2004-10-28 21:29:20.498218)!
 ../../jay/jay -ct  ../../jay/skeleton.cs System.Xml.XPath/Parser.jay 
 System.Xml.XPath/Parser.cs
 MONO_PATH=../../class/lib/default:$MONO_PATH mono  ../../mcs/mcs.exe   -d:NET_1_1 
 -d:ONLY_1_1 -g /noconfig /lib:/usr/local/lib /noconfig /unsafe /r:mscorlib.dll 
 /r:System.dll /nowarn:0162 /nowarn:0618 /target:library /out:System.Xml.dll 
 @System.Xml.dll.sources
 Mono.Xml.Schema/XsdValidatingReader.cs(1400) warning CS0612: 
 'System.Xml.IXmlNamespaceResolver.LookupNamespace(string, bool)' is 
 obsolete
 Mono.Xml.Schema/XsdValidatingReader.cs(212) warning CS0612: 
 'System.Xml.IXmlNamespaceResolver.LookupPrefix(string, bool)' is 
 obsolete
 Mono.Xml.Schema/XsdValidatingReader.cs(204) warning CS0612: 
 'System.Xml.IXmlNamespaceResolver.LookupPrefix(string, bool)' is 
 obsolete
 System.Xml.Schema/XmlSchemaUtil.cs(122) error CS0117: `System.Xml.XmlTextReader' 
 does not contain a definition for `GetInternalParserContext'
 System.Xml.Schema/XmlSchemaUtil.cs(125) error CS0117: `System.Xml.XmlNodeReader' 
 does not contain a definition for `GetInternalParserContext'
 System.Xml.Schema/XmlSchemaUtil.cs(128) error CS0117: 
 `System.Xml.XmlValidatingReader' does not contain a definition for 
 `GetInternalParserContext'
 Compilation failed: 3 error(s), 3 warnings

Yep. I reported it to the mono-devel-list this morning. Hopefully there will be a fix 
in tonights cvs

TTFN

Paul
--
If I face my God tomorrow, I can tell Him I am innocent.
I've never harmed anyone. I have cheated no one. 
I have deceived no one. I have hurt no one. 
Except myself. And that He will forgive me. - Hans Holzel
___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


[Mono-list] Daily build errors

2004-10-28 Thread Jochen Wezel (CompuMaster GmbH)
Title: Daily build errors






Hi!


When I want to install the daily build of 2004-10-26 (and -24), I get following error while make install:


---snip---

/bin/sh ../mkinstalldirs /usr/etc/mono

/usr/bin/install -c -m 644 config /usr/etc/mono/config

/usr/bin/install -c -m 644 browscap.ini /usr/etc/mono/browscap.ini

make[3]: Verlassen des Verzeichnisses Verzeichnis »/root/mono-26-Oct-04/mono/data«

make[2]: Verlassen des Verzeichnisses Verzeichnis »/root/mono-26-Oct-04/mono/data«

make[1]: Verlassen des Verzeichnisses Verzeichnis »/root/mono-26-Oct-04/mono/data«

Making install in runtime

make[1]: Wechsel in das Verzeichnis Verzeichnis »/root/mono-26-Oct-04/mono/runtime«

Making install in .

make[2]: Wechsel in das Verzeichnis Verzeichnis »/root/mono-26-Oct-04/mono/runtime«

test -f ../../mcs/monoresgen/monoresgen.exe.mdb

make[2]: *** [monoresgen.exe.mdb] Fehler 1

make[2]: Verlassen des Verzeichnisses Verzeichnis »/root/mono-26-Oct-04/mono/runtime«

make[1]: *** [install-recursive] Fehler 1

make[1]: Verlassen des Verzeichnisses Verzeichnis »/root/mono-26-Oct-04/mono/runtime«

make: *** [install-recursive] Fehler 1

[EMAIL PROTECTED] mono]#

---snip---


The file monoresgen.exe.mdb hasn't been there...


Thanks!

Jochen





AW: AW: [Mono-list] Daily build errors

2004-10-28 Thread Jochen Wezel (CompuMaster GmbH)
Hi Paul,

I needed to update my mono runtime because I cannot compile via CVS.

In folder mono, I started with:

./autogen.sh --prefix=/usr
make


make install
[..]
/bin/sh ../../mkinstalldirs /usr/lib/mono/1.0
 /usr/bin/install -c -m 644 mscorlib.dll /usr/lib/mono/1.0/mscorlib.dll
/usr/bin/install -c -m 644 ./mscorlib.dll.mdb /usr/lib/mono/1.0/mscorlib.dll.mdb
MONO_PATH=. ../../mono/mini/mono --config ../../data/config ./../gacutil.exe /i 
./Accessibility.dll /f /package 1.0 /gacdir /usr/lib /root /usr/lib
Corlib not in sync with this runtime: expected corlib version 28, found 26.
Download a newer corlib or a newer runtime at http://www.go-mono.com/daily.
make[3]: *** [install-data-local] Fehler 1
make[3]: Verlassen des Verzeichnisses Verzeichnis 
»/mono-dev/mono-cvs-auth/mono/runtime/net_1_1«
make[2]: *** [install-am] Fehler 2
make[2]: Verlassen des Verzeichnisses Verzeichnis 
»/mono-dev/mono-cvs-auth/mono/runtime/net_1_1«
make[1]: *** [install-recursive] Fehler 1
make[1]: Verlassen des Verzeichnisses Verzeichnis 
»/mono-dev/mono-cvs-auth/mono/runtime«
make: *** [install-recursive] Fehler 1


For testing purposes, I also started that:

[EMAIL PROTECTED] mono]# make bootstrap
rm -f ./../mcs/mcs/mcs.exe ./../mcs/class/lib/default/mscorlib.dll 
./../mcs/class/lib/default/System.dll ./../mcs/class/lib/default/System.Xml.dll 
./../mcs/class/lib/default/Mono.CompilerServices.SymbolWriter.dll
for dir in jay mcs class/corlib class/System; do \
  (cd ./../mcs/$dir  make PROFILE=default NO_SIGN_ASSEMBLY=yes USE_BOOT_COMPILE=yes 
BOOTSTRAP_MCS=mcs -d:BOOTSTRAP_WITH_OLDLIB) || exit 1 ; \
done
make[1]: Wechsel in das Verzeichnis Verzeichnis »/mono-dev/mono-cvs-auth/mcs/jay«
make all-local
make[2]: Wechsel in das Verzeichnis Verzeichnis »/mono-dev/mono-cvs-auth/mcs/jay«
make[2]: Für das Target »all-local« gibt es nichts zu tun.
make[2]: Verlassen des Verzeichnisses Verzeichnis »/mono-dev/mono-cvs-auth/mcs/jay«
make[1]: Verlassen des Verzeichnisses Verzeichnis »/mono-dev/mono-cvs-auth/mcs/jay«
make[1]: Wechsel in das Verzeichnis Verzeichnis »/mono-dev/mono-cvs-auth/mcs/mcs«
make all-local
make[2]: Wechsel in das Verzeichnis Verzeichnis »/mono-dev/mono-cvs-auth/mcs/mcs«
mcs -d:BOOTSTRAP_WITH_OLDLIB   -d:NET_1_1 -d:ONLY_1_1 -g /target:exe /out:mcs.exe 
cs-parser.cs  @mcs.exe.sources
Corlib not in sync with this runtime: expected corlib version 28, found 22.
Download a newer corlib or a newer runtime at http://www.go-mono.com/daily.
make[2]: *** [mcs.exe] Fehler 1
make[2]: Verlassen des Verzeichnisses Verzeichnis »/mono-dev/mono-cvs-auth/mcs/mcs«
make[1]: *** [all.real] Fehler 2
make[1]: Verlassen des Verzeichnisses Verzeichnis »/mono-dev/mono-cvs-auth/mcs/mcs«
make: *** [mcs-do-basic-build] Fehler 1
[EMAIL PROTECTED] mono]#


I'm wondering why it finds sometimes runtime version 22, and the next time 26...

In any case, this is the cause why I tried to build from the daily builds completely 
new.

I also have tried to remove anything which has been installed with mono (/usr and 
/usr/local). This helped last time when there was mono installed in /usr and in 
another version in /usr/local. After this, I removed all mono-packages with red carpet 
and then reinstalled them again to get a working start point. But it hasn't helped 
this time :(
[EMAIL PROTECTED] mono-cvs-auth]# cat cleanupmonoinstallation.sh
#!/bin/sh
cd /usr
rm -f -R -d bin/*.exe bin/*.dll bin/mbas* bin/mcs* bin/mono* bin/libmono* bin/libmint* 
lib/mono include/mono etc/mono share/mono
cd /usr/local
rm -f -R -d bin/*.exe bin/*.dll bin/mbas* bin/mcs* bin/mono* bin/libmono* bin/libmint* 
lib/mono include/mono etc/mono share/mono
[EMAIL PROTECTED] mono-cvs-auth]#


-Ursprüngliche Nachricht-
Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Paul
Gesendet: Donnerstag, 28. Oktober 2004 17:47
An: Mono List
Betreff: Re: AW: [Mono-list] Daily build errors

Hi,

  First - why are you doing this as root? Root is there for a purpose
 and it
  isn't just so you don't have to keep typing su to change to it. On a 
  machine, it can be considered a major deity. It has the power of 
  life,
 
  death and existance on a box. Mess something up as root and you can 
  (and probably *will*) do some serious damage!
 As in the real world: if you have rights you can missuse them. If you 
 don't have any rights, you can't do your job.

You've missed the point. You do everything as a user and until you need to (for 
instance, installing into a directory owned by root, such as /usr or /var), you stay 
like that. As a user, you have all the rights you need.

  Second, is this a compile from cvs and if it is, is it via and 
  update and if it is from an update, what happens if you ditch that 
  version of
 
  mono/mcs and do a fresh checkout?
 This is a compile from the daily build downloaded from the mono 
 website. Nothing CVS or similar.

Try the cvs route - it's much easier to bugtrack!

  Third, what distro are you using? I know 

WG: AW: [Mono-list] Daily build errors

2004-10-28 Thread Jochen Wezel (CompuMaster GmbH)
Hi Paul, again,

Now I removed my complete old content of my CVS folder and checked out again.

export CVS_RSH=ssh
export [EMAIL PROTECTED]:/cvs/public
rm -f -R -d mcs mono xsp monkeyguide monocov
cvs -z3 co mcs mono xsp monkeyguide monocov
cd mono
./autogen.sh --prefix=/usr
make

This is the new and well-known error message:

-2.0 -I/usr/lib/glib-2.0/include -DGC_LINUX_THREADS -D_GNU_SOURCE -D_REENTRANT 
-D_FILE_OFFSET_BITS=64 -DUSE_COMPILER_TLS -g -O2 -fno-strict-aliasing -g -Wall 
-Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes 
-Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align 
-Wwrite-strings -c mono-cov.c -MT mono-cov.lo -MD -MP -MF .deps/mono-cov.TPlo -o 
mono-cov.o /dev/null 21
mv -f .libs/mono-cov.lo mono-cov.lo
/bin/sh ../../libtool --mode=link gcc  -g -O2 -fno-strict-aliasing -g -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes 
-Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings   -o 
libmono-profiler-cov.la -rpath /usr/lib  mono-cov.lo ../../mono/mini/libmono.la -lnsl 
-lpthread -lm -lrt
rm -fr .libs/libmono-profiler-cov.la .libs/libmono-profiler-cov.* 
.libs/libmono-profiler-cov.*
gcc -shared  mono-cov.lo  -Wl,--rpath -Wl,/mono-dev/mono-cvs-auth/mono/mono/mini/.libs 
 -L/usr/lib ../../mono/mini/.libs/libmono.so -lnsl -lpthread -lm -lrt   -Wl,-soname 
-Wl,libmono-profiler-cov.so.0 -o .libs/libmono-profiler-cov.so.0.0.0
(cd .libs  rm -f libmono-profiler-cov.so.0  ln -s libmono-profiler-cov.so.0.0.0 
libmono-profiler-cov.so.0)
(cd .libs  rm -f libmono-profiler-cov.so  ln -s libmono-profiler-cov.so.0.0.0 
libmono-profiler-cov.so)
ar cru .libs/libmono-profiler-cov.a  mono-cov.o
ranlib .libs/libmono-profiler-cov.a
creating libmono-profiler-cov.la
(cd .libs  rm -f libmono-profiler-cov.la  ln -s ../libmono-profiler-cov.la 
libmono-profiler-cov.la)
make[3]: Verlassen des Verzeichnisses Verzeichnis 
»/mono-dev/mono-cvs-auth/mono/mono/profiler«
make[3]: Wechsel in das Verzeichnis Verzeichnis »/mono-dev/mono-cvs-auth/mono/mono«
make[3]: Für das Target »all-am« gibt es nichts zu tun.
make[3]: Verlassen des Verzeichnisses Verzeichnis »/mono-dev/mono-cvs-auth/mono/mono«
make[2]: Verlassen des Verzeichnisses Verzeichnis »/mono-dev/mono-cvs-auth/mono/mono«
Making all in docs
make[2]: Wechsel in das Verzeichnis Verzeichnis »/mono-dev/mono-cvs-auth/mono/docs«
make[2]: Für das Target »all« gibt es nichts zu tun.
make[2]: Verlassen des Verzeichnisses Verzeichnis »/mono-dev/mono-cvs-auth/mono/docs«
Making all in data
make[2]: Wechsel in das Verzeichnis Verzeichnis »/mono-dev/mono-cvs-auth/mono/data«
Making all in net_1_1
make[3]: Wechsel in das Verzeichnis Verzeichnis 
»/mono-dev/mono-cvs-auth/mono/data/net_1_1«
make[3]: Für das Target »all« gibt es nichts zu tun.
make[3]: Verlassen des Verzeichnisses Verzeichnis 
»/mono-dev/mono-cvs-auth/mono/data/net_1_1«
Making all in net_2_0
make[3]: Wechsel in das Verzeichnis Verzeichnis 
»/mono-dev/mono-cvs-auth/mono/data/net_2_0«
make[3]: Für das Target »all« gibt es nichts zu tun.
make[3]: Verlassen des Verzeichnisses Verzeichnis 
»/mono-dev/mono-cvs-auth/mono/data/net_2_0«
make[3]: Wechsel in das Verzeichnis Verzeichnis »/mono-dev/mono-cvs-auth/mono/data«
make[3]: Für das Target »all-am« gibt es nichts zu tun.
make[3]: Verlassen des Verzeichnisses Verzeichnis »/mono-dev/mono-cvs-auth/mono/data«
make[2]: Verlassen des Verzeichnisses Verzeichnis »/mono-dev/mono-cvs-auth/mono/data«
Making all in runtime
make[2]: Wechsel in das Verzeichnis Verzeichnis 
»/mono-dev/mono-cvs-auth/mono/runtime«
Making all in .
make[3]: Wechsel in das Verzeichnis Verzeichnis 
»/mono-dev/mono-cvs-auth/mono/runtime«
test -f ../../mcs/monoresgen/monoresgen.exe
make[3]: *** [monoresgen.exe] Fehler 1
make[3]: Verlassen des Verzeichnisses Verzeichnis 
»/mono-dev/mono-cvs-auth/mono/runtime«
make[2]: *** [all-recursive] Fehler 1
make[2]: Verlassen des Verzeichnisses Verzeichnis 
»/mono-dev/mono-cvs-auth/mono/runtime«
make[1]: *** [all-recursive] Fehler 1
make[1]: Verlassen des Verzeichnisses Verzeichnis »/mono-dev/mono-cvs-auth/mono«
make: *** [all] Fehler 2
[EMAIL PROTECTED] mono]#


-Ursprüngliche Nachricht-
Von: Jochen Wezel (CompuMaster GmbH) 
Gesendet: Donnerstag, 28. Oktober 2004 18:48
An: 'Paul'; 'Mono List'
Betreff: AW: AW: [Mono-list] Daily build errors

Hi Paul,

I needed to update my mono runtime because I cannot compile via CVS.

In folder mono, I started with:

./autogen.sh --prefix=/usr
make


make install
[..]
/bin/sh ../../mkinstalldirs /usr/lib/mono/1.0  /usr/bin/install -c -m 644 mscorlib.dll 
/usr/lib/mono/1.0/mscorlib.dll /usr/bin/install -c -m 644 ./mscorlib.dll.mdb 
/usr/lib/mono/1.0/mscorlib.dll.mdb
MONO_PATH=. ../../mono/mini/mono --config ../../data/config ./../gacutil.exe /i 
./Accessibility.dll /f /package 1.0 /gacdir /usr/lib /root /usr/lib Corlib not in sync 
with this runtime

AW: AW: [Mono-list] Checking key existance in a NameValueCollection

2004-10-13 Thread Jochen Wezel (CompuMaster GmbH)
Something like 
If (Request.Form(key) == null)
{
//blah
}

-Ursprüngliche Nachricht-
Von: Fabien Meghazi [mailto:[EMAIL PROTECTED] 
Gesendet: Mittwoch, 13. Oktober 2004 14:14
An: Jochen Wezel (CompuMaster GmbH)
Betreff: Re: AW: [Mono-list] Checking key existance in a NameValueCollection

 In VB.NET, I'd say:
 If Not Request.Form(key) Is Nothing Then
 'some dos...
 End If

Do you know the equivalent in C# ?


___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list