Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
208 views

Generating DataContracts with exact namespace as in XSD

We have to integrate our project with back end Oracle Platform. And this integration is via various WebServices. I have all WSDLs and XSDs for all these integrations. And I need to generate ...
3
votes
2answers
3k views

Generating code from WSDL in WCF keeps returning message does not match the default value

Ok, this is driving me insane. I've been trying to build service implementation code from a predefined wsdl and it is consistently returning a message on the service contract/interface: // CODEGEN: ...
1
vote
0answers
130 views

XmlSerializer in .NET with XmlSchemaForm.Unqualified

Given the following piece of code: using System; using System.Xml.Schema; using System.Xml.Serialization; namespace XmlSerializationTest { [XmlType(Namespace = "http://www.test.com")] public ...
0
votes
0answers
98 views

Contract first web services and streaming in .NET

I've inherited a project that has used contract first with Thinktecture's WSCF.blue, so I've got XSD's and WSDL's to work with. New requirement is to add support for large files via streaming. Other ...
0
votes
2answers
475 views

Generating Service Contract from a WSDL

I have a WSDL that I need to generate a ServiceContract (OperationContract, DataContract)... I have found a way to do it for ASMX WebServices but can't seem to find how to do it in WCF. I have tried ...