Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am writing a WCF service and need to control the value of the name atttribute on the wsdl:definitions tag in the generated WSDL document. The ServiceBehavior and the ServiceContract attributes do nothave any property on them that dictates the output value of the name in the definitions tag. Changing the service implementation class name does not make a difference either. Any help is appreciated.

EDIT:

The ServiceBehavior Name named parameter translates directly into both the wsdl:definitions element's name attribute value and the wsdl:service element's name attribute value. In WCF, is there a way to assign a different value to the wsdl:definitions element's name attribute?

[ServiceBehavior(Name = "FooService", 
                 Namespace = "http://foo.bar/2011/01/", 
                 ConcurrencyMode = ConcurrencyMode.Multiple, 
                 InstanceContextMode = InstanceContextMode.PerCall)]
public class FooService: IFooService
{
     //etc...
}

becomes:

<wsdl:definitions name="FooService" ... >

and

<wsdl:service name="FooService">

How can I make the wsdl:definitions element's name attribute value be "FooDefinition"?

share|improve this question
sscce.org - tell us exactly what you're trying to do and how with an example. we should fix the example – dvb Jan 3 '11 at 15:40

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.