.NET: Best practise to debug 2 web service that communicate together?!?
Hi!!
I have a proble with debuging me app!
my application comunicate with a web service and this web service
send a request to another web service... the 1st web service return the data
from the second web service to the application.
How can I debug the 3 projects (1. windows application / 2 . web service 1 / 3. webservice 2)
in 1 solution?!?
How to set the refereces in this solution to hit all breakpoints in all of this
3 projects?!?!
Please tel me your best practise to debug web services?!
regards,
gicio
Answers (1)
0
- The C# language is intended to be a simple, modern, general-purpose, object-oriented programming language.
- The language, and implementations thereof, should provide support for software engineering principles such as strong type checking, array bounds checking, detection of attempts to use uninitialized variables, and automatic garbage collection. Software robustness, durability, and programmer productivity are important.
- The language is intended for use in developing software components suitable for deployment in distributed environments.
- Source code portability is very important, as is programmer portability, especially for those programmers already familiar with C and C++.
- Support for internationalization is very important.
- C# is intended to be suitable for writing applications for both hosted and embedded systems, ranging from the very large that use sophisticated operating systems, down to the very small having dedicated functions.
- Although C# applications are intended to be economical with regard to memory and processing power requirements, the language was not intended to compete directly on performance and size with C or assembly language.
