User Ian Ringrose - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T11:25:17Zhttp://stackoverflow.com/feeds/user/57159http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1834067/can-a-wcf-server-expose-more-than-one-service-over-the-same-tcp-port0Can a WCF server expose more than one service over the same TCP port? Ian Ringrose2009-12-02T16:26:31Z2009-12-02T17:59:37Z
<p>Can I expose more than one WCF service (interface) over the same port and have a <strong>single</strong> client connect to both services with <strong>different</strong> TCP connections?</p>
<p>I need the two services to be independent of each other, so that the response to an outstanding message on the channel to one service does not get blocked by a call-back from the other service. (Some client)</p>
http://stackoverflow.com/questions/1803065/how-can-i-find-a-tcp-port-that-is-free-so-a-server-can-bind-to-it0How can I find a TCP port that is free (so a server can bind to it)Ian Ringrose2009-11-26T11:12:17Z2009-12-02T16:32:46Z
<p><a href="http://stackoverflow.com/questions/138043/find-the-next-tcp-port-in-net">Find the next TCP port in .Net</a> says how to do this in raw .net, but not how to safely to this with WCF.</p>
<p>In my unit tests, I need to use the NetTcpBinding, <strong>I do not wish to hard code the port it is using</strong>. </p>
<p>Therefore how can I get the NetTcpBinding to automatically choose a free port when used in my ServiceHost?</p>
<p>How can I get it to tell me the port (or full endpoint address) it has chosen?</p>
<p>Or how can I using .NET find a few port that is valid for a server to bind to?</p>
http://stackoverflow.com/questions/1834019/is-there-a-way-to-do-true-bidirectional-communications-over-a-single-tcp-connecti1Is there a way to do TRUE bidirectional communications over a single TCP connection in WCF?Ian Ringrose2009-12-02T16:20:58Z2009-12-02T16:20:58Z
<p>I have a WCF server that exposed an interface that has a call-back interface it uses to send events to the clients. </p>
<p>I rather not mark all the methods on the call-back interface as “OneWay”, as it make error tracking and logging harder.</p>
<p>The client is written in WinForms, so the call-backs will not be processes until after the call to the server has returned. (This is the behaviour I want)</p>
<p><strong>I make all the call-backs with Asynchronous Eg. BeginMyMethod(...), so the server is not blocked waiting for a client.</strong></p>
<p>However if a call-back is sent to the same client as sent the request to the server, then the TCP channel deadlocks it’s self, as it does not seem to be able to send the response back to the client, before the client has send the call-back response back to the server over the same channel. </p>
<p>Is there a way to do <strong>true</strong> bidirectional communications over a single TCP connection in WCF?</p>
http://stackoverflow.com/questions/1831747/is-there-a-better-way-to-implment-equals-for-object-with-lots-of-fields2Is there a better way to implment Equals for object with lots of fields?Ian Ringrose2009-12-02T09:33:09Z2009-12-02T10:45:08Z
<p>I have lot of Data Transfer Objects (DTO) that each contains <strong>lots of simple fields</strong>. I need to implement Equals on all of them (so I can write some unit tests off transporting them var WCF).</p>
<p>The code I am using is:</p>
<pre><code>public override bool Equals(object rhs)
{
RequestArguments other = rhs as RequestArguments;
return
other != null &&
other.m_RequestId.Equals(RequestId) &&
other.m_Type.Equals(m_Type) &&
other.m_Parameters.Equals(m_Parameters) &&
other.m_user.Equals(m_user);
}
</code></pre>
<p><strong>There must be a better way!...</strong> <em>(listing all the fields is rather asking for errors and maintenance problems)</em></p>
<p>E.g. we have Object. MemberwiseClone() to help with the Cloning() case, but I cannot find anything to help with Equals.
We are running in full trust so a reflection based solution is one answer, but I rather not reinvent the wheel. </p>
<p>(Sorry we don’t generate the DTO from a domain-specific language otherwise this sort of thing would be easy! Also I am not able to change the build system to add another step)</p>
http://stackoverflow.com/questions/1807862/what-news-talk-from-the-microsoft-pdc-2009-will-have-the-most-effect-on-you-as1What news/talk from the Microsoft PDC (2009) will have the most effect on you as a programmer?Ian Ringrose2009-11-27T10:13:13Z2009-12-01T22:33:53Z
<p><em>(I have made this a community wiki)</em></p>
<p>As a programmer that mostly works with .NET, the feature direction of the Microsoft development platforms have a great effect on my feature work. </p>
<p>The recent PDC gives an insight into where Microsoft is going with it’s development platforms.</p>
<ul>
<li>So what from the PDC do you consider will have the most effect on <strong>you</strong> as a programmer?</li>
<li>When do you expect the above to start to effect “real life” programming?</li>
</ul>
<p>Please provide links to the video of the talk and/ or transcript and/or related Channel 9 video and keep each answer to one area of technology. Please explain way the
technology will <em>affect you as a programmer</em> as well as saying giving a <strong>short</strong> overview of the technology.</p>
<p>see also:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/1754766/are-the-pdc-2009-videos-released">Are the PDC 2009 videos released</a>?</li>
<li><a href="http://stackoverflow.com/questions/277510/what-are-the-best-pdc-2008-videos-that-i-need-to-look-at">What are the best PDC 2008 videos that I need to look at?</a></li>
</ul>
http://stackoverflow.com/questions/615818/uninstalling-demo-trial-of-visual-studio-2008-team-system1Uninstalling demo/trial of Visual Studio 2008 Team SystemIan Ringrose2009-03-05T17:46:52Z2009-12-01T21:24:46Z
<p>I wish to uninstall the trail copy of VS 2008 Team System, as the trial is coming to its end. I had VS 2008 Professional Edition installed on the machine to start with and it still shows up in Add/Remove Problems.</p>
<p>I am hoping that when I uninstall VS 2008 Team System I will be left with a working VS 2008 Professional Edition.</p>
<p>When I try to uninstall VS 2008 Team System, I very quickly get an error dialog that says:</p>
<blockquote>
<p>A problem has been encountered while
loading the setup components.
Canceling setup.</p>
</blockquote>
<p><strong>Help!</strong></p>
<p><strong>Progress or lack there of so fare</strong></p>
<p>I have done dir %temp%*.log in a command prompt and can see any log files that are recent</p>
<p>I am going to read <a href="http://en.wikipedia.org/wiki/Windows_Installer#Diagnostic_logging" rel="nofollow">http://en.wikipedia.org/wiki/Windows_Installer#Diagnostic_logging</a> to see if I can get any logging</p>
<p>Aaron Stebner's WebLog has a post on <a href="http://blogs.msdn.com/astebner/archive/2007/07/31/4156781.aspx" rel="nofollow">where VS put's is log files</a>, he also has a <a href="http://blogs.msdn.com/astebner/archive/2008/02/27/7927123.aspx" rel="nofollow">post on were some other products put there log files</a>
gives some info about where VS setup puts it's logs etc</p>
<p>Aaron Ruckman provided me with the solution after I sent him the log files.</p>
http://stackoverflow.com/questions/1826218/how-do-i-use-knowntype-to-enable-polymorphic-return-values-in-a-wcf-service-contr2How do I use KnownType to enable polymorphic return values in a WCF service contract?Ian Ringrose2009-12-01T13:34:17Z2009-12-01T15:31:32Z
<p>I am converting a remoting interface to WCF, however I have a method that is declared to return "object" and can return a number of different types (mostly different enums)</p>
<p>Where can I find an example of coping with this?</p>
<p>(I am using a shared contract assembly that contains all the types rather than generating a client proxy if that makes a difference.)</p>
http://stackoverflow.com/questions/1700917/how-does-a-wcf-server-inform-a-wcf-client-about-changes-better-solution-then-si3How does a WCF server inform a WCF client about changes? (Better solution then simple polling, e.g. Coment or long polling)Ian Ringrose2009-11-09T13:14:38Z2009-11-30T16:01:23Z
<blockquote>
<p>see also "<a href="http://stackoverflow.com/questions/22340/wcf-push-to-client-through-firewall">WCF push to client through
firewall</a>"</p>
</blockquote>
<p>I need to have a WCF client that connect to a WCF server, then when some of the data <strong>changes</strong> on the server the clients need to <strong>update</strong> its display.</p>
<p>As there is likely to be a firewall between the clients and the server.</p>
<ul>
<li>All communications must be over HTTP</li>
<li><strong>The server can not make an (physical) outgoing call to the client.</strong></li>
</ul>
<p><em>As I am writing both the client and the server I do not need to limit the solution to only using soap etc.</em></p>
<p><hr></p>
<p>I am looking for built in surport for "<a href="http://en.wikipedia.org/wiki/Push%5Ftechnology" rel="nofollow">long polling</a>" / "<a href="http://en.wikipedia.org/wiki/Comet%5F%28programming%29" rel="nofollow">Comet</a>" etc</p>
<p><hr></p>
<p>Thanks for the most informative answer from Drew Marsh on how to implement long polling in WCF. However I thought the main “selling point” of WCF was that you could do this sort of thing just by configuring the channels to be used in the config file. <em>E.g I want a channel that logically two way but physically incoming only.</em></p>
http://stackoverflow.com/questions/1804748/how-to-i-use-my-own-interface-with-operationcontext-current-getcallbackchannel0How to I use my own interface with OperationContext.Current.GetCallbackChannel?Ian Ringrose2009-11-26T16:51:36Z2009-11-30T08:11:26Z
<p>see also <a href="http://stackoverflow.com/questions/1808598/why-do-i-get-invalidcastexception-from-operationcontext-current-getcallbackchanne">Why do I get InvalidCastException from OperationContext.Current.GetCallbackChannel<>()</a></p>
<p>I wish to pass my own interface to OperationContext.Current.GetCallbackChannel, as I wish to make Asynchronous calls to the client(s) and hence need to add the “BeginMethod()” etc to the interface. </p>
<p>I can anexception saying it can’t cast to the interface if I pass any interface apart from the one that is named in the ServiceContract for the server I am implementing.</p>
<p>E.g. I have</p>
<pre><code><ServiceContract(CallbackContract:=GetType(IClient))>
</code></pre>
<p>On the server contract</p>
<p>And a interface defined as a subclass of IClient that adds the “BeginMethod()” etc, but I can’t ask for that interface from:</p>
<pre><code> OperationContext.Current.GetCallbackChannel<IClientWithAsycMethods>()
</code></pre>
http://stackoverflow.com/questions/1808598/why-do-i-get-invalidcastexception-from-operationcontext-current-getcallbackchanne0Why do I get InvalidCastException from OperationContext.Current.GetCallbackChannel<>()Ian Ringrose2009-11-27T12:51:10Z2009-11-30T08:10:05Z
<p>So as to enable aysc callbacks to the clients, I need to add the Begin/End methods to the interface that is defined as the CallbackContract on my service. <em>(I am using a sheared contract assembly, rather than generating proxy classes)</em></p>
<pre><code>[ServiceContract(CallbackContract=typeof(IClient)]
interface IEngineManager
</code></pre>
<p>As the first step I have <strong>just copied</strong> the IClient interface from the shared interface assembly into a local name space, without making any other changes. I would expect that as the interface is <strong>logically</strong> the same as what is in the contract, WCF will allow it to be used. <strong>However WCF does not like it for some reason, why?</strong></p>
<pre><code>[ServiceContract]
public interface IClient
{
[OperationContract(Action = "ReceiveMessage",
ReplyAction = "ReceiveMessageResponse")]
void ReceiveMessage(SimMessage message);
}
//....
// this give the InvalidCastException
var client = OperationContext.Current.GetCallbackChannel<MyNameSpace.IClient>();
</code></pre>
<p>However if I just use the original IClient interface from the shared contract assembly, it all works! </p>
http://stackoverflow.com/questions/1808598/why-do-i-get-invalidcastexception-from-operationcontext-current-getcallbackchanne/1809118#18091180Answer by Ian Ringrose for Why do I get InvalidCastException from OperationContext.Current.GetCallbackChannel<>()Ian Ringrose2009-11-27T14:32:29Z2009-11-30T08:07:52Z<p>As DxCK siad the type that is passed to OperationContext.Current.GetCallbackChannel<code><T</code>>() must be exactly the same type as you specified in the [ServiceContract] attribute on the interface that the service implements.</p>
<p>However I need to use a different interface for the callbacks so I can add the Begin/End methods needed to support aysc callbacks.</p>
<p>So firstly my new callback interface.</p>
<pre><code>[ServiceContract]
public interface IClientWithAsyncMethods : IClient
{
[OperationContract(
AsyncPattern = true,
Action = "ReceiveMessage",
ReplyAction = "ReceiveMessageResponse")]
IAsyncResult BeginReceiveMessage(SimMessage message,
AsyncCallback callback, object asyncState);
void EndReceiveMessage(IAsyncResult asyncResult);
}
</code></pre>
<p>Then need to define a new interface for my service to implment:</p>
<pre><code>[ServiceContract(CallbackContract = typeof(IClientWithAsyncMethods))]
public interface IEngineManagerWithAsyncCallbacks : IEngineManager
{
}
</code></pre>
<p>The only change to to refare to the new callback interface as the CallbackContract, this is OK as IClientWithAsyncMethods is a subtype of IClient.</p>
<p>Then the last step is to change the serve implementation to use to the service interface:</p>
<ul>
<li>Change the interface type the service implements</li>
<li>Pass the new interface into ServiceHost.AddServiceEndpoint() (and/or edit the WCF config files)</li>
<li>Use IClientWithAsyncMethods in the call to OperationContext.Current.GetCallbackChannel<code><IClientWithAsyncMethods</code>>() </li>
</ul>
<p>The rest is just calling the aysc method in the normal way.</p>
http://stackoverflow.com/questions/360245/tech-ed-instead-of-microsoft-pdc/1807901#18079010Answer by Ian Ringrose for Tech-Ed instead of Microsoft PDC?Ian Ringrose2009-11-27T10:19:00Z2009-11-27T10:19:00Z<p>The last time I checked the European TechEd was split into a developer and a system admin week, unlike the US one. In European I think it comes down to if you wish to learn about what you can use <strong>now</strong> (TechEd) or what you <strong>may</strong> be able to use in a <strong>few years time</strong> (PDC)</p>
http://stackoverflow.com/questions/1803051/how-to-speedup-wcf-unit-tests-creating-closing-the-servicehost-is-slow2How to Speedup WCF “unit” tests? (Creating/closing the ServiceHost is slow...)Ian Ringrose2009-11-26T11:06:34Z2009-11-27T09:07:41Z
<p>I am in the process of writing some test for a server that is implemented in WCF, as the messages are complex and call-backs are made to the clients I wish to include WCF in the tests.</p>
<p><em>(You may wish to call these “fit” or “integration tests” not unit tests, the code on both side of WCF will have more detail unit test that don’t use WCF.)</em></p>
<p>As my server keeps state and I wish to check that all channels shut down without errors, I have code like:</p>
<pre><code> [SetUp]
public void SetUp()
{
//TODO find a fee port rathern then hard coding
endPointAddress = "net.tcp://localhost:1234";
mockEngineManagerImp = new Mock<IEngineManagerImp>();
EngineManager engineManager = new EngineManager(mockEngineManagerImp.Object);
serviceHost = new ServiceHost(engineManager);
serviceHost.AddServiceEndpoint(
typeof(IEngineManager),
new NetTcpBinding(SecurityMode.None),
endPointAddress);
serviceHost.Open();
}
[TearDown]
public void TearDown()
{
serviceHost.Close();
}
</code></pre>
<p>However my tests are very slow....</p>
<p><strong>How can I speed up the creation and destroying of my ServiceHost?</strong></p>
http://stackoverflow.com/questions/1804200/how-do-i-make-asynchronous-calls-in-wcf-with-shared-contract-assemblies0How do I make Asynchronous calls in WCF with shared contract assemblies?Ian Ringrose2009-11-26T15:07:13Z2009-11-26T15:50:36Z
<p>It is easy to do Asynchronous calls if the client proxy is created with “add service reference”, just call the “BeginMyMethod()” and “EndMyMethod()” calls on the generated client interface. </p>
<p>However what you I do when I am used an interface that is defined in shared contract assemblies? </p>
<p>E.g. the interface only contains “MyMethod()”</p>
<p><hr></p>
<p>Is there a way to do this without editing the interface, .e.g.</p>
<p>CallAsyn("MyMethod", input1, input2)</p>
http://stackoverflow.com/questions/1802580/how-to-find-the-value-that-has-been-passed-to-a-method-on-my-mocked-moq-or-rhino2How to find the value that has been passed to a method on my mocked (Moq or Rhino Mocks) interface?Ian Ringrose2009-11-26T09:29:50Z2009-11-26T11:27:59Z
<p>I am using <strong>Moq</strong> - but could easily swap to another mock framework <strong>if needed</strong>.</p>
<p>I have a interface defined:</p>
<pre><code>public interface IBaseEngineManagerImp
{
void SetClientCallbackSender(IClientCallbackSender clientCallbackSender);
}
</code></pre>
<p>I then mock <em>IBaseEngineManagerImp</em> with</p>
<pre><code>mockEngineManagerImp = new Mock<IEngineManagerImp>();
EngineManager engineManager = new EngineManager(mockEngineManagerImp.Object);
</code></pre>
<p><em>engineManager</em> then calls <em>SetClientCallbackSender</em> passing in a value.</p>
<p>How do I get the value that was passed to <em>SetClientCallbackSender</em> from my unit test?</p>
<p>(I wish to call some methods on <em>clientCallbackSender</em> as part of the test)</p>
http://stackoverflow.com/questions/642620/what-should-i-consider-when-choosing-a-mocking-framework-for-net10What should I consider when choosing a mocking framework for .NetIan Ringrose2009-03-13T13:11:13Z2009-11-26T09:38:52Z
<p>There are lots of mocking frameworks out there for .Net some of them have been superseded by others that are better in everyway. However that still leaves many mocking frameworks that have different <em>styles</em> of usage.</p>
<p>The time it takes to learn all of them well enough to decide witch to use is unreasonable. I don’t believe that we have yet reached a stage that we can talk about <em>the best</em> mocking framework. So what questions should I by asking about the project and myself to help decide on the best mocking framework to use in a given case?</p>
<p>It would also be useful to know why you choose the mocking framework you are currently using and if you are still happy with that choose.</p>
<p>Is there yet a useful vocabulary to use when comparing the styles of mocking frameworks?</p>
<p>(I have limited this question to .Net as Java does not have attributes or lambda expression, so I hope the mocking frameworks can be better for .Net then Jave)</p>
<p><strong>Summary so far:</strong></p>
<ul>
<li>If you need to mock static method, or
none virtual methods then the only
reasonable option is <a href="http://typemock.com/" rel="nofollow">TypeMock</a>, however it is not free and does not drive you towards a good design.</li>
<li><a href="http://ayende.com/projects/rhino-mocks.aspx" rel="nofollow">Rhino Mocks</a> is a very good option if you
are doing TDD, .e.g the objects you
wish to mock implement interfaces. At present it seems to be the "market leader"</li>
<li><a href="http://code.google.com/p/moq/" rel="nofollow">Moq</a> (<a href="http://www.codethinked.com/post/2009/03/13/Beginning-Mocking-With-Moq-3-Part-1.aspx" rel="nofollow">introduction</a>) should be considered if you are
using .NET 3.5 Moq <em>may</em> be againing on Rhino Mocks for new projects</li>
</ul>
<p>What have I missed from this summary?</p>
<p><strong>So what drives the choose between <a href="http://ayende.com/projects/rhino-mocks.aspx" rel="nofollow">Rhino Mocks</a> and <a href="http://code.google.com/p/moq/" rel="nofollow">Moq</a>, if you are using .NET 3.5?</strong></p>
<p><hr></p>
<p>see also:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/37359/what-c-mocking-framework-to-use">What c# mocking framework to use?</a> </li>
<li><a href="http://stackoverflow.com/questions/690769/what-are-the-capabilities-of-moq-and-rhino-mocks">What are the capabilities of Moq and Rhino.mocks?</a></li>
<li><a href="http://stackoverflow.com/questions/1718463/what-are-the-real-world-pros-and-cons-of-each-of-the-major-mocking-frameworks">What are the real-world pros and cons of each of the major mocking frameworks?</a></li>
</ul>
<p>“<a href="http://stackoverflow.com/questions/1267567/what-should-i-consider-when-choosing-a-dependency-injection-framework-for-net">What should I consider when choosing a dependency injection framework for .NET?</a>” may also be of interest as it asks the “other side” of the question.</p>
http://stackoverflow.com/questions/1795868/how-to-unit-test-a-wcf-server-client1How to unit test a WCF server/client?Ian Ringrose2009-11-25T10:01:08Z2009-11-25T10:17:37Z
<p>I have a WCF server that is a library assembly. (I am writing it so I can mock the level below it) It is called var a client helper class that is in a different assembly. As the data that is transferred is complex and the server has to send call-backs to the clients I wish to test the <strong>WCF code in isolation</strong>.</p>
<p>(I am only interested in the TCP channel or NamePipe channel)</p>
<p><strong>I do not wish to mock WCF, as the risk I am trying to control is my usage of WCF.</strong></p>
<p>It there a easy way to</p>
<ul>
<li>Load my WCF server into a different app domain<br>
<em>(I could load the WCF server into the main app domain, but then I it harder to prove that the objects were serialized correctly rather than just pointer moved about.)</em></li>
<li>Setup all the WCF config so the client class can call it (most likely named pipes or TCP)</li>
<li>And use it in some nunit test</li>
<li>I rather not have my unit tests depending on config file.</li>
</ul>
<p>I expect (<em>hope</em>) that there are some util classes for setting up WCF unit test that I can just pass the type of my server class to and will give me back a client factory that connects to the server.</p>
<p>Am I going about this the wrong way, e.g there a better way of testing my communication layer and usage of WCF?</p>
http://stackoverflow.com/questions/1788838/what-is-the-trade-of-between-oneway-and-async-calls-for-broadcasting-events-to-cl0What is the trade of between OneWay and Async calls for broadcasting events to clients? (WCF)Ian Ringrose2009-11-24T09:09:04Z2009-11-25T08:32:57Z
<p>I am writing a WCF (netTcpBinding planned at present) client/server application that has to support a “handful” of clients including sending events to the clients.</p>
<blockquote>
<p>I do not wish the server to block
while the clients process the events.</p>
</blockquote>
<p>Logically I cannot see match difference between marking the callback methods as “OneWay” or calling them with "being_MethodName(..)"</p>
<p><strong>So what are the pros and cons of each technique?</strong> </p>
<p><hr></p>
<p>I am finding from my readings that the error handling of OneWay messages is complex and you can unexpectedly get the channel going bad... E.g the are not fire and forget!</p>
http://stackoverflow.com/questions/1790168/are-all-serializable-classes-valid-for-wcf-methods-parameters-and-or-data-contrac0Are all Serializable classes valid for WCF methods parameters and/or Data Contract members?Ian Ringrose2009-11-24T13:46:59Z2009-11-24T13:57:00Z
<p>I am in the process of porting some .net remoting code to WCF.</p>
<p>Can I safely assume that all classes that are Serializable and works as .remoting method parameters will work with WCF using the binary message encode?</p>
<p>If not is there a “rule of thumb” that I can use to estimate what problems I will hit?</p>
http://stackoverflow.com/questions/1788760/why-does-maxconcurrentsessions-default-to-such-a-low-value-and-what-is-a-safe-v0Why does maxConcurrentSessions default to such a low value? And what is a safe value?Ian Ringrose2009-11-24T08:53:04Z2009-11-24T13:26:41Z
<p>In WCF <a href="http://msdn.microsoft.com/en-us/library/ms731379.aspx" rel="nofollow">maxConcurrentSessions</a> defaults to 10, so limiting a server from having more then 10 open TCP connections to it.</p>
<p>Why is this so?</p>
<p>Is it safe for me just to set it to a very high value for a server that has a "handful" (or two) of clients, but needs to keeps a netTcpBinding open for each clients due to sending events to the clients?</p>
http://stackoverflow.com/questions/1477365/wcf-callback-interface-passing-to-another-wcf-service-method-on-different-machine/1789014#17890140Answer by Ian Ringrose for WCF callback interface passing to another WCF service method on different machineIan Ringrose2009-11-24T09:45:01Z2009-11-24T09:45:01Z<p>Sorry you are not using DCOM anymore....</p>
<p>DCOM did deep magic to enable this type of thing, WCF is a lot closer to raw networking and does not hide the network from you to the same extent.</p>
<p>In real life DCOM was very hard to setup with security for this type of setup anyway.</p>
http://stackoverflow.com/questions/1783422/how-to-get-reliable-call-backs-with-wcf-using-nettcpbinding2How to get reliable call-backs with WCF using NetTcpBinding Ian Ringrose2009-11-23T14:25:57Z2009-11-24T08:54:29Z
<p>I am planning to use the NetTcpBinding for an application that needs to keep a hand-full of clients in sync. </p>
<p>Whenever there is a change of state at the server, all the connected clients must be informed.</p>
<p>However I need the clients to automatically reconnect if there is a network problem, any outstanding callbacks from the server for the given client should not get lost.
I also need to the client’s GUI code to be informed if the connection to the sever is lost and cannot be recreated. (or if the server restarts)</p>
<blockquote>
<p>Does the NetTcpBinding with
WS-ReliableMessaging give me this “out
of the box”?</p>
</blockquote>
http://stackoverflow.com/questions/1701976/how-do-i-setup-a-project-to-use-wcfsvchost-exe-and-wcftestclient-exe0How do I setup a project to use WcfSvcHost.exe and WcfTestClient.exeIan Ringrose2009-11-09T16:04:10Z2009-11-24T08:00:06Z
<p>I am trying to write my first WCF project. I have created a project of type WCF library.</p>
<p>In the video I am working from, when F5 is pressed (start debugger) the WCF test client starts up.</p>
<p>What do I have to do to my project settings to get the WcfTestClient to start up? </p>
http://stackoverflow.com/questions/1782049/wcf-calling-a-service-from-a-callback-method-in-client/1784401#17844010Answer by Ian Ringrose for WCF Calling a service from a callback method in ClientIan Ringrose2009-11-23T16:44:52Z2009-11-23T16:44:52Z<p>You may be getting a deadlock...</p>
<p>If possible define your callback methods to be “OneWay” and/or make a none blocking call to them, e.g. “begin_m1(...)” </p>
<p>Also check what the ConcurrencyMode you are using on the client and the server and see if you can use ConcurrencyMode.Reentrant or ConcurrencyMode.Muliple</p>
<p>See Chapter 5 of <a href="http://rads.stackoverflow.com/amzn/click/0596526997" rel="nofollow">Programming WCF services</a> for a good discussion of this</p>
http://stackoverflow.com/questions/1783142/net-service-burden-of-using-entity-translator/1784330#17843300Answer by Ian Ringrose for .NET Service burden of using Entity TranslatorIan Ringrose2009-11-23T16:36:57Z2009-11-23T16:36:57Z<p>This may be a daft question, however why don't you</p>
<blockquote>
<p>Use the same classs for the
DataContract as you use for the
"business messages"?</p>
</blockquote>
<p>Normally you keep your contracts separate so you can change your business objects without effecting your data contracts, however what <strong>benefit</strong> do <strong>you</strong> get from keeping them separate?</p>
http://stackoverflow.com/questions/1783562/event-dispatcher-for-wcf-call-backs0Event Dispatcher for WCF call-backsIan Ringrose2009-11-23T14:45:10Z2009-11-23T15:20:08Z
<p>I have a server that needs to keep a small number of clients in sync. Whenever there is a change of state at the server, all the connected clients must be informed.</p>
<ul>
<li>I am planning to use a “callback
contract”, </li>
<li>I can get hold of the
callback reference for each client on
the server by using
GetCallbackChanel(). </li>
<li>I then need
to manage all these client channel
reference and call all of them when
needed.</li>
</ul>
<p>So far so good however:</p>
<ul>
<li>I don’t wish to block the server, so calls to the clients must be none blocking</li>
<li>Errors calling the client must be logged and coped with</li>
</ul>
<p><strong>Is there a standard WCF component to do this?</strong> </p>
http://stackoverflow.com/questions/1159349/creating-scada-diagrams-in-net/1771494#17714940Answer by Ian Ringrose for Creating SCADA diagrams in .NETIan Ringrose2009-11-20T16:07:50Z2009-11-20T16:07:50Z<p>consider using <a href="http://www.nwoods.com/GO/dotnet.htm" rel="nofollow">GoDiagram</a> however as you don't need your users to edit the diagrams it may be overkill.</p>
http://stackoverflow.com/questions/1754812/what-issues-should-i-expect-when-porting-an-application-from-genuine-channels-to1What issues should I expect when porting an application from Genuine Channels to WCFIan Ringrose2009-11-18T09:45:25Z2009-11-18T11:38:13Z
<p><a href="http://www.genuinechannels.com" rel="nofollow">Genuine Channels</a> is a set of 3rd party chancels for .Net Remoting. </p>
<p>I have been given the tasks of replace the usages of .Net Remoting in a rick client and server with WCF. I am familiar with standard .net remoting but not Genuine Channels.</p>
<p>So what problems should I expect and any pointers to the solutions?</p>
http://stackoverflow.com/questions/862797/bi-directional-communication-using-c-tcp-channels/1754862#17548620Answer by Ian Ringrose for Bi-Directional Communication using C# TCP ChannelsIan Ringrose2009-11-18T09:58:19Z2009-11-18T09:58:19Z<p>WCF has bydirectional surport over TCP as standard. </p>
<p>However WCF does not have bydirectional surport over a <strong>single</strong> HTTP connection, and the <a href="http://stackoverflow.com/questions/1700917/how-does-a-wcf-server-inform-a-wcf-client-about-changes-better-solution-then-si">WCF bydirectional HTTP surport does not cope with firewalls</a>.</p>
http://stackoverflow.com/questions/1406318/what-is-the-up-development-methodologies0What is the "UP development methodologies"?Ian Ringrose2009-09-10T16:27:57Z2009-11-17T03:56:28Z
<p>I just seen a job advert ask for "UP development methodologies"</p>
<p>What is it? </p>
<p>Or has the HT department got the job spec wrong.</p>
http://stackoverflow.com/questions/1831747/is-there-a-better-way-to-implment-equals-for-object-with-lots-of-fields/1831835#1831835Comment by Ian Ringrose on Is there a better way to implment Equals for object with lots of fields?Ian Ringrose2009-12-02T10:05:08Z2009-12-02T10:05:08Z@Markus I have just seen <a href="http://stackoverflow.com/questions/986572/hows-to-quick-check-if-data-transfer-two-objects-have-equal-properties-in-c" rel="nofollow" title="hows to quick check if data transfer two objects have equal properties in c">stackoverflow.com/questions/986572/…</a> that this question is a duplicate of. You may wish to add your answer to the older questionhttp://stackoverflow.com/questions/1831747/is-there-a-better-way-to-implment-equals-for-object-with-lots-of-fields/1831835#1831835Comment by Ian Ringrose on Is there a better way to implment Equals for object with lots of fields?Ian Ringrose2009-12-02T09:57:11Z2009-12-02T09:57:11ZThanks, this looks great; however for me to be allowed to use it, it would have to be on a standard open source code site, be well documented and have good unit test coverage. If there is not already an established open source solution to this problem, you have the chance of becoming that solution.http://stackoverflow.com/questions/1831747/is-there-a-better-way-to-implment-equals-for-object-with-lots-of-fields/1831789#1831789Comment by Ian Ringrose on Is there a better way to implment Equals for object with lots of fields?Ian Ringrose2009-12-02T09:52:05Z2009-12-02T09:52:05ZI was hoping that someone would point me at a pre-canned implementation of something like this.http://stackoverflow.com/questions/1831747/is-there-a-better-way-to-implment-equals-for-object-with-lots-of-fields/1831805#1831805Comment by Ian Ringrose on Is there a better way to implment Equals for object with lots of fields?Ian Ringrose2009-12-02T09:51:10Z2009-12-02T09:51:10Zyes, but I wish to TEST the serialization so this is not a good solution in MY case.http://stackoverflow.com/questions/1831747/is-there-a-better-way-to-implment-equals-for-object-with-lots-of-fields/1831769#1831769Comment by Ian Ringrose on Is there a better way to implment Equals for object with lots of fields?Ian Ringrose2009-12-02T09:49:39Z2009-12-02T09:49:39Zthis does not let me test if the objects are transported ok with WCF, it just adds more code to do wronge!http://stackoverflow.com/questions/1803065/how-can-i-find-a-tcp-port-that-is-free-so-a-server-can-bind-to-it/1825148#1825148Comment by Ian Ringrose on How can I find a TCP port that is free (so a server can bind to it)Ian Ringrose2009-12-01T15:59:24Z2009-12-01T15:59:24Zsorry I only care about windowshttp://stackoverflow.com/questions/1826218/how-do-i-use-knowntype-to-enable-polymorphic-return-values-in-a-wcf-service-contr/1826937#1826937Comment by Ian Ringrose on How do I use KnownType to enable polymorphic return values in a WCF service contract?Ian Ringrose2009-12-01T15:54:55Z2009-12-01T15:54:55Zthanks, can you point me at an example of uisng NetDataContractSerializerhttp://stackoverflow.com/questions/1826218/how-do-i-use-knowntype-to-enable-polymorphic-return-values-in-a-wcf-service-contr/1826321#1826321Comment by Ian Ringrose on How do I use KnownType to enable polymorphic return values in a WCF service contract?Ian Ringrose2009-12-01T13:59:22Z2009-12-01T13:59:22ZThanks, I read the documentation before posting the question, but it does not contain an example for when using KnowType on the return type of a method. I can only see examples of using KnonType within DataContractshttp://stackoverflow.com/questions/1819821/trailing-comma-problem-javascriptComment by Ian Ringrose on trailing comma problem, javascriptIan Ringrose2009-11-30T13:50:31Z2009-11-30T13:50:31ZThis is one case when IE keeps to the standard but Firebox does not!http://stackoverflow.com/questions/1804748/how-to-i-use-my-own-interface-with-operationcontext-current-getcallbackchannelComment by Ian Ringrose on How to I use my own interface with OperationContext.Current.GetCallbackChannel?Ian Ringrose2009-11-30T08:13:00Z2009-11-30T08:13:00ZI have voted to close my own question as another question I asked lead to the same answer, however I don't want this questions deleted as it may help someone that finds it with google.http://stackoverflow.com/questions/277510/what-are-the-best-pdc-2008-videos-that-i-need-to-look-atComment by Ian Ringrose on What are the best PDC 2008 videos that I need to look at?Ian Ringrose2009-11-27T12:22:04Z2009-11-27T12:22:04Zsee also <a href="http://stackoverflow.com/questions/1807862/what-news-talk-from-the-microsoft-pdc-2009-will-have-the-most-effect-on-you-as" rel="nofollow" title="what news talk from the microsoft pdc 2009 will have the most effect on you as">stackoverflow.com/questions/1807862/…</a>http://stackoverflow.com/questions/1753205/what-interesting-silverlight-news-has-come-out-of-pdc-2009Comment by Ian Ringrose on What interesting Silverlight news has come out of PDC 2009?Ian Ringrose2009-11-27T12:21:13Z2009-11-27T12:21:13Zsee also <a href="http://stackoverflow.com/questions/1807862/what-news-talk-from-the-microsoft-pdc-2009-will-have-the-most-effect-on-you-as" rel="nofollow" title="what news talk from the microsoft pdc 2009 will have the most effect on you as">stackoverflow.com/questions/1807862/…</a>http://stackoverflow.com/questions/1754766/are-the-pdc-2009-videos-releasedComment by Ian Ringrose on Are the PDC 2009 videos released?Ian Ringrose2009-11-27T12:18:54Z2009-11-27T12:18:54Zsee also <a href="http://stackoverflow.com/questions/1807862/what-news-talk-from-the-microsoft-pdc-2009-will-have-the-most-effect-on-you-as" rel="nofollow" title="what news talk from the microsoft pdc 2009 will have the most effect on you as">stackoverflow.com/questions/1807862/…</a>http://stackoverflow.com/questions/1804200/how-do-i-make-asynchronous-calls-in-wcf-with-shared-contract-assemblies/1804239#1804239Comment by Ian Ringrose on How do I make Asynchronous calls in WCF with shared contract assemblies?Ian Ringrose2009-11-26T16:43:53Z2009-11-26T16:43:53ZI have defined my own interface that have the Begin/End methods added, however when I call OperationContext.Current.GetCallbackChannel<IMyInterface> I get told that the proxy can not be cassed to IMyInterfacehttp://stackoverflow.com/questions/1803065/how-can-i-find-a-tcp-port-that-is-free-so-a-server-can-bind-to-it/1803663#1803663Comment by Ian Ringrose on How can I find a TCP port that is free (so a server can bind to it)Ian Ringrose2009-11-26T14:16:02Z2009-11-26T14:16:02Zhow do you stop the windows firewall openning up it's UK each time you try a port?