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
1
vote
1 answer

WCF service "endpoint not found", what's the cause?

I wrote WCF service and the following is the web.config file. When I punch in url: http://localhost:50705/EmpInfoService.svc/GetEmpSalary/B1234 It gives me an error: Service endpoint not found I found two places that are suspicious.... from…
Curly
  • 539
  • 2
  • 7
  • 14
1
vote
2 answers

Scikit learn wrong predictions with SVC

I am trying to predict the MNIST (http://pjreddie.com/projects/mnist-in-csv/) dataset with an SVM using the radial kernel. I want to train with few examples (e.g. 1000) and predict many more. The problem is that whenever I predict, the predictions…
Felipe Gerard
  • 1,552
  • 13
  • 23
1
vote
1 answer

Adding information to my svcfile without a web-project?

I'm following this guide here: http://www.lostechies.com/blogs/jimmy_bogard/archive/2008/09/16/integrating-structuremap-and-nhibernate-with-wcf.aspx And has now come to the end of it where i need to add : <%@ ServiceHost Language="C#" Debug="true"…
Marcus
  • 1,197
  • 1
  • 7
  • 14
1
vote
1 answer

Can an ASPX CascadingDropDown Extender use a Service Path that is not an ASMX? (WFC SVC or Data Service)

I have noticed that all the example in the internet uses Service Path of ASMX for a cascading dropdown list, is there a way to use more modern technology as it's service path? I was wondering if I could use DataServices for it?
Nap
  • 8,096
  • 13
  • 74
  • 117
1
vote
1 answer

SVC: Which web video players support scalable video coding?

Scalable Video Coding is supported by Annex G of H.264/MPEG-4 AVC video compression standard. My question is if there are any web video players (e.g., Adobe Flash Player) supporting Scalable Video Coding, and if so, which ones. Thanks!
Mike
  • 1,296
  • 2
  • 15
  • 40
1
vote
1 answer

Can't get SSH public key authentication

I have a notebook and a remote PC based on Windows 7 which have a static IP (for example 10.10.10.10). I want create a ssh-tunnel for my work. So I installed cygwin and share port 2222 for ssh-connection. Now, when I enter on my local PC in…
0xFF
  • 585
  • 1
  • 6
  • 22
1
vote
1 answer

How to see al the commit tree in git bash?

Suppose i have this log in my git bash a16asd jh243f h32khk 324io2 k32lji and a16asd is my HEAD. Now when i do git reset --hard jh243f Now i have this log jh243f h32khk 324io2 k32lji But the commit a16asd is still available to jump to, although…
vcmkrtchyan
  • 2,536
  • 5
  • 30
  • 59
1
vote
1 answer

How to launch Glassfish v3 without backgrounding

Glassfish v3 is launched as follows: ./bin/asadmin start-domain This script eventually runs: exec "$JAVA" -jar "$AS_INSTALL_LIB/admin-cli.jar" "$@" admin-cli.jar eventually launches another process, effectively putting itself into…
jnorris
  • 6,350
  • 8
  • 30
  • 33
1
vote
0 answers

Capture H.264/SVC encoded video in Android

Is it possible to capture H.264/SVC encoded video in Android? Viceversa, is it possible to decode H.264/SVC encoded video in Android? MediaRecorder.VideoEncoder class shows the following options for the video encoding. int DEFAULT int H263 int…
1
vote
2 answers

Is it possible to use object in web service?

enter code hereI would like to send dynamic type with .asvc web service. I have one class with some properties. I would like to send any kind of object even class in this list. And cast back on client side. I mean I always want to use SysResult…
serhads
  • 462
  • 2
  • 7
  • 22
1
vote
1 answer

shorten svc file name for publishing

I have a punch of wcf service, the point here that when i publish them the svc file name start to be the same with the service behavior class and name space, so if the class is BBServices.BBBO.Caching.BBCacheClientService the svc name is…
MuhanadY
  • 752
  • 1
  • 12
  • 40
1
vote
1 answer

UseDefaultCredential in Webservice to WCF

I am currently converting Webservice(ASMX) project to WCF(SVC) project, and I am having trouble with the following. WebClientProtocol.UseDefaultCredentials = false For example, This is my current code for Webservice var client = new…
Adrian
  • 836
  • 7
  • 20
  • 44
1
vote
0 answers

Calling Wcf .svc webservice in XCode

I have a WCF .svc webservice which takes two parameters username and passwrod and returns a Json object. Can anyone tell me in details how to call the webservice and parse it in Xcode. I am trying to use this webservice in my Login screen. The…
user2903572
  • 31
  • 1
  • 10
1
vote
2 answers

Can a very large (or very small) value in feature vector using SVC bias results? [scikit-learn]

I am trying to better understand how the values of my feature vector may influence the result. For example, let's say I have the following vector with the final value being the result (this is a classification problem using an SVC, for…
T.S.
  • 1,009
  • 2
  • 11
  • 24
1
vote
1 answer

.NET WCF client generated task seems to not actually run on different thread

I have created a WCF Service Application and basically changed nothing except names, the default contract is there and contains a method GetData(Int32) that returns a String. Then I have created WPF client application targeting .NET FW 4.5 so where…