Tagged Questions
0
votes
0answers
86 views
Why are my WCF global variables resetting?
I have a WCF service that has two class objects defined globally called dieselTank of type DieselTank and unleadedTank of type UnleadedTank. Each of these objects have a maximumLevel,curentLevel and a ...
0
votes
1answer
41 views
how to host 2 wcf services in 1 servicehost
i'm working on a wcf project
i have 1 service with 2 contracts (2 endpoints)
and 1 service with 1 contract (1 endpoint)
i want to make 1 single ServiceHost for both my services.
i can make 2 host for ...
0
votes
2answers
312 views
upload WCF service to host somee.com?
Link (http://futuregreatdoctor.somee.com/WcfSvcSiteMCAT/service.svc) it work
. But I upload my service to somee, it doesn't work :( (http://nck.somee.com/Server/Service1.scv)
Web.config
<?xml ...
0
votes
1answer
155 views
AutomaticInputSessionShutdown Custom Session Shutdown Handler
From this MSDN article, I see that it says the following:
If you set the AutomaticInputSessionShutdown property to false, the
channel must be closed by some other mechanism. In this case, you ...
0
votes
0answers
75 views
Applying SSL to custom hosted Wcf dataservice
Iam currently developing a custom service hosting environment. For that i need to expose a wcf dataservice which is accessed through an ssl connection. Here is how iam currently hosting the service.
...
0
votes
1answer
69 views
WCF service not reachable (selfhosted)
today i decided to have a look at WCF and the example worked so nicely on my localhost that i tried to run in on my server too, so i compiled it with the correct host(tested both,ip and domain) and ...
0
votes
2answers
92 views
How to host WCF service in console apps
i am learning wcf. so i create wcf project and that has one class. code as follows
namespace TestWcfService1
{
// NOTE: You can use the "Rename" command on the "Refactor" menu to change the class ...
0
votes
0answers
59 views
Host a (non)modal wpf (using wcf) application
I need to host modal and non modal wpf application from within other application (let's say windows forms). I also need to be able to communicate with this app.
I tried it more or less like this:
...
0
votes
1answer
466 views
Configure WCF host servce
I have a basic question regarding the configuration of the Host app.config file
Let's say I host my WCF service on pc that its IP is: 123.456.789.001:9999
This is my app.config file:
...
1
vote
0answers
206 views
Hosting a WCF service in an unmanaged c++ application
I have the following setup
a legacy MFC app written in native vc++.
a mixed mode dll bridge that has a natvie proxy for 2 managed classes, a sender and a receiver.
a managed class "AsyncSender" that ...
0
votes
2answers
395 views
WCF hosted in windows service errors
I have a WCF in VB which is to be hosted in a Windows Service. I managed the install program so the service actually installs. But, when I try to start the service, I get the following error:
The ...
0
votes
1answer
270 views
WCF 'sub main' not found
I must be losing my mind...
After getting a test WCF hosted in a windows service, I'm trying for another one (practice, practice, practice).
I created a WCF service library, added one function. Then ...
1
vote
3answers
1k views
How do I share cached data between a WCF service and the process hosting the service?
I have an ordinary windows service that processes a large data set and stores it to a DB. This windows service also acts to host a WCF service that serves the processed data up to one or more GUIs.
...
1
vote
0answers
154 views
WCF Service router
the WCF 4.0 built-in routing service doesn't work for restful services and instead of using that feature I should create an asp routing solution, Does anybody know any good example about how to ...
-1
votes
1answer
1k views
How can I send a data from WCF host to connected client?
I want to send a data from WCF host (not service proxy) to the connected client with the service.
How can I achieve this?