Questions tagged [svc]

This tag is ambiguous. Consider using the video-encoding tag for Scalable Video Coding, or the wcf and/or iis tags for the Microsoft file extension.

This tag is ambiguous. Consider using for Scalable Video Coding, and/or for the Microsoft file extension, or for the machine learning model

SVC can refer to:

  • Scalable Video Coding, a video compression standard used by H.264/MPEG-4 AVC.

  • The .svc file extension used by Microsoft's Internet Information Services to represent a service host instance.

  • A common abbreviation for the supervisor mode of a processor.

  • Support Vector Classifier, a machine learning model (with a common implementation in scikit-learn).

225 questions
0
votes
0 answers

Consume WCF hosted on the web from JQuery on Android

I have successfully hosted a WCF .svc service along with its .NET application on my hosting account @ DiscountASP.net. The service is now hosted and I can access it from another aspx hosted on the same hosted in the same environment. In that aspx I…
KSAM
  • 1
  • 1
0
votes
1 answer

ValueError: Array contains NaN or infinity in _assert_all_finite during LinearSVC

I was trying to classify the wine data set here -http://archive.ics.uci.edu/ml/datasets/Wine+Quality using logistic regression (with method ='bfgs' and l1 norm) and caught a singular value matrix error(raise LinAlgError('Singular matrix'), in-spite…
ekta
  • 1,560
  • 3
  • 28
  • 57
0
votes
1 answer

Why would a WCF AJAX method's argument not be populated with values, even though the instance is not null?

I sent an AJAX request to my server using jQuery.ajax, and the "data" field is populated with a JSON string corresponding to my ClientMessage type, but the data isn't making it to the method's main parameter. All members of ClientMessage are null…
Triynko
  • 18,766
  • 21
  • 107
  • 173
0
votes
0 answers

Consume .svc webservice by C# winforms

Below is the webservice given by third party to integrate in C# winforms:
idrisjafer
  • 725
  • 1
  • 14
  • 29
0
votes
1 answer

stuck on svc webservice request not reach to server

I am calling this webservice from iOS code But when i am calling from same request in my iOS code it is not giving me the response. fatal error or response byte 0 received like this. i check with server when i post from iOS code but the reason is my…
0
votes
1 answer

Send picture taken from android to .net web application (to store it in database)

I'm trying to upload some photos taken by an application in a distant database. To be clear : I take a piture from my app I send if to a web service (witten in .net, svc file) The WS upload it in the database The way i'm doing it : i'm sending the…
Derbie
  • 413
  • 1
  • 12
  • 28
0
votes
1 answer

Hosting WCF Service as Windows Service

I have created WCF service project. It has following content in SVC file. <%@ ServiceHost Service="Deepak.BusinessServices.Implementation.ApiImplementation" Factory="Deepak.BusinessServices.Implementation.CustomServiceHostFactory"%> SVC…
0
votes
0 answers

How to handle an ajax upload file with SVC?

I'm trying to upload a single file (not image) using jQuery Ajax to a WCF web service (svc). I finally got the web.config right for transport, and my SVC is receiving something, but I'm at a loss as to how to get and process the incoming form…
brnwdrng
  • 521
  • 2
  • 8
  • 18
0
votes
1 answer

CRM 2011 Online via an ASP.net application does not work, same code via Console Application Works -> "Authentication Failure"-error

I'm trying to connect to a CRM 2011 Online environment. I'm able to connect via a "Console Application", but when I'm trying to connect via an "ASP.net"-application with the same code, it doesn't work, it gives me the "Authentication Failure"-error…
Freeetje
  • 523
  • 8
  • 27
0
votes
1 answer

WCF configuration for .svc host on ASP.NET

I have a WCF web service which is hosted at a .svc file by ASP.NET. .svc file contains following configuration: <%@ ServiceHost Language="C#" Debug="true" Service="assembly.IPriceListProvider, assembly"…
Bogdan Verbenets
  • 25,686
  • 13
  • 66
  • 119
0
votes
0 answers

How to Invoke a WCF Service Dynamically using C# Winforms?

I have a WCF Service and i want to invoke this at run time ... if i do the same code and instead of WCF(.svc) if i call (.asmx) i can able to get through and getting results... but here WCF gets failed private void button1_Click(object sender,…
Aravind
  • 1,521
  • 2
  • 12
  • 23
0
votes
2 answers

Using WebService for IOS

There is a wcf webservice. In it there is a lot of procedur. When I need to use a procedure ,which is one of them in the wcf, I have to connect it and use it. But I don't know what to do to use the web service. I've never used webservice before.…
e.ozmen
  • 269
  • 3
  • 17
0
votes
1 answer

Switching from an asmx to a svc web service

We upgraded some web services from asmx to WCF, I need to change the call to the web service in an application, the contract name and method names and signatures are the same. Is there any easy way to go from calling a asmx web service to a svc web…
The Pig's Ear
  • 233
  • 1
  • 3
  • 14
0
votes
1 answer

Handling wcf services from nodejs

I am trying to access soap URL,I came across different file types i.e. .asmx and .svc. I used the node-soap module for handling .asmx services. For .svc I came across wcf.js below is the code var BasicHttpBinding =…
user87267867
  • 1,409
  • 3
  • 18
  • 25
0
votes
1 answer

JayData "Uncaught RangeError: Maximum call stack size exceeded"

Have a Model where I want to be able to log the devicetypes of a connection by doing this: var connections = DataLayer.context.ConnectionSet.filter(function(item) { return item.Id == id; }, {id: 1}); connections.forEach(function(item) { …
HansElsen
  • 1,639
  • 5
  • 27
  • 47
1 2 3
14
15