all groups > dotnet web services enhancements > january 2005 > threads for january 15 - 21, 2005
Filter by week: 1 2 3 4 5
WSE Site 30 times Slower now
Posted by SQLAgentman at 1/21/2005 5:44:57 PM
Hello,
After Implementing WSE between my website and WebService uing secure
conversation my system is 30 times slower.
System works at very good speed without WSE 2.0 Security Implementation
Any Ideas? Thank you
SQL
... more >>
RequestSecurityToken fails
Posted by Matthias H. at 1/21/2005 7:23:02 AM
Hi guys,
I am trying to request a CustomXMLSecurityToken from a web application.
<code>
SecurityToken token = new UsernameToken("xxx", "yyy",
PasswordOption.SendPlainText );
SecurityTokenServiceClient client = new SecurityTokenServiceClient(new
Uri("http://host/folder/CustomXMLTokenSe... more >>
WSE pipeline with no filters generates some SOAP headers
Posted by AVS at 1/20/2005 7:56:50 PM
I am using IDE generated proxy with WebServicesClientProtocol as a base
class (which means using WSE and its pipeline).
Before invoking web service I get Pipeline object from this proxy and clear
all InputFilters collection. When I trace what is actually sent I still see
Soap headers
enjected i... more >>
CryptographicException: WSE502
Posted by John O'Neill at 1/20/2005 4:59:16 PM
Hi
I have been using the UsernameSigningCode console sample supplied with WSE
2.0 SP2 and managed to get it working with ease. Based on the code from
console sample, I created a similar windows forms client and got that
working easily too. My problem is when I call web methods asynchronousl... more >>
HttpSoapRouter and Fault messages
Posted by Craig Neuwirt at 1/20/2005 10:50:42 AM
The SoapHttpRouter has extension method to process the request and response
envelopes via
protected virtual Uri ProcessRequestMessage(SoapEnvelope message)
and
protected virtual void ProcessResponseMessage(SoapEnvelope message)
However, it does not appear to have the same ho... more >>
Re: WseWsdl2 and typed datasets?
Posted by Dominick Baier at 1/20/2005 10:42:11 AM
you can easily grab the wsdl from the service. i have a code snippet here:
http://www.leastprivilege.com/PermaLink.aspx?guid=c555fa0a-6af3-4b7e-8f31-c692903e2fd8
Dominick Baier - DevelopMentor
www.leastprivilege.com
nntp://news.microsoft.com/microsoft.public.dotnet.framework.webservi... more >>
WseWsdl2 and typed datasets?
Posted by Bradley Plett at 1/20/2005 10:37:53 AM
I am pretty much a complete newbie to WSE, though I have worked quite
a bit with web services under IIS. I'm trying to create a web service
that returns a typed dataset. The server piece of this appears to be
fine (it compiles and runs :-), but when I run WseWsdl2 against it, I
get "SchemaVali... more >>
HttpSoapRouter and retrieving WSDL
Posted by Craig Neuwirt at 1/20/2005 10:00:54 AM
I have a situation in which I must intercept all SOAP and HTTP traffic,
forward the requests to an existing legacy application and perform some
additional processing logic. I extended the SoapHttpRouter and use a simple
naming algorithm to determine the URI to forward to. This works very well
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Adding XMLToken to soap context
Posted by was19 NO[at]SPAM gmx.de at 1/20/2005 7:23:09 AM
Hi guys,
I tried the example how to create my own XmlSecurityToken. I thinks it
is not correct at all but I can compile it. I want to add the token to
the soap context.
<code>
CustomXmlToken token = new CustomXmlToken();
SoapContext context = serviceProxy.RequestSoapContext;
context.Secur... more >>
.NET/COM Interop with WSE2 & app.config?
Posted by Laura Papez at 1/19/2005 11:11:04 PM
Hi,
I have created a secure Web Service via WSE with the use of WS-Policy. The
service have been test using a .Net Console application and everything works.
However, the Web Service needs to be called from a VB6 application (running
on Win2K/XP). I re-created the client console applicatio... more >>
Thread.CurrentPrincipal is emtpy!
Posted by Scribnar at 1/17/2005 9:11:03 PM
Hi,
I set the token.Principal and Thread.CurrentPrincipal to CustomPrincipal in
my CustomUsernameTokenManager.AuthenticateToken method. When i try accessing
the same in my WebMethod, i'm able to access the CustomPrincipal only through
the token.Principal variable. When i try with Thread.Cur... more >>
HELP!!! RequestSoapContext.Current always Nothing...
Posted by Nodrick at 1/17/2005 11:11:10 AM
I have a standard WSE 2.0 file attachment upload/download application on my
localhost which works perfectly.
However, when I install the application on my Live Webserver and run it, an
Exception occurs on line 3 "Object reference not set to an instance of an
object." This is referring to t... more >>
wsa:RelationshipType
Posted by Fraser at 1/17/2005 4:59:02 AM
Today I tried to set the value of this attribute to a value for which my
organisation has defined semantics only to find that in WSE2 it appears to be
a Read Only property !
E.g.
env.Context.Addressing.RelatesTo.RelationshipType = "frg:someValue";
Last year I had a conversation with Her... more >>
strange error when sending dataset using WSE 2.0 encryption
Posted by Ben Schwehn at 1/16/2005 8:09:12 PM
Hello,
I have a Webmethod
===
[WebMethod]
public void SaveDataset(DataSet ds)
{
return;
}
====
I call this webmethod from a client, passing a DataSet with an
ForeignKeyConstraint like this:
===
DataSet ds = new DataSet("NewDataSet");
DataTable table1 = new DataTable("mast... more >>
What key and iv are created for msg encryption?
Posted by William Stacey [MVP] at 1/16/2005 12:09:51 PM
When you encrypt the SoapEnvelope using a UsernameToken, what key is being
used for the encryption? How is the key and IV being calculated? I would
think it must be something derived from username and password in the token
or what as no prior session key is negotiated? tia
EncryptedData e... more >>
|