EWS - Office 365 - "One or more subscriptions in the request reside on another Client Access server. GetStreamingEvents won't proxy in the event of a batch request."

Hello
My goal is to subscribe for streaming notifications for multiple users in the same time.
One way to do that is to create multiple  StreamingSubscriptionConnections each one should contain one  StreamingSubscription for each user. The problem with this method is that in Office 365 the maximum
number of connections opened is 20.
Another method to solve this problem is by creating one StreamingSubscriptionConnection and then all StreamingSubscriptions for each user to the connection. This method solves the maximum number of connections
problem and it works fine with exchange onPrimises. But when trying it with Office 365 it will result with the SubscriptionError:
"One or more subscriptions in the request reside on another Client Access server. GetStreamingEvents won't proxy in the event of a batch request."
Can anyone help me here ? 

With Office365 you need to Group your subscriptions and set the Affinityheaders see
http://msdn.microsoft.com/en-us/library/office/dn458789(v=exchg.150).aspx and
http://blogs.msdn.com/b/mstehle/archive/2013/07/17/more-affinity-considerations-for-exchange-online-and-exchange-2013.aspx . Take note of the restrictions on the Group and other throttling restrictions if your using only one service account.
Cheers
Glen

Similar Messages

  • Office 365 Streaming Notifications, "One or more subscriptions in the request reside on another Client Access server."

    Hello all,
    I am maintaining a part of our product that requires monitoring mailboxes for events.  This is currently being done by using streaming connections for getting the notifications.  Our solution has been successful for situations with smaller numbers
    of mailboxes, ~200 or less.  However we are seeing some issues when scaling up to say, 5000 mailboxes.
    The error and the sequence leading up to it are as follows:
    Make an Exchange Service Account.
    exchSvc.ConnectionGroupName = someGroupName;
    add to the httpheaders ("X-AnchorMailbox", userSmtp) and ("X-PreferServerAffinity", "true");
    create a new impersonated UserId for the userSmtp address that is our anchor mailbox.
    set the Exchange Service account ImpersonatedUserID to the one we just made.
    ExchangeServiceAccount.SubscribeToStreamingNotifications(new FolderId[] { WellKnownFolderName.Inbox }, _mailEvents);
    to this point everything was successful, saw no error messages.
    we create a second impersonated UserID for a different mailbox, and repeat the process above from that step forward.  Upon the final step, subscribing to the streaming notifications we get the error:
    Exception: Microsoft.Exchange.WebServices.Data.ServiceResponseException: One or more subscriptions in the request reside on another Client Access server. GetStreamingEvents won't proxy in the event of a batch request.
    This is only the second subscription that we are trying to add to this connection, and it is to a different mailbox than the first.
    Can anyone please help point me to where this is going wrong?

    >> Is there a good way to verify the number of subscriptions in a group?
    Not that I know of you should be tracking this in your code there are no server side operations in EWS to even tell you if there are active subscriptions on a mailbox.
    >>The error I am getting is on the second subscription in a new group, just after doing the anchor mailbox so I don't think we are hitting the 200 limit. 
    It's hard to say without seeing your code but it sounds like there is problem with your grouping code. One way to validate this is that with every request you make with the EWS managed API there is a
    RequestId header http://blogs.msdn.com/b/exchangedev/archive/2012/06/18/exchange-web-services-managed-api-1-2-1-now-released.aspx
    you should be able to give that RequestId to the Office365 support people and they should be able to check the EWS Log on the server and tell you more about what's happening (it maybe server side bug). Something doesn't quite add up in that the X-BackEndOverrideCookie
    is what ultimately determines what server the request ends up at and the error is essentially telling you its ending up at the wrong server (have you looked at the headers on the error message?). Is it always one group of users that fails have
    you tried different groups and different combinations etc.
    Cheers
    Glen

  • Office 365 Home Premium Skype Subscription Element

    i've recently purchased a 7" linx win8.1 tablet which also came with a years subscription to Office 365 Home Premium including an hour of skype minutes.
    these free minutes are showing on my skype account page so i'm puzzled that when i tried to make a call i'm told i dont have any credit to do so.
    what is going on here?  my free hour expires on January 19, 2015 and that's daylight robbery if im unable to use these minutes before then!
    i was trying to call Chile from the UK & UK to UK landline - both countries are on the list of available destinations.

    Hello,
    In order to associate the world minutes subscription with a different Skype account you must first deactivate the original account, then associate the subscription with a new Skype account from your "Office account page". If you activate the Skype World Minutes subscription on another account, you will have a full 60 minutes package again.
    Note: A Skype account can be deactivated once every 60 days. If you attempt to deactivate an account a multiple times, an error message will be displayed at each attempt.
    Please follow these steps to deactivate the original account:
    1- From the Office My Account page in the section Account Options, click View my Microsoft account.
    2- Click View Subscriptions. The subscriptions associated with the Microsoft account are displayed
    3- Click the Skype subscription you want to manage and click Manage. The Skype
    subscription options are displayed. Click Deactivate Skype world minutes
    4- Then click Deactivate to complete the cancellation
    After that you can activate your Skype World minutes with an another Skype account by clicking on Get started with Skype and following the steps.
    If my answer was useful, please click on "Accept as Solution" to help others, thank you
    Si ma réponse vous a aidé merci de cliquer sur "Accepter comme solution"
    Cela pourra surement aider d'autres personnes qui ont le même problème

  • EWS, Office 365, An internal server error occurred. The operation failed.

    I am using EWS 2.0 to access a users calendar in Office 365. I use AutoDiscover to find the ExchagneService, then bind to the calendar via CalendarFolder.Bind and at the next statement folder.FindAppointments I get the error
    An internal server error occurred. The operation failed.
    I know that the credentials used to access the user are correct - have tested in the webmail and it works just fine.
    If I use my own credentials (after having assigned rights to the user in question) my program does not fail. Only apparent difference is the administrator role.
    Below I have listed the central parts of the code:
    First the AutoDiscover (which work)
    service = new ExchangeService(ExchangeVersion.Exchange2010_SP1,TimeZoneInfo.Local ); // service is a global variable
    service.Credentials = new NetworkCredential(ConfigClass.CalendarReaderName, ConfigClass.CalendarReaderPassword);
    service.AutodiscoverUrl(cal, RedirectionUrlValidationCallback);
    Then the part where I want to get the appointments
    CalendarView view = new CalendarView(_firstdate, _lastdate);
    Mailbox mailbox = new Mailbox(cal); // cal is the e-mail address of the user
    FolderId id = new FolderId(WellKnownFolderName.Calendar, mailbox);
    CalendarFolder folder = CalendarFolder.Bind(service, id);
    FindItemsResults<Appointment> findResults = folder.FindAppointments(view); // This is where the error occurs
    Anybody know what this error actually means and how to solve the situation. I want to run the program using a service account rather than my personal credentials.

    the error came back - but the trace revealed the error:
            <m:ResponseMessages>
              <m:FindItemResponseMessage ResponseClass="Error">
                <m:MessageText>An internal server error occurred. The operation failed.</m:MessageText>
                <m:ResponseCode>ErrorInternalServerError</m:ResponseCode>
                <m:DescriptiveLinkKey>0</m:DescriptiveLinkKey>
                <m:MessageXml>
                  <t:Value Name="InnerErrorMessageText">Too many concurrent connections opened.</t:Value>
                  <t:Value Name="InnerErrorResponseCode">ErrorTooManyObjectsOpened</t:Value>
                  <t:Value Name="InnerErrorDescriptiveLinkKey">0</t:Value>
                </m:MessageXml>
              </m:FindItemResponseMessage>
            </m:ResponseMessages>
          </m:FindItemResponse>
        </s:Body>
      </s:Envelope>
    </Trace>
    The account is used for other purposes as well - looking into other calendars. And I have seen this limitation before and read that it is a timing issue.
    I guess I need to use another account ...

  • O365 EWS API - search one or more mailboxes for specific email, check if read?

    Howdy All - 
    Can anyone point me as to how you can search a single or multiple mailboxes for a specific email by sender or subject to find out if the email was read?
    I have scoured the net and can not find anything related to this for O365 or even Exchange 2013.
    Thx!
    Domran

    You could use EWS to search mailboxes.
    https://msdn.microsoft.com/EN-US/library/office/dn579422(v=exchg.150).aspx. You can easily check the
    IsRead property on mail items.
    However, I would point out that finding out if a mail is read is somewhat troublesome. How do you know a mail was read? If it is marked read? Users can toggle the read/unread state of a message, so that's kind of unreliable. You can also right-click a folder
    and choose "Mark all as read", without ever actually reading the message. So depending on what you're trying to do, this may not be something you can programmatically determine.

  • My Macbook Pro has it's screws missing one by one and I knew my horrible nosy distant relative who has access to my apartment has been removing the hard drive to access the data. Does a) sign in password, b) Filevault offers protection?

    I use Filevault now.   But still is it safe ?  Before it was only a sign in password.  Answers appreciated .

    Welcome to the Apple Support Communities
    What FileVault does in Lion and Mountain Lion is encrypt the whole hard drive, so if you don't type your user password when you start the Mac with FileVault, it's near impossible to access to the data because the hard drive can't be accessed.
    In Lion and Mountain Lion, FileVault encrypts all the hard disk, so your files are safer than with FileVault in Mac OS X Snow Leopard. The thief will probably be unable to access to the files

  • Project working with Project Online in Office 365

    Hello,
    My question is related to project working and using Project Online to track projects.
    * Can I use a single "Project Online with Project Pro for Office 365" subscription for tracking and creating reports about all project sites and their tasks in Office 365?
    Meaning, if we have multiple projects designed in Project Pro and then uploaded directly to Office 365, can we gather the task, resource and progress information from these projects (created directly to Office 365) in a Project Online overview? One person
    using Project Online to oversee multiple projects, others uploading their projects and changing task information in Office 365 to a SharePoint site with Project Pro and Office 365 subscriptions.
    We want to have one person with Project Online overseeing the progress and create reports on all projects that have been uploaded to Office 365 (Project Portfolio Management), but not creating new projects. Is this possible with just one Project Online subscription?
    The other users would all have an Office 365 Enterprise 3/4 subscription for accessing Office 365, collaborating and updating their tasks. Project managers would have a Project Pro subscription for creating and uploading projects to Office 365.
    Thank you in advance.

    Helen,
    Your question is slightly confusing, so let me try and say it this way: 
    1) Your PMs (multiple) will use Project Pro, to create and publish plans to Project Online
    2) You will have one user who will 'administer' Project Online and create reports etc.,
    3) You will not have any other users access Project Online
    4) I am not sure about you 'SharePoint' comment--so excluding this.
    The problem is that, Project Pro+Office 365 does not necessarily give you access to Project Online. This combination is more useful when you are using just Project Pro or using project Pro to sync plans with Task lists on SharePoint Site. Plans that are
    uploaded this way will NOT appear in Project Online. So, the person who has the Project Online license will not have any data to report on.
    Having said that, here are few options:
    1) Stick with Project Pro +Office 365. Team Members can access "Task" lists in SharePoint Sites. In this scenario, Reporting will be somewhat complex, because each site is its own, and you might have to customize to be able to report across multiple sites. 
    2) If you want an easier Project Portfolio Management, Project Online is better. However, in this case, your PMs need to get Project Online with
    Project Pro for Office 365 which will allow them to publish plans to Project Online. Then your user with project Online license can generate reports for the portfolio easily. In this scenario, if you want team members to be able to submit timesheets,
    work with documents etc., you might want to look into getting the Project Lite for them (http://blogs.office.com/2014/03/31/project-lite-may-1st/)
    Hope it helps.
    Prasanna Adavi,PMP,MCTS,MCITP,MCT http://thinkepm.blogspot.com

  • SharePoint Designer 2013 cannot access workflows in Office 365 Site

    I have an Office 365 SharePoint site with a number of workflows that I have created on my machine with SPD 2013. After a number of weeks I was unable to access the workflows from my machine through SPD (while still being able to access pages, site assets
    etc.), getting the following error: (Am restricted from submitting images)
    "Server-side activities have been updated. You need to restart SharePoint Designer to use the updated version of activities"
    Restarting SPD doesn't help, after clicking OK I get the "SharePoint Designer cannot display the item" screen, prompting me to refresh. 
    When I do refresh, I get the following:
    "Windows Workflow Foundation, part of .Net Framework 3.0, must be installed to use this feature"
    This is happening on my machine, Windows 7 64 Bit, SPD 2013 64 Bit, but on a colleague's machine, Win 7 64 Bit, SPD 2013 64 Bit I can access the workflows. 
    I get the same error if I try to create a new Workflow on my machine but I can create it on my colleague's machine.
    I downloaded SPD 2013 on a 32 bit laptop I have access to, in which I can create a workflow. One existing workflow can be accessed, updated etc. with no issue, one opens to a prompt to "Insert a stage" and one tells me that it "Failed to load
    the workflow definition for the workflow", then the "SharePoint Designer cannot display the item" screen. All of these workflows can be accessed from my colleague's machine.
    Here are the actions that I have taken to date on my own machine:
    Cleared the caches multiple times
    Checked for updates
    Installed .Net Framework 4.5
    Re-installed .Net Framework 4.0 (which contains 3.0)
    Uninstalled and re-installed SPD 2013 
    Due to issues with a workflow on the site I am in contact with MS Support who are aware of this issue, they sent me a link to a hot fix that was already installed but they have no concrete idea of what might be going on.
    I was convinced that it was an issue on my machine, but I don't know what the issues that I have seen on the 32 bit SPD on the new laptop mean.
    I have been searching the internet for a fix with no success, I would appreciate any help.
    Thanks
    Mick

    Hi,
    According to your post, my understanding is that SharePoint Designer 2013 cannot access workflows in Office 365 Site.
    There was an issue recently when a service release was implemented that incremented the version number in the HTML header on some SharePoint online sites to '16' when SPD was expecting '15'. 
    I suggest to install internet explore 10 and install a patch for IE10. Then test with "open with windows explore" then opened in SPD from sharepoint online.
    In addition, I suggest that in SPD go to Account > Switch Account and type in the credentials of the site you are trying to open (it defaults to your Microsoft Login).
    If the issue persists, to troubleshoot this issue, you can uninstall all versions of SharePoint Designer on workstation, clear cache and then reinstalling the latest SharePoint Designer. For the detailed information, you can refer to the
    article: http://support.microsoft.com/kb/2794961
    Here are two similar threads for you to take a look at:
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/15fd1436-3166-4e43-8b22-cdb480091548/cant-open-sharepoint-online-site-in-sharepoint-designer-2013
    http://community.office365.com/en-us/forums/154/t/149314.aspx?PageIndex=2
    By the way, you can also post the question in Office 365 forum and more experts will assist you.
    Office 365 forums
    :http://community.office365.com/en-us/forums/default.aspx
    More information:
    SharePoint
    Designer 2013: Server-side activities have been updated:
    http://www.andreasthumfart.com/2013/08/sharepoint-designer-2013-server-side-activities-have-been-updated/
    Best Regards,
    Linda Li
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Office 365 vs Google Apps?

    I wanted to share a recent guest post by the CEO of Champion Solutions Group on behalf of Sanjeevini Mittal on how customers find Office 365 vs Google Apps. What is your experience?  
    Today’s
    guest blogger is Chris Pyle, president and CEO of Champion Solutions Group, an award-winning Microsoft Gold partner that helps
    small and medium enterprises develop cloud strategies and deploy cloud solutions. Founded in 1979, Champion has 22 offices in 11 states and is the parent company for MessageOps, which focuses exclusively on helping customers move seamlessly to the Microsoft
    Cloud. The two companies have helped hundreds of customers migrate to Office 365.
    At Champion Solutions Group, we focus on small and medium enterprises (SMEs) that range from about 250 to 2500 seats. We have helped hundreds of business, education and government customers migrate a total of about 700,000 seats to Office 365. As part of our
    work, we have helped many customers migrate to Office 365 from Google Apps, including several who previously had left Microsoft for Google.
    In working with our customers, we focus on operational efficiencies, making sure the organizations that adopt the Office 365 platform really make the most of it. Just because you migrate to Office 365 doesn’t mean you’re done. That’s Day One. There’s still
    Day Two (how you set everything up) and Day Three (how you collaborate and leverage the power of Office 365). We help our customers with all three stages.
    Why customers choose Office 365 over Google Apps:  For organizations that switch from Google Apps to Office 365, the number one reason is that they find Office 365 is easier to use
    and offers greater productivity than Google Apps. Because it is enterprise-grade and much more business-focused than anything Google can offer, customers also say that Office 365 is more robust than Google Apps.
    As an example, one of our customers is a large grocery chain on the East Coast, with more than 10,000 users in many different locations. When the company decided to abandon Google Apps and adopt Office 365, the top two reasons were the usability and robustness
    of Office 365. In fact, one of the main reasons the company finally decided to switch to Office 365 was that employees complained so much about Google Apps. They said it was very cumbersome and didn’t work for them. They just didn’t find Google Apps as productive
    as Office 365.
    Choice is another important factor for many organizations when they are considering different cloud solutions. When we ask our customers why they choose Microsoft over Google Apps, many say that having a choice of cloud, on-premise or hybrid solutions gives
    them the flexibility to meet their business needs. With Google, the cloud is the only option. Customers like having a productivity solution they can tailor to their business.
    Office 365 is more cost-effective than Google Apps:  There’s an immediate cost benefit to customers who choose a cloud solution. They save money on the initial capital outlay, and they
    can convert those savings to operational investments, but the cost-effectiveness of any solution is about more than the initial price tag.
    When customers are choosing a cloud solution, they ask questions about productivity, security, and how well it works. Microsoft provides positive answers to all of those questions. In our experience, the productivity suite that Microsoft delivers with Office
    365, compared to Google Apps, makes it the “right way” for most organizations.  Over the long term, Office 365 is often the most cost-effective choice.
    The bottom line:  What we offer our customers when we help them migrate to Office 365 is a way to transform how they work, to innovate, and to come up with better ways to make a difference
    to their customers. Once our customers begin to understand and use the full capabilities of Office 365, they report a significant increase in productivity,
    with their employees doing a tremendous amount of work from almost any location, on any of their devices, and being much more collaborative.

    I am grandfathered into a Google Apps account with 50 seats. I also pay for a 5 user seat Office 365 account. My personal domains are on Google Apps and my business domains are on Office 365. How both services are great, I prefer Office 365 to Google Apps
    any day of the week. Now, I am a huge Google user. But my eco-system is so Microsoft heavy, I will stick with Windows Phone 8.1 and Windows 8.1 OS's for now. But that is not the only reason. Google Apps is simple. That is what makes Google Apps so strong is
    that it is simple to use. Office 365 is robust. That is what makes Office 365 so strong is that it is robust. Now, the major difference. Office 365 is a little harder to use and set up than Google Apps is. A small company of 5 users may benefit with Google
    Apps if they do not have an IT department. With Office 365, if you have 20 users, I will suggest some kind of geek working there to handle some of the IT because Office 365 is a little too robust. For me, my business, I like robust. I prefer the features of
    Office 365 over Google Apps. I like the control I have over Office 365. Google Apps does not give you control, it is straight forward. For some companies, Google Apps may be great for them. For large large enterprises, they may want to consider Office 365.
    Though, there are a lot of large enterprises settling with Google Apps. Either way, it all depends on the needs of the company. Both services are good. I just prefer Office 365 and my opinions are just as valid as someone who prefers Google Apps.

  • ADFS single sign-on with office 365 and multiple forests

    I have 2 forests with one of them (Forest A) only running Exchange / Office 365 in hybrid mode. The other forest (Forest B) has my AD accounts for everyday user login and work. Is there a way to set up ADFS between these 2 forests in order for Forest B
    to achieve single sign-on to office 365? Today users have to login with separate office 365 accounts in order to access email and sharepoint. Short of migrating Forest A into Forest B and getting down to one forest / domain, is there anything else we can do
    to achieve single sign-on?

    Hi,
    Based on my research, we can have one ADFS farm servicing multiple forests, here are some related articles below for your references:
    Multi-forest and Multi-tenant scenarios with Office 365
    http://blogs.technet.com/b/educloud/archive/2013/08/02/multi-forest-and-multi-tenant-scenarios-with-office-365.aspx
    Hybrid Deployment Prerequisites
    http://technet.microsoft.com/en-us/library/hh534377(v=exchg.150).aspx
    SupportMultipleDomain switch, when managing SSO to Office 365
    http://blogs.technet.com/b/abizerh/archive/2013/02/06/supportmultipledomain-switch-when-managing-sso-to-office-365.aspx
    For more information about Office 365, I suggest you refer to Office 365 community below:
    http://community.office365.com/en-us/f/default.aspx
    Best Regards,
    Amy

  • Office 365 API with Visual studio 2013 using file REST API

    Hi,
    I had configured MVC application for getting files from office 365 one drive, I am able to seen all file on last day but Now I am getting below issue 
    <?xml version="1.0" encoding="utf-8"?><m:error xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata"><m:code>-1, System.ApplicationException</m:code><m:message xml:lang="en-US">Error
    in the application.</m:message></m:error>
    when I want to see again all files. and most important I didn't make any changes in my previous code...
    Please share your suggestion....

    Hi,
    If you are developing an app for SharePoint, the app can call into a user’s MySite site collection and access their OneDrive for Business documents using REST or CSOM.
    The REST call to get to the file would be:
    https://YourO365DomainHere-my.sharepoint.com/personal/YourUserName_YourO365DomainHere_onmicrosoft_com/_api/web/GetFileByServerRelativeUrl('/personal/YourUserName_YourO365DomainHere_onmicrosoft_com/Documents/Shared%20with%20Everyone/myDocument.docx')/$value
    More information is here:
    http://blogs.msdn.com/b/sharepointdev/archive/2013/08/13/access-skydrive-pro-using-the-sharepoint-2013-apis.aspx
    Best regards
    Dennis Guo
    TechNet Community Support

  • Install office 365

    I have signed up for 365, so can now download office desktop.
    I have an older version of office I want to uninstall first completely to keep things tidy.
    Do I need to back up (and if so how):
    1. onenote notebooks
    2. email psts and osts
    3. email account settings
    4. Quickparts in outlook
    5. word / ppt templates
    6. email signatures
    The best thing would be to back these up on office 365 online, if I knew how.

    Hi,
    For OneNote notebooks and Word/PPT templates, you can just go to the location where they are stored and backup them. Then move them to your new Office.
    What type of email account do you use (POP, IMAP, MAPI or Exchange)? For Exchange Account, most of the settings are stored in your Exchange mailbox, when you install Outlook and configure an Exchange account, all your items on the server will again available
    to you.
    If you are using a POPs email account, your email items and settings are stored in the local pst file, you need to back up it.
    More reference:
    http://office.microsoft.com/en-us/outlook-help/move-an-outlook-data-file-from-one-computer-to-another-HA001230892.aspx
    Email signatures are not stored in the mailbox as Outlook inserts txt, rtf, and htm files for the signature. They are stored under %AppData%\Microsoft\signatures, you can backup them anyway.
    Hope this helps.
    Thanks,
    Ethan Hua CHN
    TechNet Community Support

  • Questions in Office 365 - Product Office Addins - How Best To Set Up Test & Dev Environments

    Hello Team,
    One of our customer raised this below query:  (Please refer :
    http://community.office365.com/en-us/f/172/p/290555/887029.aspx#887029)
    We have an existing product which has a set of components which are
    Office Addins, working on Office 2007, 2010, 2013.
    We have a customer who has asked us to support these on Office 365, as their Microsoft strategy is to move to this platform.
    Our understanding is that there are two flavors of Office 365:
    A browser-based version written in JavaScript (akin to Google Docs)
    version which installs the full Office 2013 on the client, using Click-To-Run as the deployment technology.
    We are planning to work with option 2 only just now (for Office 2013 only – not for 2010 or 2007).
    In order for us to start working on this, we’ll need Office 365 clients installed both in our development and test environments. We see that we can access Office 365 through our MSDN subscription by doing this:
    a. Launching this site:
    https://mspartner.microsoft.com/en/us/Pages/index.aspx
    b. Signing in
    c. Clicking on Resources->Access my software and keys
    d. Choosing Office 365
    However when we do this, we get this information:
    "Important Information on activating your cloud licenses Your cloud product key can only be redeemed once. Therefore, in order to activate your Internal-use cloud
    licenses on your existing cloud tenant, you MUST sign in BEFORE you activate your 25 digit cloud product key. Once your cloud product key has been redeemed, you will be unable to use it again.
    You have the choice to deploy your program license grants as an on-premises only, online only, or an on-premises and online combination solution. Your combined usage
    for on-premises Office products and Office 365 may not exceed your program license entitlement. Country and worldwide license maximums apply. To ensure you are compliant with program policy and guidelines, refer to the Product Usage Guide."
    We are not clear on what the above means for us exactly, and which option we should choose: on-premises only, online only, or an on-premises and
    online combination solution.
    Please advise. Many Thanks.
    Balamurugan G.

    Hello Balamurugan,
    The current forum is for developers. I'd suggest asking non-programming questions on the
    Office 2013 and Office 365 ProPlus - Planning, Deployment, and Compatibility 
     or
    Office 2013 and Office 365 ProPlus - Planning, Deployment, and Compatibility 
    forums instead.

  • Outlook office 365 calender window query string

    Hello,
    For one of our client i need to open outlook office 365 new event entry form with pre-populated values.
    Using following url i am able to populate the subject in the new entry form.
    https://outlook.office365.com/owa/#viewmodel=IComposeCalendarItemViewModelFactory&wid=6&ispopout=1&Subject=Test
    subject
    I need to populate value in following fields
    1. Body
    2. Location
    3. Attendee.
    I did not find any query string key for attendee. If add Body or Location in query string the APPS does not load at all.
    If any body have idea how to populate those values through query sting please response on the post. 
    Regards,
    Samaresh Das

    Hi Samaresh,
    As this question is more related to office 365 outlook, I suggest you create a post to office 365 forum.
    More experts will help you and you will get more detailed information from there.
    http://community.office365.com/en-us/f/158.aspx
    Best regards,
    Zhengyu Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they
    help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]
    Zhengyu Guo
    TechNet Community Support

  • Add new Office 365 to Azure after removing existing Office 365

    Hi All,
    A little convoluted, but I am struggling here.
    First, some history.
    I created an initial Office 365 account (via Telstra).  The tenant domain for this is initialO365.onmicrosoft.com.  I added a custom domain my-domain.com.
    Sometime later, I created an Azure Subscription.  Access to the Azure subscription was via my Microsoft Account.
    Via support, I had the Office 365 my-domain.com associated with (I guess, via the Active Directory Directory) the Azure Subscription.
    The end result was that I was able to logon to both Office 365 and Azure via the my-domain.com domain.
    All was well.
    Recently...
    Due to some limitations with Office 365 via Telstra, I signed up for a new Office 365 account directly with Microsoft.  The tenant for this domain is newO365.onmicrosoft.com.
    I manually migrated the mailboxes between Office 365 accounts, and I also moved the domain from the old Office 365 to the new Office 365.
    In terms of the new Office 365, all is well.  I can logon via my-domain.com without issue.
    What I now want to do is remove the association of the old Office 365 account from Azure, and add the new Office 365 account.
    The end result will be that the old Office 365 account (initialO365.onmicrosoft.com) is cancelled and deleted, and I am then able to logon to Azure and the new Office 365 via my-domain.com.
    I simply cannot get this to happen
    I've tried to just add the my-domain.com domain to the existing directory in Azure (I've added the TXT record to the domain) but when I verify I get the following error:
              Could not verify this domain because it was previously configured for your tenant or for another tenant.
    I think I need to add a new Directory linked to the Office 365 tenant, but I am unable to do this (anytime I go to add a new Directory, I DO NOT get the option to select an existing one).
    I do have a current support ticket, but it's taken over a week now and I'm not really getting far - I don't believe that they understand what I want to do.
    My previous experience with getting this done lead me to believe that this was a simple-ish type of exercise, but I am stuck.
    Any ideas?

    Hi Brendan,
    Thanks for posting here!
    1. My-domain.com is still associated with initialO365.omicrosoft.com. You would like to add this domain with with newO365.onmicrosoft.com.
    A1: First logon to old tenant "initialO365.onmicrosoft.com" and remove any association for "my-domain.com" from any objects (users/groups/applications) and then remove the domain "my-domain.com" from the directory. Once you
    remove it, you will be allowed to add it back to the second tenant "newO365.onmicrosoft.com" after verifying the same using a TXT entry.
    2. You would like to link the Azure Subscription to the new AAD tenant newO365.onmicrosoft.com
    A2: First add the MSA to Newo365.onmicrosoft.com as a Global Admin (GA). Then under Settings on Azure Management Portal, click edit directory and select the new directory to link the Azure subscription to. Add GA for newo365.onmicrosoft.com as a co-admin
    on the Subscription before they attempt to login.
    Hope this answers your query.
    Best Regards,
    Sadiqh
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful.

Maybe you are looking for

  • Mail search not working and no metadata importer

    Recently, after the last security update, I've lost the ability to search within mail messages and some files. Searching in mail ONLY finds messages that have been opened (display in view panel) recently and nothing else. So all old emails don't show

  • After Effects Unresponsive. Project from Mac to PC

    Hey guys.. I've been using the Element 3d plugin quite a bit lately, but it wasn't running correctly on my system because I was using a custom built "hackintosh" (an error with the video driver, or lack thereof). So I decided to give Windows a try. I

  • Exporting to pure Black and White PDF

    Hi,      I've created the  document in mono/black and white, but have been asked by the printers to export the PDF as a pure black and white. I cannot seem to see these settings when exporting. Am I just missing something or is this not possible? Tha

  • How can I get Itunes to stop popping up on my desk top all day long

    How can I get Itunes to stop popping up on my desktop all day long without opening up the icon?

  • Why pictures, graphics suddenly exgtremely large?

    Pictures on shopping sites (Amazon, eBay, et al.) and in google images pages have greatly increased in size over the last couple of months. Text is also larger and with more white space -- e.g. this page I'm typing into. I've emailed Amazon and eBay