0
votes
0answers
6 views

Can Wsdl.exe handle soap encoded arrays

I have a WSDL that contains an array definition based on soap encoding (http://schemas.xmlsoap.org/soap/encoding/). The array contains another complex type and the WSDL looks something like that (Its ...
0
votes
0answers
8 views

Backward compatibility in ASMX to WCF migration

I need to upgrade our web services to use WCF instead of ASMX. Is it possible to have the backward compatibility to use back ASMX service? I'm having two proxy projects. one is generated by ASMX ...
0
votes
0answers
17 views

WCF WSDL-link and metadata exchange not working

Currently myself and an admin have a problem getting the webservice(WCF) running. Our Setup: The customer sends a request via https(certificate) to a loadbalancer which sends the request via https to ...
0
votes
1answer
34 views

Generation of proxy works fine in one environment but not in the other?

I have a simple Webserivce (WCF) hosted in a Windows Service(Selfhost). The declaration of the service looks like this : <service ...
1
vote
2answers
66 views

How do I get WSDL file from a running service?

Here's how I start my web service: try { //load the shedluer static constructor ServiceHost svh = new ServiceHost(typeof(OrderExecutor)); var tcpbinding = new ...
1
vote
0answers
46 views

Add Service Reference: Ordering of Serialization Fields

I'm writing a C# web service client in Visual Studio 2008 with a Java web service endpoint. I have no control over the endpoint and the SOAP messages that it sends back. I created an auto-generated ...
0
votes
0answers
30 views

svcutil generated wsdl does not include soap12 operations

I have a WCF service that I have followed this article to add a custom Soap1.2 binding. When I run the service in Visual Studio (2012) I am able to browse to the Soap1.2 WSDL (using the WCF Test ...
1
vote
1answer
21 views

In .net3 wcf the wsdl output has a xmlns:i0 that is used in the wsdl:service wsdl:port binding where do I make changes so it uses my target namespace

In .net3 wcf, the wsdl output has a xmlns:i0 that is used in the wsdl:service wsdl:port binding where do I make changes so it uses my target namespace (xmlns:tns) also the wsdl:binding element is ...
0
votes
0answers
106 views

Consuming WCF service using Apache CXF

I have a task where i need to consume a WCF web service using java client. I've chosen Apache CXF as a framework for that, and so long were not able to complete the task. First of all i have no ...
0
votes
1answer
59 views

WCF request with default empty tags

I'm trying to connect to a SOAP 1.1 webservice, using TLS. The certificate has been set up right, and I am able to communicate with the webservice. However, when I try to do this using a plain C# ...
4
votes
1answer
29 views

MessageContract - invalid method generation

I have the following wcf service: [ServiceContract] public interface IUnitTestingService { [OperationContract] TestsResult ExecuteUnitTests(UploadRequest unitTestsExecutionData); } // Use ...
9
votes
3answers
219 views

Sharing WSDL types without XSD

I can't seem to find an example of generating proxies from WSDLs with shared types but without having any XSDs to go along with them. Can anyone please mark this as duplicate and point me to an ...
0
votes
2answers
106 views

How to create and send a SOAP request with the help of WSDL and receive SOAP response?

I am very new to WCF. I want to send a SOAP request to a webservice and receive response from the same. The WSDL is: http://content.domain.com/ContentService?wsdl. I have added this wsdl to ...
0
votes
1answer
35 views

How to avoid svcutil to produce XmlSerializerFormatAttribute for collection type?

Using svcutil to generate C# code from WSDL; I want to avoid XmlSerializerFormatAttribute attribute; I know why its producing, don't know how to use it correctly to avoid it? lets do some research; ...
0
votes
1answer
44 views

Unwrapping responses on WCF with XmlSerializer and Soap with RPC Literal

I´m trying to consume a Soap 1.1 web service with WCF. After generating proxies with svcutil from wsdl definition, I found that the all the responses where null. It seems that the service uses RPC ...
0
votes
1answer
39 views

Unable to get wsdl from service with multiple bindings hosted in IIS

I have a WCF 4.5 Service hosted in IIS7.5. The service is using netTcpBinding for Net 3.5+ clients and basicHttpBinding for Silverlight 5 clients. The address on this binding is specific ...
0
votes
0answers
64 views

Web Service returns SOAP but properties are empty

I created a web-service client, compiled a WSDL, everything is OK except empty properties after calling Logon method (ResponseCode, etc. are empty). I have a response SOAP message: ...
1
vote
1answer
32 views

Can I auto generate an STS binding for WsFederationHttpBinding endpoints via MEX

I have a WCF service that exposes a WsFederationHttpBinding endpoint programatically. I want to then use Visual Studio to create a client side endpoint using the service reference dialog. The client ...
6
votes
3answers
240 views

Include Schema Type in WSDL file

I created a WSDL by hand that has only one operation with no input parameter and no output parameter. I am getting following error when I try to create a client from this WSDL: Cannot import ...
0
votes
0answers
54 views

Alter WCF client method signatures during generation of service reference

I have to use a SOAP web service provided via WSDL definition. After adding Service Reference it results in the following code for operations: ...
0
votes
1answer
46 views

WCF showing the “You have created a service.” page instead of WSDL

I have a WCF service running inside an ASP.NET MVC 4 application. The site is running on IIS8 on Server 2012. Until recently, the WSDL pages loaded without any problems. This week, the WSDL no longer ...
0
votes
0answers
70 views

Create WCF Service based on Existing WSDL and XSD

If I use svcutil, I don't think I can generate server side code because all interfaces generated don't have ServiceContract attribute and all model classes don't have DataContract and DataMember ...
0
votes
0answers
99 views

Visual Studio 2010 Service Reference - Duplicate Attribute error

My WPF application fails to get built with the errors: Duplicate 'System.CodeDom.Compiler.GeneratedCodeAttribute' attribute Duplicate 'System.Diagnostics.DebuggerStepThroughAttribute' attribute ...
0
votes
1answer
111 views

When I consume wsdl using python, I get an xml.parsers.expat.ExpatError

I followed these instructions to make a local wsdl. Some lines in my local WSDL: < wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" ...
0
votes
1answer
96 views

Getting fatal-error on Calling WCF in PHP using SoapClient over https

I am newbie to services, i am currently calling .net WCF service in PHP using SoapClient object. Code is as follows: ...
10
votes
2answers
333 views

WCF request validation using XML

I have a WCF SOAP web service using .Net 4.0 framework. I am using contract first approach – i.e, service code is generated from hand written WSDL using WCSF Blue tool. I have following requirement ...
0
votes
0answers
166 views

Getting WSDL error when calling service using WCF Service Moniker

Calling a WCF service from Excel VB which is using the WCF Service Moniker and getting the following error. "The processing of the WSDL parameter failed. Error: Element binding named ...
1
vote
0answers
67 views

DataContract namespace not showing up properly in WSDL/XSD

I've Google'd the crap out of this and I'm at the end of my rope. I have a Service Contract defined like this: [ServiceContract(Namespace="http://myfirstnamespace.mycompany.com")] public interface ...
0
votes
0answers
75 views

XSD2CODE and DataContract WCF

my problem seems to be simple but I don't find a solution till now. I have created a wsdl file. The wsdl uses complex type so at the end, before creating it I have created some xsd files that ...
0
votes
1answer
96 views

WCF generate the wsdl was different with the original wsdl which was provided to create WCF Service?

I got a original wsdl file from my boss and asked me to create a Dummy Web Service based on it. And then create a client to test it by using the new wsdl file which is generated from Dummy Web Service ...
1
vote
2answers
127 views

Eliminating tempuri from a WCF Web Service which has FaultException

Background: I've recently added internal authentication of user requests to a web service with a custom FaultException being thrown in the event of a failed authentication. The FaultException custom ...
1
vote
1answer
39 views

Is it possible to replace schema locations in Suds/python?

I'm trying to hit a WCF service that's being hosted behind a reverse proxy/redirect. The WCF service is reporting the wrong schemaLocation, based on which machine it's actually being served from. For ...
0
votes
0answers
280 views

WCF Custom tool warning:cannot import wsdl:port

Hi I'm getting issue when i'm trying to add wcf service reference says "custom tool error: failed to generate code for the service reference" not sure why this is coming.It worked a month ago,all of ...
0
votes
1answer
107 views

wcf service calling an ASMX web service which returns IPropertyChangedEventHandler

Ok this is kind of a complicated situation so let me start by laying out what I'm trying to do. I have a WCF web service that is using DataContractFormat to serialize requests as JSON. One of the ...
2
votes
1answer
117 views

WCF service wsdl client error

I have a WCF web service written in .NET 4.5 which is working fine. The client I am using to call it (a SQL CLR stored procedure) has to use .NET 2 because it's for a Sql Server (2005). When I test ...
0
votes
2answers
175 views

creating web service proxy and deleting WSDL file issue

i just need to know that after creating web service proxy if i delete wsdl file then is there will be any problem for creating web service class related instance? so guide what i need to do after ...
1
vote
1answer
231 views

WCF web service does not return WSDL

Using wsdl.exe /l:CS /serverInterface, I generated a C# interface from a WDSL document. I've implemented that interface on a WCF class. The resulting service runs locally: ...
1
vote
1answer
76 views

Operation parameters not populated

I have a WCF service with the below service\operation\data contracts. namespace Enrollment { [ServiceContract(Namespace = "http://docs.oasis-open.org/ws-sx/ws-trust/200512")] public ...
6
votes
1answer
144 views

Integrating with SecureNet payment gateway

I'm trying to integrate our software with SecureNet gateway. They have a SOAP based API. The problem I'm having is their WSDL file really doesn't work with PHP. Specifically their WSDL file is split ...
1
vote
0answers
66 views

How can I make svcutil build a proxy to a schema with a jagged array?

We publish the functionality contained in our business layer via a WCF SOAP service. We use VS2008 and write the XSD using visual design tools (XMLSpy) and generate the WSDL using WSCF.blue In one of ...
2
votes
1answer
273 views

WCF service generated by WSCF.blue Service Error “implementation type is an interface or abstract class and no implementation object was provided”

I am using C# Visual Studio 2012 to create a wcf service. I had the WSCF.blue tool generate the wsdl from the xsd-s. Then I generated the web service code using the same tool. WSCF.blue does not ...
0
votes
1answer
38 views

Questions about schemas.microsoft.com.2003.10.Serialization.xsd generated by svcutil.exe

I want to distribute the WSDL file of my WCF service to all the stakeholders. Some will be generating actual web service out of it and a few will be writing client part of it. When i generated wsdl, ...
0
votes
0answers
33 views

Is it possible to generate actual RESTful web service using predefined interfaces?

I am building an application in which I need to expose a service interface. The intent is to distribute service interface to other participating applications which will be creating actual web service ...
0
votes
1answer
61 views

Is WSDL is used to describe WCF

WSDL stands for web service description language and is used to describe Web Service, so is it used to describe WCF also, and if yes than whether svcutil.exe is only tool used in WCF to describe data ...
1
vote
0answers
108 views

SvcUtil doesn't generate .xsd files

I want to update my WCF services, by adding a couple of new methods at the service description. I've build the new dll's with the new methods, copied them in the bin folder of the WCF website hosted ...
1
vote
0answers
97 views

Consuming a web services MEX endpoint outside of Windows

I want to access a Windows-hosted web service. I have no control over the service or its configuration. Using Visual Studio I can create a Service Reference pointing at the endpoint ...
0
votes
1answer
19 views

How to packages wsdls?

I have a wcf webservice, the client needs a copy of the wsdl. However, when I open the wsdl, because of custom types, there are a bunch of xsd imports that point to my localhost. <xsd:import ...
0
votes
1answer
344 views

How to use services Defined in WSDL file using C# code Behind ( Asp Web Forms )? [duplicate]

Possible Duplicate: How to use a WSDL 1 - User will fill the form in one website page and press submit (http://www.vivointernet.com.br/ ) 2 - The submit calls a function (that need to be ...
1
vote
1answer
281 views

Using our own xsd file in WCF service

We have a xsd file in which the contracts are already defined. We use xsd.exe to generate classes for our WCF service, and use the XmlSerializerFormat for our webservice again. It seems to me, that ...
0
votes
0answers
76 views

3rd party tool generating stub from wsdl file?

Is there a 3rd party tool I can use to generate a stub for Apahce Axis2 web service? I used VS.NET generating one stub but have difficult to call the web service. I am wondering if I can use another ...

1 2 3 4 5 9