How to host custom wcf service on office 365

hi all,
I am working with project online using client object model 2013.I want to host custom wcf services on project online teant.
hosting service on cloud. Please suggest me.
vijay

Hello,
If you want to host custom WCF services in a hosted environment look at spinning up an Azure VM.
Paul
Paul Mather | Twitter |
http://pwmather.wordpress.com | CPS

Similar Messages

  • Custom wcf service that uses SharePoint Object Model.

    Hi All,
    I am writing a custom service on SharePoint. I have noticed most of the people do deploy the custom wcf service in layout folder in 12/14/15 hive. I am wondering is it mandatory? Can’t we deploy the custom wcf service that uses SharePoint Object Model as
    virtual directory on a specific port?
    Regards Restless Spirit

    It is suggested to use WCF in 12/14/15 hive folder due to security and eas in use. Check below
    http://www.dotnetcurry.com/showarticle.aspx?ID=760
    http://msdn.microsoft.com/en-us/library/office/ff521584%28v=office.14%29.aspx
    http://stackoverflow.com/questions/16008593/where-should-custom-wcf-service-for-sharepoint-2010-resides
    If you want to use the server object model you have to host your WCF service on the same server as your SharePoint is installed on.
    If the WCF service has to be on a different server you can use the client object model or the SharePoint webservices to communicate to SharePoint.
    (link to a question about using server object model on different server
    http://nikpatel.net/2012/02/29/step-by-step-building-custom-wcf-services-hosted-in-sharepoint-part-i/

  • How to design a wcf service for specific requirement

    i have 2 question on wcf.
    1) suppose some one develop a bus booking service using wcf and expose the same service over 2 different endpoint like tcp and http but i like to know what would be the advantage of having 2 or more endpoint for single service ? in what kind of situation
    people use this trick? discuss in details.
     2) how can i offer some extra functionality for tcp client. suppose my service has 5 function but http client can call only 2 and tcp client can call all. how do i design wcf service in this way. any idea would be appreciated. thanks

    Hi Mou_kolkata,
    >> 1)what would be the advantage of having 2 or more endpoint for single service ? in what kind of situation people use this trick? discuss in details.
    In my mind the advantage of providing different endpoints for a single service is that each endpoint could use different binding and we would use different endpoints for logical grouping by function, we could also apply different levels of security
    in the binding for each endpoint. For example you can expose an interoperable endpoint for Java, PHP, ... clients and a proprietary binary endpoint which could be faster but only for .NET clients.
    Besides, please also try to check this similar thread:
    http://stackoverflow.com/questions/6033788/when-why-would-i-use-multiple-endpoints-vs-a-single-endpoint-in-a-wcf-service .
    >> 2) how can i offer some extra functionality for tcp client. suppose my service has 5 function but http client can call only 2 and tcp client can call all. how do i design wcf service in this way. any idea would be appreciated.
    An esay way is to create two services. One service is for http client with 2 functions and the other service is for tcp client with 5 functions.
    Or maybe you need do some authentication, for more information, please try to refer to:
    http://stackoverflow.com/questions/11566182/how-do-i-restrict-access-to-some-methods-in-wcf .
    Best Regards,
    Amy Peng
    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.
    Click
    HERE to participate the survey.

  • Custom WCF Service Deployment

    Hi,
    We have tried to create the document set using REST API and not able to create the document set using REST API. Finally we have decided to use the Custom WCF service to create the document set. We have three approaches to deploying the WCF service.
    1. IIS hosted service.
    2. Inside the Layouts folder deployment
    3. ISAPI folder deployment.
    Which location is good to deploy the custom WCF service ?. I am going to call this service from java application to create the document set.
    Thank you,
    Mylsamy

    Hi.
    You can use CKSDEV visual studio extension to create your own WCF service.
    The service is created under the 
    C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\ISAPI\yourservice
    folder
    Regards,
    Bubu
    http://zsvipullo.blogspot.it
    Please mark my answer if it helped you, I would greatly appreciate it.

  • How to Get user profile properties in provider -cloud hosted app in sharepoint online - office 365 using REST API?

    How to Get user profile properties in provider -cloud hosted app in sharepoint online - office 365 using REST API?
    any idea?

    Hi,
    From your description, my understanding is that you want to get user profile properties in provider-hosted app in SharePoint online using REST API.
    Here is sample code for getting user profile properties:
    http://www.vrdmn.com/2013/07/sharepoint-2013-get-userprofile.html
    Here is a blog below about accessing data from the provider-host apps:
    http://dannyjessee.com/blog/index.php/2014/07/accessing-sharepoint-data-from-provider-hosted-apps-use-the-right-context/
    Best Regards,
    Vincent Han
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • How to download a file version from office 365 using csom

    I need to download an older file version from office 365 and get the data into a byte array. I have no trouble downloading the latest version with File.OpenBinaryStream() and I have no trouble loading the previous file versions with File.Versions. But now
    I need to actually download an older version of the file and it seems the only way is to use File.OpenBinaryDirect. So I am creating a client context using my oAuth access token and providing the correct path, but I am getting a (401) Unauthorized
    error. Looking with Fiddler I can see that the call to OpenBinaryDirect is somehow trying to post to my file URL and the server is responding with 401.
    context = TokenHelper.GetClientContextWithAccessToken(SPHostUrl, AccessToken);
    FileInformation info = File.OpenBinaryDirect(context, "/" + _fileVersion.Url);  //throws 401
    //leading slash required otherwise ArgumentOutOfRangeException
    I have to be able to access the older file versions with my c# code -- I don't have a viable app without that ability -- any help urgently needed and greatly appreciated!

    Thank you SO much (Can't wait for the next release)!
    For anyone else who lands here, here's the code I ended up using:
    // VersionAccessUser and VersionAccessPassword are stored in web.config
    // web.Url is loaded via the clientContext
    // myVersion is the FileVersion I got from the file's Versions.GetById() method
    // probably a lot of ways to get hostUrl, it just needs to be https://yourdomain.sharepoint.com/
    // - I'm running my app from a subweb
    // I had trouble following the links to get the full MsOnlineClaimsHelper code
    // (the one on msdn.com was missing RequestBodyWriter, WSTrustFeb2005ContractClient,
    // and IWSTrustFeb2005Contract
    // so I've included the code I used here.
    string myVersionFullUrl = string.Format("{0}/{1}", web.Url, myVersion.Url);
    string userName = WebConfigurationManager.AppSettings.Get("VersionAccessUser");
    string strPassword = WebConfigurationManager.AppSettings.Get("VersionAccessPassword");
    string hostUrl = Regex.Replace(web.Url, "([^/]+//[^/]+/).*", "$1");
    MsOnlineClaimsHelper claimsHelper = new MsOnlineClaimsHelper(hostUrl, userName, strPassword);
    var client = new WebClient();
    client.Headers["Accept"] = "/";
    client.Headers.Add(HttpRequestHeader.UserAgent, "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.0.3705;)");
    client.Headers.Add(HttpRequestHeader.Cookie, claimsHelper.CookieContainer.GetCookieHeader(new Uri(hostUrl)));
    var document = client.DownloadString(myVersionFullUrl);
    // These classes are needed to download old versions of files (see: http://social.msdn.microsoft.com/Forums/en-US/7746d857-d351-49cc-b2f0-496663239e02/how-to-download-a-file-version-from-office-365-using-csom?forum=sharepointdevelopment)
    // I cobbled this file from http://social.technet.microsoft.com/Forums/msonline/en-US/4e304493-7ddd-4721-8f46-cb7875078f8b/problem-logging-in-to-office-365-sharepoint-online-from-webole-hosted-in-the-cloud?forum=onlineservicessharepoint
    // and http://fredericloud.com/2011/01/11/connecting-to-sharepoint-with-claims-authentication/
    using Microsoft.IdentityModel.Protocols.WSTrust;
    using Microsoft.SharePoint.Client;
    using System;
    using System.Collections.Generic;
    using System.IO;
    using System.Linq;
    using System.Net;
    using System.Net.Security;
    using System.ServiceModel;
    using System.ServiceModel.Channels;
    using System.Text;
    using System.Web;
    using System.Xml;
    using System.Xml.Linq;
    namespace DPSiDoxAppWeb.Helpers
    /// <summary>
    /// Create a new contract to use for issue claims for the SharePoint requests
    /// </summary>
    [ServiceContract]
    public interface IWSTrustFeb2005Contract
    [OperationContract(ProtectionLevel = ProtectionLevel.EncryptAndSign,
    Action = "http://schemas.xmlsoap.org/ws/2005/02/trust/RST/Issue",
    ReplyAction = "http://schemas.xmlsoap.org/ws/2005/02/trust/RSTR/Issue",
    AsyncPattern = true)]
    IAsyncResult BeginIssue(Message request, AsyncCallback callback, object state);
    Message EndIssue(IAsyncResult asyncResult);
    /// <summary>
    /// Implement the client contract for the new type
    /// </summary>
    public class WSTrustFeb2005ContractClient : ClientBase<IWSTrustFeb2005Contract>, IWSTrustFeb2005Contract
    public WSTrustFeb2005ContractClient(Binding binding, EndpointAddress remoteAddress)
    : base(binding, remoteAddress)
    public IAsyncResult BeginIssue(Message request, AsyncCallback callback, object state)
    return Channel.BeginIssue(request, callback, state);
    public Message EndIssue(IAsyncResult asyncResult)
    return Channel.EndIssue(asyncResult);
    /// <summary>
    /// Create a class that will serialize the token into the request
    /// </summary>
    class RequestBodyWriter : BodyWriter
    readonly WSTrustRequestSerializer _serializer;
    readonly RequestSecurityToken _rst;
    /// <summary>
    /// Constructs the Body Writer.
    /// </summary>
    /// <param name="serializer">Serializer to use for serializing the rst.</param>
    /// <param name="rst">The RequestSecurityToken object to be serialized to the outgoing Message.</param>
    public RequestBodyWriter(WSTrustRequestSerializer serializer, RequestSecurityToken rst)
    : base(false)
    if (serializer == null)
    throw new ArgumentNullException("serializer");
    _serializer = serializer;
    _rst = rst;
    /// <summary>
    /// Override of the base class method. Serializes the rst to the outgoing stream.
    /// </summary>
    /// <param name="writer">Writer to which the rst should be written.</param>
    protected override void OnWriteBodyContents(XmlDictionaryWriter writer)
    _serializer.WriteXml(_rst, writer, new WSTrustSerializationContext());
    public class MsOnlineClaimsHelper
    #region Properties
    readonly string _username;
    readonly string _password;
    readonly bool _useRtfa;
    readonly Uri _host;
    CookieContainer _cachedCookieContainer = null;
    DateTime _expires = DateTime.MinValue;
    #endregion
    #region Constructors
    public MsOnlineClaimsHelper(string host, string username, string password)
    : this(new Uri(host), username, password)
    public MsOnlineClaimsHelper(Uri host, string username, string password)
    _host = host;
    _username = username;
    _password = password;
    _useRtfa = true;
    public MsOnlineClaimsHelper(Uri host, string username, string password, bool useRtfa)
    _host = host;
    _username = username;
    _password = password;
    _useRtfa = useRtfa;
    #endregion
    #region Constants
    public const string office365STS = "https://login.microsoftonline.com/extSTS.srf";
    public const string office365Login = "https://login.microsoftonline.com/login.srf";
    public const string office365Metadata = "https://nexus.microsoftonline-p.com/federationmetadata/2007-06/federationmetadata.xml";
    public const string wsse = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd";
    public const string wsu = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd";
    private const string userAgent = "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)";
    #endregion
    class MsoCookies
    public string FedAuth { get; set; }
    public string rtFa { get; set; }
    public DateTime Expires { get; set; }
    public Uri Host { get; set; }
    // Method used to add cookies to CSOM
    public void clientContext_ExecutingWebRequest(object sender, WebRequestEventArgs e)
    e.WebRequestExecutor.WebRequest.CookieContainer = getCookieContainer();
    //e.WebRequestExecutor.WebRequest.UserAgent = userAgent;
    // Creates or loads cached cookie container
    CookieContainer getCookieContainer()
    if (_cachedCookieContainer == null || DateTime.Now > _expires)
    // Get the SAML tokens from SPO STS (via MSO STS) using fed auth passive approach
    MsoCookies cookies = getSamlToken();
    if (cookies != null && !string.IsNullOrEmpty(cookies.FedAuth))
    // Create cookie collection with the SAML token
    _expires = cookies.Expires;
    CookieContainer cc = new CookieContainer();
    // Set the FedAuth cookie
    Cookie samlAuth = new Cookie("FedAuth", cookies.FedAuth)
    Expires = cookies.Expires,
    Path = "/",
    Secure = cookies.Host.Scheme == "https",
    HttpOnly = true,
    Domain = cookies.Host.Host
    cc.Add(samlAuth);
    if (_useRtfa)
    // Set the rtFA (sign-out) cookie, added march 2011
    Cookie rtFa = new Cookie("rtFA", cookies.rtFa)
    Expires = cookies.Expires,
    Path = "/",
    Secure = cookies.Host.Scheme == "https",
    HttpOnly = true,
    Domain = cookies.Host.Host
    cc.Add(rtFa);
    _cachedCookieContainer = cc;
    return cc;
    return null;
    return _cachedCookieContainer;
    public CookieContainer CookieContainer
    get
    if (_cachedCookieContainer == null || DateTime.Now > _expires)
    return getCookieContainer();
    return _cachedCookieContainer;
    private MsoCookies getSamlToken()
    MsoCookies ret = new MsoCookies();
    try
    var sharepointSite = new
    Wctx = office365Login,
    Wreply = _host.GetLeftPart(UriPartial.Authority) + "/_forms/default.aspx?wa=wsignin1.0"
    //get token from STS
    string stsResponse = getResponse(office365STS, sharepointSite.Wreply);
    // parse the token response
    XDocument doc = XDocument.Parse(stsResponse);
    // get the security token
    var crypt = from result in doc.Descendants()
    where result.Name == XName.Get("BinarySecurityToken", wsse)
    select result;
    // get the token expiration
    var expires = from result in doc.Descendants()
    where result.Name == XName.Get("Expires", wsu)
    select result;
    ret.Expires = Convert.ToDateTime(expires.First().Value);
    HttpWebRequest request = createRequest(sharepointSite.Wreply);
    byte[] data = Encoding.UTF8.GetBytes(crypt.FirstOrDefault().Value);
    using (Stream stream = request.GetRequestStream())
    stream.Write(data, 0, data.Length);
    stream.Close();
    using (HttpWebResponse webResponse = request.GetResponse() as HttpWebResponse)
    // Handle redirect, added may 2011 for P-subscriptions
    if (webResponse.StatusCode == HttpStatusCode.MovedPermanently)
    HttpWebRequest request2 = createRequest(webResponse.Headers["Location"]);
    using (Stream stream2 = request2.GetRequestStream())
    stream2.Write(data, 0, data.Length);
    stream2.Close();
    using (HttpWebResponse webResponse2 = request2.GetResponse() as HttpWebResponse)
    ret.FedAuth = webResponse2.Cookies["FedAuth"].Value;
    ret.rtFa = webResponse2.Cookies["rtFa"].Value;
    ret.Host = request2.RequestUri;
    else
    ret.FedAuth = webResponse.Cookies["FedAuth"].Value;
    ret.rtFa = webResponse.Cookies["rtFa"].Value;
    ret.Host = request.RequestUri;
    catch (Exception ex)
    return null;
    return ret;
    static HttpWebRequest createRequest(string url)
    HttpWebRequest request = HttpWebRequest.Create(url) as HttpWebRequest;
    request.Method = "POST";
    request.ContentType = "application/x-www-form-urlencoded";
    request.CookieContainer = new CookieContainer();
    request.AllowAutoRedirect = false; // Do NOT automatically redirect
    request.UserAgent = userAgent;
    return request;
    private string getResponse(string stsUrl, string realm)
    RequestSecurityToken rst = new RequestSecurityToken
    RequestType = WSTrustFeb2005Constants.RequestTypes.Issue,
    AppliesTo = new EndpointAddress(realm),
    KeyType = WSTrustFeb2005Constants.KeyTypes.Bearer,
    TokenType = Microsoft.IdentityModel.Tokens.SecurityTokenTypes.Saml11TokenProfile11
    WSTrustFeb2005RequestSerializer trustSerializer = new WSTrustFeb2005RequestSerializer();
    WSHttpBinding binding = new WSHttpBinding();
    binding.Security.Mode = SecurityMode.TransportWithMessageCredential;
    binding.Security.Message.ClientCredentialType = MessageCredentialType.UserName;
    binding.Security.Message.EstablishSecurityContext = false;
    binding.Security.Message.NegotiateServiceCredential = false;
    binding.Security.Transport.ClientCredentialType = HttpClientCredentialType.None;
    EndpointAddress address = new EndpointAddress(stsUrl);
    using (WSTrustFeb2005ContractClient trustClient = new WSTrustFeb2005ContractClient(binding, address))
    trustClient.ClientCredentials.UserName.UserName = _username;
    trustClient.ClientCredentials.UserName.Password = _password;
    Message response = trustClient.EndIssue(
    trustClient.BeginIssue(
    Message.CreateMessage(
    MessageVersion.Default,
    WSTrustFeb2005Constants.Actions.Issue,
    new RequestBodyWriter(trustSerializer, rst)
    null,
    null));
    trustClient.Close();
    using (XmlDictionaryReader reader = response.GetReaderAtBodyContents())
    return reader.ReadOuterXml();

  • How to "Manually" publish WCF service in Service Registry

    Since WCF service publication is not yet supported by ES Explorer for .NET, will someone know me how to do that in SAP NetWeaver CE 7.1.
    I did the following:
    Services Registry->Publish and picked up the WSDL from WCF, and pressed the Publish button.
    Now when I go to "Service Definition" tab, and put service interface name in Find dialog box, the service appears in "Found Service Definitions:.." list, and can see details in "General" and "Endpoints" tabs in the bottom.
    However, the "Classifications" and "System Details"  tab don't show anything since I just imported the standard WSDL from WCF without any SAP specific extesions.
    Can I somehow manually edit them, and classify my service, since I could not do that from the ES Explorer tool?
    Edited by: Fakher Halim on Dec 9, 2008 11:49 AM

    Rima,
    I only have publish button on my CE page. I an using  SAP NetWeaver    CE 7.1 SR5. It does not have a "Next" button on its web page. However, I could successfully do the classification of this service.
    Here is what I am doing:
    1. Going to the first page http://LOCALHOST:50000/index.html. Here I have 8 options, e.g. "Web Services Navigator"; "SAP NetWeaver   Administrator"; and "Services Registry".
    I  click on    "Services Registry".
    A new browser window opens. (I can also do the same by directly navigating to http://LOCALHOST:50000/sr and logging on).
    2. The title of this page is "Services Registry".
    I click on "Publish" Tab, and see "Publish Services" page underneath it. On this page I just have a single text box with accompanied label "Endpoint WSDL: " and a single yellow button "Publish"
    3. When I copy paste my service WSDL, the only button I can press is "Publish" .
    After pressing that button, and waiting for a few seconds a green checkbox appears with message indicating that service is successfully published. I never see the "Next" button you mentioned in your solution.
    Can you please guide me on that?

  • Host tcp wcf service on azure

    Hi,
    I have query regarding can TCP service be deployed on Azure with certificate security.
    I am fresher to Microsoft Azure and I have questions regarding deploy TCP WCF Service on Azure and is there issues while hosting TCP WCF through Net TCP Binding. Can I develop tcp service with certificate security. Can you please provide me sample
    code with detail.
    Thanks in advance
    Regards,
    Amit Khurana

    Hi, 
    The below stack overflow thread is similar to the present scenario.
    You might want  to check this
    http://stackoverflow.com/questions/27501683/self-hosted-wcf-service-on-azure-vm-windows-server
    Hope this helps !
    Regards,
    Sowmya

  • How to create custom index service?

    Hi, all.
    I was trying to create a custom index service. When I go edit mode in index management service, only the portal RolesSearchservice shows in the index services list. I cannot add my own. Please advise.
    Thanks,
    Jonathan.

    Hi, John.
    I have already got trex up and running. We are implementing a federated search with another application. This is already working on our existing EP6. Now we need to move it to our EP7. According to our old doc, we need to create a custom index service under index management service. However, I am not sure where the index service list comes from and how I can add our own. There is only an "edit" button. But there is no add or create button on it. I guess I don't really know how that works. The documentation on help.sap.com is not helping as usual.
    Thanks,
    Jonathan.

  • Additional Services for Office 365's underlying Azure

    Hello,
    is it possible to use the Azure subscription i can access through my Office 365 subscription like any other Azure subscription?
    Can I buy additional Services like Azure Media Services for Live Streaming etc, or is it solely for AD Management of my Office 365 users or are there restrictions
    Thanks in advance

    Hi,
    >>is it possible to use the Azure subscription i can access through my Office 365 subscription like any other Azure subscription?
    If you want to sign in azure subscription with Office 365 account, please go through with this article:
    http://www.edutech.me.uk/active-directory/microsoft-azure-how-subscription-administrators-directory-administrators-differ/.
    >>Can I buy additional Services like Azure Media Services for Live Streaming etc,
    please try to contact with your server administrator to enable the Media Services,
    this article
    shows us about the detail steps to add Azure scheduler service to azure portal, hope it helps, this issue is more related to azure account, you could also get further help from azure support:
    http://www.windowsazure.com/en-us/support/contact/
    If I misunderstand, please feel free to let me know.
    Best Regards,
    Jambor
    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.
    Click
    HERE to participate the survey.

  • Configuring blackberry business cloud services for office 365

    HI,
    As of now we are in process of moving to office 365 . We have to configure office 365 for blackberry devices . 
    Here we have Blackberry enterprise server and devices are Blackberry Curve and Bold , etc . 
    When i gone through the technet i have seen two options.
    1.Blackberry® Business Cloud Services (BBCS) from BlackBerry
    2.BlackBerry®
    Internet Service (BIS)
    Which one i need to prefer based on my server and devices .If i go for BBCS , how to setup and configure.
    Please anyone hep me on this.

    You need to refer to the option 1
    1.Blackberry® Business Cloud Services (BBCS) from BlackBerry
    Refer this Document
    http://us.blackberry.com/business/products-services/cloudservices.html
    This gives the Architecture in detail
    http://www.itproportal.com/2012/06/27/bis-bes-and-blackberry-services-office-365/
    Regards Chen V [MCTS SharePoint 2010]

  • Enterprise Activate a Q10 using BlackBerry Administration Service on Office 365.

    Hey guys,
    How can I find the Server address in the BlackBerry® Administration Service so I can activate a Q10?
    We use the web app used in Office 365, NOT an internal BES.
    Thanks.

    For all the people out there who got headache as big as me over this, I found this link:
    http://community.office365.com/en-us/wikis/adminis​tration/1284.aspx
    It is ONLY available to people on Enterprise plan, ie Plan E1 and Plan E3. It is NOT available for P1.
    Office 365 Charts:
    http://www.microsoft.com/en-gb/office365/compare-p​lans.aspx?WT.z_O365_ca=Buy_enterprise_en-us#

  • How to move from EOP to Hybrid Office 365 configuration?

    I have a customer that just completed their transition from FOPE to EOP.  Everything is working, but the customer would like to move all Exchange 2010 mailboxes to Exchange Online.  They already have licenses, and have more than 2000 seats.  A
    cutover migration is not possible, so a hybrid migration is my only choice.  I have been unable to find any documentation on this scenario (EOP-to-Hybrid).  
    Does anyone have any references or documentation that points to the correct steps to make this transition?  Some blogs indicate that the only way to make this work is to point the MX record elsewhere, remove the existing EOP connectors, and have the
    Hybrid configuration wizard re-create them.  
    Any help here is appreciated!  Thanks.

    Hi
    Your question is not that easy to be answered since the planning and migrating depends upon the current environment setup, status and everything.
    However you can  follow this conitious thread step by step for Migrating from Exchange 2013 to Office 365 which will help you to plan accordingly to your environment
    http://www.msexchange.org/articles-tutorials/office-365/exchange-online/configuring-exchange-2013-hybrid-deployment-and-migrating-office-365-exchange-online-part11.html
    I would recommend you to open up a ticket with Microsoft for a hassle free migration from Exchange 2013 to O365
    But for migration from Notes to o365 we need some kind of third party softwares like Quest Tools to throttle the process quickly and also you need to set few throttling policies in Exchange end as well inorder to integrated well with Microsoft Cloud
    during Migration process. Its better you can open up a ticket with Microsoft and Quest for planning the migration acording do your needs and proceed.
    Below one is for your reference
    http://www.export-notes.com/how-to-migrate-lotus-domino-to-office365.html
    Please mark as helpful if you find my contribution useful or as an answer if it does answer your question.That will encourage me - and others - to take time out to help you.
    Regards,
    Sathish

  • How to create a private forum in Office 365 SharePoint for customers?

    Hi, 
    I am implementing a SharePoint Office 365 solution for a client but one of their requirements is sharing regularly updated info with only 20 customers. The idea is to share info with just the customers in a private forum basically to receive feedback, comments
    and emails. What is the best approach to this?
    Thanks, 

    Hello Aslr12,
    Based on these requirements I would just create a new site collection within SharePoint online service of your Office 365 tenant, based on the community site template. This template has some nice web parts like the Discussion list and some Community tools. 
    - Dennis | Netherlands | Blog |
    Twitter

  • Custom Site MailBox for Office 365 SharePoint 2013 online

    Is it possible to create programmatically create site mailbox for Office 365 SharePoint 2013 online?
    How to customize site mailbox email address like [email protected]

    Hi,
    In SharePoint 2013 Online, if you want to sync document library with local drive, you can use OneDrive to achieve it.
    http://office.microsoft.com/en-001/support/sync-onedrive-for-business-or-sharepoint-site-libraries-to-your-computer-HA102832401.aspx
    Best Regards
    Dennis Guo
    TechNet Community Support

Maybe you are looking for

  • Unable to Load LSMW for BP using CRMXIF_PARTNER_SAVE

    Hello Gurus, My requirement is to load BP Data to a stand alone CRM system, this has got no connectivity to the ECC and data will be directly loaded from the excel or notepad file. Am using the idoc method in LSMW to achieve this. When am loading thi

  • How to use an existing data model using Business Components in OEPE

    I am a beginner in ADF. I am working on a project with an existing data model that uses Business Components (EO, VO and AM). I know that OEPE does not handle the creation of BC, so if I want to modify them, I will have to do that in JDev. That's fine

  • SIGBUS 10*  bus error in the iplanet weblogic 7.0 sp2 on hpux 11i

    My iplanet web server crashed with the following error messages found in the iplanet error log file: [11/Nov/2003:04:12:41] config ( 5180): SIGBUS 10* bus error [11/Nov/2003:04:12:41] config ( 5180): si_signo [10]: SIGBUS 10* bus error [11/Nov/2003:0

  • Helppppp!!!!!!

    okay so every time i try to open safari, a little error box shows up and says something like "a document could not be created". it also wont let me open a new window, so i have to click file and then click on open location... why is this happening??

  • Display Format (Video) Frames problem

    The timecode display when set to frames is not working correctly in CS4. When you specify Frames instead of timecode it does not change. Project Settings>General Video | Display Format | Frames Can others reproduce this? Seems like a bug to us. Link