all groups > dotnet web services enhancements > september 2007
WSE 3.0 UsernameToken in COM+ to Web Service
Posted by BigJohn at 9/25/2007 6:58:03 AM
I have a usernameToken in a VB .Net 2005 Class configured for COM interface
for a VB6 EXE. The VB6 to COM works fine, but the addition of a Proxy is not
found.
The error I keep getting is:
Specified argument was out of the range of valid values.
Parameter name: Policy 'REVSCOMPolicy' is no... more >>
How do you view the SoapEnvelope xml?
Posted by kelphis at 9/21/2007 1:15:25 PM
I am playing the the soapenvelope and Im trying to add a UsernameToken
to the soapEnvelope like this:
Dim token As UsernameToken
token = New UsernameToken("kelly", "kelly",
PasswordOption.SendNone)
Dim s As SoapEnvelope = New SoapEnvelope
Dim p As Pipeline =... more >>
UsernameToken throws configuration error
Posted by kelphis at 9/13/2007 11:42:06 AM
Im a beginner with wse 2.0 and im trying to just create a soap
envelope with a wsse:security header. I want to have a usernameToken
inside the header and I user this code:
Dim ut As UsernameToken = New UsernameToken("user", "password",
PasswordOption.SendPlainText)
and i get an error read... more >>
Are web references required?
Posted by kelphis at 9/12/2007 10:09:04 AM
I am creating a windows service that will communicate with several
different vendors. I plan to be able to pass the url for the vendor
to the windows service as an xml request. So since im not going to
have access to the URL before that I wont be able to create a web
reference from within the ... more >>
Adding certificate using X509Store
Posted by Phil Lee at 9/3/2007 3:51:19 PM
Hi,
I'm having an odd problem using X509Store.
This code is called from a test winForms app.
public static void Install()
{
X509Certificate2 certificate = new
X509Certificate(Resources.certificate, "password");
X509Store store = new X509Store(StoreName.My,
StoreLocation.Loc... more >>
|