My samples on develop.com

Service Station, by Aaron Skonnard

Syndication

A bunch of my samples are hosted on DevelopMentor's Developer Resources site.

 


Posted Jan 19 2004, 08:12 PM by aaron-skonnard
Filed under:

Comments

Harish Mohan wrote re: My samples on develop.com
on 03-14-2004 4:37 AM
Hi,
I got ur reference from MSDN online. I found from your articles that you r the right person who can help me out of one problem. My problem goes like this -

I am developing a COM component in ATL-COM (ActiveX IE control). which has one interface( Show([in]BSTR bstrXML, [in]bstr XSLT) ), using that one can display pages using XML & XSLT files as input parameters. The XML files can be any 3rd party's file i.e. its internal tree structure is not known. My problem is how to generate an HTML page using these 2 files and display them in the browser control.

I would really appreciate your help.
my mail-id is awasthi_harish@hotmail.com


Coding Horror wrote Xpath Expression Builder
on 12-17-2004 9:56 PM
I use Xpath queries about once a year, so of course I completely forget the syntax every time I come back to it. And each time this happens, I somehow find Aaron Skonnard's very cool web-based interactive Xpath Expression...
yrcrao wrote WCF Issue
on 05-21-2008 6:02 AM
Hi Aaron,

I created one WCF Webservice with BasicHttp Binding and SelfSSL.
I want to call this services my various clients like vs2003,2005 and java.
When I call my wcf service iam getting error An error occurred when verifying security for the message

See my code:

wcfService.Service1Wse sc=new wcfService.Service1Wse();
SoapContext requestcontext =sc.RequestSoapContext ;
requestcontext.Security.Timestamp.TtlInSeconds = -1;
UsernameToken token;
token = new UsernameToken("abc", "12333",PasswordOption.SendHashed);
requestcontext.Security.Tokens.Add(token);
MessageSignature sig = new MessageSignature(token);
requestcontext.Security.Elements.Add(new MessageSignature(token));
Response.Write(sc.Hello());

If I pass plain text password option. My dontnet clients are working. But not java.
If I pass Hashed password option iam getting same above error.

Please give me some solution.


Thanks & Regards
yrcrao

Add a Comment

(required)  
(optional)
(required)  
Remember Me?