Hi ,
I'm using VB.NET and the latest API to connect to Exchange 2013.
In my vb code I'm doing one login and after that I'm reading user's Inbox.
I have noticed a strange thing which I don't know if it is normal or not.
I'm seeing a lot of records in the log file . A lot of http requests which causes some performance issues in my exchange.
I login only once , get the data from the user's inbox and after that I'm looping for each message I found in the user's inbox to get the subject.
Below is a sample of the log(a part of it but I have a lot of those in the log file)
2014-08-05 00:02:05 10.10.2.5 POST /ews/exchange.asmx - 443 ZMAL\bbhomjik 10.10.2.6 ExchangeServicesClient/15.00.0847.030 200 0 0 187
2014-08-05 00:02:05 10.10.2.5 POST /ews/exchange.asmx - 443 ZMAL\bbvishwea 10.10.2.6 ExchangeServicesClient/15.00.0847.030 200 0 0 187
2014-08-05 00:02:05 10.10.2.5 POST /ews/exchange.asmx - 443 - 10.10.2.6
ExchangeServicesClient/15.00.0847.030 401 0 0 0
2014-08-05 00:02:05 10.10.2.5 POST /ews/exchange.asmx - 443 - 10.10.2.6
ExchangeServicesClient/15.00.0847.030 401 0 0 0
2014-08-05 00:02:05 10.10.2.5 POST /ews/exchange.asmx - 443 - 10.10.2.6
ExchangeServicesClient/15.00.0847.030 401 1 2148074254 0
2014-08-05 00:02:05 10.10.2.5 POST /ews/exchange.asmx - 443 - 10.10.2.6
ExchangeServicesClient/15.00.0847.030 401 1 2148074254 0
2014-08-05 00:02:05 10.10.2.5 POST /ews/exchange.asmx - 443 ZMAL\bbhomjik 10.10.2.6 ExchangeServicesClient/15.00.0847.030 200 0 0 171
2014-08-05 00:02:05 10.10.2.5 POST /ews/exchange.asmx - 443 ZMAL\bbvishwea 10.10.2.6 ExchangeServicesClient/15.00.0847.030 200 0 0 171
2014-08-05 00:02:05 10.10.2.5 POST /ews/exchange.asmx - 443 - 10.10.2.6
ExchangeServicesClient/15.00.0847.030 401 0 0 15
2014-08-05 00:02:05 10.10.2.5 POST /ews/exchange.asmx - 443 - 10.10.2.6
ExchangeServicesClient/15.00.0847.030 401 1 2148074254 0
2014-08-05 00:02:05 10.10.2.5 POST /ews/exchange.asmx - 443 - 10.10.2.6
ExchangeServicesClient/15.00.0847.030 401 0 0 0
So my question is. Is it normal that I see a lot of Http Requests when I get messages from Inbox ?
When I request a list of messages from exchange how many requests are sent back to the Exchange Server ?
Appreciate your help on this.
thank you