Writing a WebDAV Server [closed] - c#

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am going to write a webDAV server hosting in IIS with ASP.NET. I think I have to write a new one because I have to integrate it with our custom security module. Actually I think I have to check some security (membership and roles) concerns on webDAV file request and respond to request based on that security concerns.
How can I write a WebDAV server? Or are there any libraries suitable for me?

Regarding existing libraries - there exists a free webdav project on SourceForge, then there exist paid components on http://webdavsystem.com and we offer WebDAV server within our SecureBlackbox component suite. All of them can be integrated with IIS. Offered level of fine-tuning such as authentication control and filesystem access is of course different. Our SecureBlackbox is biased towards flexibility and feature-richness.

Related

Communication between processes in Windows [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
What project (C#) type would you suggest for this situation?
Having one application for communicating with distance server from one side (I have API for communication with that server) and communication with lots of different applications (call them clients) on user computers.
I need to have only one server connection in any giving moment, but every client can have his requests separately.
Can clients communicate with server using some kind of Objects (.net objects)?
My idea is to make windows service, but I not sure is this a good approach?
You can use WCF InProc for inter process communication.
Check the tutorial.
Also ZeroMQ can be used as an alternative for InProc communication.

IMAP in ASP.Net C # [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I want to download email by IMAP service from a gmail account through code in C# ASP>Net. I have no sound about it and new to development in this plate form. Please guide me and help me about it. Any link or reference???
You need to use third-party components witch are available in different kind and prices, or you can develop it your own with socket programming.
take a look at :
http://www.limilabs.com/mail
http://www.afterlogic.com/
you also need to enable IMAP on your Gmail account so you can send and receive with IMAP Protocol in your application. For sending emails you also need SMTP configuration to be set.
http://support.google.com/mail/bin/answer.py?hl=en&answer=77695
also take a look at webmail scripts developed by asp.net, it would be a great guide!
Google's Gmail API Reffrence is also a good guide, if you want to use API instead of starting by nothing. take a look at :
https://developers.google.com/google-apps/gmail/

How to use SSL in ASP.NET C# application [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am new to Security in Asp.net application. I want to enable SSL in my asp.net local application i have Developed. i need a step by step implementation to ssl to my asp.net project. Most article i found online has only explained the installation of the certificate. As a newbie what is the first thing i will do to convert my http to https. Do I need to change anything in the web.config?
First of all, you have to buy a SSL certificate. That's not free.
Then you need to host in on your local IIS. If you run on Windows, you can activate it in Programs and Features. Then you can install the SSL certificate there (you can find an icon in the IIS manager).
I guess you run the website in Visual Studio, and hosting the website on the IIS is quite different. If you have no experience doing so, I would either recommend starting wih that, or see if you can avoid using the SSL certificate.

c# Visa 3d Secure Implementation [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
can someone give a sample implementation of 3d secure for an ecommerce application?
Implementation depends on payment gateway providers. you will have to contact their support or check their manual for it.
I have worked with "The Logic Group" and BT payment gateway providers in UK so if you are using one of these then let me know I can be of some help.
You didnt give a lot of information in your question. Your options depend on what you're attempting to acheive.
Your options are either
You're integrating with a payment service provider. Most will offer 3d secure processing, ask them for help.
You're rolling your own 3d secure service. In this case you will need to either purchase or develop an MPI (Merchant Plug-In) that passes the 3dsecure messages to Visa and MasterCard. In this case your best option is to purchase an MPI from a 3rd party vendor, otherwise be prepared for a lengthy and costly integration directly with Visa and MasterCard.

Dlls to access Notes and Domino Server Database [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I need to create an application using C# such that i can access all the user's mailboxes existing on Server.
So kindly provide me the API which will allow me to access each mailbox( nsf files) of each user stored on the Domino Server.
Basically i am looking for an API by which i can just provide the Domino Server name through which i can get all mailboxes.
I think the dll you are looking for is nnotes.dll. If you have lotus notes installed visual studio should pick it up automatically for you to add in your references.
All the documentation for the api is here --> http://www-12.lotus.com/ldd/doc/uafiles.nsf/docs/DESIGNER70/$File/prog2.pdf

Categories