Tagged Questions
0
votes
0answers
9 views
Is it possible to call WCF ,which uses Windows or NTLM authentication ,from jquery ?
After trying for the whole day i was finally unable to Call a Cross Domain WCF Service with Basic authentication from jquery. You can find my previous question about this here.
Unable to add ...
0
votes
0answers
12 views
Unable to add Authorization header while calling WCF service with basic authentication
I am trying to call a WCF service deployed on IIS with basic authentication enabled, from j query as below.
$(document).ready(function () {
$.ajax({
type: ...
0
votes
0answers
9 views
How to run different versions of a database-driven WPF client concurrently in .NET?
We have a data-intensive .NET WPF application which in its current form directly accesses a shared MS SQL database. The client continuously collects large amounts of data during production and ...
0
votes
0answers
16 views
What Kind of WS we can consume with JavaScript
I know how to use Restful WS with JavaScript. I am wondering is it possible to consume SOAP WS on some easy way or I need to make XML file (envelope) by my own hand which I could use to communicate ...
0
votes
0answers
11 views
GET request for WCF REST service using cURL
I'm a beginner is the REST world & cURL... I have a WCF REST service and I can't figure out how to call this from PHP using cURL.
My service looks like this:
[OperationContract]
...
0
votes
0answers
8 views
WCF Rest (JSON) - contract method parameter as object
I have service with one method that accepts object type as parameter. Have two endpoints (one for soap and one for REST - json ).
Soap endpoint works fine and object is deserialized to correct object ...
0
votes
0answers
12 views
WCF Rest Service with optional client certificate
Is it possible to have an WCF Rest Webservice which excepts SSL Client Certificates and have the IIS SSL Setting to not set to "require SSL" and to anly "accept" client certificates and not "require" ...
-3
votes
0answers
26 views
Restful WCF service using Json for uploading a file in ASP.net
I am very new to json and wcf service, and I have a task to complete and that is to call a wcf service from a web application to Write d file, the path,name,data and offset is passed to wcf service in ...
0
votes
1answer
26 views
How to pass parameters in WCF Json service which doesn't have .svc file?
I am using a .cs file instead of .svc to call my wcf service. It works fine for service methods without parameters , but not for methods with parameters. Below is the code:
service.cs
using ...
1
vote
0answers
11 views
A binding instance has already been associated to listen ''
have WCF REST service that I’m trying to host in IIS 7 with SSL. Everything works fine as long as we DO NOT enable SSL in IIS.
As soon as I enable SSL in IIS and update configuration file as . And ...
0
votes
1answer
42 views
Post array of object to WCF Rest service using JSON?
Need to send a complex object having nested IList from Iphone in JSON format to WCF REST service. The Complex Object is defined as following:
public class BatchData
{
long BatchID;
...
1
vote
1answer
39 views
WCF rest api - [WebGet] working, but endpoint not found for [WebInvoke(…GET…)]
New to configuring anything server side ... thanks in advance for your help!
I am trying to get a simple HelloWorld REST api working in VisualStudio2008 / .NET 3.5; eventually I'll be using it to ...
3
votes
1answer
36 views
How to make WCF RESTful service work async?
I'm building WCF rest service and it's client. I plan, that client does not know much about the service, just right URL's to call methods and expected results.
My service contract is:
...
2
votes
0answers
64 views
Unexplained performance difference between WCF rest vs SOAP webservice
We are exploring whether it is worth it to switch from SOAP webservices to REST. I have created a REST webservice with the following info:
[ServiceContract]
public interface IRestServiceImpl
{
...
0
votes
0answers
38 views
Trouble testing WebServices
I'm new to web services, and I'm trying to create a REST-ful service that returns a JSON element. But when I try tu run it on IIS express I got this message:
Failed to add a service. Service ...
0
votes
0answers
32 views
ASP.NET WCF and Web Form together not working
I developed a Webproject in ASP.NET 4.5 with C#. In the Webproject I have normal ASPX sites and also I want to have a WCF Webservice, the WCF Webservice should be activate by a jQuery call.
This is ...
0
votes
1answer
53 views
Deploying WCF Rest webservice to IIS 6.0 gives HTTP Error 404 - File or directory not found
I have a WCF rest webservice that runs fine on my local VS2010 environment, but when deployed to IIS 6.0 on windows server 2003, I get the HTTP Error 404 - File or directory not found.
I've searched ...
2
votes
0answers
45 views
Multiple methods with different parameters WCF REST
I've been given the task to implement the following using WCF REST:
Resource POST GET PUT DELETE
/device Create new device List devices Bulk ...
0
votes
0answers
35 views
How to return valid JSON array in WCF
Here is my webInvoke
[WebInvoke(
Method = "GET",
ResponseFormat = WebMessageFormat.Json,
BodyStyle = WebMessageBodyStyle.Bare,
UriTemplate = "{invoice}/{transtype}/"
...
0
votes
1answer
20 views
WCF REST service hosted in Windows service not working without IIS installation
I have developed a REST service using WCF and hosted it in a windows service and that works fine on a machine which has IIS installed, but not on a machine which does not have IIS. On the machine ...
0
votes
2answers
34 views
Jquery Json ajax get receiving an exception immediately
When I call a WCF service (which returns a string with json data in it) I created inside an html page using ajax and jquery, I receive no data. However if I hit the URL for the service directly within ...
0
votes
2answers
91 views
WCF Restful Webservice serializing Datatable as XML
I'm using a WCF restful webservice with framework 4.0. I want to serialize a datatable as XML and return the resulting XML. I have this working, but I can't help but feel there is a better way.
I ...
0
votes
1answer
23 views
WCF REST read URL-encoded response
I'm trying to use WCF to consume a 3rd-party REST service which responds with URL-encoded data:
a=1&b=2&c=3
I have this now:
[DataContract]
class Response {
[DataMember(Name="a")]
...
0
votes
1answer
57 views
WCF RESTful service - upload two files
I need to upload two files with WCF REST. This WCF Restful service file upload with multi-platform support works for me when uploading single file, but when I try something like
[WebInvoke(Method = ...
0
votes
1answer
16 views
Publish a WCF RESTful web service with Node JS
Is it possible to publish a WCF RESTful web service with Node JS? If yes then please point me to tutorial/article on this topic.
I came to know about wcf.js library but I think it only supports SOAP ...
1
vote
1answer
42 views
wcf rest Service Post method with json format
This is my code for wcf web services
[OperationContract]
[WebInvoke(Method = "POST", ResponseFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.Bare, UriTemplate = "json2")]
...
0
votes
1answer
42 views
How to consume Wcf rest servcie(Form authentication) from android client
I built a wcf rest service with form authentication. All the settings are set in config file. This service needs to be consumed by android client. So can any body please tell me how to send the ...
0
votes
0answers
42 views
How to read authentication cookie set in wcf service from android client application
Hi i developed a Wcf service using form authentication and there is a login service Method to authenticate the client.
This method returns the authentication cookie.
HttpCookie cookie = null;
...
0
votes
1answer
170 views
Rest WCF Post Json body parameter is always null while using Fiddler
I have been struggling with this the past few days. I have researched the issue and tried the solutions posted. However it has not worked. I have REST WCF Post method that has
...
1
vote
0answers
40 views
Implementing a claims-based security model to secure a WCF service
Currently, all of our web applications (and the WCF services they interact with) are run internally. Nothing is exposed to the web. We want to open up our web applications to the Internet and will ...
0
votes
2answers
68 views
WCF REST call returns “Method not allowed” exception
I am trying to create a WCF Restful Service.
Here is my contract: (The ActivateUser class extends the BaseResult class).
namespace SmartShopServerContract {
[ServiceContract]
public interface ...
0
votes
1answer
43 views
Error 404 from ReST POST request method
I would like to create a web application that accepts a single POST method to update a db, using a ReSTful structure.
My problem is that when I post a JSON object to the URL (using fiddler) I ...
0
votes
1answer
35 views
How can I have multiple handlers in same ProcessRequest method?
I am calling a REST service from ajax, I have the following example call
myipaddress/RestWebService/employee?id=1",
The c# service code is shown below. My handler as above is "employee", I wish to ...
0
votes
1answer
35 views
WCF JSON Post Operation
I need to create a Post WCF operation. I need the user to pass in several parameters. All of the examples I see assumes users will only ever send in one parameter. How can I accomplish this? ...
0
votes
1answer
49 views
WCF Restful service OAuthentication generating two different hash values
I have following code that calls GenerateSignature method of OAuth class
Uri u = new Uri(urlToCall);
string url, param;
HttpWebRequest request = ...
6
votes
2answers
119 views
Serialization internals in .Net
The architecture in my application is somewhat like this
MainUI------->WCF------->BLL------->DAL
I am using Entity Framework 4.0 and .Net Framework 4.0.
My data access layer returns PoCo ...
1
vote
2answers
71 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
2answers
63 views
How to call Rest ful webservice using httpWebRequest and PostData
I have created a restful webservice like below
Opertation Contract
[WebInvoke(Method = "POST", RequestFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.Wrapped,ResponseFormat = ...
0
votes
1answer
41 views
can i use wcf rest service in my asp.net 3.5 web application
I heard that rest services are moved from wcf to asp.net web api frame work.
Our web application is built on vs 2010 (asp.Net 3.5) .So still i can use wcf rest services in my web application?
...
0
votes
1answer
48 views
Is it possible to make Websocket as a REST instead of SOAP????
Is there any way to make a websocket as a REST service and host it in IIS..IIS8 only supports websocket with NetHttpBinding. and access from a client who has a proxy implemented for the service...But ...
0
votes
0answers
47 views
WCF Web service is not working when i access it from other server. Its working fine on same machine and 2 other server
I have wcf web service to get total unread messages.
this web service is not working when try to access it from another machine.
However it work for same machine and also 2 other machines.
Below is ...
0
votes
0answers
48 views
WCF REST method fire twice for List<object>
I created WCF rest for my application.
When I run the BELOW code my "open" method fire twice. I am not able to understand why it fire twice.?
If I pass the class name instead of object in the list ...
2
votes
1answer
80 views
Load dll and host it as windows service
I have 3 Restful services which I want to host as windows service. I have created one installer which will host all three services together. I want to make my installer a bit configurable. I want to ...
0
votes
0answers
53 views
When in the sencha touch 2 page cycle does one call a wcf rest service to get data for a certain ID
I have two forms in my sencha touch 2 project. The first is a login form where the userId is retrieved from the wcf rest service for a given username and password and then put into a local store.
The ...
0
votes
3answers
49 views
How to consume a WCF service using silverlight without need to cross-domain policy
I have a RESTful service in the internet but silverlight need cross-domain settings, I need to consume this service using by Silverlight,I have tried a WCF service as a middleware, but unfortunately ...
0
votes
1answer
34 views
passing custom object after serialization to WCF
I have a WCF service method with following signature:
public string CTNotification(JSONRecordingCompletedNotification content)
{
I want to create a client and consume it. I have written ...
0
votes
1answer
106 views
request.ContentType = “application/json” gives bad request error on WCF method
I have created a WCF service using WCF REST Service Template 40(CS) and method header looks like this:
[WebInvoke(UriTemplate = "CTNotification", Method = "POST", ResponseFormat = ...
1
vote
2answers
52 views
Pass DTO for GET Request in REST
I have a REST method for search users. Right now I am having following signature for the REST method:
MyResponse GetUsers(UserSearchDTO search, int pageno, int totalrecords);
i.e it is accepting ...
0
votes
2answers
35 views
Make a JsonConvert.DeserializeObject global(static)
I use RestSharp to consume a Restful WCF, it works well in my subroute.
string baseUrl = "12.34.56.789/MyServices";
RestClient client = new RestClient("http://" + baseUrl + "/MyData.svc");
var ...
0
votes
1answer
57 views
WCF UriTemplate UrlEncode
Imagine I want to call a REST service using WCF.
I have the following contract
[ServiceContract]
public interface ISomeRestApi
{
[OperationContract]
[WebInvoke(Method = "PUT", UriTemplate = ...









