Content Server Publishing Target paths do not match

In Content Server 5.0.2, I need to change the publishing target information from a local mapped drive to an FTP site hosted by a third party. After entering all the information and I click "Test Publish Target", I get the following error:
"The site specified by the Browser Path does not match the Transfer Path location."
The transfer path looks something like this:
ftp://upload.thirdparty.com/12345/target_folder/
and the browser path like this:
http://download.server.com/target_folder/
Can someone tell me why I get this error? Is it because upload.thirdparty.com and download.server.com aren't the same (they are, in fact, different machines)? I don't think it's the "12345" folder that's causing this problem because I also specified it in the browser path and I got the same error.
Any help would be greatly appreciated.
Thanks,
-Jose

Just to follow up and in case anyone is interested, I was able to publish to my new destination folder in spite of receiving this error.
I assumed that I couldn't publish to the new destination because I was getting this error, but that's clearly not the case. I guess this "Path" check is there as a tool to help, but it doesn't necessarily apply to all configurations.

Similar Messages

  • Server failed to start: The domain path does not match the running server

    Hi,
    I've configured Eclipse to run my local weblogic - which actually is working fine.
    The server starts as intended and reaches state RUNNING.
    As soon as this happens, OEPE tries to validate the server and compares the identified server's configuration to the expected configuration.
    This finally results into the error message shown in the subject -- though server is still running.
    !MESSAGE Server watcher[Oracle WebLogic Server 11gR1 PatchSet 1 at localhost]:The domain path does not match the running server.
    Domain RootDirectory retrieved from the MBean of running server is: N:\Oracle\MIDDLE~1\USER_P~1\domains\MYWEBL~1\
    Domain RootDirectory of this server: N:\Oracle\Middleware\user_projects\domains\myWeblogicServer
    Obviously this seems to be an issue with the length of the directory and file names. The domain's configuration and all its start scripts do not have any 8+3 pathes, like USER_P~1 for user_projects. Nevertheless the MBean of the server returns such a "truncated" path which in turn is invalid for OEPE.
    Fix: When setting up the domain in Eclipse, try using that 8+3 representation of the domain's location. Then the comparison will succeed...
    My Question: Where do we need to ask for a fix in OEPE? The 8+3 path is still a valid one ...
    Best Regards
    Philipp

    I haven't been able to reproduce this and 8+3 representation of the domain's location shouldn't be required.
    Can you provide more information:
    - is this a network drive?
    - what is your OS: XP, Vista, Win7?
    - what is the Windows file system type, is it FAT or NTFS
    - Can you try install WLS on C:, e.g. C:\Oracle\Middleware\user_projects and see if it still happens?

  • IMPORT Target Portal does not match the Source Portal version

    Hi,
    Executing the import via the command line gives me the following error: Error: Target Portal does not match the Source Portal version
    Cannot proceed with Import
    Checking the output of the script tells me that the portal source has version 9.0.2.6 and the target 9.0.4.0.
    Does this mean that there is no backwards compatibilty?
    How should I continue from here?
    Best Regards

    Portal Export/Import utilities are designed only to work between Portals which are at the same version level.
    For more information, please see this section in the Portal Export/Import FAQ for 9.0.2.6:
    http://portalstudio.oracle.com/pls/ops/docs/FOLDER/COMMUNITY/OTN_CONTENT/MAINPAGE/DEPLOY_PERFORM/9023_EXPORT_IMPORT_FAQ_0308.HTM#question_5
    OracleAS Portal allows you to upgrade your existing content to the latest release of Portal.
    What you need to do in your particular case is to upgrade your existing portal installation from 9.0.2.6 to 9.0.4 before using Portal Export/Import between your two portal instances.
    Best Regards,
    Harry

  • Issue - BI content server(11.1.1.1) not starting in obiee 11g:

    Hello All,
    BI content server(11.1.1.1) is not starting in obiee 11g after making OBIEE 11g services as windows service.
    Services are starting when we do a Start BI Services from All Programs >> OBIEE. On the contrary, when we start from windows service "bi content server(11.1.1.1) not starting in obiee 11g" is not starting.
    Can someone help me on this. In case if you need any more info, please let me know.
    Thank you,
    Bimal

    Below is the BI Script I used. Everything is in this script so no need to edit the installsvc file. Just edit the location/variables used as well as at the bottom change the name of the script and the log location. The BI_ORACLE_HOME variable needs to be set in the script.
    SETLOCAL
    set DOMAIN_NAME=bifoundation_domain
    set USERDOMAIN_HOME=D:\oracle\Middleware\user_projects\domains\bifoundation_domain
    set SERVER_NAME=bi_server1
    set PRODUCTION_MODE=true
    set ADMIN_URL=http://djaxwapp9608.common.ecamericas:7001
    set JAVA_HOME=D:\Oracle\Middleware\Oracle_BI1\jdk
    set DOMAIN_HOME=D:\oracle\Middleware\user_projects\domains\bifoundation_domain
    set WLS_HOME=D:\Oracle\Middleware\wlserver_10.3
    set INSTANCE_HOME=D:\oracle\Middleware\instances\instance1
    set BI_ORACLE_HOME=D:\oracle\Middleware\Oracle_BI1
    set ANT_HOME=%MW_HOME\modules\org.apache.ant_1.7.1
    set DOMAIN_NAME=bifoundation_domain
    Call "D:\Oracle\Middleware\user_projects\domains\bifoundation_domain\bin\setDomainEnv.cmd"
    set WL_HOME=D:\Oracle\Middleware\wlserver_10.3
    call "%WL_HOME%\common\bin\commEnv.cmd"
    @rem Check that the WebLogic classes are where we expect them to be
    :checkWLS
    if exist "%WL_HOME%\server\lib\weblogic.jar" goto checkJava
    echo The WebLogic Server wasn't found in directory %WL_HOME%\server.
    echo Please edit your script so that the WL_HOME variable points
    echo to the WebLogic installation directory.
    goto finish
    @rem Check that java is where we expect it to be
    :checkJava
    if exist "%JAVA_HOME%\bin\java.exe" goto runWebLogic
    echo The JDK wasn't found in directory %JAVA_HOME%.
    echo Please edit your script so that the JAVA_HOME variable
    echo points to the location of your JDK.
    goto finish
    :runWebLogic
    if not "%JAVA_VM%" == "" goto noResetJavaVM
    if "%JAVA_VENDOR%" == "BEA" set JAVA_VM=-jrocket
    if "%JAVA_VENDOR%" == "HP" set JAVA_VM=-server
    if "%JAVA_VENDOR%" == "Sun" set JAVA_VM=-server
    :noResetJavaVM
    if not "%MEM_ARGS%" == "" goto noResetMemArgs
    set MEM_ARGS=-Xms32m -Xmx200m
    :noResetMemArgs
    @echo on
    set CLASSPATH=%WEBLOGIC_CLASSPATH%;%CLASSPATH%
    @echo ***************************************************
    @echo * To start WebLogic Server, use the password *
    @echo * assigned to the system user. The system *
    @echo * username and password must also be used to *
    @echo * access the WebLogic Server console from a web *
    @echo * browser. *
    @echo ***************************************************
    rem *** Set Command Line for service to execute within created JVM
    @echo off
    set MEM_ARGS=-Xms256m -Xmx512m -XX:MaxPermSize=512m -XX:-UseSSE42Intrinsics
    if "%ADMIN_URL%" == "" goto runAdmin
    @echo on
    set CMDLINE="%JAVA_VM% %MEM_ARGS% %JAVA_OPTIONS% -classpath \"%CLASSPATH%\" -Dweblogic.Name=%SERVER_NAME% -Dweblogic.management.username=%WLS_USER% -Dweblogic.management.server=\"%ADMIN_URL%\" -Dweblogic.ProductionModeEnabled=%PRODUCTION_MODE% -Djava.security.policy=\"%WL_HOME%\server\lib\weblogic.policy\" weblogic.Server"
    goto finish
    :runAdmin
    @echo on
    set CMDLINE="%JAVA_VM% %MEM_ARGS% %JAVA_OPTIONS% -classpath \"%CLASSPATH%\" -Dweblogic.Name=%SERVER_NAME% -Dweblogic.management.username=%WLS_USER% -Dweblogic.ProductionModeEnabled=%PRODUCTION_MODE% -Djava.security.policy=\"%WL_HOME%\server\lib\weblogic.policy\" weblogic.Server"
    :finish
    rem *** Set up extrapath for win32 and win64 platform separately
    if "%WL_USE_X86DLL%" == "true" set EXTRAPATH=%WL_HOME%\server\native\win\32;%WL_HOME%\server\bin;%JAVA_HOME%\jre\bin;%JAVA_HOME%\bin;%WL_HOME%\server\native\win\32\oci920_8
    if "%WL_USE_IA64DLL%" == "true" set EXTRAPATH=%WL_HOME%\server\native\win\64\;%WL_HOME%\server\bin;%JAVA_HOME%\jre\bin;%JAVA_HOME%\bin;%WL_HOME%\server\native\win\64\oci920_8
    if "%WL_USE_AMD64DLL%" == "true" set EXTRAPATH=%WL_HOME%\server\native\win\x64\;%WL_HOME%\server\bin;%JAVA_HOME%\jre\bin;%JAVA_HOME%\bin;%WL_HOME%\server\native\win\x64\oci920_8
    rem *** Install the service
    "%WL_HOME%\server\bin\beasvc" -install -svcname:"3.Oracle BI 11g BI Server" -javahome:"%JAVA_HOME%" -execdir:"%USERDOMAIN_HOME%" -maxconnectretries:"%MAX_CONNECT_RETRIES%" -host:"%HOST%" -port:"%PORT%" -extrapath:"%EXTRAPATH%" -password:"%WLS_PW%" -cmdline:%CMDLINE% -log:"D:\Oracle\Middleware\ServiceStartLogs\BIServer-stdout.txt"
    ENDLOCAL
    Edited by: J.A.M on Mar 31, 2012 8:51 AM

  • Error while trying to install NI-VISA driver on SUSE LINUX 11.1(The version of gcc in the path does not match the version of gcc used to compile the currently running kernel.)

    hi i am trying to install NI-VISA driver on SUSE LINUX 11.1.
     the error message it shows is
              ******************************** ERROR ****************************************
    * The version of gcc in the path does not match the version of gcc used to    *
    * compile the currently running kernel.  This can cause unpredictable         *
    * behavior in kernel drivers and should be fixed.                             *
    * gcc version: Linux)                                                          *
    * kernel compiled with: 4.3.2                                                 *
    ******************************** ERROR ****************************************
    my kernel source version is 
       linux-8nes:/home/admin # rpm -qi kernel-source
    Name        : kernel-source                Relocations: /usr/src
    Version     : 2.6.27.29                         Vendor: openSUSE
    Release     : 0.1.1                         Build Date: Sun 16 Aug 2009 03:43:52 PM IST
    Install Date: Sat 24 Oct 2009 02:13:12 AM IST      Build Host: rinck
    Group       : Development/Sources           Source RPM: kernel-source-2.6.27.29-0.1.1.src.rpm
    Size        : 309251954                        License: GPL v2 only
    Signature   : RSA/8, Sun 16 Aug 2009 03:57:25 PM IST, Key ID b88b2fd43dbdc284
    Packager    : http://bugs.opensuse.org
    URL         : http://www.kernel.org/
    Summary     : The Linux Kernel Sources
    Description :
    Linux kernel sources with many fixes and improvements.
    Authors:
        Linus Torvalds <[email protected]>
        see /usr/src/linux/CREDITS for more details.
    Source Timestamp: 2009-08-15 17:53:59 +0200
    GIT Revision: 8a413546901c407e96f7fba18574cceeb40452af
    GIT Branch: SLE11_BRANCH
    Distribution: openSUSE 11.1 
    i had also installed GCC 4.3.2.
    it shows the error message as i had posted.
    please kindly help me on this.
    Thanks and regards,
    P.karthick

    Check this solution

  • Content Server - Publish to Directory Feature

    Is there anyway to automatically publish content items to a folder in the Knowledge Directory in addition to the publishing target within Content Server? I see that you can rclick on individual "articles" and publish them to the KD. We just want that to happen automatically whenever an item is published.

    The "reference" Content Item would use a Data Entry Template that had an item reference property, and a Presentation Template which just used the Insert tag on that item property, e.g. <pcs:insert expr="My_Item"></pcs:insert>.
    Then you could create "reference" Content items that refered that item you want published multiple times, placing those "reference" Content items in a folder with a different publishing target. Thus when that "reference" item is published, it will effectively publish the item to which it refers to a different location. You could also employ the Related Item Publishing feature contained in the Data Entry Template in order to automate this somewhat, so that when one item is published the other is published automatically as well.
    But this is all a bit of a hack and awkward. If you need to rely on identical published content existing in multiple places in a production setting, I still recommend using a file replication utility.

  • IWeb pages published in folder do not match pages published on .mac

    After creating a photography website in iWeb '07, I am unable to have the contents of that website that I publish to a folder match what I created in iWeb and/or published on .mac.
    In other words, when I publish a page of photos to a folder (to later add paypal html coding) the html version does not match the published version on .mac.
    Has anyone experienced this problem?
    I was orgininally able to have the html file match the .mac version verbatim but after I added and deleted a few photos, the html file in the folder (as viewed with TextEdit) has not matched the edited changes ever since.
    Any help, ideas or suggestion on this would be very helpful. The folks at the Apple store and at Apple Care were not able to help.

    yeah, same here. I have more than 60 Video Tutorials on my site for free, many of them on iWeb so please have a look, as some of them definitely address your questions.
    It is at http://www.australianmac.com and click on Tutorials on the top of the page. If they do not help then email me from the site and I will make you one that does.
    Dave
    ( I may receive some form of compensation, financial or otherwise, from my recommendation or link. )
    < Edited by Host >

  • Content Server HTTP error: 405 Method Not Allowed in CSADMIN transaction

    Hello,
    After installing the content server, when configuring in CSadmin
    transaction, when we try to save the new settings, I get the errror
    HTTP error: 405 Method Not Allowed.
    The operating system is W2008 R2 SP1. The storage type is filesystem, we do not use the MAXDB database. However, I have made so many tries, that, finally Ihave installed the system with database, although we are not going to use it (we have more content servers installed with database and they are working fine). Despite of this, it doesn't work either. The error message is the same.
    The Content Server release is 6.40
    Thanks and best regards,
    Ana

    I have seen this issue on Windows 2008 R2 with IIS 7.5. This was the solution of mine
    The error 405 appears because you have installed WebDav IIS Role in IIS 7.5. Please uninstall that particular role.
    Regards,
    Subhash

  • File paths does not match with file name

    Hi,
    somehow iTunes does not properly file my audiobooks.  Eventhough all audiobooks are marked as media type: AudioBooks and Genre: AudioBook (German: Hörbuch), but when looking in Music --> iTunes --> iTunesMedia --> AudioBooks  there's only a few AudioBooks that I bought with Audible.
    All the other AudioBooks are stored I don't know where.  When opening the information about an AudioBook, and select "overview" it says at "location" ...iTunesMedia/Music/...  and an artist name or compilation followed by an artist name.
    How can I easily redirect iTunes to store the AudioBooks in AudioBooks and not under some wired musican's name where I never placed the audiobook before
    Any idea? Does anybody know of this bizare problem?
    thanks for your help from Cologne, Germany,
    Daniel Vollmer

    HDash-Tech,
    thanks for the tip, but since I have my iTunes Library on a NAS I have to direct iTunes every now and than via "choose library" to the folder and it doesn't make a difference...
    I think it's somehow due to my iTunes Match.  I know they do not sync audiobooks, but they mess up pretty much everything else within my library.  Songnames here and there and especially cd covers!
    Any other idea how to get it straigten out again?
    Thank,
    Daniel

  • Oepe claims domain version does not match running server after upgrade

    Hi,
    we've just upgraded our server and development environment:
    OEPE: from 11.1.1.6.1 to 11.1.1.7.2 useing the eclipse update functions (help-> check for updates)
    Weblogic 10.3.3.0 to 10.3.5.0 using wls1035_upgrade_generic.jar from oracle support.
    The servers seem to run fine and so does eclipse.
    I can add the local (upgraded) weblogic devel server to the eclipse server list and deploy jee files. However, the remote server were not validated after the upgrade:
    "Oracle Weblogic Server 11gR1 Patchset 4 at [remote host] [Stopped, The domain version does not match the running server.]
    Removing and adding the servers again got the same result. The servers are running in development mode and are running. Where is eclipse checking / comparing the versions ?
    thanks,
    Michael

    Hi,
    thanks for the replies.
    checked the config.xml:
    there are two elements domain-version and configuration-version set both of these to 10.3.5.0
    I also created a new domain. The config wizard script only gave me the option to create a domain based on 10.3.4.0 but when i went through with the setup the 10.3.5.0 and i could add the server to eclipse.
    I cannot add the original domain though i'm now getting the error "The domain path does not match the running server." And i can't say whether this is because i added the new domain or modified the config.xml.
    thanks,
    michael

  • Published photos and captions do not match photos (correct on iWeb)

    I recently added more pictures on a couple of photopages and place in a certain order. It displaced all the photos and the captions accordingly. After Publishing the captions did not match the photos and seemed to stay in the places where they were previously published. I tried to retype each caption that was incorrect then saved then republish, however some were corrected but most were not. If you click on a incorrect picture and see the full pic, it opens with the correct caption/name on the window. I also added some new captions to certain photos without captions or changed some captions and some show and some do not. Anyone have any ideas. Thank you.
    http://web.mac.com/urbz112
    ju
    Powerbook G4   Mac OS X (10.4.6)  

    Welcome to the discussion Ju
    The first thing that springs to mind is caching, if you are using Safari:
    go to Safari > Empty Cache..
    Then try the page again, you can also put a ? at the end of the address and refresh the page. Sometimes its a combination of both that fixes it, and sometimes it seems that the .mac servers cache everything and dont serve up the fully refreshed pages!
    Will
    1GHz G4, 15" PowerBook, Airport Network, 1G iPod Mini   Mac OS X (10.4.6)   www.willg4pb.com for iWeb tips

  • How we can track a particular ebook publish by us on content server has been downloaded against a particular link!

    we want to track the number of ebooks downloaded from content server publish by us , how we can track this?

    we want to track the number of ebooks downloaded from content server publish by us , how we can track this?

  • Content server and Images

    Hi... we've found some odd behaviour with content server and I'm wondering if anyone else has had similar experience.
    Our installation is spread accross a number of servers, we have a front end portal/image server with Content Server installed on one of the servers behind the firewall.
    When we create branding portlets (and content canvas portlets), it all works happily. The html template is created in the ptcs/publishedContent on the Content Server machine and images appear in the correct template folder on the Image Server machine and everything displays correctly on the portal page.
    Problem is, for any other content portlets (eg: announcement), the images end up in the ptcs/publishedContent on the Content Server machine as well ... which isn't good as this location is not accessible from the browser - the published html gets rendered correctly but no images appear.
    We don't want to manually transfer images from the Content Server to the Image Server and hack the generated ptcs html.... from what I can tell, all the properties set for the Image server are correct so we've hit a brick wall in terms of figuring out why it's behaving this way, our expectation was that the content portlets would operate in the same way as the branding portelts but this doesn;t seem to be the case.
    thanks in advance

    You should be able to edit the gateway space URL of the Content Server Published Content Web Service to include the published content location of where it is.
    Alternately, you can set the published content targer and file transfer method for the server (or any other content server section) by right-clicking on the top-level node (or the individual folder) in the Content Server Explorer, and selecting "Publishing Target..." and setting the appropriate values in the resulting dialog box.

  • SAP Content Server Connectivity issue

    Hi Friends,
    We have installed Content server 6.40 on a standalone server after the installation i tried to open below link but its not opening.
    http://hostname:1090/ContentServer/ContentServer.dll?serverInfo
    This content server has to be connected to R3(ECC 6 EHP4 ) hence we went to t codes OAC0 and OACT to create content repository
    We have created a content repository as below
    Content Rep.    ZDMS
    Description     ZDMS
    Document Area : DMS document management system
    Storage type: 04 HTTP content server
    Version no.     0046   Content Server version 4.6
    HTTP server     192.168.30.12(where the content server is installed)
    Port Number     1090                        SSL Port Number
    HTTP Script     ContentServer/ContentServer.dll
    Phys. path      D:\usr\sap\FNS\SYS\global\
    and when i am checking i am getting below error
    Error in HTTP Access: IF_HTTP_CLIENT->RECEIVE 1 ICM_HTTP_CONNECTION_FAILED
    i have also created a entry in table SDOKPROF
    as below but still same issue.                                                                            
    NAME = USEHTTPPLG                                                        
    VALUE = OFF  
    and also we have run RSHTTP05 to check if any error but no errors. 
    Even when we are going in t code CSADMIN we are getting same error
    Error in HTTP Access: IF_HTTP_CLIENT->RECEIVE 1 ICM_HTTP_CONNECTION_FAILED
    In dev_icm belwo error is showing.
    ** WARNING => Connection request from (2/3/0) to host: xxx.xxx.xx.xx, service: 1090 failed (NIECONN_REFUSED)
    [Thr 5352]  {000102ca} [icxxconn.c 2271]
    Kindly help to solve this issue.
    Thanks
    Basis

    Hi Deepak,
    Thanks for your inputes i checked IIS and after the content server installation these website were not created hence i created it manully as per note 1823408 - Manual Creation of Website on Windows 2008 Server
    I created SAP_Content_Server by following first 3 steps  but after that 4 , 5 and 6 steps are not clear i dont see those option in ISS manger.
    1. Go to Internet Information Services Manager from Start Menu >> Admintrative tools >> IIS manager
    a) or Start Menu >> Run >> "Inetmgr"
    2. Right Click on Sites >> "Add Website" to create a new Website.
    a) Site name <Name of the webiste>
    b) port <Port No>
    c) Physical Path <path of the Content Server installation directory>
    d) Application Pool >> Select "DefaultAppPool"
    e) Click "OK"
    f) Website will be created.
    3. Right click on the newly created website >> "Add Application"
    a) Alias "ContentServer"
    b) Application Pool >> Select "AppPool_ContentServer"
    c) Physical Path <path of the Content Server installation directory>
    d) Click "OK"
    Content Server Application will be created.
    4. Double Click on the website >> Handler Mappings
    a) Select "ISAPI.dll" from the list >> Edit Feature Permissions
    b) Check the tick boxes for "Script" and "Execute"
    c) Click "OK"
    5. Double Click on the website >> Handler Mappings
    a) Enable "Anonymous Authentication"
    b) Enable "Basic Authentication"
    c) Enable "Windows Authentication"
    6. Double Click on the IIS Server name >> ISAPI and CGI Restrictions >> Click on "Add"
    a) ISAPI or CGI Path <path of the Content Server installation directory,selecting "ContentServer.dll" >
    b) Description "ContentServer.dll"
    c) Check the tick box "Allow extension path to execute"
    d) Click "OK"

  • RFC Content Server and  ITS

    Hello,
    could you advise me if it is possible an RFC Content Server to be used with ITS for the archive instead of HTTP Content Server?
    Thank you in advance for your reply.

    You should be able to edit the gateway space URL of the Content Server Published Content Web Service to include the published content location of where it is.
    Alternately, you can set the published content targer and file transfer method for the server (or any other content server section) by right-clicking on the top-level node (or the individual folder) in the Content Server Explorer, and selecting "Publishing Target..." and setting the appropriate values in the resulting dialog box.

