exchange-server-2007

Exchange EWS Coldfusion - need to convert WebDav to EWS

瘦欲@ 提交于 2019-12-11 18:20:12
问题 I've managed to connect to my exchange server via EWS and send an email. I need an example of how to create a calendar item. Coldfusion 9 Exchange 2007 <cfobject type="Java" class="microsoft.exchange.webservices.data.ExchangeService" name="service"> <cfobject type="Java" class="microsoft.exchange.webservices.data.ExchangeVersion" name="version"> <cfset service.init(version.Exchange2007_SP1)> <cfobject type="Java" class="microsoft.exchange.webservices.data.WebCredentials" name="credentials">

EWS - php sending email with attachment

泄露秘密 提交于 2019-12-11 16:54:00
问题 I'm new to using EWS from Exchangeclient classes. I'm looking for a simple example how to send an email with an attachment. I've found examples about how to send an email but not sending an email with an attachment. This is my script: $exchangeclient = new Exchangeclient(); $exchangeclient->init($username, $password, NULL, 'ews/Services.wsdl'); $exchangeclient->send_message($mail_from, $subject, $body, 'HTML', true, true); function - PHP Classes: function send_message($to, $subject, $content,

Receive email from an Exchange server in Biztalk w/o using POP3 or IMAP

你。 提交于 2019-12-11 12:24:34
问题 I know Biztalk has a POP3 adapter for receiving/processing email, but our network group has disabled both POP3 and IMAP access to our Exchange servers. Since I'm not able to connect using those protocols, I'm looking for other options. Is there some way to connect through OWA? Some kind of API access? Are there any other protocols/adapters that might be useful here? Do I need to petition our network group to open up POP3 access, even if it's only to certain accounts/from certain workstations?

Receive Email Notification (Exchange 2007)

半城伤御伤魂 提交于 2019-12-11 05:58:36
问题 I'm looking to receive delivery notification from Exchange 2007, so that I can record whether an email has been received and resend if a set period elapses without an email being received. Basically I want to send an email with a delivery receipt from ASP.NET, receive the delivered notification and then update my database to note that the email was actually received... Windows Service or some other way. I'm in a closed environment - in that the emails in question are only sent internally to

How to read custom field value

我们两清 提交于 2019-12-11 04:35:35
问题 I am using the below code to read the mails from my inbox using ews. I am able to read Subject etc. But how to read custom field value? ExchangeService service = new ExchangeService(ExchangeVersion.Exchange2007_SP1); service.Credentials = new NetworkCredential("username", "password", "domain"); service.Url = new Uri("https://server/ews/exchange.asmx"); FindItemsResults<Item> findResults = service.FindItems(WellKnownFolderName.Inbox, new ItemView(100)); foreach (Item item in findResults.Items)

How to send mails using SmtpClient and DefaultNetworkCredentials to a distribution list that only allows authenticated senders?

三世轮回 提交于 2019-12-10 16:09:33
问题 I'm trying to send automated emails from a C# console application from machines to clients all on the same domain via our internal Exchange 2007 server (using SMTP), but I'm hitting a snag with distribution lists that only allow authenticated senders. Basically the mails I'm sending are getting rejected by Exchange with: #550 5.7.1 RESOLVER.RST.AuthRequired; authentication required ##rfc822;AuthTESTGroup@example.com I'm using System.Net.Mail.SmtpClient and setting the Credentials property to

Slow search for items using extended property on Exchange

核能气质少年 提交于 2019-12-09 12:14:27
问题 Problem at hand Our C# Windows application uses EWS Managed API 2.0 to create appointments in a user's calendar. Each appointment has an extended property with a unique value. It later locates an appointment using FindItems and an ItemView. Users experience significant delays the first time this search is performed. Subsequent response times are entirely acceptable. ("first time" is a little vague here, because users may experience the delay again later in the day) // locate ID of appointment

How to connect Exchange Web Services via java web service client?

旧时模样 提交于 2019-12-08 07:10:58
问题 I am using JWebService framework to connect my Exchange Server 2007. As it is a paid version, I am looking for some open source like JWebService. Can anyone suggest a good alternative Java API that is free? Thanks in advance! 回答1: You can have a look at http://archive.msdn.microsoft.com/ewsjavaapi and http://sourceforge.net/projects/j-xchange/ 来源: https://stackoverflow.com/questions/7425990/how-to-connect-exchange-web-services-via-java-web-service-client

Create new calendar system support in Exchange OWA

a 夏天 提交于 2019-12-04 19:40:05
Since Exchange doesn't provide support for all local calendar types in OWA, I need to create one, using Microsoft.Net's support of calendars, but where should I start? If I understand correct what you want, the usage of Exchange Server Web Services would be the best way for you. EWS gives you full set of API for appointments and they can be used in .NET very easy. You can use Microsoft Exchange Server 2010 Web Services SDK (EWS SDK) with Exchange Server 2007 SP1 (you should just use ExchangeService constructor with ExchangeVersion.Exchange2007_SP1 parameter). I recommend you to watch video

How do I send emails outside my domain with Exchange 2007 and c#

て烟熏妆下的殇ゞ 提交于 2019-12-04 14:04:44
问题 I am able to send emails using the typical C# SMTP code across Exchange 2007 as long as both the from and to addresses are within my domain. As soon as I try to send emails outside the domain I get: Exception Details: System.Net.Mail.SmtpFailedRecipientException: Mailbox unavailable. The server response was: 5.7.1 Unable to relay How can I get exchange to accept my email and send it out to the internet? 回答1: Try #2... How about using a Exchange Pickup Folder instead? They are a faster way to