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( ...
|
What kind of SOAP messages is visible in IDispatchMessageInspector?
Thu, 22 Nov 2007 10:46:06 -0800 (PST)
Hello
I extended behavior with implementing IDispatchMessageInspector. I am
wondering what kind of SOAP messages can I see here. I know I can
extract calling function and response, faults (what about events,
callback operations?). And I think messages for security, transactions
and reliability are no longer v ...
|
getnameinfo() on IPV6 enable m/c throwing WSANO_DATA
Wed, 21 Nov 2007 20:36:59 -0800 (PST)
Hi
Ping able to resolve m/c name to IPV6 address.
Reverse have some problem in the m/c. Please throw some light on this.
WSAAddressToString() throws WSATRY_AGAIN and
getnameinfo() throws WSANO_DATA error.
Message Description:
// MessageId: WSATRY_AGAIN
//
// MessageText:
//
// This is usually a temp ...
|
Service Ref/namespace question...
Tue, 20 Nov 2007 08:45:01 -0800
All our wcf services share a single business object/data contract library
on the server side this allows all Solutions/projects that are wcf services
to share the business objects they return.
But when the windows client adds wcf service refs they get business
objects/data contracts duplicated across the svc ...
|
Re: Beginner question regarding upgrading a current framework from
.net remoting to wcf
Tue, 20 Nov 2007 07:52:37 -0800 (PST)
Hey Tony,
On Oct 22, 11:50 pm, tonyandj...@googlemail.com wrote:
> > > Basically I want to be able to serialise information regaridng the
> > > endpoints of a service to a remote registry, where other services/
> > > clients can query to find a servcie interface without worrying about
> > > the actual physica ...
|
Fault contracts
Mon, 19 Nov 2007 20:50:51 -0800 (PST)
Good Evening All,
I am defining a fault handling system to be used by all of our
services. I recently attended a lecture that covered this matter
presented by Michele Bustamante. During the workshop, she outlined
three approaches to handling faults (see
http://travisspencer.com/blog/2007/11/approaches_to_de ...
|
|
|
Service crashing!!
Mon, 19 Nov 2007 17:49:36 -0800 (PST)
Hi There,
The Service interface ,datacontracts ,configs are as below:
[ServiceContract]
public interface IService1
{
[OperationContract] CompositeType GetData(string name);
[OperationContract] CompositeType
GetDataUsingDataContract(CompositeType composite);
}
[DataContract]
public ...
|
SSL / UserName and password security
Mon, 19 Nov 2007 06:56:04 -0800
Hi There,
Currently we have: a web application with SSL, and an asmx webservice which
uses user name and password in soap header for the client authentication.
It seems to me as we already use SSL so for our new WCF webservice, we
should use transport security (or both with message security).
Also as we keep ...
|
Re: WCF: SVC file behind IIS and HTTPS - 'could not be activated' error
Wed, 14 Nov 2007 06:06:50 -0600
I have the same problem but when I try to browse my service at browser,
I get an exception:
-Memory gates checking failed because the free memory (134033408 bytes)
is less than 5% of total memory. As a result, the service will not be
available for incoming requests. To resolve this, either reduce the
load on t ...
|