Questions tagged [webhttpbinding]

165 questions
0
votes
1 answer

Time Out issue in HTML5/jQuery application

I am developing an HTML5/jQuery application in .NET 4.0. The application is used to upload the excel files using WCF Rest services (webHttp). The uploaded files saved in SQL Server drop zone and then SSIS process them. For smaller files (few KB)…
JSK
  • 583
  • 6
  • 17
0
votes
0 answers

WCF - webHttpBinding endpoint not found

I'm new at WCF. I've managed to put in place a working project in VS 2015. In this, I have two Services Contracts, each with a Operation Contract. I also have a DataContract for the composite Class I need. I've set the wcf solution as a site on IIS,…
Luc Wanlin
  • 97
  • 2
  • 5
0
votes
0 answers

Not able to connect Database from webhttp binding

In my ASP.NET 4.0 web application I have created a WCF service with webhttp binding (that service is part of the ASP.NET application and not a different project or solution). The service works fine if run the application from Visual Studio but when…
JSK
  • 583
  • 6
  • 17
0
votes
1 answer

WCF configuration for WebHttpBinding(Restful) for supporting both HTTP and HTTPS

We are using AJAX Cascading dropdown and AutoComplete functionality with Restful WebService Services providing data. With one endpoint(non-secured) eveything was working fine, until we tried same web page with https. Our Webappplication needs to…
KSS
  • 1
  • 1
  • 1
0
votes
1 answer

wcf CustomWebHttpBehavior works only on the first endpoint

I have a wcf (.net 4.5) with one service and multiple interfaces\end points. This service is declared as follows:
Programer
  • 1,005
  • 3
  • 22
  • 46
0
votes
2 answers

What is WCF webHTTPbinding from TCP point of view?

What is WCF webHTTPbinding from TCP point of view? So - how hard it is from not needed data flow it is? How hard it is in compare to other WCF bindings?
Rella
  • 65,003
  • 109
  • 363
  • 636
0
votes
1 answer

WCF ignore duplex in webhttpbinding

Hi i have an service looks something like this. [ServiceBehavior(InstanceContextMode = InstanceContextMode.PerCall, ConcurrencyMode = ConcurrencyMode.Multiple, UseSynchronizationContext = false)] public class Service : IService { public string…
Dendei
  • 551
  • 1
  • 7
  • 18
0
votes
1 answer

WCF REST webHttpBinding - 404 Error

This service I can see the JSON data while calling methods through browser when hosted on our IIS server but after moving it to client's server.. I can't see the data from browser though I can see through WCF Test CLient only... where I'm going…
Mukarram
  • 115
  • 4
  • 14
0
votes
1 answer

.NET 4.5 WCF rest with custom Authentication

First of all, I am new to WCF. I created a REST webservice using WCF. It only has one operation that retrieves the list of products (in json format). This is invoked from web using jquery. It works perfectly. Now, what I need is to add a custom…
VeRo
  • 81
  • 1
  • 9
0
votes
1 answer

How to cancel a wcf request silently without being noticed by the client

Is there a way to silent cancel processing a wcf request without being noticed by the wcf / web client? My web server is developed using WCF with WebHttpBinding and listen to the 80 port. What I mean is to let the client wait until timeout but the…
mind1n
  • 1,196
  • 3
  • 15
  • 34
0
votes
1 answer

Connect a self-hosted WCF-Service via WebHttpBinding fails in Kerberos-Mode

I have a self-hosted WCF service that is accessible using WebHttpBinding. This service should get a kerberos token from the internet explorer on the client and then he should impersonate with this token to access an file server via a network share…
Floyd
  • 1,898
  • 12
  • 20
0
votes
1 answer

How to use Microsoft JWT Token Handler to secure webHttpBinding based WCF service

I need to secure a WCF Service that uses webHttpBinding with tokens, but having a hard time figuring out how to do so. It is my understanding that the recommend way of doing this is by using JWT Tokens? I have an STS (IdentityServer) that issues JWT…
Bahr
  • 5
  • 1
  • 4
0
votes
1 answer

How can I ensure that WCF web http binding always emits type information for JSON?

I am using the WebHttpBinding provided by WCF. When making requests in Json, the response does not contain any type information. How can I ensure that type information is emitted when using the WebHttpBinding for Json requests? Thanks
SharePoint Newbie
  • 5,974
  • 12
  • 62
  • 103
0
votes
1 answer

WCF - Webhttpbinding, see significant difference between PerCall and PerSession

I have tried to configure my wcf webhttpbinding (restful) service both PerSession and PerCall. As far as I understand webhttpbinding does NOT use sessions to satisfy the restful principles, however I see significant performance differences when…
Armen Nazarian
  • 95
  • 1
  • 2
  • 5
0
votes
1 answer

WCP WebHttpBinding times out on machines on the same LAN

I'm currently attempting to add a simple WCF-based web UI to an existing application, so that certain aspects can be remote controlled via any device on the same LAN with a web browser. (from a phone or tablet 30ft away via WiFi, for instance) …
jameswilddev
  • 582
  • 7
  • 16
1 2 3
10
11