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 making an application which will retrieve all mailboxes from Domino Server.
And Display them in List.
After that i want to extract( display) emails of each mailbox into another list.
eg:
Consider example of outlook.When we click on particular pst folder. all mails in selected folder get displayed.
Kindly send me code if possible.As i am new to C#.
Or send me related links.
I guess the simplest way to enumerate all the mailboxes without turning to Domino development is via LDAP. Then, as reto suggests, the IMAP interface should be able to show you the contents of each mailbox.
Of course, you'll need an account with access to each users mailbox.
I'd try using IMAP to fetch the necessary information. This should be easier than trying to use some Domino specific API. One of many examples
Also consider the COM library for Domino.
Have a look at soapgate Q - that is a gen. werbservice gateway for domino - that would work for you:
see the demo an soon view code
Related
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/
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 make one application in C# or VB.net which allow users(Clients) to fill there daily reports using there user account and allow admin (Server) to manage theme (i.e. Add, View, Edit Reports).
I want to make that kind of application.
Vague questions get vague answers. A very basic (and slightly tongue-in-cheek) strategy:
Create a web-page for presenting an interface where the users can enter or upload their reports (maybe have a look at Asp.Net MVC?)
Create a simple back-end system (maybe a service of some kind, using for instance WCF?) to accept and store incoming reports, and retrieve and return existing reports. This should include a database of some kind for storing the reports.
Connect your web-page to the back-end system, and use the former as an interface to the latter.
Create one or several AD groups to provide authentication throughout these systems and grant users the appropriate levels of access.
Once you have got started on this and have tried something, you can ask more precise questions here, to which it will be easier to give more constructive answers.
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'm already asked this question, but how I was told, I need to create a proggram without of using ssh clients. How do I say I need to write pure C# program using only different .dll's. And I don't know how I can do it.
If you want to implement a proper solution you want to use OpenLDAP.
You can then use C# to query the LDAP database and use that to create accounts remotely.
I don't think it can be done because you want to gain remote access to the linux system you need to use ssh to gain access to the command line to make your users. Look into ssh there are some good clients for windows that allow you this access and I am sure I found some tutorials on how to make a ssh program a while back.
So since you can't use ssh, it is time to get creative!
I'm assuming you have admin rights. Let me know if you don't.
Set up a database (MySQL) on the Ubuntu box, and create a db/table with the new users to be created. You can insert a row from C# into that table.
Set up a cron job, or some other application (in python, c++, w/e you like) that would periodically check for a new row in that table. If it finds one, extract the data, create the user based on that data, and remove the row. This would have to run as root so BE CAREFUL!
I have done something like this before and it is messy and convoluted, but it works, i guess.
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 11 years ago.
We are programming a website which use UPS as shipping method. Administrator of the site must approve every order manually, create things propertly with UPS and then just get the tracking number and put it in our system. So we do not use any API from UPS or anything.
Is there a "static" URL like : http://ups.com/apage/{0} we may format to replace the {0} by the tracking number that the administrator will enter in our system?
I know I could search in google, but I'm not realy sure of what to write after UPS URL Tracking number didn't results me anything usefull.
You are required to use the UPS API when interacting with their system to either track packages or manage shipments. Any other use is in violation of their terms of service.
I don't know their terms of service as others have mentioned, but GMail just links to the following when it finds a tracking number in a message. I would assume you could use the same:
http://wwwapps.ups.com/WebTracking/processInputRequest?TypeOfInquiryNumber=T&InquiryNumber1=TRACKINGNUMBER
I'm sure this could end up changing at some point down the road.
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 12 years ago.
I want to integrate SMS service with the software I am developing, so that users could send SMS to their clients.
Perhaps you can get actual SMS integration by sending an email ('[phoneNumber]#[carrierDomainName]'). This is how I integrated paging into my EventLog in the past. The cellphone domain name for each carrier shouldn't be too hard to determine. Verizon's is vtext.com.
Really the question that you need to ask is, which SMS service would be easiest to integrate with C#. Most of them out there have Web APIs, which would be easy enough to tie in with a C# application.
A few example gateways:
http://www.mediaburst.co.uk/api/
http://www.zeepmobile.com/
http://www.messagemedia.co.uk/
Of course, to send SMS this way will cost money (usually in the form of credits with your chosen gateway). If you meant to ask how can you interact with a physical phone to send messages, well that would all depend on the phone, it's o/s and software available for it.
Here is a list of SMS gateways:
http://en.wikipedia.org/wiki/List_of_SMS_gateways
Dave
Yeah Subodh i know your question, i also want that software as i am a LIC agent, well that would help me in managing my clients and policies...
well for more answers, search on google with keyword -- "sms api"
I'm guessing you want an API of sorts. Check out the following libraries:
http://twit88.com/blog/2009/07/31/c-sms-library/
http://www.topshareware.com/mCore-.NET-SMS-Library-(LITE)-download-42284.htm
http://www.hillstone-software.com/hs_sms_dll_details.htm