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

This operation is not supported for a relative URI, error browsing SVC-service

I get the following error when browsing to a svc-service for a website (browsing it at the server it is located at). The website uses IIS7. This operation is not supported for a relative URI. Description: An unhandled exception occurred during the…
Anders Branderud
  • 1,878
  • 6
  • 29
  • 45
7
votes
0 answers

Generate a svc / wsdl URL in my WCF web service

Usually when i implement a 3rd party WCF web service then i get a URL that ends with an .svc extension. I just created a WCF Web Service in VS2010 and i'm able to run that service, but i don't see any URL in the Test Client that ends with a .svc…
Vivendi
  • 20,047
  • 25
  • 121
  • 196
6
votes
1 answer

Svc file works without codebehind?

<%@ ServiceHost Language="C#" Debug="true" Service="FirstWcfService.Service1"%> Im hosting my service at WAS using SVC file: But as you can see it doesnt have CodeBehind Attrbiute as it should. and its working. How is that ?…
Royi Namir
  • 144,742
  • 138
  • 468
  • 792
6
votes
8 answers

set multiple return value for method declaration

I have a function as below: public var UpdateMapFetcher(int stationID, int typeID) I need this function to return either string or int. My return value is set as below if (finaloutput == "System.String") { // param1[i] =…
Kanes
  • 105
  • 1
  • 10
5
votes
1 answer

Why SharePoint remote event receiver is referencing wrong url for our .SVC hosted inside azure web app

I am working on building a remote event receiver for our SharePoint online root team site. and i am following the main approach mentioned in this link remote-event-receivers-youre-all-doing-it-wrong. where the approch worked well when i debug it…
John John
  • 1
  • 72
  • 238
  • 501
5
votes
0 answers

Getting distance to the hyperplane from sklearn's svm.svc

I'm currently using svc to separate two classes of data (the features below are named data and the labels are condition). After fitting the data using the gridSearchCV I get a classification score of about .7 and I'm fairly happy with that number.…
5
votes
1 answer

service reference proxy class renamed

I'm having my Web Application which hosts Webservices (svc) which are used in a Silverlight Webapplication. After a while I added some new stuff to my Service and now I tried to refresh my proxy classes in the Silverlight Application…
float
  • 1,265
  • 5
  • 22
  • 38
4
votes
3 answers

Hiding my WCF service?

I have a WCF service hosted on IIS6 and I am using .net framework 3.5. The site I have is on public domain I mean anybody can access from anywhere. My question is, is there a way to hide my WCF service? I can easily view source my page or know…
Nick Kahn
  • 19,652
  • 91
  • 275
  • 406
4
votes
2 answers

SKLearn: Getting distance of each point from decision boundary?

I am using SKLearn to run SVC on my data. from sklearn import svm svc = svm.SVC(kernel='linear', C=C).fit(X, y) I want to know how I can get the distance of each data point in X from the decision boundary?
user1566200
  • 1,826
  • 4
  • 27
  • 47
4
votes
1 answer

Calculating decision function of SVM manually

I'm attempting to calculate the decision_function of a SVC classifier MANUALLY (as opposed to using the inbuilt method) using the the python library SKLearn. I've tried several methods, however, I can only ever get the manual calculation to match…
precicely
  • 511
  • 6
  • 17
4
votes
2 answers

How to fork my own repo into a new project?

I was developing an HTML5 game engine. I used Git as the SV and GitHub to actually host the project. I've made some substantial changes in the design (mainly switching to the Entity System paradigm), and I think it's time for a new engine. I would…
corazza
  • 31,222
  • 37
  • 115
  • 186
3
votes
1 answer

Querying svc log file with logParser

I have generated a xml trace for my program using the Enterprise Library TraceManager. It works great. Using the Microsoft Service Trace Viewer, I can see a separate trace per call. I would love to query the file so I found Microsoft Logparser and…
KeithMacCrimmon
  • 219
  • 3
  • 16
3
votes
1 answer

Consume a wcf Service with a Java Client

I try to consume a wcf service hosted on an iis with a simple java client. my service is a basicHttpService. now my Question. What do i need in java to access the service methods? i build a little example: using System; using…
user963451
  • 31
  • 1
  • 1
  • 2
3
votes
2 answers

shap : SystemError: initialization of _internal failed without raising an exception

I am using a SVC to predict a target. I am tryring to use shap to get features importance. but it fails. here is my simple code that I copied from the official doc of shap : import shap svc_linear = SVC(C=1.2,…
3
votes
1 answer

How to use GridSearchCV for OneVsRestClassifier with SVC estimator?

I'm trying to use OneVsRestClassifier with SVC for a multi classification problem for images - I got numerical features of the images from CellProfiler. I want to use GridSearchCV to find the hyperparameters to use and I am stuck. Does anybody have…
1
2
3
14 15