|
We are using WCF for communication between a client and a server application. The client application has many features that requires communication to the server - and we have chosen to implement this in multiple classes (seperation of responsability)
...
Started by Thies on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
The service would always reply with a "Response", of which all these messages trough....
Basically you would always send a "Message" to the service, which has a "Target" being one of the classes you wanted to access.
With the service.
|
|
Ok, all these methods of getting data in a Silverlight control are confusing me.
I've looked at ADO.Net Data Services, Web Service and Ailverlight-enabled WCF services. I'm just not sure when one is appropriate to use over another. What pros/cons do each...
Started by Jeremy on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I would highly recommend using WCF; and use the WCF Service Library project over the Silverlight-enabled....
If you have to choose between a web service and a WCF service, my advice is to go with WCF, but I just wanted to add my 2 cents.
|
|
Duplicate:
http://stackoverflow.com/questions/351334/web-service-vs-wcf-service
What is the difference between WCF service and Webservice ?
Started by Tushar Maru on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
"WCF Service" implies an app....
WCF is an extension - it's a web service, but you can expose it over TCP/IP, or named pipes a WCF service inside your own app - you don't have to use IIS for hosting the web service (ASMX and API.
|
Ask your Facebook Friends
|
I have a WCF service hosted as a Windows service. The WCF service uses msmq queue on the same server.
When the server is restarted my WCF service starts before the msmq service. This puts my WCF service in faulted state.
What is the best way to handle...
Started by Kristoffer on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
See: http://serverfault.com/questions/84181/can-the-startup-order at design time, add a string with the name... .
That is stop the WCF service from starting before the MSMQ service.
You can specify the startup order using the serivce dependency .
|
|
What would be reasons that you want to host a wcf service in a windows service and not in IIS?
Started by Ragha J on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
You as the developer don't need someone to administer the box Sometimes IIS6 is really just overkill... .
Freedom.
If you want to use TCP, MSMQ, etc., then you need to host in a separate program .
One reason is that IIS6 only supports bindings based on HTTP .
|
|
I have a WCF service I use for configuration stuff hosted in a windows service that will be used to maintain a database. Is there any way that I can access the WCF service inside of the hosting service? Or should I move the database functionality to another...
Started by InTheFlatField on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
What might be better would be for you to separate the service into those parts that are specific to the fact that it....
If by "access" you mean to ask whether you can call the service, then yes, the service can be a client of itself.
|
|
Hi, I'm sure there's an elegant solution to the problem but I just can't get my head around it. I am trying to call a web service from within a Windows service. The web service is secured (using Windows authentication). The account that the windows service...
Started by Arun on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You need not explicitly extract credentials..
Authentication (NTLM) for IIS? In my view that should allow you to call web service if the windows service user account has rights to invoke the service.
|
|
I want to start a windows service which I have created from another windows service. I am using the service Controller which is available. But when I try to start the service I get a message, "Cannot open MyTestService service on computer '.'"
I am working...
Started by AvidProgrammer on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
What does your service code look like, basically? Can you start the service through services....
It's finished).
Does it explain the reason? A service won't be marked as running if it immediately returns from the 'Start ()' call (i.e.
|
|
Can any one explain the use of service agent while calling web service? how it fit in project architecture?
Started by Sappidireddy on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Controller initializes a call to the service....
It can sit at resource access layer in your application .
Model View Controller,
View -> Controller -> Service Agent
Service Agent acts like proxy to the web service.
In MVC a.k.a.
|
How can you debug this error? The
|