WCF Security mixed users
Thu, 10 Apr 2008 11:53:00 -0700 (PDT)
I have a service that needs to server two kinds of users. Windows
Domain users and Non domain users.
In case of domain users, service receives the username for
authorization. In case of non domain users I get their username and
password for authenticating and also authorizing them. Everywhere I
have seen samp ...
|
WCF hosted in a webservice
Thu, 10 Apr 2008 09:04:11 -0700
I have a web service hosting a WCF library, which works fine but produced a
strange signature when interacting with vs 2005/2.0 clients. My method takes
3 strings and returns a bool as below.
bool CanRun(string appName, string userName, string function);
However the auto generated proxy in 2005 looks like ...
|
web services
Thu, 10 Apr 2008 15:03:02 GMT
I am using a vb.net client program to access a remote web service.
I am doing some testing, e.g.: i disconnect my internet connection and try to access the web service. I use some code within a try...catch block to connect. When I try so, I get the message "Unable to automaitcally step into the server", BEFORE the ...
|
Serving Assembly webservices via httphandlers
Thu, 10 Apr 2008 13:24:57 +0200
Hi all,
On an application i wrote, I was serving pages via httphandlers
For convenience with my "clients", the only thing they deploy is a unique
assembly in their /Bin . This assembly is then called from their own code or
Usercontrols or an unique http handler (for the pages my application
creates)
Now ...
|
Digital Signature Verification
Wed, 9 Apr 2008 17:18:00 -0700
Hi There,
I am a newbe to web services and WSE 3.0. I am connecting to a remote web
service using Web Proxy and the remote service required the soap message to
be digitaly signed(X509 Certificate) that is what i am able to do with my
code using WSE 3.0, But i am not able to verify the incomming response's ...
|
DataSets and default columns
Wed, 9 Apr 2008 14:56:59 +0100
We have a 3 tiered application. Table <tblx> resides in SQL2005, the DataSet
<dsx> is defined in the web service. The client creates instances of <dsx>
and passes them to the web service for storage/processing.
The table <tblx> has a column "EntryDate" with a default value of
"CURRENT_TIMESTAMP". When the D ...
|
Soap validation problem
Wed, 9 Apr 2008 05:55:00 -0700
Scenario.
I have developed a web service which takes in a message stream and
validates the stream.
Steps.
Passed in Soap Server message
Setup a new xml reader (input the message stream)
Create a new object reader
While data to read
Find a specific element
set the schema ve ...
|
|
|
WCF MaxClockSkew for TransportWithMessageCredential security eleme
Tue, 8 Apr 2008 15:11:01 -0700
I'm trying to increase the MaxClockSkew for our WCF bindings through code in
my service host and client.
From various forums etc, I have got this far:
public static void InitializeEndpoint(ServiceEndpoint endpoint)
{
CustomBinding customBinding = new CustomBinding(endpoint.Bindi ...
|
Hmm, should I use the forums instead?
Tue, 8 Apr 2008 10:38:28 -0400
Is this one of those newsgroups (like the SSIS group) that is seriously
drying up on NNTP and has a much larger presence in the (ick!) MSDN Web
forums?
...
|
Adding default proxy credentails to Request
Tue, 8 Apr 2008 02:50:56 -0700 (PDT)
Hi,
when using WebRequest, in order to over come the proxy server I set:
Req.Proxy = new WebProxy();
This takes the default proxy configuration from the system (the same
one you can configure in the internet explorer) and use it in the
request.
Now that I'm attpempting to move to WSE3 I'm looking for a ...
|