Questions tagged [servicemodelex]

An extension to Microsoft's WCF (System.ServiceModel) by IDesign

A class library containing all the IDesign helper classes, utilities and tools. The library also contains a comprehensive catalog of ServiceModelEx, containing short documentation of each type, its category and reference to related classes or types.

Download here

15 questions
20
votes
4 answers

Where is Juval Lowy's ServiceModelEx library for WCF?

WCF is Microsoft's replacement for .Net Remoting and Web services. It's critical to understand if you are a .NET component developer. The best reference for WCF appears to be (by word of mouth, blogs and Amazon) Juval Lowy's "Programming WCF…
Tad Donaghe
  • 6,625
  • 1
  • 29
  • 64
3
votes
2 answers

InProcProxyFactory.CreateInstance called from WCF Service

I am trying to use the ServiceModelEx library from IDesign. When I try to call: InProcFactory.CreateInstance(); from with in a WCF Service (basically calling WCF Service B from WCF Service A), I get the following error: Could not find dynamic…
user472292
  • 1,069
  • 2
  • 22
  • 37
2
votes
1 answer

How to get Service Base Address in app.config?

I'd like to get the baseaddress specified in my app.config file which is "http://localhost:8733/SmgService/" from C#. I looked into Microsoft's documents however, currently I don't know how to access this baseAddress from the C# code behind. Any…
2
votes
1 answer

Communication between WCF services

I'm building a service into an existing application where each service was built with the intention that it would only be consumed by one client and the client and server are setup with duplex communication channels. Limitations I don't have the…
Jordan
  • 5,085
  • 7
  • 34
  • 50
1
vote
1 answer

ServiceBus AppFabricLabs DLL

There are two DLL's with multiple namespaces that I am having problems with: Microsoft.ServiceBus.Channels - V2.0.50727 Microsoft.ServiceBus - V2.0.50727 I'm attempting to enhance Juval's Lowry's Service Bus Explorer to switch…
codeputer
  • 1,987
  • 3
  • 19
  • 45
1
vote
2 answers

When would you ever use In-Proc WCF Components?

I'm studying Juval Lowy's excellent Programming WCF Services and I've just created a really simple in-proc component using his InProcFactory class that comes along with his ServiceModelEx library. Why would you do this instead of using just regular…
Tad Donaghe
  • 6,625
  • 1
  • 29
  • 64
1
vote
0 answers

How to configure TopShelf client and host on LAN network?

I tried this tutorial for .NET TopShelf: http://lourenco.co.za/blog/2013/08/wcf-windows-service-using-topshelf-and-servicemodelex/ and everything works fine on localhost, but when I run Client app on other PC with host IP in app.config aplication…
maniek099
  • 319
  • 4
  • 19
1
vote
0 answers

How can I ensure exception type safety?

I am using some code adapted from Lowy's ServiceModelEx to package an exception inside a FaultException, send it across the wire, and then unpack it on the client as a .NET Exception. My server can throw exceptions of theoretically any kind, but…
downwitch
  • 1,362
  • 3
  • 19
  • 40
0
votes
2 answers

Service Model Assembly Error With Azure Functions V2+ (.net Core 2.1)

I have been using azure function V2(.net core 2.1) in my azure function app. I have been using System.ServiceModel.Primitives nuget for my function App which uses ServiceBusEnvironment packages in it. I am able to compile the code and run the…
0
votes
1 answer

SEHException thrown while loading an application in a C# Server Process

I have a .NET Client which has several C# library files, one of the c# library file loads a third party native library. Now for some reasons we would like to convert the C# library to a new C# server Process which will in turn host the third party…
GeeKay
  • 1
  • 3
0
votes
2 answers

How to implement WCF ServiceModelEx Subscriber?

I'm using ServiceModelEx WCF library from Juval Lowy's "Programming WCF Services". I'm trying to implement a Publish-Subscribe Service with publisher and subscriber. What I have done so far is the publisher and the discover-publish service. Service…
Artur
  • 128
  • 10
0
votes
2 answers

WCF fault logging and SQL Exception 4060 error

I have been attempting to compile/run a sample WCF application from Juval Lowy's website (author of Programming WCF Services & founder of IDesign) for several days. The example app utilizes Juval's ServiceModelEx library which logs faults/errors to…
Bill
  • 335
  • 1
  • 4
  • 21
0
votes
1 answer

Question about using ServiceModelEx's "WCFLogbook" from "Programming WCF Services" book

I am attempting to compile/run a sample WCF application from Juval Lowy's website (author of Programming WCF Services & founder of IDesign). Of course the example application utilizes Juval's ServiceModelEx library and logs faults/errors to a…
Bill
  • 335
  • 1
  • 4
  • 21
0
votes
2 answers

How do I publish to only a certain subscriber ServiceModelEx?

Ok so I am changing the way that my service pushes out notifications to clients. Right now the way that ServiceModelEx is working is that if any client is subscribed to an event it messages all subscribed users regardless if the message is for them.…
Steven Combs
  • 1,890
  • 6
  • 29
  • 54
-1
votes
1 answer

Strange behavior using WCF and ServiceModelEx Service Bus

I'm using the Service Bus portion of ServiceModelEx. (and using AppFabric for auto-starting WCF services). I'm getting some strange behavior... Basically, the first time I call into the service bus, all the proper events fire down the chain…
Didaxis
  • 8,486
  • 7
  • 52
  • 89