How to use X509Store in .NET CF? I have not found it on the Object Browser window.
Will this do for you?
http://inthehand.com/library/html/N_InTheHand_Security_Cryptography_X509Certificates.htm
Related
We are told to investigate the implementation for login with keycloak in our existing VB.NET apps. Keycloak is developed for Java but can be used for other programming languages as well, when you use an adapter.
I found an adapter for .net, Keywin, but this is for .net web apps only. I didn't find one for VB. There is not much information about Keycloak in VB on the internet (non about an adapter for keycloak as far as I can see)...
Is there an adapter for VB available? Or is there an easy workaround to use keycloak in VB?
Any help/tips are very much appreciated! :)
Does anybody know how to dynamically invoke WCF service using existing wsdl file? Thus, I don't need to use "Add Service Reference...". Everything should be done dynamically.
I've searched the internet and haven't found anything that is similar to:
EndpointAddress address = new EndpointAddress("http://localhost:3929/Service1.svc?wsdl");
I use VS2008 (.NET 3.5).
Thank you in advance.
Goran
If you take a look at the Channel Factory this should be what you need.
I wish to use a particular API from my ASP Classic code. The API comes in the form of a DLL with .h and lib file. I have managed to use the api from my own Windows C++ application. I now wish to do the same for ASP. There is also a .NET Wrapper for this API which I haven't examined yet.
Furthermore, we will at some stage in the future migrate to ASP .NET or Python Django.
How would you recommend I wrap this API?
Thanks,
Barry
The best way is to wrap the DLL API that you need to use as a COM object.
The original ASP model makes use of COM to interface with native code.
We are going to develop ASP pages for a WIN CE device. The web server running on the system is httpd. I have a few doubts on the scope of com objects
Does WinCE(httpd) ASP support Session and App Scope?
Does page scope alone is supported in ASP in Wince?
What should I do to introduce session and app Scope?
Where can I get more information on this?
Does WinCE(httpd) ASP support Session and App Scope?
According to MSDN:
Windows CE does not provide support
for the Session or Application objects
and does not send the Session-ID
cookie that is used on IIS. Therefore,
there is no automatic technique for
maintaining states between requests or
sessions.
About creating COM objects in Wince ASP, from MSDN:
To create a COM object on Windows
CEābased ASP, use the scripting
language support for creating COM
objects, instead of the
Server.CreateObject method, as you
would using IIS-based ASP.
Sample code from the same page:
<%
dim newObject
set newObject = CreateObject("class.name")
%>
Where can I get more information on this?
MSDN - Web Server(HTTPD) Windows CE
How can I sign data with standard .net crypto providers on client side?
If it's on the client side it probably won't be ASP.NET, you'll be using JavaScript (unless you maybe do it in Silverlight).
So that's your answer; use Silverlight if you wish to use ASP.NET, or use JavaScript otherwise.