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

How to make "plot_decision_regions" from mlxtend plot all samples from iris dataset in multi-feature svc case?

I am trying to use scikit-learn svc model on iris dataset. I need to use four features (sepal length/width, petal length/width) and all three classes(setosa, versicolor, virginica) to train data. Then I need to visualize results, presenting only two…
DenR
  • 33
  • 5
3
votes
2 answers

Access to WCF WebService from JavaScript - Response to preflight request doesn't pass access control check

I am using a WCF (.svc) WebService and it's working perfectly - I can call its methods without problems from Postman, PHP, etc. But, when I try to call it from JavaScript/jQuery using AJAX, there is an obvious problem - I do it from other domain…
3
votes
3 answers

How to hide my WCF service

I have a WCF service embedded into windows service. It's bind to localhost but it also accepts connection from this kind of URL - "http://ip:port/ServiceName", how can i hide it from others and allow connection only from localhost. Here is my…
mironych
  • 2,938
  • 2
  • 28
  • 37
3
votes
1 answer

WCF service, Application Domain and web sites

I have many WCF services (SVC files), and I want to host them in IIS. I was wondering: Is it better to create each one on its own web site? Or have them all together live on the same web site? What is the difference? I read that each service will…
Ghassan Karwchan
  • 3,355
  • 7
  • 37
  • 65
3
votes
2 answers

Scikit-learn in Python (svm function)

I have this little problem with sklearn in python. It seems that I installed it correctly and indeed when I do from sklearn import svm python seems to be ok with that (no error message). However my function is not working well as I got the message…
rado
  • 401
  • 3
  • 8
  • 16
3
votes
2 answers

Improving SVC prediction performance on single samples

I have large-ish SVC models (~50Mb cPickles) for text classification and I am trying out various ways to use them in a production environment. Classifying batches of documents works very well (about 1k documents per minute using both predict and…
emiguevara
  • 1,359
  • 13
  • 26
3
votes
0 answers

WCF Service Application does not work with App pool in integrated Pipeline mode

I am running the Windows Server 2012 Release Candidate. For testing purposes I deployed the WCF Service Application from the VS Template without modifications on the Default Website. Retrieving the Service1.svc only works if the App pool is in…
Marius
  • 1,042
  • 1
  • 8
  • 19
2
votes
1 answer

I have a WCF service error with ....Found node type 'Element' with name 'tns:downloadOrders

I've taken over a project made in asp.net c# using a svc file that was more or less complete. I have a third party trying to connect to this service. and they are getting the error when trying to run the DownloadOrders action Sorry if this is…
user1201810
  • 23
  • 1
  • 5
2
votes
1 answer

Extensionless REST WCF service returns http 405 for PUT method

I have a WCF REST service running locally under IIS6 written in VS2008 (3.5). The asp.net ISAPI mapping for the svc file is configured to accept all verbs I have enabled wildcard script mapping to allow extensionless URI's to work with the service…
Spencer
  • 251
  • 2
  • 8
2
votes
1 answer

Why do I need to set up the aspNetCompatibilityEnabled twice?

Could anyone please explain why when creating a WCF webservice in which you want to use HttpContext.Current.Items you need to add some code in 2 places? One in the webservice itself ([AspNetCompatibilityRequirements(RequirementsMode =…
TweeZz
  • 4,779
  • 5
  • 39
  • 53
2
votes
1 answer

Multiple WCF Services

I was asked to split my WCF service into several different .svc files, one per each logical operation group. Now the question is that I must host them in the exact same address http://somehost/ProjectX/ and I don't really know if I can put them in…
User
  • 3,244
  • 8
  • 27
  • 48
2
votes
1 answer

Using 2 WCF interfaces in the same svc file

We are trying to communicate with an external WCF service. The WCF services are exposed via svc files. It appears that there are 2 interfaces exposed via the same svc file. How can we configure this in the web.config file?
Shiraz Bhaiji
  • 64,065
  • 34
  • 143
  • 252
2
votes
1 answer

How to count points inside a contour obtained from svm.SVC?

I generated a data-set from a bivariate gaussian to simulate a signal and a background. Then I tried to separate the two components using svm.SVC with kernel 'rbf'. Now I'd like to count how many background points lay inside the acceptance region,…
2
votes
2 answers

Visualization (2D) of SVM in Python

I have an assignment, which is below. I have done the first 5 tasks and have a problem with the last one. To plot it. Please give instruction on how to do it. Thank you in advance. *(I have started learning SVM and ML just several days ago, please…
Nikola
  • 31
  • 3
2
votes
1 answer

Server side WCF (.svc) service stops working after exception

I'm using a duplex ReliableSecureProfile in WCF and the server will stop listening to new requests if an exception occurs on any client. How can I make the server more resilient to failures that happen to any single client? Everything works again…
makerofthings7
  • 60,103
  • 53
  • 215
  • 448
1 2
3
14 15