User jezell - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T23:24:52Z http://stackoverflow.com/feeds/user/27453 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/208721/is-it-true-that-wcf-are-either-console-apps-or-run-under-iis/208863#208863 1 Answer by jezell for Is it true that WCF are either console apps or run under IIS? jezell 2008-10-16T14:49:00Z 2009-06-01T18:52:22Z <p>There is a class ServiceHost defined in WCF that allows you to host a service in any application like so:</p> <pre><code>using (ServiceHost host = new ServiceHost(typeof(MyService)) { host.Open(); WaitForClose(); host.Close(); } </code></pre> <p>IIS running in Windows XP SP2+, Vista, 2003 or 2008 can host WCF services.</p> http://stackoverflow.com/questions/302893/passing-the-original-caller-in-wcf/305350#305350 0 Answer by jezell for Passing the original caller in WCF jezell 2008-11-20T13:49:47Z 2008-11-20T13:49:47Z <p>You could use Delegation instead:</p> <p><a href="http://www.iserviceoriented.com/blog/post/Delegation+-+WCF+Gotcha+2.aspx" rel="nofollow">http://www.iserviceoriented.com/blog/post/Delegation+-+WCF+Gotcha+2.aspx</a></p> http://stackoverflow.com/questions/296040/wcf-for-the-totally-clueless/296709#296709 3 Answer by jezell for WCF for the totally clueless jezell 2008-11-17T20:03:26Z 2008-11-17T20:03:26Z <p>The absolute best book out there is Essential Windows Communication Foundation 3.5. </p> <p>Here's a basic article about how web services differ conceptually from standard procedural code:</p> <p><a href="http://www.iserviceoriented.com/blog/post/Introduction+to+Service+Oriented+Architecture.aspx" rel="nofollow">http://www.iserviceoriented.com/blog/post/Introduction+to+Service+Oriented+Architecture.aspx</a></p> http://stackoverflow.com/questions/294774/why-wcf-class-binding-doesnt-have-member-readerquotas/296693#296693 0 Answer by jezell for Why WCF class Binding doesn't have member ReaderQuotas? jezell 2008-11-17T19:59:15Z 2008-11-17T19:59:15Z <p>The reason is that bindings are intended to function as generic communication infrastructure and ReaderQuotas is a SOAP specific object. This is why you only see it on the bindings that are intended to be used with SOAP message transfers.</p> <p>An "as" statement to try the cast to the types you want to support is probably your best option here.</p> http://stackoverflow.com/questions/284842/question-about-wcf-reliable-sessions/290695#290695 1 Answer by jezell for Question about WCF Reliable Sessions jezell 2008-11-14T16:41:36Z 2008-11-14T16:41:36Z <p>The service might receive B before A, but reliable sessions will place the messages in a buffer and only process them in the order they were sent within the session. It will not gaurentee order between different sessions, only within the same session that is created by the client.</p> http://stackoverflow.com/questions/288457/wcf-and-msmq-failure-handling/290671#290671 1 Answer by jezell for WCF and MSMQ failure handling jezell 2008-11-14T16:35:19Z 2008-11-14T16:35:19Z <p>Poison message / dead letter message queues are used to place messages that have been determined to be undeliverable in a queue that will not try to deliver them anymore. You would do this if you might want to manually take a look at failed messages and process them at a later point. You use these type of queues when you want to keep bad messages from degrading the performance of your system by retrying over and over again.</p> <p>On the other hand, a response service would be used to notify the sender that there was an error processing the message. Typically in this case you aren't planning on manually processing the bad message and need to let the system that sent the message in that the request has been rejected.</p> <p>Note that these aren't exclusive. If you are using queues, there is always the chance that the message serialization might change enough to break messages that are in the queue in which case you might still want to have a dead letter queue even if you are using a response service.</p> http://stackoverflow.com/questions/288304/returning-an-interface-from-a-wcf-service/288321#288321 0 Answer by jezell for Returning an interface from a WCF service jezell 2008-11-13T21:10:39Z 2008-11-13T21:10:39Z <p>The ChannelFactory class does exactly this, generates a proxy dynamically at runtime given an interface.</p> http://stackoverflow.com/questions/271714/completely-disabling-wcf-proxy/272378#272378 1 Answer by jezell for Completely Disabling WCF Proxy jezell 2008-11-07T15:15:01Z 2008-11-07T15:15:01Z <p>In the binding configuration set useDefaultWebProxy to false.</p> http://stackoverflow.com/questions/266172/which-web-service-specifications-ws-actually-make-sense-to-implement/269524#269524 1 Answer by jezell for Which web service specifications (WS-*) actually make sense to implement? jezell 2008-11-06T17:25:43Z 2008-11-06T17:25:43Z <p>Only SOAP is widely adopted. If you care about reach, going beyond WS-Security and WS-Addressing is asking for trouble (even WS-Security can be hard for a lot of people). If you are creating services for internal use in a large company, then I wouldn't worry as much. Something like WCF would allow you to provide endpoints with different bindings for a wide range of consumers without writing any additional code.</p> http://stackoverflow.com/questions/268824/using-strings-with-general-purpose-xml-in-ws-good-or-bad/269507#269507 1 Answer by jezell for Using strings with "general purpose" XML in WS - good or bad? jezell 2008-11-06T17:20:10Z 2008-11-06T17:20:10Z <p>Strings containing XML is an extremely bad idea and asking for trouble. Use messages that have a defined schema.I had to rewrite significant portions of an app that used a lot of XML internally instead of types. It was horribly slow and impossible to figure out what was happening.</p> http://stackoverflow.com/questions/269096/creating-wcf-messages-with-mutiple-namespaces/269157#269157 0 Answer by jezell for Creating WCF messages with mutiple namespaces. jezell 2008-11-06T15:38:32Z 2008-11-06T15:38:32Z <p>In a case like this when you need precise control over the XML output, you should use the the XmlSerializer instead of DataContract or MessageContract serialization. Here is more info on how to do that:</p> <p><a href="http://msdn.microsoft.com/en-us/library/ms733901.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms733901.aspx</a></p> http://stackoverflow.com/questions/267113/how-to-implement-an-inherited-dictionary-over-wcf/268434#268434 2 Answer by jezell for How to implement an inherited Dictionary over WCF jezell 2008-11-06T12:05:39Z 2008-11-06T12:05:39Z <p>Add CollectionDataContract to the Dictionary class:</p> <p>For more information on using collection data contracts to implement dictionaries, check this link:</p> <p><a href="http://msdn.microsoft.com/en-us/library/aa347850.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa347850.aspx</a></p> http://stackoverflow.com/questions/264714/please-help-me-use-reportviewer-with-business-objects-and-wcf/265685#265685 0 Answer by jezell for Please help me use reportviewer with business objects and wcf jezell 2008-11-05T16:23:30Z 2008-11-05T16:23:30Z <p>If you set the data source to the CustomerInfo instance (or list) returned from the service it should work. The ReportViewer control can be a little complicated when you start dealing with object hierarchies, but you don't have to do anything crazy or special if all the information is at the root level.</p> http://stackoverflow.com/questions/264834/can-you-use-the-datacontractserializer-outside-of-wcf/265667#265667 1 Answer by jezell for Can you use the DataContractSerializer outside of WCF? jezell 2008-11-05T16:16:19Z 2008-11-05T16:16:19Z <p>You can use the DataContractSerializer outside of WCF to manually deserialize and serialize object graphs. However, you cannot tell ASMX to use the serializer. You are much better of just replacing your ASMX services with WCF services.</p> http://stackoverflow.com/questions/262023/passing-windows-token-to-wcf-then-from-wcf-to-another-server-in-the-ad-domain/262214#262214 1 Answer by jezell for Passing Windows Token to WCF then from WCF to another server in the AD domain jezell 2008-11-04T15:56:12Z 2008-11-04T15:56:12Z <p>This is known as delegation. Set the allowed impersonation level in the client configuration to "Delegation" and disable NTLM authentication on the server side. I have a post with a more in depth discussion here:</p> <p><a href="http://www.iserviceoriented.com/blog/post/Delegation+-+WCF+Gotcha+2.aspx" rel="nofollow">http://www.iserviceoriented.com/blog/post/Delegation+-+WCF+Gotcha+2.aspx</a></p> http://stackoverflow.com/questions/254265/wcf-behavior-extension-elements-not-recognized-in-visual-studio/259924#259924 1 Answer by jezell for WCF Behavior Extension Elements Not Recognized in Visual Studio jezell 2008-11-03T20:54:21Z 2008-11-03T20:54:21Z <p>If you are wanting to extend the visual studio xml editor with intellisense, take a look at this article:</p> <p><a href="http://blogs.msdn.com/astebner/archive/2005/12/07/501466.aspx" rel="nofollow">http://blogs.msdn.com/astebner/archive/2005/12/07/501466.aspx</a></p> http://stackoverflow.com/questions/259482/wcf-lifecycle-events/259913#259913 2 Answer by jezell for WCF Lifecycle Events jezell 2008-11-03T20:50:57Z 2008-11-03T20:50:57Z <p>ServiceHost exposes quite a few events:</p> <p><a href="http://msdn.microsoft.com/en-us/library/system.servicemodel.servicehost_events.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.servicemodel.servicehost_events.aspx</a></p> <p>You could hook into these events by using a custom service behavior:</p> <p><a href="http://msdn.microsoft.com/en-us/library/system.servicemodel.description.iservicebehavior.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.servicemodel.description.iservicebehavior.aspx</a></p> http://stackoverflow.com/questions/257189/what-would-be-the-best-approach-to-designing-a-highly-available-pool-of-web-servi/258682#258682 1 Answer by jezell for What would be the best approach to designing a highly available pool of web services? jezell 2008-11-03T13:59:26Z 2008-11-03T13:59:26Z <p>If you don't need durability, you can load balance WCF service requests just like normal web requests without doing anything special. If you need durability and want requests to survive being cut off mid-process, use the netMsmqBinding.</p> http://stackoverflow.com/questions/233571/best-practice-for-large-wcf-service/234017#234017 4 Answer by jezell for best practice for large WCF service? jezell 2008-10-24T15:25:07Z 2008-10-24T15:25:07Z <p>I have a post here about how individual operations should differ from traditional code operations:</p> <p><a href="http://www.iserviceoriented.com/blog/post/Introduction+to+Service+Oriented+Architecture.aspx" rel="nofollow">http://www.iserviceoriented.com/blog/post/Introduction+to+Service+Oriented+Architecture.aspx</a></p> <p>You should end up only with operations for actual business events. If you ever stop and think "I need to enable transaction support on my web service" that means you haven't designed the operation with a wide enough scope. You should never have to enable web service transaction support.</p> <p>I highly recommend Bill Poole's blog for higher level SOA concepts. Here's a post to get started:</p> <p><a href="http://feeds.feedburner.com/~r/BillPoolesCreativeAbrasion/~3/328955489/service-contract-stability.html" rel="nofollow">http://feeds.feedburner.com/~r/BillPoolesCreativeAbrasion/~3/328955489/service-contract-stability.html</a></p> http://stackoverflow.com/questions/232078/common-wcf-exception-connection-unexpectedly-closed/232412#232412 2 Answer by jezell for Common WCF Exception : Connection Unexpectedly Closed jezell 2008-10-24T03:37:25Z 2008-10-24T03:37:25Z <p>Make sure that nothing that isn't a FaultException gets thrown and passed back to the client.</p> http://stackoverflow.com/questions/227017/databases-which-can-handle-semi-structured-data/227025#227025 -1 Answer by jezell for Databases which can handle semi-structured data? jezell 2008-10-22T18:33:06Z 2008-10-22T18:33:06Z <p>Microsoft SQL Server has an XML column type starting in 2005.</p> http://stackoverflow.com/questions/226108/what-is-a-web-service-in-plain-english/226138#226138 3 Answer by jezell for What is a "web service" in plain english? jezell 2008-10-22T15:01:22Z 2008-10-22T15:01:22Z <p>A web service, as used by software developers, generally refers to an operation that is performed on a remote server and invoked using the XML/SOAP specification. As with all definitions, there are nuances to it, but that's the most common use of the term.</p> http://stackoverflow.com/questions/225937/foreach-vs-somelist-foreach/225966#225966 1 Answer by jezell for foreach vs someList.Foreach(){} jezell 2008-10-22T14:26:44Z 2008-10-22T14:26:44Z <p>Behind the scenes, the anonymous delegate gets turned into an actual method so you could have some overhead with the second choice if the compiler didn't choose to inline the function. Additionally, any local variables referenced by the body of the anonymous delegate example would change in nature because of compiler tricks to hide the fact that it gets compiled to a new method. More info here on how C# does this magic:</p> <p><a href="http://blogs.msdn.com/oldnewthing/archive/2006/08/04/688527.aspx" rel="nofollow">http://blogs.msdn.com/oldnewthing/archive/2006/08/04/688527.aspx</a></p> http://stackoverflow.com/questions/225739/wcf-clients-and-versioning/225780#225780 0 Answer by jezell for WCF client's and versioning jezell 2008-10-22T13:44:13Z 2008-10-22T13:44:13Z <p>Not unless the message changes and the change is required to use your service.</p> http://stackoverflow.com/questions/225686/disposable-singleton-in-c/225775#225775 1 Answer by jezell for Disposable singleton in C# jezell 2008-10-22T13:42:31Z 2008-10-22T13:42:31Z <p>Singletons should not be Disposable. Period. If someone calls Dispose prematurely, your application is screwed until it restarts. </p> http://stackoverflow.com/questions/225621/how-many-hash-buckets/225677#225677 0 Answer by jezell for How many hash buckets jezell 2008-10-22T13:15:14Z 2008-10-22T13:15:14Z <p>Depends on the type of hash table you are building. If you are using a fixed array based hash table (as opposed to linked lists for buckets), you should resize the array either when the table is full or when you have hit a max probe count (depending on whether you care more about speed or memory). If you are using linked lists, memory isn't as much of a concern since and don't have to probe for empty spaces, so resizing isn't as big of a deal.</p> <p>The key with hash tables is the hashing algorithm, not the number of buckets. Ideally, you always want at most one item in each bucket, so you should ideally be resizing when the number of items in the hash table = the number of buckets. If your data isn't evenly distributed, you are better of with a better hash algorithm than a better resize strategy.</p> http://stackoverflow.com/questions/225430/is-there-a-tool-that-supports-discrete-mathematics/225461#225461 2 Answer by jezell for Is there a tool that supports discrete mathematics? jezell 2008-10-22T11:59:49Z 2008-10-22T11:59:49Z <p>Mathematica</p> http://stackoverflow.com/questions/224496/net-cf-mobile-device-application-best-methodology-to-handle-potential-offline/225438#225438 0 Answer by jezell for .NET CF mobile device application - best methodology to handle potential offline-ness? jezell 2008-10-22T11:49:52Z 2008-10-22T11:49:52Z <p>The best way to approach this is to always work offline, then use message queues to handle sending changes to and from the device. When the driver marks something as delivered, for example, update the item as delivered in your local store and also place a message in an outgoing queue to tell the server it's been delivered. When the connection is up, send any queued items back to the server and get any messages that have been queued up from the server.</p> http://stackoverflow.com/questions/225323/exposing-an-enum-from-a-library-class/225332#225332 5 Answer by jezell for Exposing an enum from a library class jezell 2008-10-22T11:25:46Z 2008-10-22T11:25:46Z <p>You could define your own enum with the values you want to support, expose that to your consumers, and simply convert it to the library's enum before you call into it. Since enums are just numbers behind the scenes, it's easy to convert one enum's values to another's.</p> http://stackoverflow.com/questions/223384/what-is-the-memory-footprint-of-an-object-at-runtime-in-net/223418#223418 3 Answer by jezell for What is the memory footprint of an object at Runtime in .NET? jezell 2008-10-21T20:36:50Z 2008-10-21T20:36:50Z <p>Sizeof can be used on value types there is also Marshal.SizeOf which can be used with some hints to .NET:</p> <p><a href="http://www.pixelicious.net/2008/07/03/exception-trying-to-get-the-size-of-a-c-class-using-marshalsizeof" rel="nofollow">http://www.pixelicious.net/2008/07/03/exception-trying-to-get-the-size-of-a-c-class-using-marshalsizeof</a></p> <p>But... that isn't exactly the total cost since the runtime does allocate extra bytes for classes for things like sync blocks.</p> <p>If you are really interested in measuring this type of thing, however, you should use the profiling API:</p> <p><a href="http://msdn.microsoft.com/en-us/library/ms404386.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms404386.aspx</a></p> <p>Or a free tool like windbg that can do all sorts of wonderful things.</p> http://stackoverflow.com/questions/269096/creating-wcf-messages-with-mutiple-namespaces/269157#269157 Comment by jezell on Creating WCF messages with mutiple namespaces. jezell 2008-11-06T15:48:43Z 2008-11-06T15:48:43Z What wasn't working for you? http://stackoverflow.com/questions/223120/how-can-i-view-more-than-one-version-of-ie-on-my-computer/223124#223124 Comment by jezell on How can I view more than one version of IE on my computer? jezell 2008-10-21T19:20:27Z 2008-10-21T19:20:27Z Sometimes IE5, IE5.5 and IE6 crash unexpectedly. Multiple IE doesn't work on Windows Vista. Follow the progress of running Internet Explorer 6 natively on Windows Vista here! Read the comments before asking questions. Most of the issues have been discussed below. Sounds very buggy and lame. http://stackoverflow.com/questions/220643/thread-was-being-aborted-exception-whilst-displaying-dialog Comment by jezell on "Thread was being aborted" exception whilst displaying dialog jezell 2008-10-21T03:09:59Z 2008-10-21T03:09:59Z Could you update your question with a code sample? http://stackoverflow.com/questions/201153/wcf-client-consuming-multiple-asmx-service-that-uses-http-cookies/203281#203281 Comment by jezell on WCF client consuming multiple asmx service that uses HTTP Cookies jezell 2008-10-20T21:42:06Z 2008-10-20T21:42:06Z Yes, it just has to be enabled in the web.config for the site. http://stackoverflow.com/questions/213978/wcf-security-error-with-vs-2008-unit-test/214319#214319 Comment by jezell on WCF Security error with VS 2008 Unit Test jezell 2008-10-20T21:40:41Z 2008-10-20T21:40:41Z Check out the local security policy on the machine and make sure that anonymous users aren't locked out from network access. Most likely, the issue is in the AD group policy or local security policy for the machine. http://stackoverflow.com/questions/189623/wcf-transport-security-with-no-authentication/197916#197916 Comment by jezell on WCF transport security with no authentication jezell 2008-10-20T21:36:37Z 2008-10-20T21:36:37Z Set the revocation mode to None. http://stackoverflow.com/questions/211496/wcf-service-request-queueing/212298#212298 Comment by jezell on WCF Service & Request queueing jezell 2008-10-20T21:35:35Z 2008-10-20T21:35:35Z If you want durable queues, netMsmqBinding is the way to go. If you don't need durable queues, WCF channel listeners will queue up incoming requests automatically based on the throttles in the configuration. http://stackoverflow.com/questions/219151/iis-hosted-wcf-service-windows-auth-in-iis-transportcredentialonly-windows-au/219374#219374 Comment by jezell on IIS hosted WCF-service + Windows auth in IIS + TransportCredentialOnly/Windows auth in basicHttpBinding jezell 2008-10-20T18:55:28Z 2008-10-20T18:55:28Z Replace &quot;bindingName&quot; with &quot;bindingConfiguration&quot; :) http://stackoverflow.com/questions/217484/single-wcf-service-to-multiple-client-connections/217510#217510 Comment by jezell on Single WCF Service to multiple client connections jezell 2008-10-20T12:39:34Z 2008-10-20T12:39:34Z This is incorrect. http://stackoverflow.com/questions/217940/wcf-unknown-message-received-event Comment by jezell on WCF Unknown Message Received Event jezell 2008-10-20T12:38:36Z 2008-10-20T12:38:36Z Which binding are you using? http://stackoverflow.com/questions/213978/wcf-security-error-with-vs-2008-unit-test/214319#214319 Comment by jezell on WCF Security error with VS 2008 Unit Test jezell 2008-10-18T20:59:06Z 2008-10-18T20:59:06Z Can you browse to the WSDL? If you disable integrated authentication and enable anonymous authentication and have SecurityMode=&quot;None&quot; on both the client and the server, it should work. http://stackoverflow.com/questions/202807/how-can-i-check-wcf-address-access-and-avoid-addressaccessdeniedexception/203269#203269 Comment by jezell on How can I check WCF address access and avoid AddressAccessDeniedException? jezell 2008-10-18T01:12:43Z 2008-10-18T01:12:43Z The APIs are the same family as the code sample I linked. Here is the query api: <a href="http://www.pinvoke.net/default.aspx/httpapi/HttpQueryServiceConfiguration.html" rel="nofollow">pinvoke.net/default.aspx/httpapi/&hellip;</a>