Unable to import binding '...cfcSoapBinding' from namespace 'http://...'.
I've been given the URI of a WSDL file, but when I try to add a reference to it, Visual Studio complains about a number of things. The error message in VS is the subject line above, while in the body...
View ArticleSoap Header WCF
Hi, i have a service in which SOAP Header Attribute is used for passing paramters. using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Services; using...
View Articlewcf endpoint - address attribute usage?
Hello - an endpoint has abc attributes: address, binding, contract. However, I've written WCF services with an address attribute value of "" and I'm able add the service reference to a client and call...
View Articlesearch design with wcf rest services?
What are your thoughts on the proper design of a WCF REST service that performs a search? Search functionality is essentially a GET, meaning its goal is to get data from the server - not to set data....
View Articleonly 1 service endpoint getting auto-added to client app
Hello - I've created a WCF service and I've defined 2 endpoints for the service in the service app: <service name="RestService.RestServiceImpl" behaviorConfiguration="ServiceBehaviour">...
View ArticleReading the value from ArrayOf_xsd_string - From a Java Webservice
Hi, Am facing an error while consuming a java web service. In WSDL data type for the parmeter is given as - <complexType name="ArrayOf_xsd_string">- <sequence> <element...
View Article500 System.ServiceModel.ServiceActivationException for an Ajax call to WCF...
Ajax Call: $.ajax({ type: "POST", url: "http://SomeService/ServiceName.svc/GetSearchResults", data: JSON.stringify({ parameters: serviceParameters }), contentType:...
View Articlewcf mutliple svc endpoints example?
Hello - What are some real-world examples where you would need to create a WCF service with multiple endpoints? Also, can a client choose the service endpoint to use simply by passing the endpoint...
View Articlegzip compression on WCF in shared hosting
Hi. I have a WCF rest service and it is hosted on a shared hosting (discountasp). I want to compress the responses. Since it is hosted on a shared hosting, I dont have access on IIS. I have tried many...
View ArticleGetting The remote server returned an error: (500) Internal Server Error
I have written below code to send the SOAP XML request XmlDocument objSoapXML = new XmlDocument(); objSoapXML.LoadXml(sSoapXML); HttpWebRequest objHttpWebRequest =...
View ArticleUsing WCFtestClient.exe to test webservice
HI Im currently Using WCFtestClient.exe to test my webservice and it gives me the following error The maximum message size quota for incoming messages (65536) has been exceeded. To increase the quota,...
View ArticleWebService doesn't do any changes when i modify it
hii , i'm working with visual studio 2010 with asp.net/c# and i have a web application with webservice. the problem is that i have to do a little changes in my Webservice.asmx.cs, but when i modify...
View Articleproblem installing/using x509 certificate
Hello - I used makecert to generate a temporary x509 certificate using the following command: makecert -n "CN=RootCATest" -r -sv RootCATest.pvk RootCATest.cer When I double-click the certificate that...
View Articlecertificate working with clientCredentialType="Windows" but not "UserName"
Hello - I have a serviceCertificate configured for my WCF service. I'm able to successfully update the service reference from my console app with the following configuration: <wsHttpBinding>...
View ArticleCommunicate between web services
i have a WCF web service that communicate with database directly. i need to add another WCF web service in the middle between the original web service and the database.how i can do that? what is the...
View ArticleHow to set the parameter of a child node in c#
Hi guys,I have a ASMX webservice that I need to call with no form or anything that has this following structure<soap:Body><Purchase...
View ArticleError: The SOAP action specified on the message, '', does not match the HTTP...
HII have a questionAfter an external web call an wcf application...The server returned this error: <s:Text xml:lang="es-PE">The SOAP action specified on the message, '', does not match the HTTP...
View ArticleWCF app
I am looking for some help with the following application I am new to WPF and WCF so any resources or code will be helpfulCreate a sample WPF Application (using the MVVM design pattern) with a grid...
View ArticleNeed to deploy ASP.NET Web Services in IIS in windows 10
HI, It been 2 days i am trying to deploy a web service in IIS on windows 10. My requirements was to call the web service from Javascript in another domain so i need to use JSONP. I downloaded a sample...
View ArticleC# XML Element Prefix SOAP
I have seen many SO answers but non seem to help with the issue I have. What I am doing is calling a SOAP service from third party and it actually requires a prefix on element names....
View Article