0
votes
0answers
18 views

Writing a (wcf) webservice that returns XML and an XSD / WSDL

I'm about to write a webservice in C#, which should return an XML document. I am planning on using WCF because MEX will allow people to easily build a client to interface with it. I'm a bit confused ...
0
votes
0answers
17 views

Data Contract Single Value Structure

I have a structure somewhat like an enum, except it has a bunch of methods: public struct ComponentIdentifier : IComparable { private long identifier; ... } I want this to serialize such ...
0
votes
0answers
19 views

What type of lock used by xDocument.load method at time of loading xml file?

I'm having application in VB.net which is using LINQ and try to save data on local machine which reduce performance. What I believe is that because of the sync. application constantly write data on ...
0
votes
0answers
29 views

Handle malformed xml soap messages in WCF

I'm getting malformed xml from a soap webservice that I have to use from WCF. It returns invalid xml characters into messages. Of course, WCF reports invalid xml exceptions when receiving message. I ...
0
votes
0answers
18 views

Customizing WCF validation / providing more context when a SerializationException occurs

I am currently working on a WCF service with a REST binding which is expected to be accessed by systems that were not developed in .NET and have no access to the C# data contract. As a result, it is ...
0
votes
2answers
44 views

Error 415 cannot send json to wcf service

I have a problem - I need to send json over POST but my error is "error (415) cannot process the message because the content type application/xml", obviously there is some mismatch but I cannot find ...
1
vote
2answers
72 views

WCF Restful post Services returns BAD REQUEST(400)

I am trying from few days to consume wcf restful service but it is giving me bad reqeust. Please Help me out. Here is my configuration file <system.serviceModel> <bindings> ...
0
votes
0answers
57 views

Bad Request when using ContentType “text/xml” and predefined XML in WCF REST

I need to write a REST service that accepts XML documents from a client application. I don't have access to the client application and it cannot be changed. It sends documents using a HTTP POST with ...
3
votes
1answer
87 views

wcf wshttpbinding with username and password validator ProtocolException+XmlException

i have a wcf service with this config at server side : WSHttpBinding wshttp = new WSHttpBinding(SecurityMode.Message); wshttp.ReceiveTimeout = new TimeSpan(0, 30, 0); wshttp.MaxBufferPoolSize = ...
1
vote
2answers
114 views

Send username and password in clear text to web service over HTTP

