Unable to download Document using the GET_FILE service

Hi,
I have a custom component-custom service being called from a workflow,which downloads the file to an external folder every time a check in is performed with parameters matching the criteria of the workflow.
Now the issue is every time the file is checked in for the first time,the file which gets downloaded only has the binder information with the status message as:
"StatusMessage=Unable to download 'ABC022257'.Unable to find latest revision for item 'ABC022257'."
Can anyone point out to probable causes??

I'm using the following piece of code to download the file :
               IdcClient client = getClient();
               IdcContext IdcContext = getUserContext();
               DataBinder dataBinder = client.createBinder();
               SystemUtils.trace("system", "dID in getFile>>>>>>>>>>" + dID);
               dataBinder.putLocal("IdcService", "GET_FILE");
               dataBinder.putLocal("dID", dID);
               dataBinder.putLocal("dDocName", contentID);
     ServiceResponse response = client.sendRequest(IdcContext, dataBinder);
     stream = response.getResponseStream();
File f = new File(fileSaveLocation);
                    OutputStream out = new FileOutputStream(f);
                    byte buf[] = new byte[1024];
                    int len;
                    while ((len = stream.read(buf)) > 0)
                    out.write(buf, 0, len);
                    out.close();
Also,I'm getting following error in the logs,although i did a fresh check in:
!csUserEventMessage,weblogic,CIS!$ intradoc.common.ServiceException: !csUnableToDownload,ABC003803
services/3     05.24 12:32:38.460     IdcServer-213     *ScriptStack GET_FILE
services/3     05.24 12:32:38.460     IdcServer-213     3:computeDocID,dID=3018,dDocName=ABC003803
services/3     05.24 12:32:38.460     IdcServer-213     at intradoc.server.ServiceRequestImplementor.buildServiceException(ServiceRequestImplementor.java:2115)
services/3     05.24 12:32:38.460     IdcServer-213     at intradoc.server.Service.buildServiceException(Service.java:2326)
services/3     05.24 12:32:38.460     IdcServer-213     at intradoc.server.Service.createServiceExceptionEx(Service.java:2320)
services/3     05.24 12:32:38.460     IdcServer-213     at intradoc.server.Service.createServiceException(Service.java:2315)
services/3     05.24 12:32:38.460     IdcServer-213     at intradoc.server.FileService.computeDocID(FileService.java:423)
services/3     05.24 12:32:38.460     IdcServer-213     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
services/3     05.24 12:32:38.460     IdcServer-213     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
services/3     05.24 12:32:38.460     IdcServer-213     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
services/3     05.24 12:32:38.460     IdcServer-213     at java.lang.reflect.Method.invoke(Method.java:597)
services/3     05.24 12:32:38.460     IdcServer-213     at intradoc.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:86)
services/3     05.24 12:32:38.460     IdcServer-213     at intradoc.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:310)
services/3     05.24 12:32:38.460     IdcServer-213     at intradoc.common.ClassHelperUtils.executeMethod(ClassHelperUtils.java:295)
services/3     05.24 12:32:38.460     IdcServer-213     at intradoc.server.Service.doCodeEx(Service.java:620)
services/3     05.24 12:32:38.460     IdcServer-213     at ziprenditions.ZipRenditionsHandler.callMethodRecursively(ZipRenditionsHandler.java:1703)
services/3     05.24 12:32:38.460     IdcServer-213     at ziprenditions.ZipRenditionsHandler.computeDocID(ZipRenditionsHandler.java:699)
services/3     05.24 12:32:38.460     IdcServer-213     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
services/3     05.24 12:32:38.460     IdcServer-213     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
services/3     05.24 12:32:38.460     IdcServer-213     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
services/3     05.24 12:32:38.460     IdcServer-213     at java.lang.reflect.Method.invoke(Method.java:597)
services/3     05.24 12:32:38.460     IdcServer-213     at intradoc.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:86)
services/3     05.24 12:32:38.460     IdcServer-213     at intradoc.common.ClassHelperUtils.executeMethodReportStatus(ClassHelperUtils.java:324)
services/3     05.24 12:32:38.460     IdcServer-213     at intradoc.server.ServiceHandler.executeAction(ServiceHandler.java:79)
services/3     05.24 12:32:38.460     IdcServer-213     at intradoc.server.Service.doCodeEx(Service.java:603)
services/3     05.24 12:32:38.460     IdcServer-213     at intradoc.server.Service.doCode(Service.java:575)
services/3     05.24 12:32:38.460     IdcServer-213     at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1643)
services/3     05.24 12:32:38.460     IdcServer-213     at intradoc.server.Service.doAction(Service.java:547)
services/3     05.24 12:32:38.460     IdcServer-213     at intradoc.server.ServiceRequestImplementor.doActions(ServiceRequestImplementor.java:1458)
services/3     05.24 12:32:38.460     IdcServer-213     at intradoc.server.Service.doActions(Service.java:542)
services/3     05.24 12:32:38.460     IdcServer-213     at intradoc.server.ServiceRequestImplementor.executeActions(ServiceRequestImplementor.java:1391)
services/3     05.24 12:32:38.460     IdcServer-213     at intradoc.server.Service.executeActions(Service.java:528)
services/3     05.24 12:32:38.460     IdcServer-213     at intradoc.server.ServiceRequestImplementor.doRequest(ServiceRequestImplementor.java:737)
services/3     05.24 12:32:38.460     IdcServer-213     at intradoc.server.Service.doRequest(Service.java:1956)
services/3     05.24 12:32:38.460     IdcServer-213     at intradoc.server.ServiceManager.processCommand(ServiceManager.java:437)
services/3     05.24 12:32:38.460     IdcServer-213     at intradoc.server.IdcServerThread.processRequest(IdcServerThread.java:265)
services/3     05.24 12:32:38.460     IdcServer-213     at intradoc.server.IdcServerThread.run(IdcServerThread.java:160)
services/3     05.24 12:32:38.460     IdcServer-213     at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545)
services/3     05.24 12:32:38.460     IdcServer-213     at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
services/3     05.24 12:32:38.460     IdcServer-213     at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
services/3     05.24 12:32:38.460     IdcServer-213     Caused by: intradoc.common.ServiceException: !csItemNoLongerInSystem2,ABC003803,3018
services/3     05.24 12:32:38.460     IdcServer-213     at intradoc.server.utils.FileRevisionSelectionUtils.computeDocumentRevisionInfo(FileRevisionSelectionUtils.java:487)
services/3     05.24 12:32:38.460     IdcServer-213     at intradoc.server.FileService.computeDocID(FileService.java:418)
services/3     05.24 12:32:38.460     IdcServer-213     ... 33 more
Edited by: user1175496 on May 24, 2013 12:04 AM

