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
0 answers

Use JSON.net as the default serializer and deserializer for ASP.NET service (.svc)

I've been searching for hours to no avail. I'm trying to use JSON.net as the default serializer and deserializer for WCF web services (.svc) on an ASP.NET website. To be clear, this is not an MVC site. Just plain old ASP.NET 4.0 hosted inside IIS…
scooterop12
  • 28
  • 1
  • 4
1
vote
3 answers

What is the correct name for an SVC file in WCF

I'm struggling to come up with the correct naming convention for SVC files (or a group of SVC files). I always call them just that. IMyService.cs goes in MyProject.Contracts dll assembly MyService.cs goes in MyProject.Services dll…
Eoin Campbell
  • 43,500
  • 17
  • 101
  • 157
1
vote
0 answers

Use of XMLserializer classes when using SVC proxy client

I have generated a SVC proxy client using following switches: svcutil /wrapped /serializable /async /seralizer:XmlSerializer /out:Proxy1.cs http://url.zzz/name.wsdl so far so good,I call methods, get response all fine. A step further, I read about…
SSA
  • 5,433
  • 4
  • 36
  • 50
1
vote
1 answer

How does the .SVC file in WCF Service work?

Possible Duplicate: WCF Service Deployment in IIS Page cannot be displayed and how does the SVC file work? A Typical WCF SVC file will have the following; <%@ ServiceHost Service="AMWCF.Service1" %> The SVC file informs nothing on the location…
user1034912
  • 2,153
  • 7
  • 38
  • 60
1
vote
0 answers

ODATA Service access on Iphone

I want to access an WCF .svc service from my iphone application. It is an ODATA based service. the samples from the ODATA sdk for iOS shows how to create proxy classes for the database schema using normal HTTP access. But my trouble is that my…
SeriousSam
  • 219
  • 2
  • 14
1
vote
0 answers

which one is better approach one large svc file or multiple small svc files in WCF

I have one data intensive application where in I have one svc file which creates the C# reference file roughly of size 3mb and around 70 endpoints. Will it be good to break them in multiple svc files or is it ok to have one single svc file?
Rakesh
  • 310
  • 3
  • 19
1
vote
1 answer

AttributeError: 'Kernel' object has no attribute 'masker' during training of SVC with rbf kernel

I am training my SVC model and I am getting this error with the Shap Library. Have tried some methods including shap.maskers.Independent but the same error keeps appearing. Am I missing out something? Codes model = SVC (C = 10.0, gamma = 0.01,…
DDM
  • 303
  • 4
  • 19
1
vote
1 answer

WCF and Unity: Set up InstanceProvider, ServiceBehaviour, -Host, -Factory... Now what?

I have been looking for a way to use Unity for Dependency Injection in my WCF service. I have been trying to understand the code described in these two blogs, which is quite similar: Integrating Unity with WCF WCF and Unity 2.0 So I added this…
Fedor Alexander Steeman
  • 1,561
  • 3
  • 23
  • 47
1
vote
3 answers

WCF: Could not load file or assembly ... the system cannot find the file specified

I've got a WCF Service hosted in IIS 6/7. I tried different things with the .svc file, but I can't get it to work. I always get a FileNotFoundException "Could not load file or assembly 'X.Y.Z' or one of its depencies. The system cannot find the file…
Turrau
  • 452
  • 1
  • 4
  • 11
1
vote
0 answers

ERROR: Client found response content type of 'multipart/related C# asmx client

I'm trying to create a web service client (asmx), connected to web service(.svc) from another host. I used add web reference that generating the service classes in the project. However, when I call the getData() for example, Im getting this error…
SaMuTa
  • 11
  • 1
1
vote
1 answer

How would you form the URL to test the output of a SVC?

I have a SVC web service located at http://localhost/myProjects/WebServices/Retriever.svc Let's say Retriever.svc.cs has a method [WebGet] [OperationContract] public string[] CoolMethod(string prefixText, int count) { ..... return some…
Matt
  • 25,943
  • 66
  • 198
  • 303
1
vote
0 answers

Trying to understand decision function for SVC RBF kernel by Implementing manually but not getting same output as sklearns decision funstion

X, y = make_classification(n_samples=5000, n_features=5, n_redundant=2, n_classes=2, weights=[0.7], class_sep=0.7,…
1
vote
1 answer

How to implement grid searchcv for onevsrestclassifier of SVC classifier

I want to do a grid search on OnevsRest Classifier and my model is SVC but it shows me the following error on using the grid search --how to resolve?? Code- from sklearn.model_selection import GridSearchCV # defining parameter range param_grid =…
1
vote
0 answers

Not Access to Confusion Matrix in SVM.SVC.score Scikit-learn Python

I used the SVM.SVC function to classify. But when I wanted to calculate the weighted and unweighted average accuracy, I couldn't access the confusion matrix. Because svm.SVC.score only provides a classifier accuracy percentage. How can I calculate…
1
vote
1 answer

Unable to edit or delete .svc inside Azure.Error 404 not found

I have the following asp.net web application:- and using this command, i deploy the web application to azure web app:- az webapp deployment source config-zip --resource-group "PUS" --name "TDMGroupPUSRER" --src "C:\pus\bin.zip" now when i try to…
John John
  • 1
  • 72
  • 238
  • 501