ALTER ASSEMBLY and Continuous Integration

I have a small assembly of scalar SQL functions built in .NET that I've manually integrated to SQL Server with CREATE ASSEMBLY and then CREATE FUNCTION.  However, as part of my continuous integration and deploy process, I'd like to update the assembly
with every build using ALTER ASSEMBLY.
I've already taken care to guard against an unchanged MvID in the SQL batch I execute to do the update, but whenever a new build runs (and the MvID apparently changes), I get the following error:
ALTER ASSEMBLY failed because the required method "Xxx" in type "Yyy" was not found with the same signature in the updated assembly.
But the signature hasn't changed!  The signature is still just "DateTime? Yyy(DateTime?)".
I've found very little information about this error in particular.  Any suggestions?

I figured out what's the main reason in my case. In SQL Server 2008 R2, it is problem to have UDT with method that contains Nullable return or input parameters in it. For example if you have UDT and added one such method to it, then you do ALTER ASSEMBLY On
SQL Server, assembly will deploy successfully, but the real issue comes when you will try deploy next version of your assembly, even if you don't touch that UDT and that method with Nullable param, you will get. 
"ASSEMBLY failed because the required method "myfunction" in type  "myUDT" was not found
with the same signature in the updated assembly." error
for sure.
I want to mention that I tested and this is not the case on Sql 2005 and Sql 2012