Similar Messages

  • Downloading and saving documents using the latest version of Firefox is problematic.

    I am having bad experiences in downloading documents using the latest version of Firefox. When one downloads one is offered the option of opening or saving the document. When you select save it does not give you the option of saving it to a folder on your hard drive. You need to open it anyway in order to save it to a desired location. If you simply hit save its only saved to a temporary or downloads folder - and these can never be found again once you close the doc. Last night I lost many hours of work on a document in this way. It would be great if this could be sorted because I enjoy using Firefox. But I have now lost several documents inadvertantly and there is extra work in saving items - which is beginning to be quite a drag. Kind regards, Howard Varney. .

    You are indeed up to date. Firefox stopped using that address as its default start page when 4.0 came out - the page you're using may be (wrongly) assuming that if you're looking at it, you must still be on Firefox 3.6.
    If you [[How to set the home page#w_restore-the-default-home-page|restore the default home page]] you should get more up-to-date information.

  • Droid 3 - Unable to connect to AT&T U-verse wireless network and unable to download apps using 3G

    Hi,
     I just purchased a DROID 3.  It will not connect to my home network which is AT&T U-verse.  It goes through the authentication process and then Wi-Fi shows as disconnected and the network shows as disabled.  Everything else is connecting to the router just fine, computers, printers, blackberry. I have toggled wi-fi on and off and get the same result.
    I was able to connect to other wireless networks, AT&T DSL, mobile hotspots, just not AT&T U-verse.
    In addition, I am unable to download apps using the 3G network.
    Any solutions out there?
    Thanks

    masirider wrote:
    Thanks for responding.  I've tried all of those already.  I've also manually configured my home wi-fi connection via "Add Wi-Fi network.  It still goes through the authentication process and disconnects.
    Is there something that needs to be configured on my router.  It's a 2Wire 3800HGV-B.
    Regarding downloads, I have a gmail ccount.  The message is that I need a Wi-Fi connection in order to download.
    Thanks
    On my router, it is set to accept connections only from devices (MAC Addresses) I allow. Maybe you have yours set up that way.
    Also if you have a passcode on the router, you will need to search for the device, then add the passcode to your phone.

  • Error: Unable to download document : "xml/motd.xml"

    Hi,
    I got the following error messages when downloading patches on my sunUC clients:
    # smpatch download -i 118833-36
    Error: Unable to download document : "xml/motd.xml"
    Cannot connect to retrieve xml/motd.xml: Bad Request
    Unable to display any message of the day notices from Sun Microsystems. Refer to the log file for additional information.
    118833-36 has been validated.
    I looked at all the log files in /var/sadm/spool and couldn't find anything related to the error messages.
    The patch 118833-36 was downloaded and installed fine.

    Moderador,
    Based on your request, I run 4 test scenarios that might provide some useful information.
    Content of /var/sadm/spool/patchsvr
    root@b3osdsun01:/root# ls -laR /var/sadm/spool/patchsvr
    /var/sadm/spool/patchsvr:
    total 36
    drwxr-xr-x 6 root sys 512 Sep 9 05:36 .
    drwxr-xr-x 8 root sys 7168 Feb 24 12:39 ..
    drwxr-xr-x 2 root root 3072 Feb 24 09:52 Database
    drwxr-xr-x 2 root sys 1024 Feb 24 06:11 Misc
    drwxr-xr-x 2 root sys 3072 Feb 24 00:03 Patches
    drwxr-xr-x 2 root root 2560 Feb 24 09:52 entitlement
    /var/sadm/spool/patchsvr/Database:
    total 1208
    drwxr-xr-x 2 root root 3072 Feb 24 09:52 .
    drwxr-xr-x 6 root sys 512 Sep 9 05:36 ..
    -rw-r--r-- 1 root root 291567 Oct 14 07:18 https%3A%2F%2Fgetupdates.sun.com%2Fsolaris%2F%2FDatabase%2Fcurrent.zip
    -rw-r--r-- 1 root root 0 Oct 1 12:29 https%3A%2F%2Fgetupdates.sun.com%2Fsolaris%2F%2FDatabase%2Fcurrent.zip32460
    -rw-r--r-- 1 root root 0 Oct 1 12:30 https%3A%2F%2Fgetupdates.sun.com%2Fsolaris%2F%2FDatabase%2Fcurrent.zip32462
    -rw-r--r-- 1 root root 0 Oct 1 12:39 https%3A%2F%2Fgetupdates.sun.com%2Fsolaris%2F%2FDatabase%2Fcurrent.zip32464
    -rw-r--r-- 1 root root 0 Oct 1 12:48 https%3A%2F%2Fgetupdates.sun.com%2Fsolaris%2F%2FDatabase%2Fcurrent.zip32466
    -rw-r--r-- 1 root root 0 Oct 1 13:01 https%3A%2F%2Fgetupdates.sun.com%2Fsolaris%2F%2FDatabase%2Fcurrent.zip32468
    -rw-r--r-- 1 root root 0 Oct 1 13:08 https%3A%2F%2Fgetupdates.sun.com%2Fsolaris%2F%2FDatabase%2Fcurrent.zip32470
    -rw-r--r-- 1 root root 298728 Feb 23 17:11 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip
    -rw-r--r-- 1 root root 0 Feb 23 20:57 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip261
    -rw-r--r-- 1 root root 0 Feb 23 21:00 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip264
    -rw-r--r-- 1 root root 0 Feb 23 21:09 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip267
    -rw-r--r-- 1 root root 0 Feb 23 21:11 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip269
    -rw-r--r-- 1 root root 0 Feb 23 21:18 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip272
    -rw-r--r-- 1 root root 0 Feb 23 21:19 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip274
    -rw-r--r-- 1 root root 0 Feb 23 21:21 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip276
    -rw-r--r-- 1 root root 0 Feb 23 21:24 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip279
    -rw-r--r-- 1 root root 0 Feb 23 21:29 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip281
    -rw-r--r-- 1 root root 0 Feb 23 21:46 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip284
    -rw-r--r-- 1 root root 0 Feb 23 22:11 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip286
    -rw-r--r-- 1 root root 0 Feb 23 22:31 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip289
    -rw-r--r-- 1 root root 0 Feb 23 23:05 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip292
    -rw-r--r-- 1 root root 0 Feb 24 00:01 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip295
    -rw-r--r-- 1 root root 0 Feb 24 00:01 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip296
    -rw-r--r-- 1 root root 0 Feb 24 00:01 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip297
    -rw-r--r-- 1 root root 0 Feb 24 05:44 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip301
    -rw-r--r-- 1 root root 0 Feb 24 05:48 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip304
    -rw-r--r-- 1 root root 0 Feb 24 06:11 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip307
    -rw-r--r-- 1 root root 0 Feb 24 08:12 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip309
    -rw-r--r-- 1 root root 0 Feb 24 09:43 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip311
    -rw-r--r-- 1 root root 0 Feb 24 09:52 https%3A%2F%2Fgetupdates1.sun.com%2F%2FDatabase%2FDatabase%2Fcurrent.zip313
    /var/sadm/spool/patchsvr/Misc:
    total 14228
    drwxr-xr-x 2 root sys 1024 Feb 24 06:11 .
    drwxr-xr-x 6 root sys 512 Sep 9 05:36 ..
    -rw-r--r-- 1 root root 3611154 Oct 14 07:18 https%3A%2F%2Fgetupdates.sun.com%2Fsolaris%2F%2Fdetectors.jar
    -rw-r--r-- 1 root root 3646470 Feb 23 17:12 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fdetectors.jar
    -rw-r--r-- 1 root root 0 Feb 23 20:57 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fdetectors.jar262
    -rw-r--r-- 1 root root 0 Feb 23 21:09 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fdetectors.jar266
    -rw-r--r-- 1 root root 0 Feb 23 21:18 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fdetectors.jar271
    -rw-r--r-- 1 root root 0 Feb 23 21:21 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fdetectors.jar277
    -rw-r--r-- 1 root root 0 Feb 23 21:46 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fdetectors.jar283
    -rw-r--r-- 1 root root 0 Feb 23 22:11 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fdetectors.jar287
    -rw-r--r-- 1 root root 0 Feb 23 23:05 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fdetectors.jar291
    -rw-r--r-- 1 root root 0 Feb 24 00:01 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fdetectors.jar294
    -rw-r--r-- 1 root root 0 Feb 24 05:44 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fdetectors.jar302
    -rw-r--r-- 1 root root 0 Feb 24 06:11 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fdetectors.jar306
    /var/sadm/spool/patchsvr/Patches:
    total 1292618
    drwxr-xr-x 2 root sys 3072 Feb 24 00:03 .
    drwxr-xr-x 6 root sys 512 Sep 9 05:36 ..
    -rw-r--r-- 1 root root 46475761 Oct 1 10:50 113886-38.jar
    -rw-r--r-- 1 root root 43498410 Feb 23 21:01 113886-42.jar
    -rw-r--r-- 1 root root 42888423 Oct 1 10:52 113887-38.jar
    -rw-r--r-- 1 root root 40807581 Feb 23 21:02 113887-42.jar
    -rw-r--r-- 1 root root 151954 Oct 1 10:53 118557-06.jar
    -rw-r--r-- 1 root root 69163583 Feb 23 21:03 118666-11.jar
    -rw-r--r-- 1 root root 10514183 Feb 23 21:03 118667-11.jar
    -rw-r--r-- 1 root root 188662 Oct 1 10:48 118683-01.jar
    -rw-r--r-- 1 root root 236302 Oct 1 10:56 118706-01.jar
    -rw-r--r-- 1 root root 196150 Oct 1 10:56 118707-04.jar
    -rw-r--r-- 1 root root 419527 Oct 1 10:56 118708-13.jar
    -rw-r--r-- 1 root root 105696 Oct 1 10:56 118711-02.jar
    -rw-r--r-- 1 root root 295738 Oct 1 10:56 118712-10.jar
    -rw-r--r-- 1 root root 302061 Feb 23 21:02 118712-13.jar
    -rw-r--r-- 1 root root 496152 Oct 1 10:56 118777-06.jar
    -rw-r--r-- 1 root root 95092 Oct 1 10:53 118812-03.jar
    -rw-r--r-- 1 root root 166160 Feb 24 00:02 118815-05.jar
    -rw-r--r-- 1 root root 80428 Oct 1 10:56 118830-01.jar
    -rw-r--r-- 1 root root 34095003 Oct 8 09:41 118833-24.jar
    -rw-r--r-- 1 root root 54413206 Feb 24 00:03 118833-36.jar
    -rw-r--r-- 1 root root 1808265 Oct 1 10:53 118918-19.jar
    -rw-r--r-- 1 root root 1822253 Feb 24 00:02 118918-24.jar
    -rw-r--r-- 1 root root 96695 Oct 1 10:56 118945-01.jar
    -rw-r--r-- 1 root root 91763 Oct 1 10:56 118981-03.jar
    -rw-r--r-- 1 root root 5573200 Oct 8 09:42 119059-18.jar
    -rw-r--r-- 1 root root 5576430 Feb 23 21:03 119059-21.jar
    -rw-r--r-- 1 root root 114774 Oct 1 10:57 119063-01.jar
    -rw-r--r-- 1 root root 1189956 Feb 23 21:00 119081-25.jar
    -rw-r--r-- 1 root root 13288480 Oct 1 10:57 119115-18.jar
    -rw-r--r-- 1 root root 14743306 Feb 23 21:03 119115-22.jar
    -rw-r--r-- 1 root root 4273087 Oct 1 10:56 119117-22.jar
    -rw-r--r-- 1 root root 4617883 Feb 23 21:02 119117-29.jar
    -rw-r--r-- 1 root root 8607487 Oct 1 10:56 119213-09.jar
    -rw-r--r-- 1 root root 8618010 Oct 14 07:18 119213-10.jar
    -rw-r--r-- 1 root root 8660261 Feb 23 21:01 119213-11.jar
    -rw-r--r-- 1 root root 1356682 Oct 1 10:45 119254-27.jar
    -rw-r--r-- 1 root root 1361281 Feb 24 00:01 119254-34.jar
    -rw-r--r-- 1 root root 101596 Oct 1 10:56 119309-03.jar
    -rw-r--r-- 1 root root 1270965 Feb 23 21:04 119397-06.jar
    -rw-r--r-- 1 root root 494252 Oct 1 10:53 119470-08.jar
    -rw-r--r-- 1 root root 1827070 Oct 1 10:56 119546-07.jar
    -rw-r--r-- 1 root root 1160825 Oct 1 10:56 119548-05.jar
    -rw-r--r-- 1 root root 1939955 Oct 1 10:52 119578-29.jar
    -rw-r--r-- 1 root root 61172 Feb 23 21:02 119703-08.jar
    -rw-r--r-- 1 root root 39643171 Oct 1 10:56 119757-04.jar
    -rw-r--r-- 1 root root 751835 Oct 1 10:53 119850-20.jar
    -rw-r--r-- 1 root root 751901 Oct 8 09:42 119850-21.jar
    -rw-r--r-- 1 root root 541532 Oct 1 10:56 119900-02.jar
    -rw-r--r-- 1 root root 797869 Oct 1 10:57 119903-02.jar
    -rw-r--r-- 1 root root 1720037 Oct 1 10:48 119963-07.jar
    -rw-r--r-- 1 root root 1737070 Feb 23 21:03 119998-02.jar
    -rw-r--r-- 1 root root 91104 Oct 1 10:52 120056-02.jar
    -rw-r--r-- 1 root root 90969 Oct 1 10:53 120061-02.jar
    -rw-r--r-- 1 root root 51318 Feb 23 21:01 120068-02.jar
    -rw-r--r-- 1 root root 302460 Oct 1 10:56 120099-07.jar
    -rw-r--r-- 1 root root 54484 Oct 1 10:53 120294-01.jar
    -rw-r--r-- 1 root root 71490 Oct 1 10:53 120346-04.jar
    -rw-r--r-- 1 root root 999740 Oct 1 10:53 120467-05.jar
    -rw-r--r-- 1 root root 795638 Oct 1 10:53 120469-05.jar
    -rw-r--r-- 1 root root 16139832 Oct 1 10:52 120543-05.jar
    -rw-r--r-- 1 root root 16258980 Oct 8 09:42 120543-06.jar
    -rw-r--r-- 1 root root 16253320 Feb 23 21:03 120543-08.jar
    -rw-r--r-- 1 root root 493214 Feb 24 00:02 120719-02.jar
    -rw-r--r-- 1 root root 270675 Oct 1 10:48 120753-02.jar
    -rw-r--r-- 1 root root 84612 Oct 1 10:48 120780-02.jar
    -rw-r--r-- 1 root root 320258 Oct 14 07:18 120791-05.jar
    -rw-r--r-- 1 root root 58715 Oct 1 10:52 120887-06.jar
    -rw-r--r-- 1 root root 102087 Feb 24 00:02 121002-03.jar
    -rw-r--r-- 1 root root 1175840 Oct 1 10:52 121081-05.jar
    -rw-r--r-- 1 root root 1176987 Feb 23 23:05 121081-06.jar
    -rw-r--r-- 1 root root 61029 Oct 1 10:56 121095-01.jar
    -rw-r--r-- 1 root root 87618400 Oct 1 10:47 121104-01.jar
    -rw-r--r-- 1 root root 1604794 Oct 14 07:18 121118-08.jar
    -rw-r--r-- 1 root root 1756896 Feb 23 21:02 121118-11.jar
    -rw-r--r-- 1 root root 25377 Oct 1 10:48 121136-01.jar
    -rw-r--r-- 1 root root 43541 Oct 1 10:52 121302-01.jar
    -rw-r--r-- 1 root root 1349725 Oct 1 10:45 121308-07.jar
    -rw-r--r-- 1 root root 766128 Oct 1 10:45 121430-11.jar
    -rw-r--r-- 1 root root 33454 Oct 1 10:52 121474-01.jar
    -rw-r--r-- 1 root root 39156 Oct 1 10:53 121556-01.jar
    -rw-r--r-- 1 root root 54439 Oct 1 10:53 121557-01.jar
    -rw-r--r-- 1 root root 38531 Oct 1 10:53 121558-01.jar
    -rw-r--r-- 1 root root 64667 Oct 1 10:53 121559-01.jar
    -rw-r--r-- 1 root root 455467 Oct 1 10:56 121563-02.jar
    -rw-r--r-- 1 root root 73619 Oct 1 10:52 121693-03.jar
    -rw-r--r-- 1 root root 78784 Feb 23 21:04 121734-05.jar
    -rw-r--r-- 1 root root 26983 Feb 23 23:05 121901-01.jar
    -rw-r--r-- 1 root root 328956 Oct 8 09:42 122027-08.jar
    -rw-r--r-- 1 root root 334464 Feb 23 21:01 122032-04.jar
    -rw-r--r-- 1 root root 5622658 Oct 8 09:42 122212-10.jar
    -rw-r--r-- 1 root root 5712006 Oct 14 07:19 122212-12.jar
    -rw-r--r-- 1 root root 5724049 Feb 23 21:02 122212-17.jar
    -rw-r--r-- 1 root root 73018 Oct 1 10:53 122363-01.jar
    -rw-r--r-- 1 root root 39118 Oct 1 10:53 122515-01.jar
    -rw-r--r-- 1 root root 77359 Oct 1 10:53 122517-02.jar
    -rw-r--r-- 1 root root 81527 Oct 1 10:53 122523-03.jar
    -rw-r--r-- 1 root root 63877 Oct 1 10:53 122525-02.jar
    -rw-r--r-- 1 root root 195842 Oct 14 07:18 122669-01.jar
    -rw-r--r-- 1 root root 42365 Oct 14 07:18 122761-01.jar
    -rw-r--r-- 1 root root 197594 Oct 14 07:18 122860-01.jar
    -rw-r--r-- 1 root root 10965819 Oct 8 09:42 122911-02.jar
    -rw-r--r-- 1 root root 475616 Feb 23 21:01 123186-02.jar
    -rw-r--r-- 1 root root 108231 Oct 1 10:53 123304-02.jar
    -rw-r--r-- 1 root root 30541 Oct 1 10:53 123334-02.jar
    -rw-r--r-- 1 root root 34196 Oct 1 10:53 123360-01.jar
    -rw-r--r-- 1 root root 223934 Oct 14 07:18 124206-02.jar
    -rw-r--r-- 1 root root 51848 Feb 23 21:03 124244-01.jar
    -rw-r--r-- 1 root root 578669 Feb 23 21:12 124614-01.jar
    -rw-r--r-- 1 root root 437290 Feb 23 21:00 124630-03.jar
    -rw-r--r-- 1 root root 307636 Feb 23 21:03 124922-02.jar
    -rw-r--r-- 1 root root 41967 Feb 23 21:01 124943-01.jar
    -rw-r--r-- 1 root root 55028 Feb 23 21:03 124997-01.jar
    -rw-r--r-- 1 root root 657450 Feb 23 21:01 125011-01.jar
    /var/sadm/spool/patchsvr/entitlement:
    total 12
    drwxr-xr-x 2 root root 2560 Feb 24 09:52 .
    drwxr-xr-x 6 root sys 512 Sep 9 05:36 ..
    -rw-r--r-- 1 root root 121 Oct 14 07:18 https%3A%2F%2Fgetupdates.sun.com%2Fsolaris%2F%2Fentitlement_lps
    -rw-r--r-- 1 root root 0 Oct 1 12:29 https%3A%2F%2Fgetupdates.sun.com%2Fsolaris%2F%2Fentitlement_lps32461
    -rw-r--r-- 1 root root 0 Oct 1 12:30 https%3A%2F%2Fgetupdates.sun.com%2Fsolaris%2F%2Fentitlement_lps32463
    -rw-r--r-- 1 root root 0 Oct 1 12:39 https%3A%2F%2Fgetupdates.sun.com%2Fsolaris%2F%2Fentitlement_lps32465
    -rw-r--r-- 1 root root 0 Oct 1 12:48 https%3A%2F%2Fgetupdates.sun.com%2Fsolaris%2F%2Fentitlement_lps32467
    -rw-r--r-- 1 root root 0 Oct 1 13:01 https%3A%2F%2Fgetupdates.sun.com%2Fsolaris%2F%2Fentitlement_lps32469
    -rw-r--r-- 1 root root 0 Oct 1 13:08 https%3A%2F%2Fgetupdates.sun.com%2Fsolaris%2F%2Fentitlement_lps32471
    -rw-r--r-- 1 root root 187 Feb 23 17:12 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps
    -rw-r--r-- 1 root root 0 Feb 23 20:58 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps263
    -rw-r--r-- 1 root root 0 Feb 23 21:00 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps265
    -rw-r--r-- 1 root root 0 Feb 23 21:10 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps268
    -rw-r--r-- 1 root root 0 Feb 23 21:12 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps270
    -rw-r--r-- 1 root root 0 Feb 23 21:19 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps273
    -rw-r--r-- 1 root root 0 Feb 23 21:19 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps275
    -rw-r--r-- 1 root root 0 Feb 23 21:21 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps278
    -rw-r--r-- 1 root root 0 Feb 23 21:25 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps280
    -rw-r--r-- 1 root root 0 Feb 23 21:30 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps282
    -rw-r--r-- 1 root root 0 Feb 23 21:47 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps285
    -rw-r--r-- 1 root root 0 Feb 23 22:12 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps288
    -rw-r--r-- 1 root root 0 Feb 23 22:31 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps290
    -rw-r--r-- 1 root root 0 Feb 23 23:05 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps293
    -rw-r--r-- 1 root root 0 Feb 24 00:01 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps298
    -rw-r--r-- 1 root root 0 Feb 24 00:01 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps299
    -rw-r--r-- 1 root root 0 Feb 24 00:02 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps300
    -rw-r--r-- 1 root root 0 Feb 24 05:45 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps303
    -rw-r--r-- 1 root root 0 Feb 24 05:49 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps305
    -rw-r--r-- 1 root root 0 Feb 24 06:12 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps308
    -rw-r--r-- 1 root root 0 Feb 24 08:12 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps310
    -rw-r--r-- 1 root root 0 Feb 24 09:43 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps312
    -rw-r--r-- 1 root root 0 Feb 24 09:52 https%3A%2F%2Fgetupdates1.sun.com%2F%2Fentitlement_lps314
    root@b3osdsun01:/root#
    SCENARIO 1
    - Did NOT restart the sunUC proxy server
    - run smpatch analyze from two sunUC clients
    - source URL = http://solaris3.ny.frb.org:3816/
    Results of client B1STSUN02
    root@b1stsun02# patchadd -p | grep 121118
    Patch: 121118-06 Obsoletes: Requires: 121453-02 Incompatibles: Packages: SUNWppror SUNWpprou SUNWppro-plugin-sunos-base SUNWupdatemgru SUNWupdatemgrr
    Patch: 121118-08 Obsoletes: Requires: 121453-02 Incompatibles: Packages: SUNWppror SUNWpprou SUNWppro-plugin-sunos-base SUNWupdatemgru SUNWupdatemgrr
    Patch: 121118-11 Obsoletes: Requires: 121453-02 Incompatibles: Packages: SUNWppror SUNWpprou SUNWppro-plugin-sunos-base SUNWcsmauth SUNWupdatemgru SUNWupdatemgrr
    root@b1stsun02# smpatch get
    patchpro.backout.directory - ""
    patchpro.baseline.directory - /var/sadm/spool
    patchpro.download.directory - /var/sadm/spool
    patchpro.install.types - rebootafter:reconfigafter:standard
    patchpro.patch.source http://solaris3.ny.frb.org:3816/ https://getupdates1.sun.com/
    patchpro.patchset - current
    patchpro.proxy.host - ""
    patchpro.proxy.passwd **** ****
    patchpro.proxy.port - 8080
    patchpro.proxy.user - ""
    root@b1stsun02# smpatch analyze -C patchpro.log.level=3 -C patchpro.debug=true
    Effective proxy host : ""
    Effective proxy port : "8080"
    Effective proxy user : ""
    ... Submitting download request against a Non-GUUS server
    ... Caught IO Exception.
    ((HttpURLConnection)connection).getResponseCode() : 503
    ((HttpURLConnection)connection).getResponseMessage() : Servlet PatchServer is currently unavailable
    Error: Unable to download document : "xml/motd.xml"
    Cannot connect to retrieve xml/motd.xml: Servlet PatchServer is currently unavailable
    Unable to display any message of the day notices from Sun Microsystems. Refer to the log file for additional information.
    Effective proxy host : ""
    Effective proxy port : "8080"
    Effective proxy user : ""
    ... Submitting download request against a Non-GUUS server
    Effective proxy host : ""
    Effective proxy port : "8080"
    Effective proxy user : ""
    ... Submitting download request against a Non-GUUS server
    ... Caught IO Exception.
    ((HttpURLConnection)connection).getResponseCode() : 503
    ((HttpURLConnection)connection).getResponseMessage() : Servlet PatchServer is currently unavailable
    ... Caught IO Exception.
    ((HttpURLConnection)connection).getResponseCode() : 503
    ((HttpURLConnection)connection).getResponseMessage() : Servlet PatchServer is currently unavailable
    Failure: Cannot connect to retrieve detectors: Servlet PatchServer is currently unavailable
    root@b1stsun02#
    Results of client B1ISFSUN02
    root@b1isfsun02# patchadd -p | grep 121118
    Patch: 121118-06 Obsoletes: Requires: 121453-02 Incompatibles: Packages: SUNWppror SUNWpprou SUNWppro-plugin-sunos-base SUNWupdatemgru SUNWupdatemgrr
    Patch: 121118-10 Obsoletes: Requires: 121453-02 Incompatibles: Packages: SUNWppror SUNWpprou SUNWppro-plugin-sunos-base SUNWcsmauth SUNWupdatemgru SUNWupdatemgrr
    Patch: 121118-11 Obsoletes: Requires: 121453-02 Incompatibles: Packages: SUNWppror SUNWpprou SUNWppro-plugin-sunos-base SUNWcsmauth SUNWupdatemgru SUNWupdatemgrr
    root@b1isfsun02# smpatch get
    patchpro.backout.directory - ""
    patchpro.baseline.directory - /var/sadm/spool
    patchpro.download.directory - /var/sadm/spool
    patchpro.install.types - rebootafter:reconfigafter:standard
    patchpro.patch.source http://solaris3.ny.frb.org:3816/ https://getupdates1.sun.com/
    patchpro.patchset - current
    patchpro.proxy.host - ""
    patchpro.proxy.passwd **** ****
    patchpro.proxy.port - 8080
    patchpro.proxy.user - ""
    root@b1isfsun02# smpatch analyze -C patchpro.log.level=3 -C patchpro.debug=true
    Effective proxy host : ""
    Effective proxy port : "8080"
    Effective proxy user : ""
    ... Submitting download request against a Non-GUUS server
    ... Caught IO Exception.
    ((HttpURLConnection)connection).getResponseCode() : 503
    ((HttpURLConnection)connection).getResponseMessage() : Servlet PatchServer is currently unavailable
    Error: Unable to download document : "xml/motd.xml"
    Cannot connect to retrieve xml/motd.xml: Servlet PatchServer is currently unavailable
    Unable to display any message of the day notices from Sun Microsystems. Refer to the log file for additional information.
    Effective proxy host : ""
    Effective proxy port : "8080"
    Effective proxy user : ""
    ... Submitting download request against a Non-GUUS server
    Effective proxy host : ""
    Effective proxy port : "8080"
    Effective proxy user : ""
    ... Submitting download request against a Non-GUUS server
    ... Caught IO Exception.
    ((HttpURLConnection)connection).getResponseCode() : 503
    ((HttpURLConnection)connection).getResponseMessage() : Servlet PatchServer is currently unavailable
    ... Caught IO Exception.
    ((HttpURLConnection)connection).getResponseCode() : 503
    ((HttpURLConnection)connection).getResponseMessage() : Servlet PatchServer is currently unavailable
    Failure: Cannot connect to retrieve detectors: Servlet PatchServer is currently unavailable
    root@b1isfsun02#
    SCENARIO 2
    - same as scenario 1 except source URL = http://solaris3.ny.frb.org:3816/solaris/
    Results of client B1STSUN02
    root@b1stsun02# smpatch set patchpro.patch.source=http://solaris3.ny.frb.org:3816/solaris/
    root@b1stsun02# smpatch get
    patchpro.backout.directory - ""
    patchpro.baseline.directory - /var/sadm/spool
    patchpro.download.directory - /var/sadm/spool
    patchpro.install.types - rebootafter:reconfigafter:standard
    patchpro.patch.source http://solaris3.ny.frb.org:3816/solaris/ https://getupdates1.sun.com/
    patchpro.patchset - current
    patchpro.proxy.host - ""
    patchpro.proxy.passwd **** ****
    patchpro.proxy.port - 8080
    patchpro.proxy.user - ""
    root@b1stsun02# smpatch analyze -C patchpro.log.level=3 -C patchpro.debug=true
    Effective proxy host : ""
    Effective proxy port : "8080"
    Effective proxy user : ""
    ... Submitting download request against a Non-GUUS server
    ... Caught IO Exception.
    ((HttpURLConnection)connection).getResponseCode() : 400
    ((HttpURLConnection)connection).getResponseMessage() : Bad Request
    Error: Unable to download document : "xml/motd.xml"
    Cannot connect to retrieve xml/motd.xml: Bad Request
    Unable to display any message of the day notices from Sun Microsystems. Refer to the log file for additional information.
    Effective proxy host : ""
    Effective proxy port : "8080"
    Effective proxy user : ""
    ... Submitting download request against a Non-GUUS server
    Effective proxy host : ""
    Effective proxy port : "8080"
    Effective proxy user : ""
    Key 1 : Content-Type = application/octet-stream
    Key 2 : Date = Sun, 25 Feb 2007 15:13:56 GMT
    Key 3 : Server = Apache Tomcat/4.0.5 (HTTP/1.1 Connector)
    Key 4 : Transfer-Encoding = chunked
    Key 5 : PatchProServletCompletionCode = 0
    Effective proxy host : ""
    Effective proxy port : "8080"
    Effective proxy user : ""
    Effective proxy host : ""
    Effective proxy port : "8080"
    Effective proxy user : ""
    ... Submitting download request against a Non-GUUS server
    Key 1 : Content-Type = application/octet-stream
    Key 2 : Date = Sun, 25 Feb 2007 15:14:18 GMT
    Key 3 : Server = Apache Tomcat/4.0.5 (HTTP/1.1 Connector)
    Key 4 : Transfer-Encoding = chunked
    Key 5 : PatchProServletCompletionCode = 0
    119081-25 SunOS 5.10: CD-ROM Install Boot Image Patch
    124630-03 SunOS 5.10: System Administration Applications, Network and Core Libraries Patch
    119254-34 SunOS 5.10: Install and Patch Utilities Patch
    113886-42 OpenGL 1.3: OpenGL Patch for Solaris (32-bit)
    113887-42 OpenGL 1.3: OpenGL Patch for Solaris (64-bit)
    120543-08 SunOS 5.10: Apache 2 Patch
    124244-01 SunOS 5.10: /usr/bin/rm patch
    124997-01 SunOS 5.10: /usr/bin/tip patch
    124614-01 SunOS 5.10: sconadm proxy: UnknownHostException
    118371-08 SunOS 5.10: elfsign Patch
    120068-03 SunOS 5.10: in.telnetd patch
    119115-23 Mozilla 1.7 patch
    root@b1stsun02#
    [b]Results of client B1ISFSUN02
    root@b1isfsun02# smpatch set patchpro.patch.source=http://solaris3.ny.frb.org:3816/solaris/
    root@b1isfsun02# smpatch get
    patchpro.backout.directory - ""
    patchpro.baseline.directory - /var/sadm/spool
    patchpro.download.directory - /var/sadm/spool
    patchpro.install.types - rebootafter:reconfigafter:standard
    patchpro.patch.source http://solaris3.ny.frb.org:3816/solaris/ https://getupdates1.sun.com/
    patchpro.patchset - current
    patchpro.proxy.host - ""
    patchpro.proxy.passwd **** ****
    patchpro.proxy.port - 8080
    patchpro.proxy.user - ""
    root@b1isfsun02# smpatch analyze -C patchpro.log.level=3 -C patchpro.debug=true
    Effective proxy host : ""
    Effective proxy port : "8080"
    Effective proxy user : ""
    ... Submitting download request against a Non-GUUS server
    ... Caught IO Exception.
    ((HttpURLConnection)connection).getResponseCode() : 400
    ((HttpURLConnection)connection).getResponseMessage() : Bad Request
    Error: Unable to download document : "xml/motd.xml"
    Cannot connect to retrieve xml/motd.xml: Bad Request
    Unable to display any message of the day notices from Sun Microsystems. Refer to the log file for additional information.
    Effective proxy host : ""
    Effective proxy port : "8080"
    Effective proxy user : ""
    Effective proxy host : ""
    Effective proxy port : "8080"
    Effective proxy user : ""
    ... Submitting download request against a Non-GUUS server
    ... Submitting download request against a Non-GUUS server
    Key 1 : Content-Type = application/octet-stream
    Key 2 : Date = Sun, 25 Feb 2007 15:17:41 GMT
    Key 3 : Server = Apache Tomcat/4.0.5 (HTTP/1.1 Connector)
    Key 4 : Transfer-Encoding = chunked
    Key 5 : PatchProServletCompletionCode = 0
    Key 1 : Content-Type = application/octet-stream
    Key 2 : Date = Sun, 25 Feb 2007 15:17:42 GMT
    Key 3 : Server = Apache Tomcat/4.0.5 (HTTP/1.1 Connector)
    Key 4 : Transfer-Encoding = chunked
    Key 5 : PatchProServletCompletionCode = 0
    Effective proxy host : ""
    Effective proxy port : "8080"
    Effective proxy user : ""
    Effective proxy host : ""
    Effective proxy port : "8080"
    Effective proxy user : ""
    ... Submitting download request against a Non-GUUS server
    Key 1 : Content-Type = application/octet-stream
    Key 2 : Date = Sun, 25 Feb 2007 15:18:27 GMT
    Key 3 : Server = Apache Tomcat/4.0.5 (HTTP/1.1 Connector)
    Key 4 : Transfer-Encoding = chunked
    Key 5 : PatchProServletCompletionCode = 0
    124614-01 SunOS 5.10: sconadm proxy: UnknownHostException
    118371-08 SunOS 5.10: elfsign Patch
    120068-03 SunOS 5.10: in.telnetd patch
    119115-23 Mozilla 1.7 patch
    root@b1isfsun02#
    SCENARIO 3
    - RESTART sunUC proxy server
    - same two sunUC clients
    - source URL = http://solaris3.ny.frb.org:3816/
    Results of restarting sunUC proxy
    root@b3osdsun01:/root# patchsvr stop
    Shutting down Local Patch Server
    root@b3osdsun01:/root# patchsvr start
    Starting Local Patch Server
    root@b3osdsun01:/root# patchsvr enable
    root@b3osdsun01:/root# patchsvr status
    enabled
    root@b3osdsun01:/root#
    Results of clientB1STSUN02
    root@b1stsun02# smpatch set patchpro.patch.source=http://solaris3.ny.frb.org:3816/
    root@b1stsun02# smpatch get
    patchpro.backout.directory - ""
    patchpro.baseline.directory - /var/sadm/spool
    patchpro.download.directory - /var/sadm/spool
    patchpro.install.types - rebootafter:reconfigafter:standard
    patchpro.patch.source http://solaris3.ny.frb.org:3816/ https://getupdates1.sun.com/
    patchpro.patchset - current
    patchpro.proxy.host - ""
    patchpro.proxy.passwd **** ****
    patchpro.proxy.port - 8080
    patchpro.proxy.user -

  • Unable to edit document using "Edit with Word" option

    Hi All,
    i am having an issue with Office web apps. i am using SharePoint 2013 and Office web apps 2013. all the configurations have been done successfully. but i have a different kind of issue.
    i am able to open documents in browser
    i am able to edit document using " edit with word/excel web" option
    but i am unable to edit document using "edit with word/excel" option
    i have Office 2010 installed on my local machine.
    do we need to have MS office of 2013 version? or is there anything missing from configuration part.
    Please help me.
    Thank You,
    Bhaskar.

    Hi,
    According to your post, my understanding is that you could not use the "edit with word/excel" option.
    I had tested the issue with the Office 2010, the option worked well.
    You don’t need to install the Office 2013 to use this option.
    What did you mean “but i am unable to edit document using "edit with word/excel" option
    Did you mean the option gray out? Did the issue occur in other browsers?
    You can use compatibility mode to check whether it works.
    Open IE->Tools->Compatibility View Settings
    You can also add the site into Trusted sites.
    Open the IE->Internet Options->Security->Sites->add the site into the Websites, then check whether it works.
    What's more, you can also use other browsers to check whether it works, such as Firefox, Chrome.
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • I have a new Dell computer running windows 7 and am unable to download itunes. The message I recieve after trying to run the download is: This installation package could not be opened. Verify that the package exists and that you can access it.   Any ideas

    I have a new Dell computer running windows 7 and am unable to download itunes. The message I recieve after trying to run the download is: This installation package could not be opened. Verify that the package exists and that you can access it.   Any ideas?

    Hello tcampbell1549,
    Thank you for using Apple Support Communities.
    For more information, take a look at:
    Issues installing iTunes or QuickTime for Windows
    http://support.apple.com/kb/ht1926
    Have a nice day,
    Mario

  • How to use the same services-config for the local and remote servers.

    My flex project works fine using the below but when I upload my flash file to the server I doesn't work, all the relative paths and files are the same execpt the remote one is a linux server.
    <?xml version="1.0" encoding="UTF-8"?>
    <services-config>
        <services>
            <service id="amfphp-flashremoting-service"
                class="flex.messaging.services.RemotingService"
                messageTypes="flex.messaging.messages.RemotingMessage">
                <destination id="amfphp">
                    <channels>
                        <channel ref="my-amfphp"/>
                    </channels>
                    <properties>
                        <source>*</source>
                    </properties>
                </destination>
            </service>
        </services>
        <channels>
        <channel-definition id="my-amfphp" class="mx.messaging.channels.AMFChannel">
            <endpoint uri="http://localhost/domainn.org/amfphp/gateway.php" class="flex.messaging.endpoints.AMFEndpoint"/>
        </channel-definition>
        </channels>
    </services-config>
    I think the problem  is the line
            <endpoint uri="http://localhost/domainn.org/amfphp/gateway.php" class="flex.messaging.endpoints.AMFEndpoint"/>
    but I'm not sure how to use the same services-config for the local and remote servers.

    paul.williams wrote:
    You are confusing "served from a web-server" with "compiled on a web-server". Served from a web-server means you are downloading a file from the web-server, it does not necessarily mean that the files has been generated / compiled on the server.
    The server.name and server.port tokens are replaced at runtime (ie. on the client when the swf has been downloaded and is running) not compile time (ie. while mxmlc / ant / wet-tier compiler is running). You do not need to compile on the server to take advantage of this.
    Hi Paul,
    In Flex, there is feature that lets developer to put all service-config.xml file configuration information into swf file. with
    -services=path/to/services-config.xml
    IF
    services-config.xml
    have tokens in it and user have not specified additional
    -context-root
    and this swf file is not served from web-app-server (like tomcat for example) than it will not work,
    Flash player have no possible way to replace token values of service-config.xml file durring runtime if that service-config.xml file have been baked into swf file during compilation,
    for example during development you can launch your swf file from your browser with file// protocol and still be able to access blazeDS services if
    -services=path/to/services-config.xml
    have been specified durring compilation.
    I dont know any better way to exmplain this, but in summary there is two places that you can tell swf  about service confogiration,
    1) pass -services=path/to/services-config.xml  parameter to compiler this way you tell swf file up front about all that good stuff,
    or 2) you put that file on the webserver( in this case, yes you should have replacement tokens in that file) and they will be repaced at runtime .

  • Getting an error, Unable to properly connect to the workflow service while attaching workflow to the list manually

    Hello Experts,
    I am facing an issue on test server while attaching workflow manually to the list. 
    On dev environment I am deploying workflow through visual studio and here everything works fine.
    Please suggest if anyone has faced this issue earlier.
    Regards,
    Uday G
    Line 3874: 04/27/2015 02:02:15.72 w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         Logging Correlation Data      
    xmnv Medium  
    Name=Request (POST:http://spwfte800-001:80/_layouts/15/AssocWrkfl.aspx?AssociatedList=0b6b6303-d8ac-4007-94d0-5cf5502df0f6&WF4=1)
    9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3875: 04/27/2015 02:02:15.73
    w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         Authentication Authorization  
    agb9s Medium  
    Non-OAuth request. IsAuthenticated=True, UserIdentityName=0#.w|usykgw\sp_farm_te, ClaimsCount=30
    9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3876: 04/27/2015 02:02:15.73
    w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         Logging Correlation Data      
    xmnv Medium  
    Site=/ 9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3877: 04/27/2015 02:02:15.80
    w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         Database                      
    ahjqp High    
    [Forced due to logging gap, cached @ 04/27/2015 02:02:15.78, Original Level: Verbose] SQL connection time: 0.093 for Data Source=SPDBTE800-001\MYNET_SQL;Initial Catalog=WSS_Content_80;Integrated Security=True;Enlist=False;Pooling=True;Min Pool Size=0;Max
    Pool Size=100;Connect Timeout=15;Application Name=SharePoint[w3wp][2][WSS_Content_80]
    9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3878: 04/27/2015 02:02:15.80
    w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         Files                        
    ak8dj High    
    UserAgent not available, file operations may not be optimized.    at Microsoft.SharePoint.SPFileStreamManager.CreateCobaltStreamContainer(SPFileStreamStore spfs, ILockBytes ilb, Boolean copyOnFirstWrite, Boolean disposeIlb)     at
    Microsoft.SharePoint.SPFileStreamManager.SetInputLockBytes(SPFileInfo& fileInfo, SqlSession session, PrefetchResult prefetchResult)     at Microsoft.SharePoint.CoordinatedStreamBuffer.SPCoordinatedStreamBufferFactory.CreateFromDocumentRowset(Guid
    databaseId, SqlSession session, SPFileStreamManager spfstm, Object[] metadataRow, SPRowset contentRowset, SPDocumentBindRequest& dbreq, SPDocumentBindResults& dbres)     at Microsoft.SharePoint.SPSqlClient.GetDocumentContentRow(Int32 rowOrd,
    Object ospFileStmMgr, SPDocumentBindRequest& dbreq, SPDocumentBindResults& dbres...
    9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3879: 04/27/2015 02:02:15.80*
    w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         Files                        
    ak8dj High    
    ...)     at Microsoft.SharePoint.Library.SPRequestInternalClass.GetFileAndMetaInfo(String bstrUrl, Byte bPageView, Byte bPageMode, Byte bGetBuildDependencySet, String bstrCurrentFolderUrl, Int32 iRequestVersion, Byte bMainFileRequest, Boolean&
    pbCanCustomizePages, Boolean& pbCanPersonalizeWebParts, Boolean& pbCanAddDeleteWebParts, Boolean& pbGhostedDocument, Boolean& pbDefaultToPersonal, Boolean& pbIsWebWelcomePage, String& pbstrSiteRoot, Guid& pgSiteId, UInt32& pdwVersion,
    String& pbstrTimeLastModified, String& pbstrContent, UInt32& pdwPartCount, Object& pvarMetaData, Object& pvarMultipleMeetingDoclibRootFolders, String& pbstrRedirectUrl, Boolean& pbObjectIsList, Guid& pgListId, UInt32& pdwItemId,
    Int64& pllListFlags, Boolean& pbAccessDenied, Guid& pgDocid, Byte& piLevel, UInt64& ppermMask, ...
    9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3880: 04/27/2015 02:02:15.80*
    w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         Files                        
    ak8dj High    
    ...Object& pvarBuildDependencySet, UInt32& pdwNumBuildDependencies, Object& pvarBuildDependencies, String& pbstrFolderUrl, String& pbstrContentTypeOrder, Guid& pgDocScopeId)     at Microsoft.SharePoint.Library.SPRequestInternalClass.GetFileAndMetaInfo(String
    bstrUrl, Byte bPageView, Byte bPageMode, Byte bGetBuildDependencySet, String bstrCurrentFolderUrl, Int32 iRequestVersion, Byte bMainFileRequest, Boolean& pbCanCustomizePages, Boolean& pbCanPersonalizeWebParts, Boolean& pbCanAddDeleteWebParts, Boolean&
    pbGhostedDocument, Boolean& pbDefaultToPersonal, Boolean& pbIsWebWelcomePage, String& pbstrSiteRoot, Guid& pgSiteId, UInt32& pdwVersion, String& pbstrTimeLastModified, String& pbstrContent, UInt32& pdwPartCount, Object&
    pvarMetaData, Object& pvarMultipleMeetingDoclibRootFolders, String& pbst...
    9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3881: 04/27/2015 02:02:15.80*
    w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         Files                        
    ak8dj High    
    ...rRedirectUrl, Boolean& pbObjectIsList, Guid& pgListId, UInt32& pdwItemId, Int64& pllListFlags, Boolean& pbAccessDenied, Guid& pgDocid, Byte& piLevel, UInt64& ppermMask, Object& pvarBuildDependencySet, UInt32&
    pdwNumBuildDependencies, Object& pvarBuildDependencies, String& pbstrFolderUrl, String& pbstrContentTypeOrder, Guid& pgDocScopeId)     at Microsoft.SharePoint.Library.SPRequest.GetFileAndMetaInfo(String bstrUrl, Byte bPageView, Byte
    bPageMode, Byte bGetBuildDependencySet, String bstrCurrentFolderUrl, Int32 iRequestVersion, Byte bMainFileRequest, Boolean& pbCanCustomizePages, Boolean& pbCanPersonalizeWebParts, Boolean& pbCanAddDeleteWebParts, Boolean& pbGhostedDocument,
    Boolean& pbDefaultToPersonal, Boolean& pbIsWebWelcomePage, String& pbstrSiteRoot, Guid& pgSiteId, UInt32& pdwVersion,...
    9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3882: 04/27/2015 02:02:15.80*
    w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         Files                        
    ak8dj High    
    ... String& pbstrTimeLastModified, String& pbstrContent, UInt32& pdwPartCount, Object& pvarMetaData, Object& pvarMultipleMeetingDoclibRootFolders, String& pbstrRedirectUrl, Boolean& pbObjectIsList, Guid& pgListId, UInt32&
    pdwItemId, Int64& pllListFlags, Boolean& pbAccessDenied, Guid& pgDocid, Byte& piLevel, UInt64& ppermMask, Object& pvarBuildDependencySet, UInt32& pdwNumBuildDependencies, Object& pvarBuildDependencies, String& pbstrFolderUrl,
    String& pbstrContentTypeOrder, Guid& pgDocScopeId)     at Microsoft.SharePoint.SPWeb.GetWebPartPageContent(Uri pageUrl, Int32 pageVersion, PageView requestedView, HttpContext context, Boolean forRender, Boolean includeHidden, Boolean mainFileRequest,
    Boolean fetchDependencyInformation, Boolean& ghostedPage, String& siteRoot, Guid& siteId, Int64& bytes, ...
    9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3883: 04/27/2015 02:02:15.80*
    w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         Files                        
    ak8dj High    
    ...Guid& docId, UInt32& docVersion, String& timeLastModified, Byte& level, Object& buildDependencySetData, UInt32& dependencyCount, Object& buildDependencies, SPWebPartCollectionInitialState& initialState, Object&
    oMultipleMeetingDoclibRootFolders, String& redirectUrl, Boolean& ObjectIsList, Guid& listId)     at Microsoft.SharePoint.ApplicationRuntime.SPRequestModuleData.FetchWebPartPageInformationForInit(HttpContext context, SPWeb spweb, Boolean
    mainFileRequest, String path, Boolean impersonate, Boolean& isAppWeb, Boolean& fGhostedPage, Guid& docId, UInt32& docVersion, String& timeLastModified, SPFileLevel& spLevel, String& masterPageUrl, String& customMasterPageUrl,
    String& webUrl, String& siteUrl, Guid& siteId, Object& buildDependencySetData, SPWebPartCollectionInitialState& initialState, ...
    9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3884: 04/27/2015 02:02:15.80*
    w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         Files                        
    ak8dj High    
    ...String& siteRoot, String& redirectUrl, Object& oMultipleMeetingDoclibRootFolders, Boolean& objectIsList, Guid& listId, Int64& bytes)     at Microsoft.SharePoint.ApplicationRuntime.SPRequestModuleData.GetWebPartPageData(HttpContext
    context, String path, Boolean throwIfFileNotFound)     at Microsoft.SharePoint.ApplicationRuntime.SPVirtualPathProvider.GetCacheKey(String virtualPath)     at System.Web.Compilation.BuildManager.GetVPathBuildResultFromCacheInternal(VirtualPath
    virtualPath, Boolean ensureIsUpToDate)     at System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate)
        at System.Web.Compilation.BuildManager.GetVPathBuildResultWithN...
    9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3885: 04/27/2015 02:02:15.80*
    w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         Files                        
    ak8dj High    
    ...oAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate)     at System.Web.Compilation.BuildManager.GetVPathBuildResult(HttpContext
    context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean ensureIsUpToDate)     at System.Web.UI.MasterPage.CreateMaster(TemplateControl owner, HttpContext context, VirtualPath masterPageFile,
    IDictionary contentTemplateCollection)     at System.Web.UI.Page.ApplyMasterPage()     at System.Web.UI.Page.PerformPreInit()     at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
        at System.Web.UI.Page.ProcessRequest(Boolean in...
    9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3886: 04/27/2015 02:02:15.80*
    w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         Files                        
    ak8dj High    
    ...cludeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)     at System.Web.UI.Page.ProcessRequest()     at System.Web.UI.Page.ProcessRequest(HttpContext context)     at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
        at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)     at System.Web.HttpApplication.PipelineStepManager.ResumeSteps(Exception error)     at System.Web.HttpApplication.BeginProcessRequestNotification(HttpContext
    context, AsyncCallback cb)     at System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context)     at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr rootedObjectsPointer,
    IntPtr nativeReque... 9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3887: 04/27/2015 02:02:15.80*
    w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         Files                        
    ak8dj High    
    ...stContext, IntPtr moduleData, Int32 flags)     at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)     at System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr
    pHandler, RequestNotificationStatus& notificationStatus)     at System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr pHandler, RequestNotificationStatus& notificationStatus)     at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr
    rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)     at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)  
    9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3888: 04/27/2015 02:02:15.80
    w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         Files                        
    aiv4w Medium  
    Spent 0 ms to bind 44035 byte file stream
    9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3889: 04/27/2015 02:02:15.86
    w3wp.exe (0x1708)                      
    0x15E0
    0x119005                      
    adjzs High    
    [Forced due to logging gap, cached @ 04/27/2015 02:02:15.83, Original Level: VerboseEx] SwitchableSiteMapProvider "{0}" mapped to target provider "{1}"
    9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3890: 04/27/2015 02:02:15.86
    w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         Database                      
    8acb High    
    [Forced due to logging gap, Original Level: VerboseEx] Reverting to process identity
    9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3891: 04/27/2015 02:02:15.92
    w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         Database                      
    ahjqp High    
    [Forced due to logging gap, cached @ 04/27/2015 02:02:15.91, Original Level: Verbose] SQL connection time: 0.0963 for Data Source=SPDBTE800-001\MYNET_SQL;Initial Catalog=WSS_Content_80;Integrated Security=True;Enlist=False;Pooling=True;Min Pool Size=0;Max
    Pool Size=100;Connect Timeout=15;Application Name=SharePoint[w3wp][2][WSS_Content_80]
    9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3892: 04/27/2015 02:02:15.92
    w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         Monitoring                    
    b4ly High    
    Leaving Monitored Scope (EnsureListItemsData). Execution Time=15.9063
    9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3893: 04/27/2015 02:02:15.98
    w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         Database                      
    ahjqp High    
    [Forced due to logging gap, cached @ 04/27/2015 02:02:15.92, Original Level: Verbose] SQL connection time: 0.0662 for Data Source=SPDBTE800-001\MYNET_SQL;Initial Catalog=WSS_Content_80;Integrated Security=True;Enlist=False;Pooling=True;Min Pool Size=0;Max
    Pool Size=100;Connect Timeout=15;Application Name=SharePoint[w3wp][2][WSS_Content_80]
    9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3894: 04/27/2015 02:02:15.98
    w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         Database                      
    8acb High    
    [Forced due to logging gap, Original Level: VerboseEx] Reverting to process identity
    9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3895: 04/27/2015 02:02:16.05
    w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         Database                      
    ahjqp High    
    [Forced due to logging gap, cached @ 04/27/2015 02:02:16.03, Original Level: Verbose] SQL connection time: 0.0856 for Data Source=SPDBTE800-001\MYNET_SQL;Initial Catalog=WSS_Content_80;Integrated Security=True;Enlist=False;Pooling=True;Min Pool Size=0;Max
    Pool Size=100;Connect Timeout=15;Application Name=SharePoint[w3wp][2][WSS_Content_80]
    9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3896: 04/27/2015 02:02:16.05
    w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         Database                      
    8acb High    
    [Forced due to logging gap, Original Level: VerboseEx] Reverting to process identity
    9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3897: 04/27/2015 02:02:16.05
    w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         Monitoring                    
    b4ly High    
    Leaving Monitored Scope (EnsureListItemsData). Execution Time=20.7631
    9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3901: 04/27/2015 02:02:16.19
    w3wp.exe (0x1708)                      
    0x15E0
    0xC33B01F                    
    ahv8s High    
    [Forced due to logging gap, cached @ 04/27/2015 02:02:16.06, Original Level: Verbose] Ending StoreWorkflowDeploymentProvider.GetDefinition
    9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3902: 04/27/2015 02:02:16.19
    w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         Database                      
    8acb High    
    [Forced due to logging gap, Original Level: VerboseEx] Reverting to process identity
    9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3903: 04/27/2015 02:02:16.23
    w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         General                      
    8kh7 High    
    Cannot complete this action.  Please try again.
    9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3904: 04/27/2015 02:02:16.25
    w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         Database                      
    ahjqp High    
    [Forced due to logging gap, cached @ 04/27/2015 02:02:16.20, Original Level: Verbose] SQL connection time: 0.0671 for Data Source=SPDBTE800-001\MYNET_SQL;Initial Catalog=WSS_Content_80;Integrated Security=True;Enlist=False;Pooling=True;Min Pool Size=0;Max
    Pool Size=100;Connect Timeout=15;Application Name=SharePoint[w3wp][2][WSS_Content_80]
    9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3905: 04/27/2015 02:02:16.25
    w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         General                      
    aix9j High    
    SPRequest.UpdateField: UserPrincipalName=i:0).w|s-1-5-21-515020923-1814085151-1527837076-26682, AppPrincipalName= ,bstrUrl=http://spwfte800-001 ,bstrListName={0B6B6303-D8AC-4007-94D0-5CF5502DF0F6} ,bstrXML=<Field DisplayName="PublishNewsItemWF-ItemAdded"
    Type="URL" Required="FALSE" ID="{36f69f6b-98df-44f7-b0bd-041265b4b402}" SourceID="{0b6b6303-d8ac-4007-94d0-5cf5502df0f6}" StaticName="PublishNewsItemWF_x002d_ItemAdde" Name="PublishNewsItemWF_x002d_ItemAdde"
    ColName="nvarchar22" RowOrdinal="0" ColName
    9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3906: 04/27/2015 02:02:16.25
    w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         General                      
    ai1wu Medium  
    System.Runtime.InteropServices.COMException: Cannot complete this action.  Please try again., StackTrace:    at Microsoft.SharePoint.SPField.UpdateCore(Boolean bToggleSealed)     at Microsoft.SharePoint.SPFieldCollection.AddFieldAsXmlInternal(String
    schemaXml, Boolean addToDefaultView, SPAddFieldOptions op, Boolean isMigration, Boolean fResetCTCol)     at Microsoft.SharePoint.SPFieldCollection.AddInternal(String strDisplayName, SPFieldType type, Boolean bRequired, Boolean bCompactName, Guid
    lookupListId, Guid lookupWebId, StringCollection choices)     at Microsoft.SharePoint.SPFieldCollection.Add(String strDisplayName, SPFieldType type, Boolean bRequired, Boolean bCompactName, StringCollection choices)     at Microsoft.SharePoint.SPFieldCollection.Add(String
    strDisplayName, SPFieldType typ... 9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3907: 04/27/2015 02:02:16.25*
    w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         General                      
    ai1wu Medium  
    ...e, Boolean bRequired)     at Microsoft.SharePoint.WorkflowServices.StoreSubscriptionService.CreateStatusColumn(String subscriptionName, SPWeb web, Guid listId)     at Microsoft.SharePoint.WorkflowServices.StoreSubscriptionService.PublishSubscriptionForList(WorkflowSubscription
    subscription, Guid listId)     at Microsoft.SharePoint.WorkflowServices.ApplicationPages.AssocWrkflPage.OnLoad(EventArgs ea)     at System.Web.UI.Control.LoadRecursive()     at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint,
    Boolean includeStagesAfterAsyncPoint)     at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)     at System.Web.UI.Page.ProcessRequest()     at System.Web.UI.Page.ProcessRequest(HttpContext
    context)     at ... 9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3908: 04/27/2015 02:02:16.25*
    w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         General                      
    ai1wu Medium  
    ...System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()     at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)     at System.Web.HttpApplication.PipelineStepManager.ResumeSteps(Exception
    error)     at System.Web.HttpApplication.BeginProcessRequestNotification(HttpContext context, AsyncCallback cb)     at System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context)     at
    System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)     at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr rootedObjectsPointer,
    IntPtr nativeRequestContext, IntPtr mo... 9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3909: 04/27/2015 02:02:16.25*
    w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         General                      
    ai1wu Medium  
    ...duleData, Int32 flags)     at System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr pHandler, RequestNotificationStatus& notificationStatus)     at System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr
    pHandler, RequestNotificationStatus& notificationStatus)     at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)     at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr
    rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)  
    9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3910: 04/27/2015 02:02:16.25
    w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         General                      
    8nca Medium  
    Application error when access /_layouts/15/AssocWrkfl.aspx, Error=Unable to properly communicate with the workflow service.   at Microsoft.SharePoint.WorkflowServices.ApplicationPages.AssocWrkflPage.OnLoad(EventArgs ea)     at System.Web.UI.Control.LoadRecursive()
        at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3911: 04/27/2015 02:02:16.25
    w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         Runtime                      
    tkau Unexpected
    Microsoft.SharePoint.SPException: Unable to properly communicate with the workflow service.    at Microsoft.SharePoint.WorkflowServices.ApplicationPages.AssocWrkflPage.OnLoad(EventArgs ea)     at System.Web.UI.Control.LoadRecursive()
        at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3912: 04/27/2015 02:02:16.25
    w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         General                      
    ajlz0 High    
    Getting Error Message for Exception System.Web.HttpUnhandledException (0x80004005): Exception of type 'System.Web.HttpUnhandledException' was thrown. ---> Microsoft.SharePoint.SPException: Unable to properly communicate with the workflow service.
        at Microsoft.SharePoint.WorkflowServices.ApplicationPages.AssocWrkflPage.OnLoad(EventArgs ea)     at System.Web.UI.Control.LoadRecursive()     at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint,
    Boolean includeStagesAfterAsyncPoint)     at System.Web.UI.Page.HandleError(Exception e)     at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)     at System.Web.UI.Page.ProcessRequest(Boolean
    includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoin...
    9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3913: 04/27/2015 02:02:16.25*
    w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         General                      
    ajlz0 High    
    ...t)     at System.Web.UI.Page.ProcessRequest()     at System.Web.UI.Page.ProcessRequest(HttpContext context)     at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
        at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
    9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3914: 04/27/2015 02:02:16.25
    w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         General                      
    aat87 Monitorable
    9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3915: 04/27/2015 02:02:16.28
    w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         DistributedCache              
    agyfq Medium  
    Unexpected error occurred in method 'Put' , usage 'SPViewStateCache' - Exception 'Microsoft.ApplicationServer.Caching.DataCacheException: ErrorCode<ERRCA0017>:SubStatus<ES0006>:There is a temporary failure. Please retry later. (One or more
    specified cache servers are unavailable, which could be caused by busy network or servers. For on-premises cache clusters, also verify the following conditions. Ensure that security permission has been granted for this client account, and check that the AppFabric
    Caching Service is allowed through the firewall on all cache hosts. Also the MaxBufferSize on the server must be greater than or equal to the serialized object size sent from the client.) ---> System.ServiceModel.CommunicationException: The socket connection
    was aborted. This could be caused by ... 9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3916: 04/27/2015 02:02:16.28*
    w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         DistributedCache              
    agyfq Medium  
    ...an error processing your message or a receive timeout being exceeded by the remote host, or an underlying network resource issue. Local socket timeout was '10675199.02:48:05.4775807'. ---> System.IO.IOException: The read operation failed, see inner
    exception. ---> System.ServiceModel.CommunicationException: The socket connection was aborted. This could be caused by an error processing your message or a receive timeout being exceeded by the remote host, or an underlying network resource issue. Local
    socket timeout was '10675199.02:48:05.4775807'. ---> System.Net.Sockets.SocketException: An existing connection was forcibly closed by the remote host     at System.Net.Sockets.Socket.Receive(Byte[] buffer, Int32 offset, Int32 size, SocketFlags
    socketFlags)     at System.ServiceModel.Channels.So...
    9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3917: 04/27/2015 02:02:16.28*
    w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         DistributedCache              
    agyfq Medium  
    ...cketConnection.ReadCore(Byte[] buffer, Int32 offset, Int32 size, TimeSpan timeout, Boolean closing)     --- End of inner exception stack trace ---     at System.ServiceModel.Channels.SocketConnection.ReadCore(Byte[] buffer, Int32
    offset, Int32 size, TimeSpan timeout, Boolean closing)     at System.ServiceModel.Channels.SocketConnection.Read(Byte[] buffer, Int32 offset, Int32 size, TimeSpan timeout)     at System.ServiceModel.Channels.ConnectionStream.Read(Byte[]
    buffer, Int32 offset, Int32 count)     at System.Net.FixedSizeReader.ReadPacket(Byte[] buffer, Int32 offset, Int32 count)     at System.Net.Security.NegotiateStream.StartFrameHeader(Byte[] buffer, Int32 offset, Int32 count, AsyncProtocolRequest
    asyncRequest)     at System.Net.Security.NegotiateStream.StartReading(Byte[] buffer, Int...
    9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3918: 04/27/2015 02:02:16.28*
    w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         DistributedCache              
    agyfq Medium  
    ...32 offset, Int32 count, AsyncProtocolRequest asyncRequest)     at System.Net.Security.NegotiateStream.ProcessRead(Byte[] buffer, Int32 offset, Int32 count, AsyncProtocolRequest asyncRequest)     --- End of inner exception stack
    trace ---     at System.Net.Security.NegotiateStream.ProcessRead(Byte[] buffer, Int32 offset, Int32 count, AsyncProtocolRequest asyncRequest)     at System.Net.Security.NegotiateStream.Read(Byte[] buffer, Int32 offset, Int32 count)  
      at System.ServiceModel.Channels.StreamConnection.Read(Byte[] buffer, Int32 offset, Int32 size, TimeSpan timeout)     --- End of inner exception stack trace ---    Server stack trace:      at System.ServiceModel.Channels.StreamConnection.Read(Byte[]
    buffer, Int32 offset, Int32 size, TimeSpan timeout)     at System.ServiceModel.Channels...
    9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3919: 04/27/2015 02:02:16.28*
    w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         DistributedCache              
    agyfq Medium  
    ....ClientFramingDuplexSessionChannel.SendPreamble(IConnection connection, ArraySegment`1 preamble, TimeoutHelper& timeoutHelper)     at System.ServiceModel.Channels.ClientFramingDuplexSessionChannel.DuplexConnectionPoolHelper.AcceptPooledConnection(IConnection
    connection, TimeoutHelper& timeoutHelper)     at System.ServiceModel.Channels.ConnectionPoolHelper.EstablishConnection(TimeSpan timeout)     at System.ServiceModel.Channels.ClientFramingDuplexSessionChannel.OnOpen(TimeSpan timeout)
        at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)     at Microsoft.ApplicationServer.Caching.CacheResolverChannel.Open(TimeSpan timeout)     at System.Runtime.Remoting.Messaging.StackBuilderSink._PrivateProcessMessage(IntPtr
    md, Object[] args, Object server, Object[]& outArgs)   ...
    9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3920: 04/27/2015 02:02:16.28*
    w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         DistributedCache              
    agyfq Medium  
    ...  at System.Runtime.Remoting.Messaging.StackBuilderSink.AsyncProcessMessage(IMessage msg, IMessageSink replySink)    Exception rethrown at [0]:      at System.Runtime.Remoting.Proxies.RealProxy.EndInvokeHelper(Message
    reqMsg, Boolean bProxyCase)     at System.Runtime.Remoting.Proxies.RemotingProxy.Invoke(Object NotUsed, MessageData& msgData)     at Microsoft.ApplicationServer.Caching.CacheResolverChannel.OpenDelegate.EndInvoke(IAsyncResult result)
        at Microsoft.ApplicationServer.Caching.ChannelContainer.Opened(IAsyncResult ar)     --- End of inner exception stack trace ---     at Microsoft.ApplicationServer.Caching.DataCache.ThrowException(ResponseBody respBody, RequestBody
    reqBody)     at Microsoft.ApplicationServer.Caching.DataCache.InternalPut(String key, Object value, DataCacheItemV...
    9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3921: 04/27/2015 02:02:16.28*
    w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         DistributedCache              
    agyfq Medium  
    ...ersion oldVersion, TimeSpan timeout, DataCacheTag[] tags, String region, IMonitoringListener listener)     at Microsoft.ApplicationServer.Caching.DataCache.<>c__DisplayClass25.<Put>b__24()     at Microsoft.ApplicationServer.Caching.DataCache.Put(String
    key, Object value, TimeSpan timeout)     at Microsoft.SharePoint.DistributedCaching.SPDistributedCache.Put(String key, Object value)'.
    9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3922: 04/27/2015 02:02:16.28
    w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         General                      
    ajb4s Monitorable
    ViewStateLog: Failed to write to the velocity cache: http://spwfte800-001/_layouts/15/AssocWrkfl.aspx?AssociatedList=0b6b6303-d8ac-4007-94d0-5cf5502df0f6&WF4=1
    9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3923: 04/27/2015 02:02:16.28
    w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         Micro Trace                  
    uls4 Medium  
    Micro Trace Tags: 0 nasq,4 agb9s,66 ak8dj,123 b4ly,132 b4ly,198 aix9j,1 ai1wu,6 8nca,0 tkau,0 ajlz0,1 aat87,20 agyfq,0 ajb4s
    9ac4009d-b5ca-c010-44e2-238aad763833
    Line 3924: 04/27/2015 02:02:16.28
    w3wp.exe (0x1708)                      
    0x15E0
    SharePoint Foundation         Monitoring                    
    b4ly Medium  
    Leaving Monitored Scope (Request (POST:http://spwfte800-001:80/_layouts/15/AssocWrkfl.aspx?AssociatedList=0b6b6303-d8ac-4007-94d0-5cf5502df0f6&WF4=1)). Execution Time=560.4965
    9ac4009d-b5ca-c010-44e2-238aad763833

    Hi Amit,
    Please try using the below cmdlet format to register workflow service to your SharePoint QA server again per the following post with similar error, then check results again. 
    Register-SPWorkflowService -SPSite 'https://myhost/mysite' -WorkflowHostUri 'https://workflowhost' -AllowOAuthHttp -Force
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/46a868eb-a012-4148-8319-088d55671ae7/errors-were-found-when-compiling-the-workflow-the-workflow-files-were-saved-but-cannot-run?forum=sharepointadminprevious
    Thanks
    Daniel Yang
    TechNet Community Support

  • Unable to retrieve collections from the Search Service.

    Hi,
    I have a user trying to upload a collection. She gets the
    following error:
    Unable to retrieve collections from the Search Service.
    Please verify that the ColdFusion MX Search Server is
    installed and running.
    Obviously, I checked the service. It was running. I restarted
    the service. That did nothing. I restarted all the CF services.
    Didn't fix the issue. I also rebotted the server, not expecting
    that to work. It didn't.
    Checking the server logs, I see this:
    The description for Event ID ( 105 ) in Source ( ColdFusion
    MX 7 Search Server ) cannot be found. The local computer may not
    have the necessary registry information or message DLL files to
    display messages from a remote computer. You may be able to use the
    /AUXSOURCE= flag to retrieve this description; see Help and Support
    for details. The following information is part of the event:
    ColdFusion MX 7 Search Server.
    Also, after talking to my co-worker more, it turns out this
    occurred right after she uploaded a new collection to the
    administrator. This link sounds similar to what I'm experiencing:
    http://kb.adobe.com/selfservice/viewContent.do?externalId=6c6881a9
    Maybe it's a corrupt collection?
    but I don't see any errors in the log
    (:\CFusionMX7\verity\Data\services\ColdFusionK2_indexserver1\log\status.log)
    Finally, there are some errors in the Verity service, and it
    looks like the Verity service Verity K2Server (Version 2.20pr6)
    points to D:\CFusionMX\lib\k2server.exe, which doesn’t exist
    anymore because we’ve upgraded to MX7.I'm not sure if this is
    an old service left over from before we upgraded from CFMX to
    CFMX7.
    We are running CFMX7 on a Windows 2003 Server SP1 if that
    matters.
    Thanks in advance for any help.

    In the left hand panel of the ColdFusion Administrator expand
    the Data & Services link. Then select the Verity K2 Server
    link. Change localhost to 127.0.0.1 in the Verity Host Name
    textbox.
    Ted Zimmerman

  • Attach Documents using Generic Object Services

    With reference to Manual Bassani's SDN Contribution of code examples on how to attach documents using Generic Object Services - we have found that since implementing ECC 6 the following code no longer works (at the end of page 9):
    CALL CREATE ATTACHMENT SERVICE FROM TOOLBAR
    WHEN 'ATTACH'.
    CALL METHOD MANAGER->START_SERVICE_DIRECT
    EXPORTING
    IP_SERVICE = 'CREATE_ATTA'
    IS_OBJECT = OBJ
    EXCEPTIONS
    NO_OBJECT = 1
    OBJECT_INVALID = 2
    EXECUTION_FAILED = 3
    OTHERS = 4.
    It is necessary to use IP_SERVICE = 'PCATTA_CREA' to get this to function correctly.
    The original document can be found at [https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/0e6b0d95-0a01-0010-4696-ca0a48de5fb3]

    Check the Naimesh Patel Blog he explain very well
    http://help-abap.blogspot.com/2009/02/generic-object-services-gos-toolbar.html

  • Unable to read data from the SAP Service Marketplace issue

    Good morning, experts.
    I´ve just installed the SAP Download Manager, but I can´t get connected to Marketplace.
    First I tried downloading a file I could see in my Basket Download. Then I deleted it from the basket so I could test only the connection. In both situations I got the same error message: "Unable to read data from the SAP Service Marketplace (...)".
    It is probably due to wrong settings, but I can´t figure it out. My settings are:
    Address: https://websmp205.sap-ag.de/
    User name: S0005951541
    Password: (my password)
    Proxy (my proxy settings)
    Any ideas?

    Thanks for your answer.
    I can see my download basket online. I realize I didn´t delete the items so I could test purely the connection. I am going to do it again.
    I found out I dind´t have permission to download those items, and with the right permission I could download them directly online.
    As long as I have more information I am going to repost this issue on a new forum.
    Thanks.

  • Unable to access calendar, because the web service is configured incorrectly

    When attempting to access my web based calender I recieve the following error, "Unable to access calendar, because the web service is configured incorrectly." I have both the web service and iCal server configured to use SSL.
    Thanks for any help

    I have the same problem, with a temporary solution :
    http://forums.macosxhints.com/showthread.php?t=111059
    In the Server Admin - iCal Server Settings page there's a place where you specify the ports to be used, 8008 without SSL and 8443 (? out of my memory, not sure) for SSL.
    The issue was caused because left of the SSL port I selected "redirect" instead of "use".
    After I changed that it worked right away.
    Laurent

  • I am unable to download documents or software in Safari

    I am unable to download documents or software in Safari.  Instead of a downloads indicator in the upper right, there is a box that says "Reader" but it is unclickable.
    Thanks.

    What happens when you try to download?
    What color is the Reader button, blue or gray?
    Can you quit Safari?

  • Error: unable to download document : "collection/default"

    Got the following error message when launched the Update Manager Client GUI:
    Error: Unable to download document : "collection/default" Cannot connect to retrieve collection/default: Internal Server Error.
    I have just installed Sun Update Manager Proxy server and Sun Update Manager Client software in two sun servers. I configured the client to get update from the Update Manager Proxy server. I haven't register the Proxy server yet.
    I have verified that Update Manager Proxy server is up and running by browsing the url of the Update Manager Proxy server.
    I wonder if the error is because the Proxy server has no updates yet or it is because it is not registered yet.

    Furthermore: I also tried the following on the client:
    # smpatch analyze
    and got the following error message
    Failure: Cannot connect to retrieve detectors: Internal Server Error.
    A look in the /var/adm/messages shows the following:
    Caused by: java.io.IOException: Server returned HTTP response code: 500 for URL: http://solaris0.sd.ny.frb.org:3816/solaris
    Jun 27 14:10:46 b1osdtsun05 root: [ID 702911 user.crit] => com.sun.patchpro.cli.PatchServices@fb56b1 <=null at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1133)
    Jun 27 14:10:46 b1osdtsun05 at com.sun.patchpro.util.Downloader.connectToURL(Downloader.java:358)
    Jun 27 14:10:46 b1osdtsun05 ... 15 more

  • Use the CHECKIN_NEW service in the browser url

    Hi,
    I use UCM 10gR3.
    I am wondering if it is possible to use the CHECKIN_NEW service by just entering a url into the http path. I was checking the postCheckInStandard() function that is being called when the user is clicking the checkin button in the ucm administration webpage. All it does is checking the input values and setting the IdcService to "CHECKIN_NEW" and then submitting the form. So from my understanding I should also be able to use the CHECKIN_NEW service in my browser url which would make a GET request instead of a POST request.
    So what I did was that I entered the following URL in my browser
    http://<serverName>/<instanceName>/idcplg?IdcService=CHECKIN_NEW&dDocType=Picture&dDocTitle=TestCheckin&dDocAuthor=http_checkin&dSecurityGroup=Secure&primaryFile=C:/Work/Chrysanthemum.jpg&IsJava=1Why is this not working? Is this not working because the input type of the primaryFile is 'file' instead of 'text'?
    Greetings
    Bodhy

    You should see some sort of error on either the page or Server Output or Server logs. That would help narrow this down.
    From the Services Guide:
    If you attempt to set the author (dDocAuthor) to someone other than the currently
    logged in user, you must have Admin permission to the security attributes being
    assigned to the document.
    If the content uses entity security, the user must have at least Write permission
    granted by the entities, unless the user has Admin rights to the security group
    being assigned to the document.
    The most likely error is when the content item was not properly defined.
    This service executes the subservice CHECKIN_NEW_SUB. This subservice
    checks in a new content item revision.
    Additional Required Service Parameters
    dDocName: The Content ID for the content item. If Content ID auto generation is enabled, this parameter is not required. If dDocName is defined, it overrides the auto generated Content ID. The Content ID cannot contain spaces or invalid characters ;/ \?:@&=+"#%<>*~|[ ].
    dDocAuthor: The content item author (contributor).
    dDocTitle: The content item title.
    dDocType: The content item Type.
    dSecurityGroup: The security group such as Public or Secure.
    dDocAccount: The account for the content item. Required only if accounts are
    enabled.
    primaryFile: The absolute path to the location of the file as seen from the server. Use the slash as the file separator. A primary file must be specified unless checking in metadata only. If an alternate
    file is specified with the primary file, the content refinery converts the alternate
    file. Otherwise, the primary file is converted.
    Required custom fields: Custom metadata fields that are required must also be
    specified.
    Example
    IdcService=CHECKIN_NEW
    dDocName=test1111
    dDocTitle=test information
    dDocAuthor=john
    dSecurityGroup=public
    primaryFile=c:/test.txt
    doFileCopy=1
    doFileCopy: 1 (true): The file is not deleted from the hard drive after checkin.

Maybe you are looking for

  • How can I install an app from the App Store to all the iMacs in my lab?

    Hi, I'm using ARD to administer an iMac lab. I know how to install packages using ARD, but App Store apps require an Apple ID. I want to install free educational apps (not paid) on every machine in my lab. Should I make a new Apple ID for myself as a

  • HELP!! Need to get my program back

    Hello, I've been writing a computer program all day and after compiling and running it worked perfectly. I then output the data as main.c and overwrote my program. Is there any way of getting this back? Are there any hidden files in mac folders like

  • Unable to print drawing properly in Acrobat - however with Adobe Reader no problem !!!

    Got a pdf (converted ACAD drawing) of which certain sections appear hardly readable on screen (grey, distorted ??) Tried all print options (colour, B&W, save PDF again, check rersolutions, contacted supplier of printer etc.) I could think of but no i

  • How to enter Unicode font in a Word document

    I am trying to input non-English symbols/characters into a document. A colleague who uses Windows wrote that in Word, you input a character by using their Unicode number, highlighting it, and doing Alt-X. For example, enter 025A, highlight it, and yo

  • ITunes shuting down when opening

    when i open iTunes on my windows 8 pc, a pop up comes on and sais that iTunes stoped working then iTunes closes and it does that every time. Ive tried uninstalling and re-installing it again many times but it still doesnt work. please help me