Mobile Documents and OS X Server

Hi, I'm having problems with "mobile documents" and OS X server.
All our user accounts are on a OS X server (mountain lion). When trying to access documents on iCloud from a desktop I see following error in the logs:
2012-09-24 14:31:58 -0400 librariand[4413]: unable to enable mobile documents
2012-09-24 14:31:58 -0400 librariand[4413]: error in _handle_client_request: LibrarianErrorDomain/10/Unable to configure the collection.
2012-09-24 14:31:58 -0400 Pages[4520]: [warn]  [0.000s] com.apple. Path_Utilities.c:101 get_homedir_path_once() Home directory is not local, iCloud document storage will not work
2012-09-24 14:31:58 -0400 librariand[4413]: [ERROR] [141.284s] com.apple. framework_client.c:794 IPCSyncingEnabled() failed to contact ubd: -1
2012-09-24 14:31:58 -0400 librariand[4413]: [ERROR] [141.284s] com.apple. framework_client.c:810 IPCEnableSyncing() failed to run server: -1
2012-09-24 14:31:58 -0400 librariand[4413]: [ERROR] [141.284s] com.apple. UBService.c:598 UBServiceEnableMobileDocuments() IPCEnableSyncing failed with error: The operation couldn’t be completed. (UBErrorDomain error 8.)
2012-09-24 14:31:58 -0400 librariand[4413]: unable to enable mobile documents
2012-09-24 14:31:58 -0400 librariand[4413]: error in _handle_client_request: LibrarianErrorDomain/10/Unable to configure the collection.
2012-09-24 14:31:58 -0400 Pages[4520]: [ERROR] [0.336s] com.apple. framework_client.c:552 IPCServiceStartActivityCallback() Failed to start service activity callback
Sounds like you can't access documents on iCloud when serving your accounts from an OS X Server? Would be bad, any thoughts?
--Marcel

neuhaus,
I am discovering the same issue.  I have come to the same conclusion as you and am terribly disappointed.  Did you have any luck figuring this out?  Did you submit a bug report?
There is still one factor I am trying to isolate.  Is the version of Pages (or other iWork app) being used downloaded from the Apple Store or installed from a DVD?
Tim

