Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 6 years ago.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Improve this question
What are the tools available to debug WCF service?.
Depends on what you mean by debug. Certainly there are a lot of tools that are useful when dealing with WebServices and WCF specifically, besides the obvious use of the Visual Debugger or WinDBG. Here are some:
WCF Tracing
Service Trace Viewer
TCP monitoring tools, like WireShark or TCP tunnels like TcpTrace or Fiddler
If its runtime hang or crash debugging, check out http://blogs.msdn.com/Tess/
Attach via visual studio. As long as you dont have express edition you can use Visual Studio to attach to WCF services. That would be step 1.
Use the message logging.
WCF Admin and Diagnostics
Use the tracing
WCF Tracing
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
I am working high accuracy of timers in Windows. But timers in Windows are not accurate. Therefore, I have installed Windows Subsystem for Linux version 2(WSL) which is maybe not a solution for my application. I have seen many resources and videos regarding file sharing between them. My question is that is it possible to use Linux high accuracy timers in WSL. Another words, I would like to send command from Linux to Windows to execute task more precisely. It is a new concept, I hope there is already this kind of feature. The more specific example is that a program sends a command to output of industrial PC by TCP communication, the program must work in Windows however, I would like to use Linux because of the accuracy of the timer. Is there any article about this connection or any information? Because I have not found yet.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I am currently playing around with AngularDart client with a ASP.NET services and I am wanting to host a valid version of the client API for server itself. Since the server model has all the type and structure information about my requests, responses etc, I want to be able to generate a valid Dart client library rather than manually keep them in sync.
Dart documentation shows there is an option for 'hosted' packages but I can't find any information about the specs the package server has to adhere to so that these packages can be added directly from the Dart editor.
I want to know if there is any official documentation for implementing a valid package server, or if there are any open source ports that could be used as a guide.
Pub's package server is open source. You can clone the repo from Github and host your own copy on Google App Engine.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 months ago.
Improve this question
I have deployed WCF services in IIS 7.5. I want to create a web gardening in IIS, so I follow below steps to do that
On Application pool advance settings, I have set Maximum worker process=2.
My question is to do web gardening I need to change anything on machine.config or web.config file of WCF services?
If yes then what changes I need to do?
Are you sure you need a web garden? Because it's a feature that is often misunderstood. This blog entry explains it quite well.
If you really need it, you don't need to configure anything in the config. The services themselves should not need to be aware of the fact they are executed from a garden or even from a farm.
You will need a web garden when you have a CPU with Many cores and you want to scale your application. Although there is no configuration which is specifically required there are just two things that you should be concerned.
1) There should be no static Variables in Your Service. Please do more R&D on that.
2) Your Services Concurrency Mode should be Multiple so that different threads which will be created should cater the service.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
I want to get the information of antivirus product installed on my Mac-machine. I'm developing an app which will show all system information, and I'm able to get system basic info, but not able to the get the security details, like what all antivirus/antispyware products installed in that machine.
I'm developing my app using Obj-C, and trying to get the api in that only. I want to call that api on demand, so it could directly embedded within the app or can execute externally as well. If I could get that command also then I could use that.
Does anyone know what API I should be calling please?
OPSWAT maintains a commercial C++ library/api called OESIS Framework which enables the integrator to obtain information and manage common functions of 3rd party security applications installed on Mac OS devices.
The list of security applications that can be called is at- http://www.opswat.com/products/oesis-framework/supported-applications#!product=all&os=mac
Available API calls, by application type are at http://www.opswat.com/products/oesis-framework/available-apis
Disclaimer: I work for OPSWAT.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I develop a fair number of Java EE apps for my clients and all of them involve the concept of user account creation, authentication and in some cases, authorization, organization hierarchies, etc.
I typically create (JPA) entities for users, organizations and setup their interrelations, writing EJB code for the workflow.
Is there a library or a framework that has already addressed this issue that I can re-use instead of having to build this setup anew for every new development?
Some of the problems you descirbed are nicely solved with Spring security or JBoss Seam security module, I don't know spring but regarding the Seam module, you will find some examples in their repo on github.