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
2
votes
1 answer

fit() missing 1 required positional argument: 'self'

I try to fit SVC in skikit-learn, but got TypeError: fit() missing 1 required positional argument: 'self' in the line SVC.fit(X=Xtrain, y=ytrain) from sklearn.svm import SVC import seaborn as sns; sns.set() from sklearn.datasets.samples_generator…
Katya
  • 111
  • 3
  • 13
2
votes
0 answers

Does latest chrome support vp9 svc on webrtc environment?

I read an article(october, 2018) about simulcast, svc and codec. Article says, Right now, SVC is not supported by the current codecs in a WebRTC environment. It is being supported by VP9 (the successor to VP8) and H265 (the successor to H264). When…
2
votes
1 answer

No module named 'sklearn'

my problem seems to be easy but i have no idea how to resolve it. So i got an error ModuleNotFoundError: No module named 'sklearn' when i try to import datasets and svc, but in my opinion i had installed all required packages…
Lacwik
  • 57
  • 1
  • 8
2
votes
1 answer

How to draw decision boundary in SVM sklearn data in python?

I am reading email data from training set and creating train_matrix, train_labels and test_labels. Now how do I display decision boundary using matplot in python. I am using svm of sklearn. There are online example for pre given data sets through…
Savan Patel
  • 49
  • 2
  • 8
2
votes
0 answers

sending custom object from client (Jquery) to server (WCF)

how to send a custom object from client (jquery) to server (WCF service) what is the way of passing an object? below is my code and when i see in the firebug this is what i get please see the screen shot:…
Nick Kahn
  • 19,652
  • 91
  • 275
  • 406
2
votes
3 answers

error code 400 while consuming svc service in ios using swift

I am making a call to service as following using swift in ios, My service is working perfectly fine with android version but when i try to make it work with ios it always return error code 400 below is the code of ios version var soapMessage =…
Pinakin Kansara
  • 2,273
  • 3
  • 22
  • 35
2
votes
2 answers

How to change default WCF service binding?

In my WCF I have a few services. One of them must have a bigger limit for message size so i must create another binding and change configuration. But... i can't see any configuration of my services in Web.config - nothing. Something is default? So…
AndreiGolacov
  • 31
  • 1
  • 4
2
votes
2 answers

http wcf error "Could not find a base address that matches scheme https for the endpoint with binding MetadataExchangeHttpsBinding..."

am getting this error when i try to call my custom svc file from sharpoint. i have posted my web.config file here, could you guys tell wats wrong with this. am trying to have my custom webservice in the sharepoint, so i created a project but due to…
5181john
  • 21
  • 1
  • 2
2
votes
1 answer

ServiceRoute does not work when routePrefix is a path

When I try to access my WCF service at the following address it works fine: http://localhost/webservices/main.svc Great. But I want to be able to call this service in following way: http://localhost/api/main So I am attempting to put in the…
brando
  • 8,215
  • 8
  • 40
  • 59
2
votes
1 answer

Cannot get JSON response if DateTime is NULL

I have sql database. In sql the column type is datetime nullable but in c# entities are defined as only datetime. If the dateTime is null the response as xml format gives no problem but response as json format gives problem. If I change datetimes…
user3309441
  • 107
  • 11
2
votes
1 answer

Return custom error message when includeExceptionDetailInFaults="false"

I'm using .net svc services with .Net framework 4.5 and for production purpose I have to set includeExceptionDetailInFaults to false in my web.config file. However sometimes I need to have custom errors returned by my services. I tried to use the…
bizibiz17
  • 31
  • 5
2
votes
1 answer

How to parse complex soapfault object

Please anyone set this code,I have tried several different code to parse soap-envelop how to handle this type of response public class Main Activity extends Activity { TextView res; String str, he, hh; …
parthpatibandha
  • 92
  • 1
  • 1
  • 14
2
votes
1 answer

Accessing listdata.svc via URL Rewrite redirect to SharePoint 2010

I am hitting a proxy server with URL rewrite rules rewriting the URL's to access a Sharepoint server. Everything works except I get a 404 on /_vti_bin/listdata.svc. I also get an error on the proxy server in the app log. Log Name: …
calorie712
  • 348
  • 4
  • 14
2
votes
0 answers

Hosting of ajax enabled wcf service in IIS 7

I have deployed an asp.net mvc application in IIS, The application has been deployed successfully and working fine. I Used ajax enabled wcf service in my application, the problem is when I want to use the method of the service. I get the not found…
2
votes
0 answers

Debugging a WCF service activation in an ASP.Net application

I have a WCF service running in an ASP.Net application. The svc file internals looks like this: <%@ ServiceHost Language="C#" Debug="true" Service="my.api.Awesomeapi" Factory="my.api.AwesomeHostFactory" %> The factory code-behind also lives in the…
larryq
  • 15,713
  • 38
  • 121
  • 190