CardSpace and Delphi 2007/WIN32 - Stack Overflow most recent 30 from stackoverflow.com2010-03-20T03:25:56Zhttp://stackoverflow.com/feeds/question/1407537http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1407537/cardspace-and-delphi-2007-win320CardSpace and Delphi 2007/WIN32Workshop Alexhttp://stackoverflow.com/users/1153052009-09-10T20:28:10Z2009-09-14T11:37:12Z
<p>Very simple problem. I have a Delphi application and I want to restrict access to this by requiring users to log on using <a href="http://en.wikipedia.org/wiki/Windows%5FCardSpace" rel="nofollow">CardSpace</a>. Basically, I need to extract the ID, name and address information from the cardspace card.</p>
<p>The use of CardSpace is a requirement from a customer and I just want to know if:</p>
<ol>
<li>Can CardSpace be easily used from Delphi? </li>
<li>Is there already a Delphi component for CardSpace?</li>
</ol>
<p>The biggest problem? The application needs to be a WIN32 application, although CardSpace is .NET based.</p>
http://stackoverflow.com/questions/1407537/cardspace-and-delphi-2007-win32/1421029#14210291Answer by Diago for CardSpace and Delphi 2007/WIN32Diagohttp://stackoverflow.com/users/1462702009-09-14T11:37:12Z2009-09-14T11:37:12Z<p>To answer your questions directly:</p>
<ul>
<li>No. I don't think it will be easy, but definitly doable.</li>
<li>No. There is no pre-build component for Delphi in Win32</li>
</ul>
<p>Although CardSpace is native .Net, as long as you can run the framework on either the client or the server you can always just wrap the CardSpace library into a DLL using interop which you can then reference in Delphi. <a href="http://stackoverflow.com/questions/595601/delphis-interoperability-with-net">This</a> StackOverflow question may be able to get you started. </p>
<p>Considering the machines will be running Windows it will most likely already have Framework 3.0 installed, which is the requirement for using CardSpace.</p>
<p><a href="http://www.codeplex.com/sharpSTS" rel="nofollow">SharpSTS</a> may be usefull in this environment as it already contains the bulk of the code you need to talk to the CardSpace service.</p>
<p><sub>I am not a Deplhi Developer. Looking at this problem from the .Net side and doing some basic Google searches brought me to the a possible answer. I cannot gaurentee any of this will work for Cardspace, however it has worked for other technologies in our environment which is still prodimanatly Delphi. For example the interoperatibility parts.</sub></p>