I have a VB.NET (2008) console application which consumes a web service. I originally started writing it using the old/legacy (pre-WCF) technology of importing the WSDL with WSDL.exe (or "Add Web ...
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
0answers
61 views

Custom WCF binding for Soap 1.1 over http with client certificate

I'm trying blackbox web service from .NET and having issues. The service requires a request using SOAP 1.1, the request is over http, and the request must be signed with a client certificate. I ...
0
votes
2answers
62 views

How do I get the XML request from WCF web service which located in DLL?

My project has DLL which implement Web Client functionality. How can I get XML request which is send to WCF service from that DLL? My call of DLL method looks like this: LocalUser usr = ...
1
vote
2answers
65 views

WCF Rest Change name of root return element

I have [OperationContract] [WebInvoke(Method = "POST", ResponseFormat = WebMessageFormat.Xml, RequestFormat = WebMessageFormat.Xml, BodyStyle = WebMessageBodyStyle.Bare, UriTemplate = ...
0
votes
2answers
53 views

Creating a Web Service Request

I would like to feed data to a proxy which creates a soap XML request formatted as below: <dat:MusicCollection> <!--Zero or more repetitions:--> <dat:Song> ...
0
votes
2answers
28 views

WCF Parameter Is Always Null

I recently inherited a WCF webservice (LeadService.svc) which appears to accept SOAP. I am trying, unsuccessfully so far, to push data from an XML file into the service's method TestLead(). The ...
0
votes
3answers
53 views

How to read the StreamReader response from Client?

I am new to REST webservices. There is an existing REST service that I need to consume in a C# console application. I am getting the XML response in the following line. readStream.ReadLine(); How ...
0
votes
1answer
150 views

Ajax: The content type text\/html of the response message does not match the content type of the binding (application\/soap+xml; charset=utf-8)

I've been reading for hours posts related with "The content type text/html of the response message does not match the content type of the binding (application/soap+xml; charset=utf-8)" issue But non ...
0
votes
1answer
40 views

I cant show data from a WCF in the browser

Good morning everyone, I have a web application project, i've added an xpo model to retrieve data from database and i've added a webservice WCF ( .svc ) to publish data retrieved from the xpo. the ...
0
votes
0answers
58 views

accessing a WCF Service in a browser

I'm trying to access to a WCF webservice from my browser but when i click on the WCFfile from VS10 and "View in browser" it shows me: This page contains the following errors: error on line 3 ...
0
votes
2answers
42 views

XSLT 1.0 Group By Tags

I have the following XML data: <result> <row> <CountryId>26</CountryId> <CountryName>United Kingdom</CountryName> <NoOfNights>1</NoOfNights> ...
2
votes
2answers
145 views

Viewing the HTTP Headers from a WCF service

I am following the following example for my first experience with WCF. http://msdn.microsoft.com/en-us/library/bb386386.aspx I follow the routine and these are the XML codes that I can find with the ...
2
votes
1answer
45 views

Namespace not attaching to bool in WCF unless different from class's Namespace

I have a datatype I'm using in WCF for sending a SOAP response. It looks like this: <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"> <s:Body ...
1
vote
0answers
79 views

WCF Rest : DataContractSerializer - serialize an object whose name contains a colon

Hi to all I need to Get XML Custom from my WCF/REST but the name of my property is not serialized as I wish because it contains a colon. My DataContract for an error response [DataContract(Namespace ...
0
votes
1answer
156 views

WCF web service in node.js

Can anyone help me saying whats wrong with the below code var BasicHttpBinding = require('wcf.js').BasicHttpBinding , Proxy = require('wcf.js').Proxy , binding = new BasicHttpBinding() , proxy = new ...
2
votes
2answers
99 views

Store xml in C# class field

I have a requirement like i need to write an entity class in C# which can hold xml data. I want to avoid overhead of checking the well-formedness of saved xml. I have a corresponding column with type ...
-1
votes
1answer
18 views

wcf response format transformation

I have wcf function that returns a string. Then response xml is presented as: <string>ok</string> But I want to get this response as <myOwnStrName>ok</myOwnStrName> How ...
1
vote
1answer
154 views

WCF how to return string wrapped in cdata?

I have a wcf service that returns a Type instance. Say MyObject. MyObject has a string property (say CDataString)that i want wcf to wrap in a cdata section (because I'm returning an html fragment in ...
0
votes
1answer
150 views

Generate XSD classes to be exposed via WCF Service without wrapping message

I have read many posts about this topic but I could not find just the solution I need. I know I may have to settle with a less desirable solution but needed to explore any possibility first. The XSD ...
1
vote
0answers
99 views

data member of type object[] in WCF contract containing xmlnode[] or IEnumerables of strings depending on client

I'm using Contract First WCF to create an Service that a third party vendor has supplied the wsdl. The data member of typeor IEnumerables of strings depending on client When I consume the service via ...
0
votes
1answer
128 views

There was an error deserializing the object of type: Unexpected end of file

I use soapui to mock a wcf service to get a response, but I just got the error There was an error deserializing the object of type: Unexpected end of file.Following elements are not closed: ...
0
votes
0answers
113 views

WCF Service to Receive XML from Client

I'm trying to implement at WCF Service which can receive and send the XML and display the response on Client's website. I'm new for this WCF development , let me start development with online ...
1
vote
2answers
157 views

Pass Array to a WCF function

So, I have a C# project in which, I am loading a XML document (contains name of students and Id) using Linq to xml and I have to get the associated data (their due date, amount and stuff ) from a WCF ...
0
votes
1answer
118 views

XML Format Not Coming in wcf while returning data as string

Funtion: public string getAccomodationspattern2(string AccomodationID) { SqlCommand cmd = new SqlCommand("XML_AccommodationsDetail_V4", con); ...
0
votes
0answers
106 views

WS2010 after adding WCF service reference the input parameter type & name changed

I create a WCF service with operation name Operation_A, and an object with type Type_B is passed in as input parameter. But after this WCF service be added into another project, the input type changed ...
2
votes
1answer
51 views

xml xslt help - transform is not rendering correctly

i have an xml file like for binding: <?xml version="1.0" encoding="utf-16"?> <MyCustomer> <Customers> <CutomerCode>C001</CutomerCode> ...
0
votes
1answer
130 views

How to call WCF service and set its configuration using VB6

I have gone through some topics and was able to call a service in vb6 by using the following code: Dim sUrl As String Dim response As String Dim xmlHttp Private Sub Form_Load() sUrl = ...
0
votes
1answer
272 views

how to get XML output through WCF based webservice

I have a WCF based webservice and inside the method I am executing a stored procedure and filling dataset then at the end returning the dataset back..like one column and multiple rows. But my ...
0
votes
1answer
113 views

How can I connect to a WCF SOAP web service that uses Windows authentication in pure xml?

I'm trying to connect to a web service that uses wsHttpBinding and windows authentication. I can connect using WCFStorm if I configure a username, password, and domain. I need to authenticate using ...
0
votes
0answers
133 views

how do I add namespace to soap request?

How do i add namespace to the SearchSchemes ? The following is the soap request and The current output is as follows . <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" ...
1
vote
1answer
151 views

How to Convert XML Response of a Third-Party Service into JSON in WCF?

I am converting a Third-Party Service Response(XML) into JSON format by using JSON.NET. The Code i have tried so far, IEnumerable<XElement> xe; IEnumerable<XElement> xe1; ...
-3
votes
1answer
65 views

How i get the soap structure of my WCF?

i need integrate my application with another system, and i need to sent the web service structure, so for this i need to send a xml with the request and response message. I use some tools to do this ...
0
votes
0answers
51 views

DataContract/XmlSerializerFormat for a dhtmlGrid

I'm trying to write a WCF DataContract for a dHtmlGrid control. It needs the xml in a specific format. I used wdsl.exe to create an XSD and DataContract, but when I try to use it it doesn't output in ...
1
vote
2answers
117 views

Selct XML node where namespace is changing between requests in WCF

I have to select specific node from the WCF request OperationContext.Current.RequestContext.RequestMessage.ToString() The problem is that namespaces are changeing prefixes between requests: ...
0
votes
1answer
97 views

Return xml file in WCF without reading to the memory

I have a XML file (size of 10MB~), I want to return it as a XmlDocument type in my WCF service, but without to load it to memory before, because there are many people who request this file, so server ...
0
votes
0answers
79 views

Creating WCF service with xml

I need to create WCF service , but instead of function definition I have 2 XML files one for answer, second for response. How to use that xml file to define function in my service?
0
votes
0answers
94 views

How do I force WCF to convert strings to CDATA on complex types

I have a WCF service that is consumed by various other languages including PHP, Java and FoxPro (ugh!) Anyway... the problem I have is that the web service allows these clients to access data from ...
0
votes
1answer
72 views

XML Parsing through LINQ

I am doing my web service project using WCF. The problem is that I have an XML file which is like this: <Cars> <Make Name="Honda"> <Model Name="Accord" Year="2013"> ...
0
votes
1answer
142 views

Unable to deserialize contract using REST WebInvoke with custom gzip Encoder

Given a REST service POST call: [WebInvoke] // POST string PostItem(PostItemContract contract); That uses a custom gzip encoder within a custom binding (web.config): <customBinding> ...
0
votes
1answer
294 views

Reading POST Request XML - Boolean value always read as false

I'm working on a WCF RESTful web service hosted in IIS. I'm currently working on a fairly simple post request, sending the following XML to the endpoint: <StockListRequestData ...

1 2 3 4 5 8