Re: [Mono-dev] mono wcf

2012-08-01 Thread icorderi
David Schmitt wrote Isn't there a wildcard syntax or something like that? Hmm: Fourth hit on Google: http://stackoverflow.com/q/10649078/4918 The point is to replace host name in base address with * symbol (wildcard). It will be changed with actual host name in run time. Tested

Re: [Mono-dev] mono wcf

2012-07-31 Thread icorderi
It *should *work but it *doesn't*. I'm facing the same issue described by hiking. Basically, when you host the wcf service on the console with a uri like net.tcp://localhost:8081 on a linux box the socket address is not bind to listen on 0.0.0.0:8081 instead it listens on 127.0.0.1:8081

Re: [Mono-dev] mono wcf

2012-07-31 Thread icorderi
@Rob Yes localhost is translated to 127.0.0.1 on hosts. But regardless of that, if the wcf service is hosted as net.tcp://localhost:8081 it should work as expected. An easy workaround is to change the config to net.tcp://machine name:8081. I can live with that workaround although localhost should

[Mono-dev] WCF Performance issues on mono 2.10

2012-07-31 Thread icorderi
I'm running on performance issues with WCF on mono. On my Windows 7 box I can do about ~43K operations per second to my WCF service. On the linux box it drops to less than 500 operations per second. That is as long as I try sending less than 1600 messages. When I try sending 1700 messages