Similar Messages

  • SAP Mobile Documents and Citrix NetScaler

    Hi all,
    we're aiming to implement a secure Mobile Documents server that is protected from the Internet via a solution in the DMZ. We are eschewing a reverse proxy and are going for a Citrix NetScaler instead. Has anyone tried this combination before and if yes do you have any recommendations? I'm grateful for any tips in this direction.
    Best regards,
    Daniel

    Hello Daniel,
    Happy to hear you are going to implement Mobile Documents. There are for sure certain advantages Citrix NetScaler brings. Below I am not going to argue against or pro this product.
    Beside the bunch of features you may enable to secure and monitor the traffic and prevent attacks, let me enumerate some you may want to pay attention to.
    - Content Streaming. A domain where some proxy come short due to the fact that not only do not support streaming but use also the main memory for caching.
    - URL rewriting. If you get problems here you can configure the URL rewriting directly in Mobile documents
    - Compressing. If this already happens on the NetWeaver stack, make sure you don't do it twice.
    - Security protections. We already have protections in place against SQL injection and cross-site scripting (XSS) attacks for example, make sure that you don't kill the response times by throwing everything at hand.
    - Authentication. If no VPN is configured or a second factor is used for the authentication, make a trust between the systems to avoid double authentication.
    Good Luck and please share your experience.
    Regards,
    Corneliu

  • Editing HTML source document and losing the Server Behaviour details on the panel

    Hi,
    I just noticed something;
    When I bring in and edit my HTML source document, my server behaviour goes back to Coldfusion and the record set and record insertion is missing.
    I have to Click and add it back to the panel. Is this normal ?
    Thanks

    Hi Murray,
    Sorry for the delay in getting back to you. I had to deal with an idiotic poster, each time I try to reply I get the same message from the poster about his facebook account. I have reported it and phone your company - Adobe to resolved this. His post has been deleted from the system and hopefully I am back and able to attend to your replies.
    I have moved on and recreated my pages from scratch. I have taken into consideration all your discussion with me and I only have one document. It is named and with an extension of PHP.
    I am at a point where I have no errors and found a Dreameaver bug in your Insert>Data> Insert Record option. The form action is written in Captials. As you have pointed out it should be in lower case, so did the validator. So I have recognised this whlist recreating it from scratch.
    This is now where I am. I have the form, it works, captures the users input, on click it jumps to the action page but it does not write to database table.
    I hope you dont mind, I appreciate your previous 2 post before this reply. Hence, here we are.
    Source code.
    Why does it not write to the database table?
    Please advice.
    <?php require_once('Connections/dbAttendance.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $editFormAction = $_SERVER['PHP_SELF'];
    if (isset($_SERVER['QUERY_STRING'])) {
      $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
    if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form")) {
      $insertSQL = sprintf("INSERT INTO attendlist (Windowsid, title, firstname, surname, extension, mobile, jobrole, course, cpg, mgrname, room) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)",
                           GetSQLValueString($_POST['textfield'], "text"),
                           GetSQLValueString($_POST['select'], "text"),
                           GetSQLValueString($_POST['textfield2'], "text"),
                           GetSQLValueString($_POST['textfield3'], "text"),
                           GetSQLValueString($_POST['textfield4'], "text"),
                           GetSQLValueString($_POST['textfield5'], "text"),
                           GetSQLValueString($_POST['select5'], "text"),
                           GetSQLValueString($_POST['select2'], "text"),
                           GetSQLValueString($_POST['select4'], "text"),
                           GetSQLValueString($_POST['textfield7'], "text"),
                           GetSQLValueString($_POST['select3'], "text"));
      mysql_select_db($database_dbAttendance, $dbAttendance);
      $Result1 = mysql_query($insertSQL, $dbAttendance) or die(mysql_error());
      $insertGoTo = "Thankyou.php";
      if (isset($_SERVER['QUERY_STRING'])) {
        $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
        $insertGoTo .= $_SERVER['QUERY_STRING'];
      header(sprintf("Location: %s", $insertGoTo));
    mysql_select_db($database_dbAttendance, $dbAttendance);
    $query_rsAttendance = "SELECT * FROM attendlist";
    $rsAttendance = mysql_query($query_rsAttendance, $dbAttendance) or die(mysql_error());
    $row_rsAttendance = mysql_fetch_assoc($rsAttendance);
    $totalRows_rsAttendance = mysql_num_rows($rsAttendance);
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Delegate Register</title>
    <link href="Registerpage.css" rel="stylesheet" type="text/css" />
    <link href="SpryAssets/SpryValidationTextField.css" rel="stylesheet" type="text/css" />
    <link href="SpryAssets/SpryValidationSelect.css" rel="stylesheet" type="text/css" />
    <script src="SpryAssets/SpryValidationTextField.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryValidationSelect.js" type="text/javascript"></script>
    </head>
    <body>
    <div class="container">
      <div class="header"><img src="Cerner At Imperial2.jpg" width="960" height="150" alt="" /><!-- end .header --></div>
      <div class="content">
        <h3>Register: <?php echo "Date".date("d/m/Y")?></h3>
        <form action="<?php echo $editFormAction; ?>" method="post" name="form">
          <table width="780" border="0">
            <tr>
              <td><div align="right">User ID *</div></td>
              <td><span id="sprytextfield1">
                <input name="textfield" type="text" id="textfield" tabindex="1" size="18" maxlength="10" />
              <span class="textfieldRequiredMsg">A value is required.</span></span></td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="right">Title *</div></td>
              <td><span id="spryselect1">
                <select name="select" id="select" tabindex="2">
                  <option value="0">Select</option>
                  <option value="1">Ms</option>
                  <option value="2">Mrs</option>
                  <option value="3">Mdm</option>
                  <option value="4">Dr</option>
                  <option value="5">Mr</option>
                  <option value="6">Prof</option>
                </select>
              <span class="selectRequiredMsg">Please select an item.</span></span></td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="right">First name*</div></td>
              <td><span id="sprytextfield2">
                <input name="textfield2" type="text" id="textfield2" tabindex="3" size="30" maxlength="30" />
              <span class="textfieldRequiredMsg">A value is required.</span></span></td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="right">Surname *</div></td>
              <td><span id="sprytextfield3">
                <input name="textfield3" type="text" id="textfield3" tabindex="4" size="30" maxlength="30" />
              <span class="textfieldRequiredMsg">A value is required.</span></span></td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="right">Contact / Bleep *</div></td>
              <td><span id="sprytextfield4">
                <input name="textfield4" type="text" id="textfield4" tabindex="5" size="30" maxlength="30" />
              <span class="textfieldRequiredMsg">A value is required.</span></span></td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="right">Mobile no: (optional)</div></td>
              <td><input name="textfield5" type="text" id="textfield5" tabindex="6" size="20" maxlength="20" /></td>
              <td> </td>
            </tr>
            <tr>
              <td> </td>
              <td> </td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="right">Job Role *</div></td>
              <td><span id="spryselect5">
                <select name="select5" id="select5" tabindex="7">
                  <option value="0">Select </option>
                  <option value="1">Doctor</option>
                  <option value="2">Nurse IP</option>
                  <option value="3">Nurse OP</option>
                  <option value="4">Midwife</option>
                  <option value="5">Booking Clerk</option>
                  <option value="6">Medical Secretary</option>
                  <option value="7">OP Receptionist</option>
                  <option value="9">CNS/NP</option>
                  <option value="10">Tester</option>
                </select>
              <span class="selectRequiredMsg">Please select an item.</span></span></td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="right">Manager's Name *</div></td>
              <td><span id="sprytextfield5">
                <input name="textfield7" type="text" id="textfield7" tabindex="8" size="30" maxlength="30" />
              <span class="textfieldRequiredMsg">A value is required.</span></span></td>
              <td> </td>
            </tr>
            <tr>
              <td> </td>
              <td> </td>
              <td> </td>
            </tr>
            <tr>
              <td> </td>
              <td> </td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="right">Course *</div></td>
              <td><span id="spryselect2">
                <select name="select2" id="select2" tabindex="9">
                  <option value="0">Select</option>
                  <option value="1">Demo</option>
                  <option value="2">Doctors</option>
                  <option value="9">CNS/NP</option>
                  <option value="3">Nurse IP</option>
                  <option value="4">Nurse OP</option>
                  <option value="5">Midwife</option>
                  <option value="6">Booking Clerk</option>
                  <option value="7">Medical Secretary</option>
                  <option value="8">OP Receptionist</option>
                </select>
              <span class="selectRequiredMsg">Please select an item.</span></span></td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="right">Location *</div></td>
              <td><span id="spryselect3">
                <select name="select3" id="select3" tabindex="10">
                  <option value="0">Select </option>
                  <option value="1">CHX 12 Floor Rm 1</option>
                  <option value="2">CHX 12 Floor Rm 2</option>
                  <option value="3">CHX 10 West </option>
                  <option value="4">HH N207 </option>
                  <option value="5">HH W12 Conference</option>
                  <option value="6">SMH Rm a</option>
                  <option value="7">SMH Rm b</option>
                  <option value="8">SMH Ming Wing Rm 5</option>
                  <option value="9">SMH Ming Wing Rm 3</option>
                </select>
              <span class="selectRequiredMsg">Please select an item.</span></span></td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="right">CPG *</div></td>
              <td><span id="spryselect4">
                <select name="select4" id="select4" tabindex="11">
                  <option value="0">Select </option>
                  <option value="1">CPG 1 - Medicine</option>
                  <option value="2">CPG 2 - Surgery and Cancer</option>
                  <option value="3">CPG 3 - Specialist Services </option>
                  <option value="4">CPG 4 - Circulatory Services and Renal Medicine</option>
                  <option value="5">CPG 5 - Womens and Children</option>
                  <option value="6">CPG 6 - Clinical and Investigative Sciences</option>
                  <option value="7">CPG 7 - Private Patients</option>
                  <option value="8">Others</option>
                </select>
              <span class="selectRequiredMsg">Please select an item.</span></span></td>
              <td> </td>
            </tr>
            <tr>
              <td> </td>
              <td><input name="button" type="submit" id="button" formaction="Thankyou.php" value="Submit" /></td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="center">*Mandatory fields </div></td>
              <td> </td>
              <td> </td>
            </tr>
          </table>
          <input type="hidden" name="MM_insert" value="form" />
        </form>
    <!-- end .content --></div>
      <div class="footer">
      <!-- end .footer --></div>
      <!-- end .container --></div>
    <script type="text/javascript">
    var sprytextfield1 = new Spry.Widget.ValidationTextField("sprytextfield1", "none", {validateOn:["blur", "change"]});
    var spryselect1 = new Spry.Widget.ValidationSelect("spryselect1", {validateOn:["change", "blur"]});
    var sprytextfield2 = new Spry.Widget.ValidationTextField("sprytextfield2", "none", {validateOn:["blur", "change"]});
    var sprytextfield3 = new Spry.Widget.ValidationTextField("sprytextfield3", "none", {validateOn:["blur", "change"]});
    var sprytextfield5 = new Spry.Widget.ValidationTextField("sprytextfield5", "none", {validateOn:["blur", "change"]});
    var spryselect2 = new Spry.Widget.ValidationSelect("spryselect2", {validateOn:["change", "blur"]});
    var spryselect3 = new Spry.Widget.ValidationSelect("spryselect3", {validateOn:["change", "blur"]});
    var spryselect4 = new Spry.Widget.ValidationSelect("spryselect4", {validateOn:["change", "blur"]});
    var sprytextfield4 = new Spry.Widget.ValidationTextField("sprytextfield4", "none", {validateOn:["blur", "change"]});
    var spryselect5 = new Spry.Widget.ValidationSelect("spryselect5", {validateOn:["blur", "change"]});
    </script>
    </body>
    </html>
    <?php
    mysql_free_result($rsAttendance);
    ?>

  • Mobile me and microsoft exchange server

    i basically own an iphone, and was wondering with the new iphone 2.0 software due in a couple of weeks if it was possible to use both a mobile me account along with my works microsoft exchange server on the iphone. i know you can use multiple account on the current version of the iphone but wasnt sure if this was capable with an exchange server and a mobile me account.
    thanks in advance

    bradneal wrote:
    Paul,
    I hope you are right, but I fear you are not.
    I was told by my att guy that if I wanted to access my Exchange Server that I would have to pay the extra $15/mo. When I questioned him, he told that the only difference between the standard and the Enterprise accounts was the Exchange Server option.
    Again, it would be really nice if that turns out not to be the case, because I will probably just stick with the standard service rather than pay the additional $15 just for Push.
    I'm sorry to say this, but he is wrong.
    All of our hand held users at out office have phones that are paid for on their own account. We do not utilize business accounts. They are able to get ActiveSync just fine.
    Even from AT&T's own main page on individual accounts [here|http://www.wireless.att.com/cell-phone-service/legal/plan-terms.jsp] they do not make any statement that you must have a business account to access exchange. AT&T does not make this requirement for any of their Windows Mobile phones with ActiveSync. None. Why would this be different with the iPhone?
    I am sorry to tell you that if enterprise mail was not included on individual accounts, than why do their terms or usage talk about it. If corporate access to email was prerequisite by a business account, than why do their personal account pages mention corporate email access. Their Business page only applies to partnerships that AT&T has with various business. For proof I went to their page and entered in my email address. Sure enough, I [failed|http://www.wireless.att.com/businesscenter/auth_fail.jsp]. This was why:
    Your company or school web site address was not found in our records. Check with your Telecom or Benefits Administrator to see if your company or school is a current AT&T business customer.
    We don't have a partnership with AT&T. I know this already. Yet at the same time I know several people in out organization that use ActiveSync and have AT&T personal account - I know that for a fact since I spoke with them about it. They have no restrictions. By your assertion, since we are not a business customer, several employees should not be accessing Exchange. They are.

  • Mobile documents and SAP DMS?

    Hi all,
    Anybody knows if there is a plan to get this supported?
    Regards,
    Espen Leknes

    Hi,
    Options are explored for next release SP3 (mid October). Most probably we will get read only access to the PLM content.
    We will keep you posted.
    Regards,
    Ashwani Kr Sharma

  • ICloud mobile documents & OS X Server

    Hi, I'm having problems with "mobile documents" and OS X server.
    All our user accounts are on a OS X server (mountain lion). When trying to access documents on iCloud from a desktop I see following error in the logs:
    2012-09-24 14:31:58 -0400 librariand[4413]: unable to enable mobile documents
    2012-09-24 14:31:58 -0400 librariand[4413]: error in _handle_client_request: LibrarianErrorDomain/10/Unable to configure the collection.
    2012-09-24 14:31:58 -0400 Pages[4520]: [warn]  [0.000s] com.apple. Path_Utilities.c:101 get_homedir_path_once() Home directory is not local, iCloud document storage will not work
    2012-09-24 14:31:58 -0400 librariand[4413]: [ERROR] [141.284s] com.apple. framework_client.c:794 IPCSyncingEnabled() failed to contact ubd: -1
    2012-09-24 14:31:58 -0400 librariand[4413]: [ERROR] [141.284s] com.apple. framework_client.c:810 IPCEnableSyncing() failed to run server: -1
    2012-09-24 14:31:58 -0400 librariand[4413]: [ERROR] [141.284s] com.apple. UBService.c:598 UBServiceEnableMobileDocuments() IPCEnableSyncing failed with error: The operation couldn’t be completed. (UBErrorDomain error 8.)
    2012-09-24 14:31:58 -0400 librariand[4413]: unable to enable mobile documents
    2012-09-24 14:31:58 -0400 librariand[4413]: error in _handle_client_request: LibrarianErrorDomain/10/Unable to configure the collection.
    2012-09-24 14:31:58 -0400 Pages[4520]: [ERROR] [0.336s] com.apple. framework_client.c:552 IPCServiceStartActivityCallback() Failed to start service activity callback
    Sounds like you can't access document on iCloud when running your accounts from an OS X Server? Would be bad, any thoughts?
    --Marcel

    Server Forum is over here:
    https://discussions.apple.com/community/servers_enterprise_software/os_x_server
    You may get an answer there if no one here knows?

  • Yosemite ate my Mobile Documents

    Hi.  first post so please be gentle with me.
    I have iMac and AirBook which were both running Mavericks.  i used Mobile Documents to allow me to access files across both machines.
    i recently upgraded both machines to Yosemite.  Installation seems to go OK.  However the migration from Mobile Documents to Cloud Drive seems to have failed.  Mobile Documents no longer available (as expected) but they aren't available in Cloud Drive (which is where I understood they would appear after the upgrade).
    Recovery from Time Machines doesn't appear to be available (or i am not accessing properly).
    Can anyone offer suggestions?
    Thx
    Dayle

    Hi,
    I have similar problems after upgrading my machine from Mavericks to Yosemite. It is strange, because some programs refers to the path I used with Mavericks to the Mobile Documents AND IT WORKS (programs can read and write into the path), but I can not see the folders by using Yosemite with the Finder. I can just see the same level I can open with the Web-iCloud. I'm sure there is nothing lost, but I need access with the Finder. I activated the feature Show Hidden Files, but it wasn't the solution.
    I hope you can help me to read out my folders in Mobile Documents with the Finder on the same way I could before I upgraded.
    Kindly greetings

  • I have a new lion server and 4 lion laptops. The laptops loose connection to the shared documents and printers from the server after roughly 1 hour. By disconnecting and re-connecting wireless the connection is regained to shares and printers

    I have a new lion server and 4 lion laptops. The laptops loose connection to the shared documents and printers from the server after roughly 1 hour. By disconnecting and re-connecting wireless the connection is regained to shares and printers. We can still surf the web when it goes down.

    Ok 1st one. The warning restriction message relates to this line in main.cf:
    smtpd_helo_restrictions = permit_sasl_authenticated  permit_mynetworks  check_helo_access hash:/etc/postfix/helo_access  reject_non_fqdn_hostname  reject_invalid_hostname  permit reject_invalid_helo_hostname
    The last reject occurs after the single word "permit" and is ignored.
    However, that's not the problem.
    I'm not exactly sure what's happening, but this might be a clue.
    It would appear that either postfix is not being able to create the socket for private/policy or it's somehow created with the wrong permissions.  You might need to ramp up the debug level to get a better idea.
    You could check if it's being created by "netstat -a | grep private/policy" in terminal.
    My guess is that it's not being created because there is no setup statement in your master.cf file, but I don't understand why postfix would be looking for it if it isn't set up.  Private/policy I think relates to grey listing.  Maybe gives you a hint.

  • Mobile Phone App and Azure MFA Server

    I currently have directory sync enabled between my on-premise AD environment and Azure Active Directory, and also enabled multi-factor authentication on my profile. I installed PhoneFactor on my mobile device and am able to use it to verify my identity when
    logging into my O365 OWA account.
    I recently installed and configured the Multi-Factor Authentication Server to enable RADIUS requests for VPN connections, and have successfully tested MFA using the phone call method (when I connect via VPN client, I provide credentials, and receive a call
    to verify my identity, press # and connection is accepted).
    What am having trouble doing is using the mobile app as a method for verification. When I try to connect, I immediately receive 'Login Failed,' and there are no indications in PhoneFactor for an authentication request.
    In the MFA Server logs, I see two entries:
    No device configured for user '[email protected]'
    PfAuth failed for user '[email protected]'. Call status: SKIPPED_USER_INCOMPLETE - "User lacks information required for phone auth".
    I have read guidelines on creating a user portal within my network for self-registration, but I was hoping I could just use the Azure-provided portal.
    Anyone have any ideas why this may be happening?

    At present, the MFA Server user enrollment is completely separate from Azure AD. If you want to use the mobile app with the MFA Server, you need to install the User Portal so that users can generate activation codes and set their MFA method to mobile app.
    Also, for users to activate their mobile apps, you have to install the Mobile App Web Service, which communicates with the MFA Server via the Web Service SDK to validate the activation code generated in the User Portal. Here are links for installing the User
    Portal and Mobile App Web Service.
    https://msdn.microsoft.com/en-us/library/azure/dn394290.aspx
    https://msdn.microsoft.com/en-us/library/azure/dn394277.aspx?f=255&MSPPError=-2147217396

  • How  To create a new word document and to serve bookmarks

    how To create a new word document and to serve bookmarks

    there is an example :
    http://www.must.de/default.html?Javactpe.htm
    howerver ,I don't kown how to use in jsp!!

  • Want document about  weblogic 5.1,6.1 , 7.0 and 8.1 server performace matrix

    hi,Guys
    Where can I find the document about weblogic 5.1,6.1 , 7.0 and 8.1
    server performace matrix? currently we want to update our system from
    5.1 to the most recent WLS, everyone know WLS 8.1 is running faster than
    5.1, who can tell me how faster it can be based on very generically way.
    thanks,
    Roy

    Where can I find the document about weblogic 5.1,6.1 , 7.0 and 8.1
    server performace matrix?Roy asks a great question - and I've been searching Weblogic site for the info
    myself.
    From a management perspective, it takes time and money to upgrade to the latest
    WLS.
    I need to put together a business case for management illustrating a Cost/Benefits
    analysis.
    If I can point to sources were people upgraded from 5.1/1.3.1 to 8.0/1.3.1 and
    achived an XX% increase; then I can relate that to the cost of upgrading hardware/etc
    - and better decide where to spend the money.
    If anybody has the numbers or experience - I'd love to hear from you.
    Thanks

  • Installing and configuring Exchange Server 2013 on mobile boradband

    I'm trying to configure Exchange Server 2013 on my test server. But I have a mobile boradband connection for Internet. Therefore, I don't have port forwarding and a static IP. Since I'm a beginner, I want to know whether I can install and configure exchange
    server on my machine or whether there are workarounds for this. Thanks. 

    Hi,
    If you just want to work internally, I suggest build AD and DNS server on your lab and give it a static IP.
    If you want to work both internally and externally, I suggest publish your DNS.
    Thanks
    Mavis
    Mavis Huang
    TechNet Community Support

  • Mobile Documents Folder Missing in 10.7.3?

    I have a 13" MacBook Air and a 27" iMac that I just did the combo update to 10.7.3.  Since I have updated, I am missing the mobile documents folder.  If I upload a pages document to icloud.com on my iMac and then go to icloud.com on my MacBook Air, it show's the file, however, it's the default pages icon, and it doesn't give me the opportunity to download it. 
    Because of this, I thought I'd look in the "Mobile Documents" folder and see if I can access it from there.  However not that folder is missing.  I have tried many different ways to get it to show up but I've been unable to. 
    I'm curious if Apple realized some people were using this folder as a "Dropbox" and disabled or further hid the folder so people can't sync files back and forth.  More importantly, why doesn't icloud.com work for me as it used to?
    Anyone have this happen to them?
    Anyone know of any tricks to get the Mobile Documents folder to show up in 10.7.3?
    Please help!

    I can add a very related problem about this folder, after Lion 10.7.3 update.
    I have a Goodreader app on my iPad and I used to use ~/Mobile Documents/.../Documents folder to transfer files
    between my Mac and iPad.
    After I updated my Mac to Lion 10.7.3, this method no longer works. Changes I make on my Mac's 
    ~/Mobile Documents/.../Documents folder are no longer sent to the iCloud server and hence not pushed to my iPad. On the other hand, changes made on my iPad's Goodreader app continue to show up on the iCloud server, but they don't get pushed to my Mac.
    So I confirm that this update causes problems.

  • Error while uploading images to SAP Mobile Documents from iPad application using ObjectiveCMIS.

    Hi,
    I am getting the error while uploading images to SAP Mobile Documents from custom iOS(iPad )application using ObjectiveCMIS library.
    My Custom method is as follows:
    - (void)createSalesOrderRouteMapImageInFolder:(NSString*)salesOrderRouteMapFolderId routeMapImageTitle:(NSString *)imageTitle routeMapContent:(NSData *)imageData
        NSInputStream *inputStream = [NSInputStream inputStreamWithData:imageData];
        NSMutableDictionary *properties = [NSMutableDictionary dictionary];
        [properties setObject:[NSString stringByAppendingFileExtension:imageTitle] forKey:@"cmis:name"];
        [properties setObject:@"cmis:document" forKey:@"cmis:objectTypeId"];
        [self.session createDocumentFromInputStream:inputStream
                                           mimeType:@"image/png"
                                         properties:properties
                                           inFolder:salesOrderRouteMapFolderId
                                      bytesExpected:[imageData length]
                                    completionBlock:^(NSString *objectId, NSError *error) {
                                        NSLog(@"Object id is %@",objectId);
                                        if(error == nil) {
                                            [inputStream close];
                                            NSLog(@"Uploading Sales order route map successfully.");
                                            [[NSNotificationCenter defaultCenter] postNotificationName:SaveOrderSuccessNotification object:nil];
                                        } else {
                                            [inputStream close];
                                            NSLog(@"Uploading sales order route map failed.");
                                            [[NSNotificationCenter defaultCenter] postNotificationName:SaveOrderFailedNotification object:error];
                                    } progressBlock:^(unsigned long long bytesUploaded, unsigned long long bytesTotal) {
                                        NSLog(@"uploading... (%llu/%llu)", bytesUploaded, bytesTotal);
    OBjectiveCMIS Method in which i am getting error during upload:
    - (void)sendAtomEntryXmlToLink:(NSString *)link
                 httpRequestMethod:(CMISHttpRequestMethod)httpRequestMethod
                        properties:(CMISProperties *)properties
                contentInputStream:(NSInputStream *)contentInputStream
                   contentMimeType:(NSString *)contentMimeType
                     bytesExpected:(unsigned long long)bytesExpected
                       cmisRequest:(CMISRequest*)request
                   completionBlock:(void (^)(CMISObjectData *objectData, NSError *error))completionBlock
                     progressBlock:(void (^)(unsigned long long bytesUploaded, unsigned long long bytesTotal))progressBlock
        // Validate param
        if (link == nil) {
            CMISLogError(@"Must provide link to send atom entry");
            if (completionBlock) {
                completionBlock(nil, [CMISErrors createCMISErrorWithCode:kCMISErrorCodeInvalidArgument detailedDescription:nil]);
            return;
        // generate start and end XML
        CMISAtomEntryWriter *writer = [[CMISAtomEntryWriter alloc] init];
        writer.cmisProperties = properties;
        writer.mimeType = contentMimeType;
        NSString *xmlStart = [writer xmlStartElement];
        NSString *xmlContentStart = [writer xmlContentStartElement];
        NSString *start = [NSString stringWithFormat:@"%@%@", xmlStart, xmlContentStart];
        NSData *startData = [NSMutableData dataWithData:[start dataUsingEncoding:NSUTF8StringEncoding]];
        NSString *xmlContentEnd = [writer xmlContentEndElement];
        NSString *xmlProperties = [writer xmlPropertiesElements];
        NSString *end = [NSString stringWithFormat:@"%@%@", xmlContentEnd, xmlProperties];
        NSData *endData = [end dataUsingEncoding:NSUTF8StringEncoding];
        // The underlying CMISHttpUploadRequest object generates the atom entry. The base64 encoded content is generated on
        // the fly to support very large files.
        [self.bindingSession.networkProvider invoke:[NSURL URLWithString:link]
                                         httpMethod:httpRequestMethod
                                            session:self.bindingSession
                                        inputStream:contentInputStream
                                            headers:[NSDictionary dictionaryWithObject:kCMISMediaTypeEntry forKey:@"Content-type"]
                                      bytesExpected:bytesExpected
                                        cmisRequest:request
                                          startData:startData
                                            endData:endData
                                  useBase64Encoding:YES
                                    completionBlock:^(CMISHttpResponse *response, NSError *error) {
                                        if (error) {
                                            CMISLogError(@"HTTP error when sending atom entry: %@", error.userInfo.description);
                                            if (completionBlock) {
                                                completionBlock(nil, error);
                                        } else if (response.statusCode == 200 || response.statusCode == 201 || response.statusCode == 204) {
                                            if (completionBlock) {
                                                NSError *parseError = nil;
                                                CMISAtomEntryParser *atomEntryParser = [[CMISAtomEntryParser alloc] initWithData:response.data];
                                                [atomEntryParser parseAndReturnError:&parseError];
                                                if (parseError == nil) {
                                                    completionBlock(atomEntryParser.objectData, nil);
                                                } else {
                                                    CMISLogError(@"Error while parsing response: %@", [parseError description]);
                                                    completionBlock(nil, [CMISErrors cmisError:parseError cmisErrorCode:kCMISErrorCodeRuntime]);
                                        } else {
                                            CMISLogError(@"Invalid http response status code when sending atom entry: %d", (int)response.statusCode);
                                            CMISLogError(@"Error content: %@", [[NSString alloc] initWithData:response.data encoding:NSUTF8StringEncoding]);
                                            if (completionBlock) {
                                                completionBlock(nil, [CMISErrors createCMISErrorWithCode:kCMISErrorCodeRuntime
                                                                                     detailedDescription:[NSString stringWithFormat:@"Failed to send atom entry: http status code %li", (long)response.statusCode]]);
                                      progressBlock:progressBlock];
    Attaching the logs:
    ERROR [CMISAtomPubBaseService sendAtomEntryXmlToLink:httpRequestMethod:properties:contentInputStream:contentMimeType:bytesExpected:cmisRequest:completionBlock:progressBlock:] HTTP error when sending atom entry: Error Domain=org.apache.chemistry.objectivecmis Code=260 "Runtime Error" UserInfo=0x156acfa0 {NSLocalizedDescription=Runtime Error, NSLocalizedFailureReason=ASJ.ejb.005044 (Failed in component: sap.com/com.sap.mcm.server.nw) Exception raised from invocation of public void com.sap.mcm.server.service.AbstractChangeLogService.updateChangeLog(java.lang.String,boolean) throws com.sap.mcm.server.api.exception.MCMException method on bean instance com.sap.mcm.server.nw.service.NwChangeLogService@4e7989f3 for bean sap.com/com.sap.mcm.server.nw*annotation|com.sap.mcm.server.nw.ejb.jar*annotation|NwChangeLogService in application sap.com/com.sap.mcm.server.nw.; nested exception is: javax.ejb.EJBTransactionRolledbackException: ASJ.ejb.005044 (Failed in component: sap.com/com.sap.mcm.server.nw) Exception raised from invocation of public com.sap.mcm.server.model.ChangeLog com.sap.mcm.server.dao.impl.ChangeLogDaoImpl.findByUserId(java.lang.String) method on bean instance com.sap.mcm.server.dao.impl.ChangeLogDaoImpl@2852b733 for bean sap.com/com.sap.mcm.server.nw*annotation|com.sap.mcm.server.nw.ejb.jar*annotation|ChangeLogDaoImpl in application sap.com/com.sap.mcm.server.nw.; nested exception is: javax.persistence.NonUniqueResultException: More than 1 objects of type ChangeLog found with userId=25f8928e-8ba0-4edd-b08e-43bf6fb78f1a; nested exception is: javax.ejb.EJBException: ASJ.ejb.005044 (Failed in component: sap.com/com.sap.mcm.server.nw) Exception raised from invocation of public com.sap.mcm.server.model.ChangeLog com.sap.mcm.server.dao.impl.ChangeLogDaoImpl.findByUserId(java.lang.String) method on bean instance com.sap.mcm.server.dao.impl.ChangeLogDaoImpl@2852b733 for bean sap.com/com.sap.mcm.server.nw*annotation|com.sap.mcm.server.nw.ejb.jar*annotation|ChangeLogDaoImpl in application sap.com/com.sap.mcm.server.nw.; nested exception is: javax.persistence.NonUniqueResultException: More than 1 objects of type ChangeLog found with userId=25f8928e-8ba0-4edd-b08e-43bf6fb78f1a}
    2015-03-12 04:08:31.634 Saudi Ceramics[4867:351095] Uploading sales order route map failed.

    Hi Sukalyan,
    Have you checked the below links?
    These will give you step by step implementation procedure.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a099a3bd-17ef-2b10-e6ac-9c1ea42af0e9?quicklink=index&overridelayout=true
    http://wiki.sdn.sap.com/wiki/display/WDJava/KmuploadusingWebdynproapplication
    Regards,
    Sandip

  • SAP Mobile Documents buttons missing

    Hi gurus,
    I have installed SAP Mobile Documents server, and mobile applications on devices are working as expected, but web app is not showing action buttons (create, share, delete ...) when a file is selected, only info properties icon (with letter i shows up) and there is no logon info or help buttons in the upper right corner of the screen.
    Does anyone have an idea, what could be the problem? Version of MCM server is SP2 patch3.
    BR, Igor

    Hi,
    looking at the screenshot (especially the weird looking checkboxes to the left of the items of the table), it seems that the UI5 Version is not the one we need. You should at least have UI5 Version 1.16.5. You can find out which version is used if you press CTRL+ALT+SHIFT+P. A popup should get displayed, showing some general information about UI5.
    Best Regards,
    Ingo

Maybe you are looking for

  • Inclusive and Exclusive Free Goods

    Hello Folks, I wish to get confirmation on the following understanding: 1. Free goods must be of the same material for  Inclusive bonus quantity method. 2. For Exclusive method it can be either same or different material. Or must it be different mate

  • Number of Line Items Issue at the time of Payroll posting

    Dear All, While creating a posting document (Payroll posting) for FI, the maximum number of line item allowed is 999 where as I have 1464 line items. I am creating only one document based on Company code and it is giving me the following error, which

  • Imported slide show into PE11 and some pics rotated unexpectedly, How can get back to horizontal?

    Imported slide show into PE11 and some pics rotated unexpectedly, How can get back to horizontal?

  • Filemanagerimpl.cpp-94 with Drag and Drop .mov files

    I am working with DSLR footage (1920 x 1080 24p .mov) and for some reson CS5 Premiere Pro will crash randomly (usually about every 2nd-3rd file I import) with a debug event and the dreaded filemanagerimpl.cpp-94 error. I can only find posts about thi

  • Online Backup Recovery Error-1033

    Hi, 1.I took a successful Online Backup for Net Weaver Sytem through DB13 Functionality. 2.Database is Oracle . 3.When I try to Restore the Backup through BRTOOLS on the Server ,It gives SQL Error 1033. Pl. find the enclosed Error Details: Starting u