Tagged Questions

The ServiceModel Metadata Utility tool (SVCUTIL.EXE) is used to generate service model code from metadata documents and metadata documents from service model code.

learn more… | top users | synonyms

15
votes
6answers
4k views

Svcutil.exe for .NET 4.0?

I was trying to use svcutil.exe to generate proxy classes for a service but when I use the /reference option to reference an assembly that is built for .NET 4.0 I get an error. Could not load file ...
6
votes
3answers
4k views

How to generate a WSDL file from a C# webservice

I've created a WebService like this: [WebService(Namespace = "http://ns")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] public class GroupManagerService : WebService { public ...
6
votes
4answers
3k views

Consume webservice from a .NET DLL - app.config problem

I'm building a DLL, let's call it mydll.dll, and in it I sometimes need to call methods from webservice, myservice. mydll.dll is built using C# and .NET 3.5. To consume myservice from mydll I've ...
6
votes
4answers
2k views

How to generate client-side code for multiple WCF services with shared types

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. ...
6
votes
2answers
1k views

Alternative to SvcUtil.exe?

I have been wrestling with SvcUtil all day, trying to get it to generate useful code for some IMS Enterprise Services (primarily Group Management Service, but there are others we need it to work for ...
6
votes
2answers
8k views

WCF service reference namespace differs from original

I'm having a problem regarding namespaces used by my service references. I have a number of WCF services, say with the namespace MyCompany.Services.MyProduct (the actual namespaces are longer). As ...
5
votes
1answer
239 views

SvcUtil and 'System.Xml.Linq.XElement' cannot be converted to 'System.Xml.XmlElement' compiler error

I always recieve the above error when I generate a proxy class for my service using SvcUtil. The service is exposing a property that is of System.Xml.Linq.XElement type. The SvcUtil generates a ...
5
votes
2answers
1k views

/sharedtypes eqivalent for svcutil.exe?

Building an app that is relying on a 3rd party provider who has a very verbose set of SOAP services (we're talking 50+ WSDL files). Each individual WSDL however has numerous shared type declarations. ...
4
votes
2answers
690 views

SVCUtil or WSDL batch processing

I was given a set of 170 WSDL files which I need to convert to C# class files. Is there any way to batch process this?
4
votes
2answers
6k views

use svcutil to map multiple namespaces for generating wcf service proxies

I want to use svcutil to map multiple wsdl namespace to clr namespace when generating service proxies. I use strong versioning of namespaces and hence the generated clr namespaces are awkward and may ...
4
votes
3answers
1k views

Identical Types In Separate Web Services

I have a similar problem as this question. I have multiple web services that I am consuming with WCF, which all share types. The services themselves are written in Java and I do not have access to ...
3
votes
1answer
227 views

WCF - Customized WDSL generation

I spent hours trying to do some customizations in the wsdl generation, without results. I got stuck mainly because I could not find a clear sample for what I want to do (I may have missed something). ...
3
votes
1answer
689 views

Svcutil generating bad config with multiple endpoints

I have a WCF service that has exposed a soap and an xml endpoint. When I use svcutil to generate the proxy code on the client side the generated configuration contains two endpoints which causes the ...
3
votes
2answers
716 views

How can I make WCF talk to this web service?

This is a follow up of this question. As suggested by @Benjamin here, I am trying to add a service reference for my wsdl now (in stead of a web reference). Here is the url to the wsdl in question: ...
3
votes
2answers
2k views

Errors/Warnings using svcutil.exe to create proxy classes for several WCF services

I'm writing a .NET 3.5 app and have control over both the WCF service and client. I'm using svcutil to generate proxy classes for my services, combining several services since they share data types. ...
3
votes
1answer
2k views

Can I force svcutil.exe to generate data contracts for a WCF service?

I would like to force svcutil to generate all data contracts in an assembly that is used by WCF, regardless of whether or not a type is referenced by a given operation contract. [DataContract] public ...
2
votes
1answer
15 views

Include Extension Methods in Generated Proxies File

We have two assemblies, DataContracts and Core. We are currently using svcutil to generate our DataContracts, while referencing Core. We've got a couple of extension methods on different enum types ...
2
votes
2answers
44 views

svcutil exlude/reuse refrenced assemblies

Is it possible to use svcutil to reuse/exclude referenced types, as with visual studio. I have multiple projects, my types/datamodels are stored in separate assemblies, so they can be used by other ...
2
votes
1answer
28 views

Unable to get trace file for WCF service \ svcutil

I'm unable to get trace log file for WCF service on server. The file simply doesn't appear after I call the service. I have no problem to get it on client with same configuration. I'm using windows ...
2
votes
2answers
80 views

Using svcutil to adjust specific values on bindings

I am using svcutil to generate a proxy file for use against a service we consume. Currently, I have a batch file that we can run at anytime to regenerate the proxy file if the service changes. ...
2
votes
1answer
267 views

WCF, svcutil.exe: How to properly match or configure web service client code?

This is about how to make the freaking WCF auto-generated client work. Easy to reproduce, all elements are here, just to be copied and pasted, just a command prompt needed. In cmd.exe: : set up ...
2
votes
1answer
284 views

WCF Service client problem

I'm trying to create a client for a WCF service that I have hosted on IIS 5.1.I'm getting a strange problem: I can access the service through a browser just fine, I see the "You have created a ...
2
votes
1answer
196 views

How can I get the raw XML response from a .NET generated SOAP client rather than serialized objects?

I need to access the raw response XML from a .NET generated SOAP client (using svcutil). I believe that I can do this by intercepting it with a custom behaviour, but I don't really need the ...
2
votes
1answer
219 views

How can I generate WCF .cs file for both Silverlight and .NET?

I currently use the Silverlight version of svcutil to generate the .cs file for Silverlight. I would like to be able to share this with .NET 3.5, but there seem to be some obstacles. Notably, ...
2
votes
1answer
265 views

troubles with generating a service reference

I have to build a .Net application that consumes a bunch of web service. This web service runs under weblogic. The WSDL of the web services mention a XSD file that describes the types. When I try to ...
2
votes
1answer
232 views

SVCUTIL.EXE: Any way to separate my Commons.xsd classes? (C#)

Basically I have the following scenario: I have 2 WSDL files: User.wsdl Customer.wsdl Both of these wsdl's reference a Commons.xsd (Schema) so that they can use an Address ComplexType. Then I do ...
2
votes
1answer
163 views

Multiple XSD files with same entities defined

Thanks for any help, We have two XSD files, both of them shares some same entities and some others different. Note that the one with differences are called differently. We want to generate C# code ...
2
votes
1answer
121 views

How to export metadata from a running WCF service

I wish to send the service metadata of a running WCF service to a third party developer, so he'll be able to create a proxy on his end. At the moment the service is accessible from my local machine ...
2
votes
1answer
1k views

Passing username and password to svcutil.exe?

We have OSB services that are currently secured with a username and a password. I get a 401 unauthorized when attempting to generate a service proxy using svcutil. I know you need to set up a ...
2
votes
1answer
118 views

Generating separate “model” classes from a WCF service

I'd like to be able to generate individual classes (one class per file) for each Data Contract or XML type in a WCF Web Service. I've read the svcutil documentation, and unless I skimmed a little too ...
2
votes
2answers
426 views

Why does SvcUtil create a Channel interface that derives from IClientChannel

When you create code from a WSDL file using SvcUtil.exe, among the many types created is an interface that derives from both the service interface and IClientChannel. If, for example, the created ...
2
votes
1answer
654 views

SvcUtil.exe Generate multiple wsdl files

I've made a project in Visual C# 2008 Express with several interfaces with a service contract. I generate a WSDL from this using the scvutil.exe tool. All this works perfectly: I get a nice and ...
2
votes
4answers
2k views

Is there a way to force svcutil.exe to ignore SSL certificate issues?

I need svcutil.exe to generate a proxy class for me, but the problem is that the web service can be accessed only via HTTPS and the SSL certificate is self signed. How can I force svcutil.exe to ...
2
votes
2answers
2k views

svcutil.exe - Proxy generated not allowing for nullable fields

I am trying to consume a web service specified using WSDL by creating a WCF proxy using svcutil.exe, but the WSDL specifies that some of the operations have parameters that are optional ...
2
votes
2answers
4k views

Problem with generating WebService proxy using svcutil

In our application we are forced to consume several WebServices. In the beginning we used just the "Add Service Reference" menu option, in order to create a WCF proxy. The wizard didn't generate a ...
2
votes
2answers
1k views

svcutil omits the ServiceKnownType attribute from the generated interface proxy

I encountered a problem when I tried to implement the ServiceKnownType example from MSDN. In the example they provide the following classes: [DataContract()] public class Widget { [DataMember] ...
2
votes
5answers
3k views

Does Visual Studio 2008 Use SvcUtil.exe and if “No” is there any disadvantage to using svcutil?

After googling a bit there is no definite answer of whether Visual Studio 2008 uses svcutil.exe or not? Visual Studio 2005 did use it, but do the RTM versions of Visual Studio 2008 use svcutil? A ...
1
vote
1answer
77 views

The 'minOccurs' attribute cannot be present

I'm in the process of building my svcutil command line to generate business objects from the OSEO schema. Whenever it tells me "xxx" type is missing, i determine what xsd i need to include to the ...
1
vote
2answers
76 views

Using svcutil to generate xsd files for client proxy

I am trying to use Svcutil to export metadata for proxy generation off a locally hosted service. I dont want to go into visual studio and click 'Add service reference' as this is a learning exercise ...
1
vote
1answer
167 views

serialize runtime objects into svcutil generated partial class representations

I use svcutil to generate the following code: //------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // ...
1
vote
1answer
73 views

Svcutil generates wrong Name property value in DataContractAttribute

When I use svcutil.exe to generate a Customer class from the definition contained in the xsd file: <xs:schema ...> <xs:element name="customer" type="Customer" nillable="true" /> ...
1
vote
1answer
56 views

What to modify in WSDL so that svcutil generates HttpsTransport for the binding in the config

I have deployed a Java metro web service that is being consumed by a WCF client. The service is accessed over https. The WSDL gives the service location in the soap:address element as beginning with ...
1
vote
1answer
197 views

Howto use svcutil to generate a C# WCF proxy from a web service that uses restriction to hide elements?

I'm creating a client to a web service that is more or less out of my control. Here is a simplified sample of the schema: <xs:complexType name="A"> <xs:sequence> ...
1
vote
1answer
69 views

svcutil ignores out paramter of async WCF call

I have a service WCF interface: [ServiceContract(Namespace = "net.pipe://QFX_DLL/TradingService")] public interface IGenericTradingInterface { [OperationContract] void ...
1
vote
1answer
93 views

How can i make this a valid WSDL?

I'm trying to generate code from this WSDL using the following command: svcutil /noConfig /language:C# /out:ICatalog.cs ...
1
vote
1answer
40 views

svcutil and Description attribute

When I use SvcUtil to generate the client-side class it does not include the "Description" attribute from the server-side class. How to do this ?
1
vote
1answer
106 views

Generate a WSDL from a dll?

Is it possible to generate a WSDL from a .NET ASMX-based web application without hosting it in IIS? Ideally, I'd like to point svcutil.exe (or wsdl.exe?) to the dll and have it spit out all the WSDL ...
1
vote
2answers
110 views

Prevent svcutil from generating “EmitDefaultValue=false” attributes

I've recently been trying to generate data contracts from xsd files, using svcutil like this: svcutil.exe /t:code /dconly /out:MyContract.cs /n:*,My.Namespace MyDataDefinition.xsd The XSD mostly ...
1
vote
1answer
175 views

Is SVCUTIL.exe broken or is it the supplier's WSDL?

I am trying to use SVCUTIL from the SDK to generate the common types in several web services. When I try to generate code I get the errors (shown at the bottom)- these suggest the WSDL is broken. ...
1
vote
1answer
415 views

svcutil does't generate config file

I have wcf service. I tried to generate proxy code and configuration file for client program by svcutil: svcutil http://localhost/WcfService2/Files.svc I got valid file with proxy, but didn't get ...

1 2 3 4