Maybe you are looking for

  • OIM11gr2 Error while performing Recon with status field

    Hi, We are performing recon from flatfile(Target recon).We have username and status in the feed.First time if we perform recon user is getting linked.Second time if we change the status of user and run the recon it says not linked to user and we get

  • New to Mac - Need help - Want to share Printer and Internet with PC

    Looking for help in setting up to share my Windows Compaq PC printer and files and internet with my MAC Mini. They sit right next to each other, my PC does not have wireless ability. What equipment and what steps do I need to take to make this happen

  • How to set wsse:security SOAP header in soa 11g?

    Hi, we are facing an issue with invoking a secured webservice. we tried 3 things 1.) set the username/password in em under reference properties 2.) Created a schema, set the username/password and included it in partner link header tab. 3.) added a cl

  • Is it normal for CHASE to ask for documentation before giving a decision on their Southwest card?

    I applied for the Southwest card by CHASE and I received a letter in the mail this week asking for verification of my date of birth to be mailed to them before a decision can be made on rather they will approve or deny my application. Is this normal?

  • Where are the includes located in UCM

    Trying to edit "workflow_docs_list.htm" and now I'm trying to find where the include "workflow_docs_table" is located in UCM. Anyone have a idea where I can find the include at? Answered my own question so close this topic if possible. Edited by: JTy