3
votes
2answers
114 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?
3
votes
3answers
456 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 …
1
vote
1answer
59 views
Excluding WCF FaultContracts using SLSvcutil (or svcutil)
Hi guys,
Basically, I have a silverlight 2 client (hence my use of SLSvcutil) that needs to access a WCF service.
Anybody know how I can prevent SLSvcutil.exe from decorating OperationContracts with …
1
vote
2answers
633 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 …
1
vote
1answer
137 views
Generated WCF proxy configuration uses server’s local name
We have a service hosted behind our firewall that receives request forwarded through to it by the external router. The service is working fine, however whenever one of our clients adds a service …
1
vote
2answers
462 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 …
1
vote
2answers
657 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 …
1
vote
1answer
907 views
Impossible to use WSDL definition
A systematic breakdown of the problem follows. [Rewritten!]
The client code
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
// This is a "sanitized" version of …
1
vote
1answer
668 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 …
1
vote
4answers
1k 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 …
0
votes
2answers
29 views
I want to add the date to my log file
Log files can get very big, very fast if you log wcf calls and messages. I want to split up the log files by date. I can write my own tracelistener but i prefer some constant in the log if that is …
0
votes
1answer
13 views
svcUtil error ‘SchemaLocation’ must successfully resolve if <redefine> contains any child other than <annotation>.
I am trying to generate a proxy from a 3rd party wsdl and xsd files. I am calling svcutil like so:
svcutil *.wsdl *.xsd /language:C#
It returns this error: 'SchemaLocation' must successfully …
0
votes
2answers
129 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.
…
0
votes
1answer
40 views
Control over wcf proxy class name generated using svcutil.exe
Is there a simple command line switch or a trick to renaming the generated class name when running svcutil.exe to generate a client proxy?
0
votes
1answer
72 views
ASMX service parameter (type string) has null value when invoked from WCF client
I am trying to consume an existing ASMX service using WCF with a BasicHttpBinding. I used SvcUtil to get me started and just extracted the contract definition interface and the config in to my project …
