Re: [Mono-dev] Mono Service crashs

2010-12-15 Thread Chakotey STME
2010/12/14 Robert Jordan robe...@gmx.net: On 14.12.2010 16:16, Chakotey STME wrote: Hello Community, I have a problem with a mono-service. I have a mono-service in which I host a WCF-Service. I start the software with mono-service2 and it works fine. After a while (I can't say when exactly

[Mono-dev] Mono Service crashs

2010-12-14 Thread Chakotey STME
Hello Community, I have a problem with a mono-service. I have a mono-service in which I host a WCF-Service. I start the software with mono-service2 and it works fine. After a while (I can't say when exactly - sometimes after 1 hour, sometimes after 4 hours) the service crashs. There is no more

[Mono-dev] Fwd: Problem with WCF and IEnumerable as return type

2010-12-06 Thread Chakotey STME
This problem still exists. Does anyone have an idea? -- Forwarded message -- From: Chakotey STME chakoteys...@gmail.com Date: 2010/11/30 Subject: Problem with WCF and IEnumerable as return type To: mono-devel-list@lists.ximian.com Hello, I have a problem with WCF. If I have

[Mono-dev] Problem with WCF and IEnumerable as return type

2010-11-30 Thread Chakotey STME
Hello, I have a problem with WCF. If I have this service contract: ServiceContract() _ Public Interface IHelloService OperationContract() _ Function Greet(ByVal name As String) As IEnumerable(Of Objekt) End Interface This Service: Imports System.ServiceModel Module Module1 Sub

[Mono-dev] Validate xml file with schema file

2010-11-29 Thread Chakotey STME
Hi, I have a problem with this code under mono 2.6: Dim xsdMarkup As XDocument = XDocument.Load(/home/stefan/xml/PluginConfigSchema.xsd) Dim schemas As XmlSchemaSet = New XmlSchemaSet() schemas.Add(, xsdMarkup.CreateReader) Dim doc1 As XDocument =

Re: [Mono-dev] Validate xml file with schema file

2010-11-29 Thread Chakotey STME
. Atsushi Eno (2010/11/29 18:55), Chakotey STME wrote: Hi, I have a problem with this code under mono 2.6:          Dim xsdMarkup As XDocument = XDocument.Load(/home/stefan/xml/PluginConfigSchema.xsd)          Dim schemas As XmlSchemaSet = New XmlSchemaSet()          schemas.Add

Re: [Mono-dev] WCF and parallel client-execution

2010-11-22 Thread Chakotey STME
So I have to test it with using a mono 2.8 installation? chakoteystme 2010/11/22 Atsushi Eno atsushi...@veritas-vos-liberabit.com: I can't give a definite answer, but at least the throttling limitation will go away ;-) Atsushi Eno (2010/11/22 15:41), Chakotey STME wrote: hello, thanks

Re: [Mono-dev] WCF and parallel client-execution

2010-11-21 Thread Chakotey STME
service throttling the maximum concurrent sessions (and thus calls) to 1 for stable processing (and you cannot change it through ServiceThrottlingBehavior, as it is hard coded). So you won't get two clients run in parallel. Atsushi Eno (2010/11/21 8:10), Chakotey STME wrote: Hello, I have

[Mono-dev] WCF and parallel client-execution

2010-11-20 Thread Chakotey STME
Hello, I have a problem with WCF. I have a service: ServiceBehavior(ConcurrencyMode:=ServiceModel.ConcurrencyMode.Multiple, InstanceContextMode:=InstanceContextMode.Single) _ Public Class HelloService Implements IHelloService Private Shared thisInstance As HelloService Protected Sub

[Mono-dev] Problem with FileSystemWatcher

2010-11-17 Thread Chakotey STME
Hi Community, I have a big problem with the FileSystemWatcher. This is my source-Code: Private i As Integer = 0 Sub Main() Dim m_PerfdataFileWatcher As IO.FileSystemWatcher = New IO.FileSystemWatcher m_PerfdataFileWatcher.Filter = service-perfdata

Re: [Mono-dev] Problem with FileSystemWatcher

2010-11-17 Thread Chakotey STME
I use the editor vi. Then I delete a line or insert a cr. -- the result is the same could it be a problem with the editor? chakoteystme 2010/11/17 Robert Jordan robe...@gmx.net: On 17.11.2010 14:45, Chakotey STME wrote: If I execute this programm under windows and .net and make a change

[Mono-dev] Problem with Linq in Mono

2010-10-20 Thread Chakotey STME
Hi Community, I have a vb.net project (.net 3.5). I use this Linq-Statement: Dim minPosition = myIndexing.Where(Function(x) x.Key beginTime).SelectMany(Function(x) x.Value).ToList It works perfect under .net and mono 2.6 But I get an exception if I use this operation (i get the exception only

Re: [Mono-dev] Problem with Linq in Mono

2010-10-20 Thread Chakotey STME
Thanks for your answer I produced the error. It's no bug! I had no elements in the list or the list wasn't initialized when I make the .Max-Operation. Sorry 2010/10/20 Jb Evain j...@nurv.fr: Hi, On Wed, Oct 20, 2010 at 1:58 PM, Chakotey STME chakoteys...@gmail.com wrote: I have a vb.net

Re: [Mono-dev] Mono and WCF support

2010-10-15 Thread Chakotey STME
ok, thanks for your answer Atsushi 2010/10/13 Atsushi Eno atsushi...@veritas-vos-liberabit.com:  Hello, On 2010/10/10 18:33, Chakotey STME wrote: Hello, thanks for your answer. But I don't know in which version wcf is implemented in mono. Is it for example implemented in mono 2.4

Re: [Mono-dev] Mono and WCF support

2010-10-10 Thread Chakotey STME
Eno atsushi...@veritas-vos-liberabit.com:  As the immediately next sentense to Nowadays WCF is part of the core Mono. mentions, historically it used to be in different module (olive). Atsushi Eno On 2010/10/09 3:27, Chakotey STME wrote: Hi mailing list, I have a question about the wcf

[Mono-dev] Mono and WCF support

2010-10-08 Thread Chakotey STME
Hi mailing list, I have a question about the wcf support in mono. at http://www.mono-project.com/Roadmap I get the information that in mono 2.6 there is wcf support. and here (http://www.mono-project.com/WCF) I get the information that Nowadays WCF is part of the core Mono. And I have to know

Re: [Mono-dev] Mono 2.4.3 LTS

2010-09-27 Thread Chakotey STME
: I noticed the Mono 2.2 roadmap info has been lost, it should have been moved to http://www.mono-project.com/Roadmap_History Chakotey STME wrote: Hello Community, I have a question. At http://www.mono-project.com/Roadmap I found, that Mono 2.4.3 is a LTS-Version. Does LTS mean Long Time

[Mono-dev] Mono 2.4.3 LTS

2010-09-24 Thread Chakotey STME
Hello Community, I have a question. At http://www.mono-project.com/Roadmap I found, that Mono 2.4.3 is a LTS-Version. Does LTS mean Long Time Support? If that's correct, how long will this version be supported? Thanks ___ Mono-devel-list mailing list

Re: [Mono-dev] Fwd: webservice under mono/xsp

2010-09-21 Thread Chakotey STME
folder contains the dlls for the StuffService and other associated libraries. Hopefully this helps... thanks, Kris From: mono-devel-list-boun...@lists.ximian.com [mono-devel-list-boun...@lists.ximian.com] On Behalf Of Chakotey STME [chakoteys

[Mono-dev] Fwd: webservice under mono/xsp

2010-09-20 Thread Chakotey STME
-vbnc-version: Visual Basic.Net Compiler version 0.0.0.5914 I really have to solve this problem. If there is no solution for my problem I can't use mono for my webservice. Does anybody have an idea? thanks -- Forwarded message -- From: Chakotey STME chakoteys...@gmail.com Date

[Mono-dev] Fwd: webservice under mono/xsp

2010-09-15 Thread Chakotey STME
Hello Community, does nobody knows an answer? Or don't you know what I mean? Or is it impossible what I want to do? thanks -- Forwarded message -- From: Chakotey STME chakoteys...@gmail.com Date: 2010/9/13 Subject: webservice under mono/xsp To: mono-devel-list@lists.ximian.com

Re: [Mono-dev] Fwd: webservice under mono/xsp

2010-09-15 Thread Chakotey STME
of the implementation. Also, I seem to remember there was an issue about Mono not supporting Web Sites, but only Web Application.  I am not sure if this is still the case. Hope this helps, --- Adar Wesley On Wed, Sep 15, 2010 at 9:59 AM, Chakotey STME chakoteys...@gmail.com wrote: Hello

[Mono-dev] webservice under mono/xsp

2010-09-13 Thread Chakotey STME
Hello Community, I have a webservice-project with nearly no functions and I want to publish it in my local network. Under Windows with IIS I have no problem to publish my webservice. I have a precompiled library (my VB-Code) and a asmx-file. Here is the content of my asmx-file: %@ WebService