http://exchange.ittips.eu/2014/05/office365-mrsproxysvc-issue-update.html
--------------------------------------------------------
This is one of nagging problems which could be caused by many things.
It's not easy to track this.
When you try to move mailboxes between on-premises and the cloud, you see errors.
In EAC:
In the powershell you see something like this:
The call
to 'https://xxx.adatum.com/EWS/mrsproxy.svc' failed. Error
details:
The HTTP request is unauthorized with client authentication scheme
'Negotiate'.
The authentication header received from the server was
'Negotiate,NTLM,Basic
realm="xxx.adatum.com"'. --> The remote server
returned
an error: (401) Unauthorized..
+ CategoryInfo :
NotSpecified: (:) [New-MoveRequest], RemoteTrans
ientException
+ FullyQualifiedErrorId : [Server=DBXPR99MB999,RequestId=something,TimeStamp=1/20/2014 1:13:53 PM] [FailureCategory=Cmdle
t-RemoteTransientException] B92B1723,Microsoft.Exchange.Management.Recipie
ntTasks.NewMoveRequest
+ PSComputerName :
pod999999psh.outlook.com
Instead of giving you full description to track this issue, I propose you to try use the PowerShell to move mailboxes to the Office365.
What causing the problems?
In hybrid configuration you have configured different default domain from the one that is set in Office365. Instead of logging to Office365 as a new domain, let's say, adatum.com, you should use AD domain credentials, let's use adatum.work for example and with format of DOMAIN\username, and NOT in username@domain.
Let's do it:
Connect to Office365 with Windows Azure Module for Active Directory.
(detailed description here:
http://www.ittips.eu/2014/01/office365-how-to-connect-to-from.html)
In Azure add-in, you should go
with it:
$cred = Get-Credential – in the format of username@adatum.com
$Session = New-PSSession -ConfigurationName
Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell/
-Credential $cred -Authentication Basic -AllowRedirection
Import-PSSession $Session
Then after connect to Office365 enter the followings:
$cred=get-credential – Credentials
should be in format adatum.work\username
New-MoveRequest -identity USERTOMOVE
-Remote -RemoteHostName mail.adatum.com -TargetDeliveryDomain adatum.com -RemoteCredential $cred -BadItemLimit 50 -LargeItemLimit 50
RemoteHostName parameter is a CAS server with MRSProxy enabled http address (probably the same as the local OWA or ActiveSync for on-premises users).
BadItemLimit and LareItemLimit are optional parameters
For me it works, so some of you should be happy too:)