WCF and NAT traversing
Tue, 11 Dec 2007 16:13:22 -0800 (PST)
Hi,
I'm trying to write a simple IM which will be based on WCF. For NAT
traversing I use STUN method to get public addresses of peers. That
implies the use of UDP transmission, but it is not implemented in WCF.
I found the UDP Transport Sample and I managed to set up the service,
but i have problems to config ...
|
WCF and callbacks
Sat, 8 Dec 2007 01:05:57 -0500
Hi,
I?m having some trouble with call backs.
When I invoke a method in the service that has a call back method wired
to it, everything works fine.
When I fire an event due to some internal action in the service (here
the client didn?t request anything) I get an error trying to send the
callback back ...
|
Migrate from .NET Remoting to WCF (CAO & Remoting.Marshal)
Thu, 6 Dec 2007 11:03:18 -0800 (PST)
1) In project which use .NET Remoting there is line
Remoting.Marshal(instance, url) after
ChannelServices.RegisterChannel(...). This is dynamic publication. (Is
this SAO?)
Is it posible to migrate this to WCF or must i change the whole
concept? (How?)
2) There is also CAO used in old project. Is it posible t ...
|
Service interface
Tue, 04 Dec 2007 06:55:20 -0800
Hi
In my service code I can define an interface for a service (IMyService),
and I can thereafter define several service implementations of this
interface (ServiceImpl_1, ServiceImpl_2 etc).
In my client can I know the interface IMyService? It appears that the
normal way to reference the concrete services ...
|
configure wcf away sometimes
Tue, 04 Dec 2007 01:23:26 -0800
Hi
say I develop a "backend" system which exposes functionality via WCF - a
client running elsewhere can then use WCF to talk to my program.
But if I later install the client on the same physical machine as my
backend, can I configure WCF to "disappear"? I mean, can I somehow easily
avoid the overhead of ...
|
Streamed Transfers using VS2008
Mon, 03 Dec 2007 09:19:54 -0800
I am trying to implement streamed transfers using WCF and VS2008.
I created a new project using the WCF Service Application template in
VS2008. After renaming the Service, changing the wsHttpBinding to
basicHttpBinding and enabling streamed transfers, the resulting Web
Config looks like this:
<system ...
|
WCF in Compact Framework v3.5 .... where'd everything go?
Sat, 1 Dec 2007 21:16:00 -0800
I was very excited to install the new Visual Studio 2008 RTM yesterday
because I am looking forward to consolidating communication technologies.
We created a Warehouse Management System that uses WCF between the Desktop
client and our Server, but uses MSMQ (version 3) between the Server and our
mobile clien ...
|
|
|
transfer files between different domain
Mon, 26 Nov 2007 19:29:23 -0800
Hi all,
I have solved my problems by reading this article
http://msdn2.microsoft.com/en-us/library/ms731925.aspx
Now I have another problem. I have one server and many client that should
communicate each other to transfer files. I mean server can send files to
clients and clients can send files to server. ...
|
Using WCF Sessions for Security State in a Smart Client app
Mon, 26 Nov 2007 03:42:37 -0800 (PST)
Hi
I would value your advice whether it is advisible to 'man handle' the
WCF Session {ServiceContract (Session=true)} for the purpose of a
custom security session.
We are using WCF for a Smart Client development (WCF splits the SC
presentation from the Back end SOA style Service Layer)
Despite the Smart Cl ...
|
The server has rejected the client credentials.
Thu, 22 Nov 2007 18:10:00 -0800
I make a service in code behind like this
Uri tcp = new Uri("net.tcp://localhost:8000/TestService");
ServiceHost sh = new ServiceHost(typeof(DataStreamServices), tcp);
NetTcpBinding tcpBinding = new NetTcpBinding();
ServiceMetadataBehavior mBehave = new ServiceMetadataBehavior();
sh.Description.Behaviors.Add( ...
|