Groups | Blog | Home


Archived Months
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
December 2007
March 2008
April 2008
May 2008
June 2008
all groups > dotnet web services enhancements > august 2004 > threads for august 15 - 21, 2004

Filter by week: 1 2 3 4 5

WSE 2.0 and structured Exceptionhandling
Posted by Henning Krause at 8/20/2004 9:38:33 AM
Hello, I've built a soap.tcp based webservice using WSE 2.0, which runs quite smoothly. When I throw an exception on the server side, the exception in propagated to the client as SoapException. If I turn "detailedErrors" on, I get the message of the original exception somewhere in the me...more >>


merge module for wse?
Posted by EP at 8/20/2004 7:31:14 AM
Does anyone know of a merge module available for WSE? ...more >>

Explaination of SecurityContextToken
Posted by WSE_Developer at 8/19/2004 3:03:02 PM
I really need some help on this, folks. I'm having trouble wrapping my head around an SCT. I'm attempting to create a simple example of using Username Tokens and SCT's without an STS. I am verifying the username token through the UsernameToken manager on the first call to the server, and wa...more >>

WSE 2.0 Policy is tied to specfic endpoint
Posted by Pranav at 8/18/2004 11:21:02 PM
Policies seem to be tied to either one endpoint ("soap.tcp://machine:6000/Service") or to the <default endpoint> (all endpoints) 1. My problem is that i have a dynamic endpoint: I allow the user to enter machine name and the port number. Then i create the endpoint from this info. At this ...more >>

Interopability: WSE 1 to WSE 2 to WSE 3 to Indigo
Posted by Michael Riggio at 8/18/2004 4:24:55 PM
Please correct me if I'm wrong in any of my assumptions below: According to the Microsoft site, WSE 1 and WSE 2 can't talk to each other. It seems that this is because WSE 1 uses WS-Routing whereas WSE 2 uses WS-Addressing. In terms of interopability between WSE in general and Indigo, Don B...more >>

howto create certificate like Client Private.pfx, Server Private.pfx, Server Public.cer
Posted by john doe at 8/18/2004 10:46:08 AM
Hello. im trying out the samples in WSe 2.0, but i havent managed to create and use custom certificates. the CS sample SecureConversation is working fine with the Sample Test Certificates (Client Private.pfx, Server Private.pfx, Server Public.cer). I copied SecureConversation to a new project a...more >>

Roles from Policy
Posted by Ilvy at 8/18/2004 1:07:02 AM
Is there some way that I can retrieve the roles of my webservice in my custom UsernameTokenManager from policy? I defined all the roles in policy and I can retrieve all the roles that the person is in who is calling the webservice. Now I'd like to know which roles you have to be in to access ...more >>

Error in XML Document
Posted by John at 8/18/2004 12:43:19 AM
Hi A web method which returns a dataset works fine when the web service it belongs to is running locally. When run on a remote server I get the following error; Unhandled Exception: System.InvalidOperationException: There is an error in XML document (1, 142804). ---> System.Xml.XmlException...more >>



Webservice and international chars
Posted by nicolas.bus NO[at]SPAM cstb.fr at 8/18/2004 12:39:56 AM
Hello! I call, using C#, a webservice (UTF-8 encoded) that return a list of products. I get the requested objets. So far so good. But, in those objects in all String attributes I get ?? instead of chars with accents. I tried to call the same webservice in Java and Delphi and I get the right c...more >>

challenge/respons in WSE 2.0 (WS-Trust)
Posted by hittapeter NO[at]SPAM hotmail.com at 8/18/2004 12:36:23 AM
WS-Trust defines a syntax for performing challenges. An example: Client sends <RequestSecurityToken> Server sends <SignChallenge> Client sends <SignChallengeRespons> Server sends <RequestSecurityTokenRespons> My question is if WSE 2.0 has an implementation for the challenge/respons mechanis...more >>

Signing the part of the message
Posted by Alex Shirshov at 8/17/2004 7:58:33 PM
Hello, All! I have a problem with signing the part of the soap body via wse 2.0. Here is the code [code] Sub Main() Dim g As New localhost.gWse() Dim reqCtx As SoapContext = g.RequestSoapContext Dim tok As New Tokens.UsernameToken(Environment.UserDomainName & "...more >>

WSE Support OSs - W2k Datacenter
Posted by Phil Wilson at 8/17/2004 2:06:29 PM
I notice that Windows 2000 Datacenter Server isn't mentioned in the list of supported operating systems. http://www.microsoft.com/downloads/details.aspx?familyid=D3C8F18B-7BBF-489D-90E1-E8D4147205B8&displaylang=en Is this just a documentation omission, or is it true that Windows 2000 Datacen...more >>

Setting To Header & TCPMon
Posted by steve at 8/17/2004 6:03:02 AM
I've read a lot of postings in here about how you have to set the <To> attribute to the url when using a tool such as TCPMon. Where/How exactly is this done? Am I supposed to do it on the client side, server side? Am I supposed to do this through the <Actor> attribute? Can someone give a n...more >>

wsa for Intermediaries
Posted by Fraser at 8/17/2004 5:51:03 AM
If a message is received by an intermediary node (say a web services portal) and that message is forwarded to the utlimate receiver by the intermediary, should a new set of WS-Addressing headers be used for the conversation between the intermediary and utlimate receiver (i.e. particularly wsa:...more >>

Error calling web service
Posted by John at 8/17/2004 1:20:17 AM
Hi My first web service seems to be OK as I can put its url in explorer and can use the invoke button to view the returned data as xml. The problem comes when I call it form a client app using; Dim ws As New localhost.StaffWS Dim ds = ws.GetStaffDiary When the second line above is execut...more >>

Webservice Namespace
Posted by John at 8/15/2004 11:23:07 AM
Hi My web service resides at http://www.mydomain.com/staff/staffws/StaffWS.asmx. The web method itself is called GetStaffDiary(). What is the namespace I should use at the top of the web service? Thanks Regards ...more >>


DevelopmentNow Blog