Similar Messages

  • [CQ newbie] Possible to load and compile all CQ pages in continuous integration?

    I know very little about CQ.
    I'm trying to figure out how we can implement a continuous integration process which would deploy our build to a test server and automatically compile all of the generated pages, and send reports to "last change" authors if there are failures.
    If this was a plain JSP-based application, I know how to do this, because WebLogic gives me the ability to compile all JSPs at deployment time.
    With CQ, I've been told that JSP pages are assembled with the Vault plugin and stored in the repository.  I've seen sample code that can load pages from the repository, but can I use that mechanism to iterate through all the pages in the repository and force them to be loaded, and also get detailed errors if they fail to compile or load?

    I discovered that someone here wrote a "UrlTreeHelper" class that starts from a root node and uses the ResourceResolver and sees if the primary node is "cq:Page", or if it has child nodes.  If the former, it gets the URL path from the node and adds that to a list to return.  If the latter, it recurses through that list. That results in a final list of urls that we can at least do a GET on and verify we get a 200.  If we don't, we at least know something's wrong with that page, even if we don't know what failed.
    They call this from a JSP page, so they can get the ResourceResolver. Is it possible to get the ResourceResolver in plain Java code, so we could call this from something besides a JSP?

  • Continues integration  with OS X Server and Xcode Bot

    I want to to do the continues integration using Xcode bots. I have installed OSX Mavericks and Server(version 3). Iam able to create bots using Xcode 5.0.1. While integrating it is successfully performing analysing testing but always the final integration result is failure.
    Integration failed. Unexpected internal server error. See the integration's logs for more details.
    I didnt understand anything from the server log. Can anyone help me?
    Here is the full Server Error Log
    Oct 29 09:15:41 AnilV-InetliMac.local xcsbuildd[3914] <Info>: [CSLogger.m:483 7e026310 +9ms] Logging to log file /Library/Server/Xcode/Data/BotRuns/BotRun-17675794-26ed-4a92-b196-40399c60f8d9. bundle/output/service-log-file-snippet.log
    Oct 29 09:15:41 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [XCSBuildBundle.m:247 7e026310 +0ms] Bot snapstot for bot run: {
                  containerGUID = "d365635a-4607-b2e8-2eca-9ce4821fed31";
                  createdByUserGUID = "732a32f3-8b83-4067-a09d-45076da78906";
                  extendedAttributes =     {
                      buildFromClean = 0;
                      buildOnTrigger = 0;
                      buildProjectPath = "iOS/SocialShare/SocialShareSample/SocialShareSample.xcodeproj";
                      buildSchemeName = SocialShareSample;
                      deviceSpecification = allDevices;
                      integratePerformsAnalyze = 1;
                      integratePerformsArchive = 0;
                      integratePerformsTest = 0;
                      pollForSCMChanges = 1;
                      scmInfo =         {
                          "/" =             {
                              botGroupGUID = "d365635a-4607-b2e8-2eca-9ce4821fed31";
                              credentialGUID = "fb7cf346-fe6e-4336-b893-8b9a06a550e0";
                              displayName = "https://harry-common.robosoft.co.in/Source";
                              isLocal = 0;
                              scmBranch = "";
                              scmCredentialType = password;
                              scmGUID = "80651525-4146-ab29-6f93-2cf11466ea32";
                              scmRepoPath = "https://harry-common.robosoft.co.in/Source";
                              scmRepoType = svn;
                              scmUsername = "anil.varghese";
                      scmInfoGUIDMap =         {
                          "/" = "80651525-4146-ab29-6f93-2cf11466ea32";
                  guid = "4e122aa2-56dd-4e3a-ad6e-25be1a65e657";
                  isBlogEnabled = 0;
                  isDeleted = 0;
                  isFavorite = 0;
                  isHidden = 0;
                  isMyPage = 1;
                  isPermanentlyDeleted = 0;
                  isWatched = 0;
                  lastActivityUserGUID = "742d3a53-c7b0-4911-9465-90a98fd3cf7c";
                  latestFailedBotRunGUID = "642d6a1b-0831-45b5-989e-65b319c3f084";
                  latestRunStatus = failed;
                  latestRunSubStatus = "internal-error";
                  longName = "Test Bot";
                  notifyCommitterOnFailure = 0;
                  notifyCommitterOnSuccess = 0;
                  ownerGUID = "d365635a-4607-b2e8-2eca-9ce4821fed31";
                  ownerType = "com.apple.entity.BotGroup";
                  parentGUIDs =     (
                      "70f4d626-c3cd-4678-8cb5-22648c1305b4",
                      "d365635a-4607-b2e8-2eca-9ce4821fed31",
                      "4e122aa2-56dd-4e3a-ad6e-25be1a65e657"
                  privateAttributes =     {
                  revision = 8;
                  shortName = testbot;
                  tags =     (
                  tinyID = testbot6;
                  type = "com.apple.entity.Bot";
                  updatedByUserGUID = "742d3a53-c7b0-4911-9465-90a98fd3cf7c";
    Oct 29 09:15:41 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [XCSBuildBundle.m:893 7e026310 +0ms] Updating bot and bot run status to running, substatus to
    Oct 29 09:15:41 AnilV-InetliMac.local xcsbuildd[3914] <Info>: [CSConfig.m:55 7e026310 +0ms] Reading plist at /Library/Server/Wiki/Config/collabd.plist
    Oct 29 09:15:41 AnilV-InetliMac.local xcsbuildd[3914] <Info>: [CSConfig.m:55 7e026310 +0ms] Reading plist at /Library/Server/Wiki/Config/collabd.plist
    Oct 29 09:15:41 AnilV-InetliMac.local xcsbuildd[3914] <Info>: [CSConfig.m:55 7e026310 +0ms] Reading plist at /Library/Server/Wiki/Config/collabd.plist
    Oct 29 09:15:41 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:223 6e81000 +45ms] didReceiveResponse
    Oct 29 09:15:41 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:225 6e81000 +0ms] response=<NSHTTPURLResponse: 0x7fd9b2530270> { URL: https://localhost:4443/svc } { status code: 200, headers {
                  "Accept-Ranges" = bytes;
                  "Content-Length" = 120;
                  "Content-Type" = "x-apple/msgpack";
                  Date = "Tue, 29 Oct 2013 03:45:41 GMT";
                  Status = 200;
                  "X-Apple-collabd" = yes;
    Oct 29 09:15:41 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:233 6e81000 +0ms] didReceiveData
    Oct 29 09:15:41 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:246 6e81000 +0ms] connectionDidFinishLoading
    Oct 29 09:15:41 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:172 6e81000 +0ms] Out of runloop; request completed
    Oct 29 09:15:41 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceProxy.m:79 6e81000 +0ms] Received successful response.
    Oct 29 09:15:41 AnilV-InetliMac.local xcsbuildd[3914] <Info>: [CSConfig.m:55 6e81000 +0ms] Reading plist at /Library/Server/Wiki/Config/collabd.plist
    Oct 29 09:15:41 AnilV-InetliMac.local xcsbuildd[3914] <Info>: [CSConfig.m:55 6e81000 +0ms] Reading plist at /Library/Server/Wiki/Config/collabd.plist
    Oct 29 09:15:41 AnilV-InetliMac.local xcsbuildd[3914] <Info>: [CSRemoteServiceClient.m:151 6e81000 +0ms] Connecting to https://localhost:4443/svc to execute [https]Request{XCWorkQueueService.waitForChangesToWorkQueue:forTimeInterval:sin ceDate:(control-17675794-26ed-4a92-b196-40399c60f8d9,30,<CSDateTime date=1970-01-01 00:00:00 +0000 epochValue=0 isoValue=1970-01-01T05:30:00.000+0530>)}
    Oct 29 09:15:41 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:159 6e81000 +0ms] Secure, async request
    Oct 29 09:15:41 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:169 6e81000 +0ms] Before runloop; request pending
    Oct 29 09:15:41 AnilV-InetliMac.local xcsbuildd[3914] <Info>: [CSRemoteServiceClient.m:151 7e026310 +2ms] Connecting to https://localhost:4443/svc to execute [https]Request{AuthService.enterMagicalAuthRealm()}
    Oct 29 09:15:41 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:159 7e026310 +1ms] Secure, async request
    Oct 29 09:15:41 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:169 7e026310 +0ms] Before runloop; request pending
    Oct 29 09:15:41 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:260 7e026310 +8ms] canAuthenticateAgainstProtectionSpace
    Oct 29 09:15:41 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:270 7e026310 +0ms] didReceiveAuthenticationChallenge
    Oct 29 09:15:41 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:281 7e026310 +0ms] Server trust auth challenge. Host is localhost, sanityCheck 0, trust <SecTrust 0x7fd9b253da10 [0x7fff7d91aeb0]>
    Oct 29 09:15:41 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:260 7e026310 +1ms] canAuthenticateAgainstProtectionSpace
    Oct 29 09:15:41 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:270 7e026310 +0ms] didReceiveAuthenticationChallenge
    Oct 29 09:15:41 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:293 7e026310 +0ms] Client cert auth challange.
    Oct 29 09:15:41 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [XCSSSLUtility.m:308 7e026310 +0ms] GetIdentityAndCertChainForName for com.apple.server.xcsbuildd
    Oct 29 09:15:41 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [XCSSSLUtility.m:353 7e026310 +2ms] Match found
    Oct 29 09:15:41 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [XCSSSLUtility.m:208 7e026310 +0ms] GetChainForCert common name: com.apple.server.xcsbuildd, summary: com.apple.server.xcsbuildd
    Oct 29 09:15:41 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [XCSSSLUtility.m:225 7e026310 +0ms] Chain for com.apple.server.xcsbuildd has 1 certs
    Oct 29 09:15:41 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:300 7e026310 +0ms] didReceiveAuthenticationChallenge: GetIdentityAndCertChainForName returned identity and certs
    Oct 29 09:15:41 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:315 7e026310 +0ms] didReceiveAuthenticationChallenge using Cert: Identity Cert 1 - com.apple.server.xcsbuildd
    Oct 29 09:15:42 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:223 7e026310 +402ms] didReceiveResponse
    Oct 29 09:15:42 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:225 7e026310 +0ms] response=<NSHTTPURLResponse: 0x7fd9b2539cd0> { URL: https://localhost:4443/svc } { status code: 200, headers {
                  "Accept-Ranges" = bytes;
                  "Content-Length" = 1579;
                  "Content-Type" = "x-apple/msgpack";
                  Date = "Tue, 29 Oct 2013 03:45:42 GMT";
                  Status = 200;
                  "X-Apple-collabd" = yes;
    Oct 29 09:15:42 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:233 7e026310 +0ms] didReceiveData
    Oct 29 09:15:42 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:246 7e026310 +0ms] connectionDidFinishLoading
    Oct 29 09:15:42 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:172 7e026310 +0ms] Out of runloop; request completed
    Oct 29 09:15:42 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceProxy.m:79 7e026310 +0ms] Received successful response.
    Oct 29 09:15:42 AnilV-InetliMac.local xcsbuildd[3914] <Info>: [CSConfig.m:55 7e026310 +0ms] Reading plist at /Library/Server/Wiki/Config/collabd.plist
    Oct 29 09:15:42 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [XCSBuildHelper.m:97 7e026310 +0ms] Updating bot run with GUID 17675794-26ed-4a92-b196-40399c60f8d9
    Oct 29 09:15:42 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [XCSBuildHelper.m:102 7e026310 +0ms] Updating bot run (17675794-26ed-4a92-b196-40399c60f8d9): {
                  guid = "17675794-26ed-4a92-b196-40399c60f8d9";
                  status = running;
                  subStatus = "";
    Oct 29 09:15:42 AnilV-InetliMac.local xcsbuildd[3914] <Info>: [CSConfig.m:55 7e026310 +0ms] Reading plist at /Library/Server/Wiki/Config/collabd.plist
    Oct 29 09:15:42 AnilV-InetliMac.local xcsbuildd[3914] <Info>: [CSConfig.m:55 7e026310 +0ms] Reading plist at /Library/Server/Wiki/Config/collabd.plist
    Oct 29 09:15:42 AnilV-InetliMac.local xcsbuildd[3914] <Info>: [CSRemoteServiceClient.m:151 7e026310 +0ms] Connecting to https://localhost:4443/svc to execute [https]Request{XCBotService.updateBotRun:({
                  guid = "17675794-26ed-4a92-b196-40399c60f8d9";
                  status = running;
                  subStatus = "";
    Oct 29 09:15:42 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:159 7e026310 +0ms] Secure, async request
    Oct 29 09:15:42 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:169 7e026310 +0ms] Before runloop; request pending
    Oct 29 09:15:42 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:223 7e026310 +126ms] didReceiveResponse
    Oct 29 09:15:42 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:225 7e026310 +0ms] response=<NSHTTPURLResponse: 0x7fd9b2540a60> { URL: https://localhost:4443/svc } { status code: 200, headers {
                  "Accept-Ranges" = bytes;
                  "Content-Length" = 3444;
                  "Content-Type" = "x-apple/msgpack";
                  Date = "Tue, 29 Oct 2013 03:45:42 GMT";
                  Status = 200;
                  "X-Apple-collabd" = yes;
    Oct 29 09:15:42 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:233 7e026310 +0ms] didReceiveData
    Oct 29 09:15:42 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:246 7e026310 +0ms] connectionDidFinishLoading
    Oct 29 09:15:42 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:172 7e026310 +0ms] Out of runloop; request completed
    Oct 29 09:15:42 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceProxy.m:79 7e026310 +0ms] Received successful response.
    Oct 29 09:15:42 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [XCSBuildHelper.m:108 7e026310 +0ms] Updating bot with GUID 4e122aa2-56dd-4e3a-ad6e-25be1a65e657
    Oct 29 09:15:42 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [XCSBuildHelper.m:117 7e026310 +0ms] Updating bot with latest bot run GUID key
    Oct 29 09:15:42 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [XCSBuildHelper.m:124 7e026310 +0ms] Updating bot (4e122aa2-56dd-4e3a-ad6e-25be1a65e657): {
                  guid = "4e122aa2-56dd-4e3a-ad6e-25be1a65e657";
                  latestRunStatus = running;
                  latestRunSubStatus = "";
    Oct 29 09:15:42 AnilV-InetliMac.local xcsbuildd[3914] <Info>: [CSConfig.m:55 7e026310 +0ms] Reading plist at /Library/Server/Wiki/Config/collabd.plist
    Oct 29 09:15:42 AnilV-InetliMac.local xcsbuildd[3914] <Info>: [CSConfig.m:55 7e026310 +0ms] Reading plist at /Library/Server/Wiki/Config/collabd.plist
    Oct 29 09:15:42 AnilV-InetliMac.local xcsbuildd[3914] <Info>: [CSRemoteServiceClient.m:151 7e026310 +0ms] Connecting to https://localhost:4443/svc to execute [https]Request{XCBotService.updateBot:({
                  guid = "4e122aa2-56dd-4e3a-ad6e-25be1a65e657";
                  latestRunStatus = running;
                  latestRunSubStatus = "";
    Oct 29 09:15:42 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:159 7e026310 +0ms] Secure, async request
    Oct 29 09:15:42 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:169 7e026310 +0ms] Before runloop; request pending
    Oct 29 09:15:43 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:223 7e026310 +741ms] didReceiveResponse
    Oct 29 09:15:43 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:225 7e026310 +0ms] response=<NSHTTPURLResponse: 0x7fd9b24735d0> { URL: https://localhost:4443/svc } { status code: 200, headers {
                  "Accept-Ranges" = bytes;
                  "Content-Length" = 1725;
                  "Content-Type" = "x-apple/msgpack";
                  Date = "Tue, 29 Oct 2013 03:45:43 GMT";
                  Status = 200;
                  "X-Apple-collabd" = yes;
    Oct 29 09:15:43 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:233 7e026310 +0ms] didReceiveData
    Oct 29 09:15:43 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:246 7e026310 +0ms] connectionDidFinishLoading
    Oct 29 09:15:43 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:172 7e026310 +0ms] Out of runloop; request completed
    Oct 29 09:15:43 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceProxy.m:79 7e026310 +0ms] Received successful response.
    Oct 29 09:15:43 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [XCSBuildBundle.m:837 7e026310 +0ms] Updating bot run with dictionary {
                  startTime = "<CSDateTime date=2013-10-29 03:45:43 +0000 epochValue=1383018343.023076 isoValue=2013-10-29T09:15:43.023+0530>";
    Oct 29 09:15:43 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [XCSBuildHelper.m:141 7e026310 +0ms] Updating bot run with GUID 17675794-26ed-4a92-b196-40399c60f8d9: {
                  startTime = "<CSDateTime date=2013-10-29 03:45:43 +0000 epochValue=1383018343.023076 isoValue=2013-10-29T09:15:43.023+0530>";
    Oct 29 09:15:43 AnilV-InetliMac.local xcsbuildd[3914] <Info>: [CSConfig.m:55 7e026310 +0ms] Reading plist at /Library/Server/Wiki/Config/collabd.plist
    Oct 29 09:15:43 AnilV-InetliMac.local xcsbuildd[3914] <Info>: [CSConfig.m:55 7e026310 +0ms] Reading plist at /Library/Server/Wiki/Config/collabd.plist
    Oct 29 09:15:43 AnilV-InetliMac.local xcsbuildd[3914] <Info>: [CSConfig.m:55 7e026310 +0ms] Reading plist at /Library/Server/Wiki/Config/collabd.plist
    Oct 29 09:15:43 AnilV-InetliMac.local xcsbuildd[3914] <Info>: [CSRemoteServiceClient.m:151 7e026310 +0ms] Connecting to https://localhost:4443/svc to execute [https]Request{AuthService.enterMagicalAuthRealm()}
    Oct 29 09:15:43 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:159 7e026310 +0ms] Secure, async request
    Oct 29 09:15:43 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:169 7e026310 +0ms] Before runloop; request pending
    Oct 29 09:15:43 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:223 7e026310 +150ms] didReceiveResponse
    Oct 29 09:15:43 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:225 7e026310 +0ms] response=<NSHTTPURLResponse: 0x7fd9b2541da0> { URL: https://localhost:4443/svc } { status code: 200, headers {
                  "Accept-Ranges" = bytes;
                  "Content-Length" = 1579;
                  "Content-Type" = "x-apple/msgpack";
                  Date = "Tue, 29 Oct 2013 03:45:43 GMT";
                  Status = 200;
                  "X-Apple-collabd" = yes;
    Oct 29 09:15:43 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:233 7e026310 +0ms] didReceiveData
    Oct 29 09:15:43 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:246 7e026310 +0ms] connectionDidFinishLoading
    Oct 29 09:15:43 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:172 7e026310 +0ms] Out of runloop; request completed
    Oct 29 09:15:43 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceProxy.m:79 7e026310 +0ms] Received successful response.
    Oct 29 09:15:43 AnilV-InetliMac.local xcsbuildd[3914] <Info>: [CSConfig.m:55 7e026310 +0ms] Reading plist at /Library/Server/Wiki/Config/collabd.plist
    Oct 29 09:15:43 AnilV-InetliMac.local xcsbuildd[3914] <Info>: [CSConfig.m:55 7e026310 +0ms] Reading plist at /Library/Server/Wiki/Config/collabd.plist
    Oct 29 09:15:43 AnilV-InetliMac.local xcsbuildd[3914] <Info>: [CSConfig.m:55 7e026310 +0ms] Reading plist at /Library/Server/Wiki/Config/collabd.plist
    Oct 29 09:15:43 AnilV-InetliMac.local xcsbuildd[3914] <Info>: [CSRemoteServiceClient.m:151 7e026310 +0ms] Connecting to https://localhost:4443/svc to execute [https]Request{XCBotService.updateBotRun:({
                  guid = "17675794-26ed-4a92-b196-40399c60f8d9";
                  startTime = "<CSDateTime date=2013-10-29 03:45:43 +0000 epochValue=1383018343.023076 isoValue=2013-10-29T09:15:43.023+0530>";
    Oct 29 09:15:43 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:159 7e026310 +0ms] Secure, async request
    Oct 29 09:15:43 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:169 7e026310 +0ms] Before runloop; request pending
    Oct 29 09:15:43 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:223 7e026310 +682ms] didReceiveResponse
    Oct 29 09:15:43 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:225 7e026310 +0ms] response=<NSHTTPURLResponse: 0x7fd9b25444f0> { URL: https://localhost:4443/svc } { status code: 200, headers {
                  "Accept-Ranges" = bytes;
                  "Content-Length" = 3526;
                  "Content-Type" = "x-apple/msgpack";
                  Date = "Tue, 29 Oct 2013 03:45:43 GMT";
                  Status = 200;
                  "X-Apple-collabd" = yes;
    Oct 29 09:15:43 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:233 7e026310 +0ms] didReceiveData
    Oct 29 09:15:43 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:246 7e026310 +0ms] connectionDidFinishLoading
    Oct 29 09:15:43 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:172 7e026310 +0ms] Out of runloop; request completed
    Oct 29 09:15:43 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceProxy.m:79 7e026310 +0ms] Received successful response.
    Oct 29 09:15:43 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [XCSBuildBundle.m:610 7e026310 +0ms] Starting credential download operation
    Oct 29 09:15:43 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [XCSBuildBundle.m:908 7e026310 +0ms] Updating bot run status to running, substatus to preparing
    Oct 29 09:15:43 AnilV-InetliMac.local xcsbuildd[3914] <Info>: [CSConfig.m:55 7e026310 +0ms] Reading plist at /Library/Server/Wiki/Config/collabd.plist
    Oct 29 09:15:43 AnilV-InetliMac.local xcsbuildd[3914] <Info>: [CSConfig.m:55 7e026310 +0ms] Reading plist at /Library/Server/Wiki/Config/collabd.plist
    Oct 29 09:15:43 AnilV-InetliMac.local xcsbuildd[3914] <Info>: [CSConfig.m:55 7e026310 +0ms] Reading plist at /Library/Server/Wiki/Config/collabd.plist
    Oct 29 09:15:43 AnilV-InetliMac.local xcsbuildd[3914] <Info>: [CSRemoteServiceClient.m:151 7e026310 +0ms] Connecting to https://localhost:4443/svc to execute [https]Request{AuthService.enterMagicalAuthRealm()}
    Oct 29 09:15:43 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:159 7e026310 +0ms] Secure, async request
    Oct 29 09:15:43 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:169 7e026310 +0ms] Before runloop; request pending
    Oct 29 09:15:44 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:223 7e026310 +341ms] didReceiveResponse
    Oct 29 09:15:44 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:225 7e026310 +1ms] response=<NSHTTPURLResponse: 0x7fd9b2542480> { URL: https://localhost:4443/svc } { status code: 200, headers {
                  "Accept-Ranges" = bytes;
                  "Content-Length" = 1579;
                  "Content-Type" = "x-apple/msgpack";
                  Date = "Tue, 29 Oct 2013 03:45:44 GMT";
                  Status = 200;
                  "X-Apple-collabd" = yes;
    Oct 29 09:15:44 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:233 7e026310 +0ms] didReceiveData
    Oct 29 09:15:44 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:246 7e026310 +0ms] connectionDidFinishLoading
    Oct 29 09:15:44 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:172 7e026310 +0ms] Out of runloop; request completed
    Oct 29 09:15:44 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceProxy.m:79 7e026310 +0ms] Received successful response.
    Oct 29 09:15:44 AnilV-InetliMac.local xcsbuildd[3914] <Info>: [CSConfig.m:55 7e026310 +0ms] Reading plist at /Library/Server/Wiki/Config/collabd.plist
    Oct 29 09:15:44 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [XCSBuildHelper.m:97 7e026310 +0ms] Updating bot run with GUID 17675794-26ed-4a92-b196-40399c60f8d9
    Oct 29 09:15:44 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [XCSBuildHelper.m:102 7e026310 +0ms] Updating bot run (17675794-26ed-4a92-b196-40399c60f8d9): {
                  guid = "17675794-26ed-4a92-b196-40399c60f8d9";
                  status = running;
                  subStatus = preparing;
    Oct 29 09:15:44 AnilV-InetliMac.local xcsbuildd[3914] <Info>: [CSConfig.m:55 7e026310 +0ms] Reading plist at /Library/Server/Wiki/Config/collabd.plist
    Oct 29 09:15:44 AnilV-InetliMac.local xcsbuildd[3914] <Info>: [CSConfig.m:55 7e026310 +0ms] Reading plist at /Library/Server/Wiki/Config/collabd.plist
    Oct 29 09:15:44 AnilV-InetliMac.local xcsbuildd[3914] <Info>: [CSRemoteServiceClient.m:151 7e026310 +0ms] Connecting to https://localhost:4443/svc to execute [https]Request{XCBotService.updateBotRun:({
                  guid = "17675794-26ed-4a92-b196-40399c60f8d9";
                  status = running;
                  subStatus = preparing;
    Oct 29 09:15:44 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:159 7e026310 +0ms] Secure, async request
    Oct 29 09:15:44 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:169 7e026310 +0ms] Before runloop; request pending
    Oct 29 09:15:44 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:223 7e026310 +417ms] didReceiveResponse
    Oct 29 09:15:44 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:225 7e026310 +0ms] response=<NSHTTPURLResponse: 0x7fd9b2540640> { URL: https://localhost:4443/svc } { status code: 200, headers {
                  "Accept-Ranges" = bytes;
                  "Content-Length" = 3535;
                  "Content-Type" = "x-apple/msgpack";
                  Date = "Tue, 29 Oct 2013 03:45:44 GMT";
                  Status = 200;
                  "X-Apple-collabd" = yes;
    Oct 29 09:15:44 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:233 7e026310 +0ms] didReceiveData
    Oct 29 09:15:44 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:246 7e026310 +0ms] connectionDidFinishLoading
    Oct 29 09:15:44 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceClient.m:172 7e026310 +0ms] Out of runloop; request completed
    Oct 29 09:15:44 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [CSRemoteServiceProxy.m:79 7e026310 +0ms] Received successful response.
    Oct 29 09:15:44 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [XCSCredentialOperation.m:34 7e026310 +0ms] Initialized a credential download operation for run GUID 17675794-26ed-4a92-b196-40399c60f8d9 scmInfo {
                  "/" =     {
                      botGroupGUID = "d365635a-4607-b2e8-2eca-9ce4821fed31";
                      credentialGUID = "fb7cf346-fe6e-4336-b893-8b9a06a550e0";
                      credentialToken = "O8}}H$q;-n;.}Lz-}Lq&~pSvmrT[$uOyFe^#~daG\\76[V~X#ghC{|T>2-HGnn<)_";
                      displayName = "https://harry-common.robosoft.co.in/Source";
                      isLocal = 0;
                      scmBranch = "";
                      scmCredentialType = password;
                      scmGUID = "80651525-4146-ab29-6f93-2cf11466ea32";
                      scmRepoPath = "https://harry-common.robosoft.co.in/Source";
                      scmRepoType = svn;
                      scmUsername = "anil.varghese";
              } downloadToken map {
                  "https://harry-common.robosoft.co.in/Source" = "O8}}H$q;-n;.}Lz-}Lq&~pSvmrT[$uOyFe^#~daG\\76[V~X#ghC{|T>2-HGnn<)_";
              } and credential path /Library/Server/Xcode/Data/BotRuns/BotRun-17675794-26ed-4a92-b196-40399c60f8d9. bundle/credentials
    Oct 29 09:15:44 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [XCSOperation.m:16 7e026310 +0ms] Executing operation: XCSCredentialOperation
    Oct 29 09:15:44 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [XCSCredentialOperation.m:68 7e026310 +0ms] Processing credentials for each scm URI in (
    Oct 29 09:15:44 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [XCSCredentialOperation.m:84 7e026310 +0ms] Processing scmItem / with credential download token O8}}H$q;-n;.}Lz-}Lq&~pSvmrT[$uOyFe^#~daG\76[V~X#ghC{|T>2-HGnn<)_
    Oct 29 09:15:44 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [XCSCredentialOperation.m:94 7e026310 +0ms] Creating credential path at /Library/Server/Xcode/Data/BotRuns/BotRun-17675794-26ed-4a92-b196-40399c60f8d9. bundle/credentials/fb7cf346-fe6e-4336-b893-8b9a06a550e0
    Oct 29 09:15:44 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [XCSCredentialOperation.m:104 7e026310 +0ms] Fetching credential with downloadToken O8}}H$q;-n;.}Lz-}Lq&~pSvmrT[$uOyFe^#~daG\76[V~X#ghC{|T>2-HGnn<)_
    Oct 29 09:15:44 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [XCSCredentialServerHTTPClient.m:148 7e026310 +0ms] headerDict before request: {
                  "X-Apple-Credential-botRunGUID" = "17675794-26ed-4a92-b196-40399c60f8d9";
                  "X-Apple-Credential-command" = getCredential;
                  "X-Apple-Credential-downloadToken" = "O8}}H$q;-n;.}Lz-}Lq&~pSvmrT[$uOyFe^#~daG\\76[V~X#ghC{|T>2-HGnn<)_";
    Oct 29 09:15:45 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [XCSCredentialServerHTTPClient.m:173 7e026310 +381ms] Got data in the download credential request <3c3f786d 6c207665 7273696f 6e3d2231 2e302220 656e636f 64696e67 3d225554 462d3822 3f3e0a3c 21444f43 54595045 20706c69 73742050 55424c49 4320222d 2f2f4170 706c652f 2f445444 20504c49 53542031 2e302f2f 454e2220 22687474 703a2f2f 7777772e 6170706c 652e636f 6d2f4454 44732f50 726f7065 7274794c 6973742d 312e302e 64746422 3e0a3c70 6c697374 20766572 73696f6e 3d22312e 30223e0a 3c646963 743e0a09 3c6b6579 3e706173 73776f72 643c2f6b 65793e0a 093c7374 72696e67 3e736861 646f772e 383c2f73 7472696e 673e0a09 3c6b6579 3e757365 726e616d 653c2f6b 65793e0a 093c7374 72696e67 3e616e69 6c2e7661 72676865 73653c2f 73747269 6e673e0a 3c2f6469 63743e0a 3c2f706c 6973743e 0a>
    Oct 29 09:15:45 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [XCSCredentialServerHTTPClient.m:174 7e026310 +0ms] Got a response to a download credential request <NSHTTPURLResponse: 0x7fd9b2549980> { URL: https://127.0.0.1:2012/ } { status code: 200, headers {
                  "Accept-Ranges" = bytes;
                  "Content-Length" = 289;
                  Date = "Tue, 29 Oct 2013 03:45:45 GMT";
                  "X-Apple-Credential-credentialType" = password;
    Oct 29 09:15:45 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [XCSCredentialServerHTTPClient.m:175 7e026310 +0ms] Got credential with type password
    Oct 29 09:15:45 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [XCSCredentialServerHTTPClient.m:189 7e026310 +0ms] Mapping credential to an XCSCredential instance
    Oct 29 09:15:45 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [XCSCredentialServerHTTPClient.m:192 7e026310 +0ms] Dealing with a password credential, attempting to initialize an XCSCredentialPassword
    Oct 29 09:15:45 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [XCSCredentialServerHTTPClient.m:204 7e026310 +0ms] Got a credential object <XCSCredentialPassword: 0x7fd9b255e850> of type password
    Oct 29 09:15:45 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [XCSCredentialOperation.m:109 7e026310 +0ms] Credential callback fired credential = <XCSCredentialPassword: 0x7fd9b255e850>, error = (null)
    Oct 29 09:15:45 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [XCSCredentialOperation.m:117 7e026310 +0ms] Processing credential <XCSCredentialPassword: 0x7fd9b255e850> for downloadToken O8}}H$q;-n;.}Lz-}Lq&~pSvmrT[$uOyFe^#~daG\76[V~X#ghC{|T>2-HGnn<)_
    Oct 29 09:15:45 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [XCSCredentialOperation.m:125 7e026310 +0ms] Updating operation result with credential
    Oct 29 09:15:45 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [XCSCredentialOperation.m:130 7e026310 +0ms] Expecting 1 credentials, have 1 credentials already
    Oct 29 09:15:45 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [XCSCredentialOperation.m:132 7e026310 +0ms] Done processing credentials
    Oct 29 09:15:45 AnilV-InetliMac.local xcsbuildd[3914] <Debug>: [XCSBuildBundle.m:637 7e026310 +0ms] Got credentials from credential operation: {
                  "fb7cf346-fe6e-4336-b893-8b9a06a550e0" = "<XCSCredentialPassword: 0x7fd9b255e850>";

    Hi Anil,
    Am curious to know if this problem has been solved. Have you tried with Xcode 5.1 ?
    Am trying to do this with Xcode 5.1, however am not able succeed the integration. However, am getting a little different error "NSLocalizedDescription=HTTP credential request failed, got HTTP status 400 with headers ".
    From your logs, I can see that you are able to successfully download th credentials, which is failing at my end. Hence it would be great if you let me know where have saved your credentials? Below is the error excerpt:
    Apr 15 13:04:52 estmacsvr01.local xcsbuildd[70827] <Debug>: [XCSCredentialOperation.m:104 7db26310 +0ms] Fetching credential with downloadToken JK~C]!>G!vzyVv)"e?C5j(TNAYYyI[-yV4)/ZAe|t]sfkK+f]u<\vbth^,u.0tVP Apr 15 13:04:52 estmacsvr01.local xcsbuildd[70827] <Debug>: [XCSCredentialServerHTTPClient.m:148 7db26310 +0ms] headerDict before request:
    "X-Apple-Credential-botRunGUID" = "afc45888-b5b4-4d0c-80a1-127ac3d3aa24";
    "X-Apple-Credential-command" = getCredential;
    "X-Apple-Credential-downloadToken" = "JK~C]!>G!vzyVv)\"e?C5j(TNAYYyI[-yV4)/ZAe|t]sfkK+f]u<\\vbth^,u.0tVP";
    Apr 15 13:04:52 estmacsvr01.local xcsbuildd[70827] <Error>: [XCSCredentialServerHTTPClient.m:155 7db26310 +139ms] Got a nil response to a download credential request
    "X-Apple-Credential-botRunGUID" = "afc45888-b5b4-4d0c-80a1-127ac3d3aa24";
    "X-Apple-Credential-command" = getCredential;
    "X-Apple-Credential-downloadToken" = "JK~C]!>G!vzyVv)\"e?C5j(TNAYYyI[-yV4)/ZAe|t]sfkK+f]u<\\vbth^,u.0tVP";
    Apr 15 13:04:52 estmacsvr01.local xcsbuildd[70827] <Debug>: [XCSCredentialOperation.m:109 7db26310 +0ms] Credential callback fired credential = (null), error = Error Domain=XCSCredentialErrorDomain Code=-1 "HTTP credential request failed, got HTTP status 400 with headers { "Accept-Ranges" = bytes; "Content-Length" = 0; Date = "Tue, 15 Apr 2014 07:34:52 GMT"; "X-Apple-Credential-error" = itemNotFound; }" UserInfo=0x7f91e4122ae0 {NSLocalizedDescription=HTTP credential request failed, got HTTP status 400 with headers { "Accept-Ranges" = bytes; "Content-Length" = 0; Date = "Tue, 15 Apr 2014 07:34:52 GMT"; "X-Apple-Credential-error" = itemNotFound; }}
    Your help is greatly appreciated!

  • Xcode continuous integration, Subversion and self-signed certificate won't work altogether.

    Hi!
    I've installed on MacMini Maverick OS with OSX Server.
    Then I've configured the Xcode continuous integration with Subversion (using self-signed certificate), also created bots and etc.
    But It won't work.
    Attached is the log:
    Aug 24 14:03:27 osxserver.iloffice.myhrtg.net xcsbuildd[82719] <Debug>: [XCSCheckoutOperation.m:717 7c087310 +0ms] revision: (null) Aug 24 14:03:27 osxserver.iloffice.myhrtg.net xcsbuildd[82719] <Debug>: [XCSCheckoutOperation.m:718 7c087310 +0ms] log: (null) Aug 24 14:03:27 osxserver.iloffice.myhrtg.net xcsbuildd[82719] <Debug>: [XCSCheckoutOperation.m:719 7c087310 +0ms] checkoutError: Error Domain=NSURLErrorDomain Code=-1202 "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “svn.myheritage.co.il” which could put your confidential information at risk." UserInfo=0x7fb388c4b4e0 {NSURLErrorFailingURLPeerTrustErrorKey=<SecTrust 0x7fb388c18ff0 [0x7fff7baddf00]>, NSLocalizedRecoverySuggestion=Would you like to connect to the server anyway?, NSUnderlyingError=0x7fb389904370 "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “svn.myheritage.co.il” which could put your confidential information at risk.", NSErrorPeerCertificateChainKey=( "<SecCertificate 0x7fb388c6f490 [0x7fff7baddf00]>" ), NSLocalizedDescription=The certificate for this server is invalid. You might be connecting to a server that is pretending to be “svn.myheritage.co.il” which could put your confidential information at risk., NSErrorFailingURLKey=https://svn.myheritage.co.il:8443/svn/mobile/MyHeritageMobileiPhone/branches/Mob ile_with_albums_and_inapp, NSErrorFailingURLStringKey=https://svn.myheritage.co.il:8443/svn/mobile/MyHeritageMobileiPhone/branches/Mob ile_with_albums_and_inapp, NSErrorClientCertificateStateKey=0} Aug 24 14:03:27 osxserver.iloffice.myhrtg.net xcsbuildd[82719] <Error>: [XCSCheckoutOperation.m:732 7c087310 +0ms] Error in SVN checkout Error Domain=NSURLErrorDomain Code=-1202 "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “svn.myheritage.co.il” which could put your confidential information at risk." UserInfo=0x7fb388c4b4e0 {NSURLErrorFailingURLPeerTrustErrorKey=<SecTrust 0x7fb388c18ff0 [0x7fff7baddf00]>, NSLocalizedRecoverySuggestion=Would you like to connect to the server anyway?, NSUnderlyingError=0x7fb389904370 "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “svn.myheritage.co.il” which could put your confidential information at risk.", NSErrorPeerCertificateChainKey=( "<SecCertificate 0x7fb388c6f490 [0x7fff7baddf00]>" ), NSLocalizedDescription=The certificate for this server is invalid. You might be connecting to a server that is pretending to be “svn.myheritage.co.il” which could put your confidential information at risk., NSErrorFailingURLKey=https://svn.myheritage.co.il:8443/svn/mobile/MyHeritageMobileiPhone/branches/Mob ile_with_albums_and_inapp, NSErrorFailingURLStringKey=https://svn.myheritage.co.il:8443/svn/mobile/MyHeritageMobileiPhone/branches/Mob ile_with_albums_and_inapp, NSErrorClientCertificateStateKey=0} <stderr>= (null) Aug 24 14:03:27 osxserver.iloffice.myhrtg.net xcsbuildd[82719] <Error>: [XCSOperation.m:33 7c087310 +0ms] Error Domain=NSURLErrorDomain Code=-1202 "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “svn.myheritage.co.il” which could put your confidential information at risk." UserInfo=0x7fb388c4b4e0 {NSURLErrorFailingURLPeerTrustErrorKey=<SecTrust 0x7fb388c18ff0 [0x7fff7baddf00]>, NSLocalizedRecoverySuggestion=Would you like to connect to the server anyway?, NSUnderlyingError=0x7fb389904370 "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “svn.myheritage.co.il” which could put your confidential information at risk.", NSErrorPeerCertificateChainKey=( "<SecCertificate 0x7fb388c6f490 [0x7fff7baddf00]>" ), NSLocalizedDescription=The certificate for this server is invalid. You might be connecting to a server that is pretending to be “svn.myheritage.co.il” which could put your confidential information at risk., NSErrorFailingURLKey=https://svn.myheritage.co.il:8443/svn/mobile/MyHeritageMobileiPhone/branches/Mob ile_with_albums_and_inapp, NSErrorFailingURLStringKey=https://svn.myheritage.co.il:8443/svn/mobile/MyHeritageMobileiPhone/branches/Mob ile_with_albums_and_inapp, NSErrorClientCertificateStateKey=0} Aug 24 14:03:27 osxserver.iloffice.myhrtg.net xcsbuildd[82719] <Debug>: [XCSOperation.m:28 7c087310 +0ms] Cancelling operation: XCSCheckoutOperation Aug 24 14:03:27 osxserver.iloffice.myhrtg.net xcsbuildd[82719] <Error>: [XCSBuildBundle.m:790 7c087310 +0ms] Got an error from the checkout operation: Error Domain=NSURLErrorDomain Code=-1202 "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “svn.myheritage.co.il” which could put your confidential information at risk." UserInfo=0x7fb388c4b4e0 {NSURLErrorFailingURLPeerTrustErrorKey=<SecTrust 0x7fb388c18ff0 [0x7fff7baddf00]>, NSLocalizedRecoverySuggestion=Would you like to connect to the server anyway?, NSUnderlyingError=0x7fb389904370 "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “svn.myheritage.co.il” which could put your confidential information at risk.", NSErrorPeerCertificateChainKey=( "<SecCertificate 0x7fb388c6f490 [0x7fff7baddf00]>" ), NSLocalizedDescription=The certificate for this server is invalid. You might be connecting to a server that is pretending to be “svn.myheritage.co.il” which could put your confidential information at risk., NSErrorFailingURLKey=https://svn.myheritage.co.il:8443/svn/mobile/MyHeritageMobileiPhone/branches/Mob ile_with_albums_and_inapp, NSErrorFailingURLStringKey=https://svn.myheritage.co.il:8443/svn/mobile/MyHeritageMobileiPhone/branches/Mob ile_with_albums_and_inapp, NSErrorClientCertificateStateKey=0} Aug 24 14:03:27 osxserver.iloffice.myhrtg.net xcsbuildd[82719] <Debug>: [XCSBuildBundle.m:850 7c087310 +0ms] Starting upload files operation Aug 24 14:03:27 osxserver.iloffice.myhrtg.net xcsbuildd[82719] <Debug>: [XCSBuildBundle.m:1018 7c087310 +0ms] Updating bot run status to running, substatus to uploading Aug 24 14:03:27 osxserver.iloffice.myhrtg.net xcsbuildd[82719] <Info>: [CSRemoteServiceClient.m:151 7c087310 +0ms] Connecting to https://localhost:4443/svc to execute [https]Request{AuthService.enterMagicalAuthRealm()} Aug 24 14:03:27 osxserver.iloffice.myhrtg.net xcsbuildd[82719] <Debug>: [XCSBuildHelper.m:97 7c087310 +38ms] Updating bot run with GUID cccf1c74-6c5a-4fff-a57f-5e5bead09457 Aug 24 14:03:27 osxserver.iloffice.myhrtg.net xcsbuildd[82719] <Debug>: [XCSBuildHelper.m:102 7c087310 +0ms] Updating bot run (cccf1c74-6c5a-4fff-a57f-5e5bead09457): { guid = "cccf1c74-6c5a-4fff-a57f-5e5bead09457"; status = running; subStatus = uploading; } Aug 24 14:03:27 osxserver.iloffice.myhrtg.net xcsbuildd[82719] <Info>: [CSRemoteServiceClient.m:151 7c087310 +0ms] Connecting to https://localhost:4443/svc to execute [https]Request{XCBotService.updateBotRun:({ guid = "cccf1c74-6c5a-4fff-a57f-5e5bead09457"; status = running; subStatus = uploading; })}
    Hope you'll be able to assist me find what I'm doing wrong.
    Thanks in advance.

    Did anyone find a way around this? I have the exact same error and tried the exact same solution.
    The Xcode 5 release notes described a problem that sounds similar.
    Communicating with a remote SVN repository over HTTPS can fail with an error similar to “Error validating server certificate for server name.” Edit the file /Library/Server/Xcode/Config/xcsbuildd.plist and change the TrustSelfSignedSSLCertificates key from false to true. Then, from a Terminal window, run: sudo killall xcsbuildd. 14639890
    https://developer.apple.com/library/ios/releasenotes/DeveloperTools/RN-Xcode/Cha pters/xc5_release_notes.html
    I haven't found a similar fix for Xcode 6 though.

  • Continuous Integration and Fusion Middleware Applications

    Hi All,
    My Development environment:
    IDE: Jdeveloper 11.1.1.6
    ADF
    Version control: Perforce
    App server: Weblogic 10.3.6
    We are developing Fusion Middleware application. Till this stage we developed application without BPM/SOA suite. Next phase we will going to start BPM.
    Now we are plan to make first build of our application.
    My Deployment environment:
    App server: 10.3.6
    Build tool: Hudson (with Maven)
    Testing tool: Junit,Selenium
    Build Script: Ruby Rack
    Use case: In Perforce,after every commit integrate and test the old code with new committed code and make build and deployed to our Web server.
    We figure out the CI and how it works with Hudson.
    Please give a detailed explanation about how to integrate my FMW application with the deployment tools(i.e. from testing to build)  in my environment.
    Ex. where to install Hudson, as a standalone or in Weblogic server for FMW(??).
    Kindly provide the simple steps to understand the CI with FMW application.
    Please revert more clarifications needed.
    Thanks and Regards
    Mohanraj N

    See parts 2 and 3 of this tutorial:
    Using JUnit, Ant and Hudson for Continuous Integration
    More in this series:
    http://www.oracle.com/technetwork/articles/adf/adf-essentials-098792.html

  • Continuous Integration in WebLogic Integration 9.2.2

    Is anyone using Cruise Control or another type of continuous integration solution to build WLI EARs using subversion as a code repository?
    We're running into an issue where we can't refresh the workspace without launching workshop and doing a refresh in there. We are trying to develop a continuous integration build (Cruise Control, Ant, Subversion) with this product, but cannot get the refresh from subversion working.
    We've searched countless reaches of the internet and worked some with Oracle support and still don't have a viable solution. We're reaching out to our Sales team now to see if they have any information about other groups trying to do the same thing.
    So, I need to ask... Is ANYONE doing this??? and if so, can we get an idea of how it's getting done?? We are really under the gun to get something working, and it seems like everything works except this one piece. We really need some help from someone who has done this before.
    At this point, we're not married to using Cruise Control and Ant either. If anyone has gotten a process like this working for this product, we're happy to explore a new way of doing it.
    Edited by: DoubleT on Apr 7, 2009 10:28 AM

    Thanks for the reply David. The problem we're having is that when you are in Workshop, there is the option, under the "File" menu to "Refresh" (F5) You sometimes need to do this to refresh your workspace. I'm sorry, I'm not a developer, so I don't know the details behind what that actually does, other than it "refreshes the workspace" so we can pick up the changes made and checked into subversion.
    Without performing this step, you don't always build from the latest and greatest code.
    The problem we're facing is that it seems that you need to be in Workshop to perform this step. There is a scripted way to do the refresh, but it requires you to open Workshop and run the script. What we're trying to accomplish is a truly scripted solution. All the other steps in the build process can be performed without opening Workshop, but because we can't figure out a way to do this one piece, we cannot have an automated build process.
    - Brian

  • SSIS 2012 continuous integration using msbuild

    Hi,
    I have an SSIS 2012 project file *.dtproj. I want to create .ispac file from a program for continuous integration. I saw posts saying we cannot do it using msbuild. What are the other options? Has anyone used ssismsbuild (sqlsrvintegrationsrv codeplex)
    I am very new to .NET and SSIS. Any example or step by step instruction to achieve this is highly appreciated.
    Thanks,
    Rajesh

    Hi Rajesh
    I created a CI system for SSIS 2012. I used Microsoft.SqlServer.IntegrationServices.Build.dll from
    the  (Microsoft
    SQL Server Community Samples: Integration Services) to make the MSBuild working. Jenkins is used
    for CI system. Details can be found from this link: http://speaksql.wordpress.com/2013/09/04/ssis-2012-continuous-integration-using-jenkins-and-octopus-a-journey-to-db-deployment-automation/

  • Xcode Continuous integration - latestRunSubStatus = internal-credential-server-error

    Greetings.
    I have been trying to make continuous integration build using Bots with Xcode 5.1(5B130a) from Xcode server (3.1.1). The SCM is configured with external svn repository, which am able to successfully browse from safari.
    Am trying to make integration from server web portal & as well as using xcode from development mac. Unfortunately both are failing with "internal-credential-server-error".After chasing my tail fro quite some time, I could get rid of "Internal-checkout-error" , however got stuck again with "internal-credential-server-error".
    Though I see some similar errors in other posts, none of them seem to have this particular error. Hence, wanted to know where should I be storing my SVN credentials for successful svn checkout?
    Here is the excerpt of my log highlighting the error:
    Apr 15 13:04:52 estmacsvr01.local xcsbuildd[70827] <Debug>: [XCSOperation.m:16 7db26310 +0ms] Executing operation: XCSCredentialOperation Apr 15 13:04:52 estmacsvr01.local xcsbuildd[70827] <Debug>: [XCSCredentialOperation.m:68 7db26310 +0ms] Processing credentials for each scm URI in ( "/" )
    Apr 15 13:04:52 estmacsvr01.local xcsbuildd[70827] <Debug>: [XCSCredentialOperation.m:84 7db26310 +0ms] Processing scmItem / with credential download token JK~C]!>G!vzyVv)"e?C5j(TNAYYyI[-yV4)/ZAe|t]sfkK+f]u<\vbth^,u.0tVP
    Apr 15 13:04:52 estmacsvr01.local xcsbuildd[70827] <Debug>: [XCSCredentialOperation.m:94 7db26310 +0ms] Creating credential path at /Library/Server/Xcode/Data/BotRuns/BotRun-afc45888-b5b4-4d0c-80a1-127ac3d3aa24. bundle/credentials/580b83d4-baf5-4a28-b175-cff32c7c701c Apr 15 13:04:52 estmacsvr01.local xcsbuildd[70827] <Debug>: [XCSCredentialOperation.m:104 7db26310 +0ms] Fetching credential with downloadToken JK~C]!>G!vzyVv)"e?C5j(TNAYYyI[-yV4)/ZAe|t]sfkK+f]u<\vbth^,u.0tVP
    Apr 15 13:04:52 estmacsvr01.local xcsbuildd[70827] <Debug>: [XCSCredentialServerHTTPClient.m:148 7db26310 +0ms] headerDict before request: { "X-Apple-Credential-botRunGUID" = "afc45888-b5b4-4d0c-80a1-127ac3d3aa24"; "X-Apple-Credential-command" = getCredential; "X-Apple-Credential-downloadToken" = "JK~C]!>G!vzyVv)\"e?C5j(TNAYYyI[-yV4)/ZAe|t]sfkK+f]u<\\vbth^,u.0tVP"; }
    Apr 15 13:04:52 estmacsvr01.local xcsbuildd[70827] <Error>: [XCSCredentialServerHTTPClient.m:155 7db26310 +139ms] Got a nil response to a download credential request
    { "X-Apple-Credential-botRunGUID" = "afc45888-b5b4-4d0c-80a1-127ac3d3aa24"; "X-Apple-Credential-command" = getCredential; "X-Apple-Credential-downloadToken" = "JK~C]!>G!vzyVv)\"e?C5j(TNAYYyI[-yV4)/ZAe|t]sfkK+f]u<\\vbth^,u.0tVP"; }
    Apr 15 13:04:52 estmacsvr01.local xcsbuildd[70827] <Debug>: [XCSCredentialOperation.m:109 7db26310 +0ms] Credential callback fired credential = (null), error = Error Domain=XCSCredentialErrorDomain Code=-1 "HTTP credential request failed, got HTTP status 400 with headers
    { "Accept-Ranges" = bytes; "Content-Length" = 0; Date = "Tue, 15 Apr 2014 07:34:52 GMT"; "X-Apple-Credential-error" = itemNotFound; }"
    UserInfo=0x7f91e4122ae0 {NSLocalizedDescription=HTTP credential request failed, got HTTP status 400 with headers
    { "Accept-Ranges" = bytes; "Content-Length" = 0; Date = "Tue, 15 Apr 2014 07:34:52 GMT"; "X-Apple-Credential-error" = itemNotFound; }}
    Apr 15 13:04:53 estmacsvr01.local xcsbuildd[70827] <Error>: [XCSCredentialOperation.m:111 7db26310 +0ms] Failed to get credential with error Error Domain=XCSCredentialErrorDomain Code=-1 "HTTP credential request failed, got HTTP status 400 with headers { "Accept-Ranges" = bytes; "Content-Length" = 0; Date = "Tue, 15 Apr 2014 07:34:52 GMT"; "X-Apple-Credential-error" = itemNotFound; }" UserInfo=0x7f91e4122ae0 {NSLocalizedDescription=HTTP credential request failed, got HTTP status 400 with headers { "Accept-Ranges" = bytes; "Content-Length" = 0; Date = "Tue, 15 Apr 2014 07:34:52 GMT"; "X-Apple-Credential-error" = itemNotFound; }}
    Any help is greatly appreciated!

    Did anyone find a way around this? I have the exact same error and tried the exact same solution.
    The Xcode 5 release notes described a problem that sounds similar.
    Communicating with a remote SVN repository over HTTPS can fail with an error similar to “Error validating server certificate for server name.” Edit the file /Library/Server/Xcode/Config/xcsbuildd.plist and change the TrustSelfSignedSSLCertificates key from false to true. Then, from a Terminal window, run: sudo killall xcsbuildd. 14639890
    https://developer.apple.com/library/ios/releasenotes/DeveloperTools/RN-Xcode/Cha pters/xc5_release_notes.html
    I haven't found a similar fix for Xcode 6 though.

  • How to alter length and other things in this template?

    Hi
    New to Motion 3 - trying to alter a template - called "Large Format.HDV" - the one with three cropped boxes that slide into view, then out of view, then 3 more slide in...
    I want to start out with a clip full frame, then at 2 sec 21 frames I need it to shrink back to the default size of the template's frame box #1, then the template's box sizes can continue as they are - but I need also to alter timing - ie, need for the template's boxes to be on screen longer before moving off...I've tried for 5 hours to figure this out, not sure the proper steps - how to place keyframes, where on which layer...can anyone help?
    Thanks much
    K

    Well, I assume you mean Large Format HD. Looking at the template I noticed that the movement by the boxes is in reality a camera move. If you want to speed or slow down the movement of the boxes you'll need to adjust the keyframes in the position parameter of the camera. You can click the icon to the right of the position parameter and choose SHOW KEYFRAMES IN EDITOR. Alter those and you'll change your speed.
    As for the size of the frames, you can apply a grow/shrink behavior at the point you mentioned or else just keyframe the scale of the drop zone you want.
    Hope that helps.
    Andy

  • Continuous integration

    Hi - I am looking for good resources to implement the Continuous Integration (CI) to our MSBI project using TFS.  We have .sql scripts, SSIS packages and SSRS reports.  I got some idea on how to build using Build defintion but unsure about deployment
    after build queue completed successfully. Could you please enlighten me how can I deploy them after build in TFS.
    thanks

    Regarding SSIS, I'd simply do a post build step to deploy.
    E.g. with DTUtil.exe
    But the BI stuck is not quite well suited for CI frankly.
    Arthur
    MyBlog
    Twitter

  • Continuous Integration/Delivery with BizTalk Server

    Can anyone point to good information on how to implement real-world continuous integration, and better continuous delivery, with BizTalk server?
    Thanks!

    There are some articles that would help you in your quest
    Continuous Integration using TFS -
    http://msdn.microsoft.com/en-us/library/ms364045(v=vs.80).aspx
    Custom Build Process Templates for Continuous Integration in BizTalk Server -
    http://code.msdn.microsoft.com/windowsdesktop/Custom-build-process-0a1c3ae7
    BizTalk Integration Development Architecture - by Leonid -
    http://blogs.msdn.com/b/mvpawardprogram/archive/2013/09/23/biztalk-integration-development-architecture.aspx
    Continuous Integration for BizTalk - blog -
    http://ahsanmajeed.wordpress.com/2014/01/06/continuous-integration-for-biztalk-2010/
    IMHO, the trick would be to decompose the project/task into fragments/section such that the principles of continuous build may be applied.
    Regards.

  • SD and PP Integration

    Hi ,
    Can any 1 explain me step by step process for SD and PP integration.
    Thanks,

    Nishant,
    Its not through a particular t.code that SD and PP for that matter modules integrate with each other. The data from one module flows to the other depending on the activity selected in a systematic way.
    To take one example of SD_ PP , when a sales order is created, say for finished goods which we produce in house, for the line items in that order, planned orders are generated. We can see the stock requirement list with T.code MD04. The list we see there is because of the MRP run. Can be done with T. code MD02.
    Now these requirements ie planned orders are converted into production orders. Whatever raw materials required to produce those line items are checked if they are available, else the requirement goes to MM, from there to a vendor. After they come production takes place and the stock is put into unrestricted use afer quality inspection. And the cycle continues.
    Here we can see SD_PP_MM integrating. Also the MRP views are an integration between SD,MM,PP.
    Amit.

  • Mixing Assembly and C/C++

    Greetings,
    This is my first post here! Anyway, I'm trying to get my hands dirty with SPARC assembly, but am having trouble calling routines written in assembly, and assembled with GAS from my C++ program. An explanation follows:
    I have the following routine in a .S file, which reads the SPARC performance counter:
    -- begin readtick.S --
    .global readtick
    .section ".text"
    .align 4
    readtick:     
         rd %tick, %o0
         srl %o0, %g0, %o1
         retl
         or %o0, %o1, %o0
    -- end readtick.S --
    Then, I have a simple C program, which I use to test the function:
    -- begin read_tick.c --
    #include <stdio.h>
    #include <unistd.h>
    #include <sys/time.h>
    extern unsigned long long readtick (void);
    int
    main (int argc, char **argv)
         unsigned long long t0, t1;
         puts ("readtick");
         t0 = readtick();
         sleep(1);
         t1 = readtick();
         printf ("clock speed: %lu Hz\n", (t1 - t0));
         return 0;
    -- end read_tick.c --
    Then, to build I do the following:
    as -xarch=v8plus readtick.S -o readtick.o
    cc read_tick.c readtick.o -o read_tick
    This works fine, but if I move the code to a different, much larger C++ program, and build the relevant files the same way, I get the following message from the Debugger:
    Signal Caught:
    Signal received: SIGSEVG(11) with sigcode MAPERR(1)
    From process: 0
    For program pretendo, pid 15145
    ... and so on...
    trying to continue, I get the following message:
    (dbx) cont
    t@1 (l@1) signal SEGV (no mapping at the fault address) in (unknown) at 0x0
    0x00000000: <bad address 0x0>
    dbx: read of 4 bytes at address 0 failed -- Error 0
    Additionally, I tried calling an empty stub, which simply did
    retl
    nop
    and get the same results.
    Well that pretty much sums up the boat I'm in. Wondering if someone could perhaps shed some light on this for me. Any and all help would be kindly appreciated, and if I've left out any relevant infos, please let me know. Thanks.
    Eli Dayan

    I have the following routine in a .S file, which
    reads the SPARC performance counter:
    -- begin readtick.S --
    .global readtick
    .section ".text"
    .align 4
    readtick:     
         rd %tick, %o0
         srl %o0, %g0, %o1
         retl
         or %o0, %o1, %o0
    -- end readtick.S --I think you probably want something more like:
    readtick:
    rd %tick, %o1
    srlx %o1, 32, %o0
    retl
    srl %o1, 0, %o1
    For returning 64-bit values in 32-bit code,
    the high 32-bits goes in %o0,
    and the low 32-bits goes in %o1.
    I've zero-extended both 32-bit values,
    though I don't think that is strictly necessary.
    Then, I have a simple C program, which I use to test
    the function:
    -- begin read_tick.c --
    #include <stdio.h>
    #include <unistd.h>
    #include <sys/time.h>
    extern unsigned long long readtick (void);
    int
    main (int argc, char **argv)
         unsigned long long t0, t1;
         puts ("readtick");
         t0 = readtick();
         sleep(1);
         t1 = readtick();
         printf ("clock speed: %lu Hz\n", (t1 - t0));
         return 0;
    -- end read_tick.c --You should use a "%llu" to print an "unsigned long long" value.
    Then, to build I do the following:
    as -xarch=v8plus readtick.S -o readtick.o
    cc read_tick.c readtick.o -o read_tick
    This works fine, but if I move the code to a
    different, much larger C++ program, and build the
    relevant files the same way, I get the following
    message from the Debugger:
    Signal Caught:
    Signal received: SIGSEVG(11) with sigcode MAPERR(1)
    From process: 0
    For program pretendo, pid 15145
    ... and so on...
    trying to continue, I get the following message:The segv is unlikely to be caused by the readtick function,
    unless you are trying to use its return value
    as an address or as an index without checking the range.
    You can ask dbx "where" and "regs",
    and possibly determine more about why it died.
    Additionally, I tried calling an empty stub, which
    simply did
    retl
    nop
    and get the same results.This seems like a further indication that the problem
    is not with the readtick, but with some other piece of code.
    Peter.
    -pd 7/25/05

  • TS1587 Intel iMac won't light up and continues to make three load beeps.... What's that about, never happened before.

    Intel iMac won't light up and continues to make three load beeps.... What's that about, never happened before.

    Hello, sounds like bad RAM...
    The following table lists the new tones and their meaning:
    Tone(s)    Description
    1 tone, a 5-second pause, repeat    No RAM installed
    3 successive tones, a 5-second pause, 3 successive tones    RAM does not pass data integrity check
    1 long tone when holding down the power button    Firmware upgrade in process. See About firmware updates for Intel-based Macs for more details.
    3 long tones, 3 short tones, 3 long tones    Firmware restoration from CD in process. See About the Firmware Restoration CD (Intel-based Macs) for more details.
    http://support.apple.com/kb/HT2538

  • Continuous Integration builds fail: PDB file in use?

    I've got continuous integration running on our VSO project. The project builds and tests fine on 3 different computers (Clean / Build -> Run tests), but on VSO the build has been failing for 2 days with the following error:
    CSC: Unexpected error creating debug information file 'c:\a\src\Code\DMi.Bms.CrossCuttingConcerns\obj\Debug\DMi.Bms.CrossCuttingConcerns.PDB' -- 'c:\a\src\Code\DMi.Bms.CrossCuttingConcerns\obj\Debug\DMi.Bms.CrossCuttingConcerns.pdb: The process cannot access the file because it is being used by another process
    A lot of the solutions are all about developing in your local Visual Studio, mostly people having multiple IDE's open, or even debugging. None of these are the case for me, and I can't find anything pertaining this problem on Visual Studio Online.
    Can anyone give me a hint?

    Hi
    Stijn,
    I'd like to know if there any update. If the issue is fixed, please share your solution here. If not,  try the methods I mentioned above to check if there
    any useful information in the build log and this issue can be resolved.
    Or you can use a newer version of Azure SDK. Also add
    Microsoft.WindowsAzure.targets to source control and check in with your solution. Then build with VSO build to have a check. Thanks for your understanding.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

Maybe you are looking for

  • How to prevent headings from automatically appearing in the doc

    Hi, I want to generate "printed documentation," in other words a Word file, from RoboHelp. RoboHelp automatically is taking the names of my TOC books and is putting them at the top of each section  in the doc file as a heading (uses the same styles c

  • Album sort order missing

    I want to use 'Recently Added' in album view while hiding all rated albums. I do not understand why the new 'album' sort order is restricted to only a few fields, while the 'songs' sort order doesn't have the two-level; sorting that the album sort or

  • Panasonic GS400 camera

    I am considering the purchase of a Panasonic GS400 3CCD widescreen camera and am wondering if anyone here has imported video from this model to iMovie HD6? If they have, were there were any problems with the aspect ratio and using iDVD wide-screen me

  • HTTPS Configuration for all BSP appliation users

    Hi , I have enabled HTTPS Configuration for BSPApp using X509 certtfictes in our CRM Landscape. This i have done for list of users and it working well. I want the same functionality for all users,  Please suugest me. Regards, Satya

  • Can not open .pages file on new iMac Mavericks

    Cannot open a .pages file on 2014 iMac with Mavericks. Pages v 5.2.2  says there is a newer version but I cannot upgrade Pages either. Thoughts?