Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 578507
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T14:16:04+00:00 2026-05-13T14:16:04+00:00

I have multiple WCF services that share some data contracts and need to generate

  • 0

I have multiple WCF services that share some data contracts and need to generate client-side code using svcutil.exe. I’ve run into errors using two most obvious ways to do this and need some help.

But first, here are the services:

[ServiceContract( Namespace = "http://www.me.com/services/" )]
public interface IFooService {
    [OperationContract]
    Response RunFoo( Request request );
}
[ServiceContract( Namespace = "http://www.me.com/services/" )]
public interface IBarService {
    [OperationContract]
    Response RunBar( Request request );
}

Response and Request are defined in a separate assembly:

[DataContract( Namespace = "http://www.me.com/shared/" )]
public class Request {
    [DataMember]
    public int Input { get; set; }
}
[DataContract( Namespace = "http://www.me.com/shared/" )]
public class Response {
    [DataMember]
    public int Result { get; set; }
}

The services are implemented in some trivial way, compiled, published – let’s switch to the client side now.

Including both services on the svcutil command line – like this:

svcutil /o:Client.cs http://hostname.com/FooService.svc http://hostname.com/BarService.svc

will result in numerous error messages about duplicated data types, starting with

Error: There was a validation error on a schema generated during export:
Source:
Line: 1 Column: 9087
Validation Error: The global element ‘http://schemas.microsoft.com/2003/10/Serialization/:anyType‘ has already been declared.

and ending with

Error: There was a validation error on a schema generated during export:
Source:
Line: 1 Column: 12817
Validation Error: The complexType ‘http://www.me.com/shared/:Response‘ has already been declared.

Generating a client-side file separately for each service avoids these errors:

svcutil /o:Foo.cs http://hostname.com/FooService.svc
svcutil /o:Bar.cs http://hostname.com/BarService.svc

But then definitions of shared types (such as Request and Response) will be duplicated in Foo.cs and then in Bar.cs, resulting obviously in compiler errors.

So, what is the conventional way to generate client-side code consuming such services?

Limitations:

  • cannot ship an assembly containing shared types to the client (so that they could use svcutil.exe’s /r option)
  • cannot use the “Add Service Reference…” command in Visual Studio – need an svcutil command line (or another command-line tool).
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T14:16:04+00:00Added an answer on May 13, 2026 at 2:16 pm

    Well, basically you can

    • either put your shared types into a separate assembly that the clients can use when generating the client code (which you already dismiss as impossible)

    or then:

    • you have to generate each proxy for the services separately, and each service will get its own “copy” of the “Request” and “Response” classes

    Either you can share the common assembly – or you can’t – I don’t see any other choice, really.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have multiple classes that all derive from a base class, now some of
I have multiple threads (C# application running on IIS) running that all need to
I have multiple NET.TCP services that provide access to my apps bussiness logic layer.
Is it possible to have multiple listeners to messages carried by MSMQ? WCF appears
I have multiple logos of various companies in various formats that needs to be
I have a similar problem as this question . I have multiple web services
I have a WCF service that I am deploying in a shared hosting environment.
I have multiple selects: <select id=one> <option value=1>one</option> <option value=2>two</option> <option value=3>three</option> </select> <select
I have multiple projects in a couple of different workspaces. However, it seems like
You have multiple network adapters. Bind a UDP socket to an local port, without

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.