Wrong path in address server?

Hi,
i have a DS3 installation in "E:\BO\Data Services". If I start a Batch Job which uses a Germany Address Cleanse transform I get an error that the file "C:/Programme/Business Objects/BusinessObjects Data Services/DataQuality\reference_data\ga_country.dir" cannot be found. (yes, the path HAS "/" and "\"...!) Where did DS/AddressServer get the path information?
My first thought was that the AddressServerConfig.txt is wrong. It seems to be okay because it has relative paths:
REFERENCE_DATA_DIRECTORY      = ../../DataQuality/reference_data
GAC_DATA_DIRECTORY            = ../../DataQuality/gac
Thanks for your help. Best regards,
Timo

You should take a look at substitution parameter settings of your Data Services.
Tools --> Substitution Parameter Configurations ... --> $$RefFilesAddressCleanse:
Default value is here: "C:/Program Files/Business Objects/BusinessObjects Data Services/DataQuality/reference_data"
If you installed your Data Services into a different directory, you should take care that the Substitution Parameter are adjusted correctly.
This should not apply to the paths in the AddressServerConfig.txt as they are relative.
Niels

Similar Messages

  • Wrong path and application in registry protocol\stdFileEditing\Server ?

    Hi
    How come there is a wrong path in registry is it a security issue, error or just values not in use anymore ?
    I check via regedit: HKEY_CLASSES_ROOT the key .pdf points to
    AcroExch.Document the key curver points to AcroExch.Document.7
    Under this i check
    HKEY_CLASSES_ROOT\AcroExch.Document.7\protocol\StdFileEditing\server
    the value is
    "C:\Program Files\Adobe\Reader 9.0\Acrobat\Acrobat.exe" (Acrobat catalog and the exe file is not existing)
    but in my filesystem the real path is
    C:\Program Files\Adobe\Reader 9.0\Reader
    and i think the program should be AcroRd32.exe instead
    When I have corrected the key an update would reverse it to the old not existing value
    So could anyone tell me why i se this behaviour ?
    Regards
    SEJ

    Hi Frank,
    How did you call the application in a war?
    Regards,
    Violeta

  • Wrong path while creating Home-directory

    Hello,
    i hope i am in the right directory for my question!
    Under Leopard Server I set up an DNS Server wich works quite good so far...
    When i try to set up the Home-directory for an new user the networkpath is always wrong.
    My normal server adress is : "hale.school.private" the Usergroupmannager always set "afp://hale.private/user"!
    Where can i change this?

    _*Here an Copy of my changeip command:_*
    +hale:~ Administrator$ sudo changeip -checkhostname+
    Password:
    +Primary address = 192.168.2.107+
    +Current HostName = hale.school.private+
    +DNS HostName = hale.school.private+
    +The names match. There is nothing to change.+
    _*And here theproblem in the Workgroupmanager:*_
    Message was edited by: sykane

  • Web Application Transaction Monitoring Alerts with "wrong" Path

    Hello,
    i have created some web transaction monitors, such as
    http://foo.htm who is  hosted on the server foo123.cologne.org.
    It works.. but
    we have also a mssql monitoring, the discovery of the mssql management pack discovers the reporting part of mssql server on our managementserver Operations12.cologne.org. So (it's right..) the server Operations12.cologne.org is a member of the SQL Instances;SQL
    Compontents;SQL Computers group.
    When the web transaction monitor generates an alert, it have the pathname Operations12.cologne.org and not the pathname of the "right" server foo123.cologne.org.
    For our mssql admins i have build an email-notification, when somethings going wrong at our sql servers (member of the SQL Instances;SQL Compontents;SQL Computers group) they received a mail.
    The problem is, that they received a mail, when a web transaction monitor generated one, because the pathname is the name of our management server, because the management server is a member of thos sql server groups.
    Someone have an idea to fix my "problem"?
    - Best way: changing the path names of the web transaction monitorings... but how? i can't find anything to change..
    Kind regards
    Wolfgang Winter

    Thank you, it's a help to decide, what to do, so i have to solutions:
    - installing an agent to the web-appliction-hosting-server and configure it as a watcher node
       (may be i will have problems with our firewall admins, because they have to allow the communications and.. when the hosting watcher is down, i have no alerts.. when i use more than one watcher nodes (good).. i have the wrong path names..
    - configure a part of our management server group without  SQL-Reporter Component as a watcher node
       (more easy, because i have to tell my firewall admins: "the server foo456 is the standard watcher node"
    Crazy.. because i don't know, how to assign the web transaction monitors to the "causing" server.., for mail notification and for our integration to HP Service Desk...

  • JSF - Why getting wrong path Handling URLs in Facelets Templates

    Hi, I am trying to do a web application using JSF, Facelets in Netbeans 6.7. but I am having a problem:
    Why I am getting wrong path ?
    It is very simple, straight forward web application.
    When run, it shows the template-client.xhtml perfectly . The navigation menu is shows ok, but they don't work. However, if I enter in the browser address http://localhost:8080/test3/portal/products.jsf it goes perfect to the right page and the navigation between About, Products and Home works perfect. But once I click on Home, the menu start to give me errors. Looks like the path is wrong again.
    folders structure:
    test3My code:
    faces-config.xml:
    <?xml version='1.0' encoding='UTF-8'?>
    <!-- =========== FULL CONFIGURATION FILE ================================== -->
    <faces-config version="1.2"
        xmlns="http://java.sun.com/xml/ns/javaee"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_1_2.xsd">
        <application>
            <view-handler>
                com.sun.facelets.FaceletViewHandler
            </view-handler>   
        </application>
    </faces-config>web.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
        <context-param>
            <param-name>com.sun.faces.verifyObjects</param-name>
            <param-value>true</param-value>
        </context-param>
        <context-param>
            <param-name>com.sun.faces.validateXml</param-name>
            <param-value>true</param-value>
        </context-param>
        <context-param>
            <param-name>javax.faces.DEFAULT_SUFFIX</param-name>
            <param-value>.xhtml</param-value>
        </context-param>
        <context-param>
            <param-name>facelets.DEVELOPMENT</param-name>
            <param-value>false</param-value>
        </context-param>
        <context-param>
            <param-name>facelets.SKIP_COMMENTS</param-name>
            <param-value>true</param-value>
        </context-param>
        <servlet>
            <servlet-name>Faces Servlet</servlet-name>
            <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
            <load-on-startup>1</load-on-startup>
        </servlet>
        <servlet-mapping>
            <servlet-name>Faces Servlet</servlet-name>
            <url-pattern>*.jsf</url-pattern>
        </servlet-mapping>
        <session-config>
            <session-timeout>
                30
            </session-timeout>
        </session-config>
        <welcome-file-list>
            <welcome-file>forward.jsp</welcome-file>
            </welcome-file-list>
        </web-app>forward.jsp:
    <%@page contentType="text/html" pageEncoding="UTF-8"%>
    <jsp:forward page="template-client.jsf"/>template-client.xhtml:
    <?xml version='1.0' encoding='UTF-8' ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"
          xmlns:ui="http://java.sun.com/jsf/facelets"
          xmlns:h="http://java.sun.com/jsf/html">
        <body>
            This text above will not be displayed.
            <ui:composition template="/template.xhtml">
                This text will not be displayed.
                <ui:define name="title">
                    Facelets
                </ui:define>
                This text will also not be displayed.
                <ui:define name="body">
                    Hello from the Facelets client template!
                </ui:define>
                This text will not be displayed.
            </ui:composition>
            This text below will also not be displayed.
        </body>
    </html>template.xhtml:
    <?xml version='1.0' encoding='UTF-8' ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"
          xmlns:ui="http://java.sun.com/jsf/facelets"
          xmlns:ice="http://www.icesoft.com/icefaces/component">
        <head>
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
            <title>Facelets - Template Example</title>
            <link href="#{facesContext.externalContext.requestContextPath}/css/default.css" rel="stylesheet" type="text/css" />
        </head>
        <body>
            <div id="menu">
                <ui:insert name="linemenu">
                    <ul>
                        <li><a href="../forward.jsp">Home</a></li>
                        <li><a href="about.jsf">About Us</a></li>
                        <li><a href="products.jsf">Products</a></li>
                    </ul>
                </ui:insert>
            </div>
            <div>
            <h1>
                <ui:insert name="title">Default Title</ui:insert>
            </h1>
            <p>
                <ui:insert name="body">Default Body</ui:insert>
            </p>
            </div>
        </body>
    </html>about.xhtml:
    <?xml version='1.0' encoding='UTF-8' ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"
          xmlns:ui="http://java.sun.com/jsf/facelets">
        <body>
            <ui:composition template="./../template.xhtml">
                <ui:define name="title">
                    title ABOUT
                </ui:define>
                <ui:define name="body">
                    body ABOUT
                </ui:define>
            </ui:composition>
        </body>
    </html>products.xhtml:
    <?xml version='1.0' encoding='UTF-8' ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"
          xmlns:ui="http://java.sun.com/jsf/facelets">
        <body>
            <ui:composition template="./../template.xhtml">
                <ui:define name="title">
                    title PRODUCTS
                </ui:define>
                <ui:define name="body">
                    body PRODUCTS
                </ui:define>
            </ui:composition>
        </body>
    </html>

    My folders:
    Test3
         Web Pages
              /WEB-INF
              /css
                  -default.css
              /layouts
              /portal
                  -about.xhtml
                  -products.xhtml
              -forward.jsp
              -template.xhtml
              -template-client.xhtmlPlease, I need help with this. It may is very easy to find out, I maybe skiping something
    Thank for your help anyone!!!

  • Wrong paths in WGM Home tab.  How to correct?

    I'm having some trouble with creating home directories on my server. The create button is not working and there are a couple of bad paths in the WGM Home tab. How can I delete these entries in the Home tab and make sure that only valid paths are in there. I am unable to delete a couple, the minus button is greyed out.
    Just to provide a little further info, I had DNS running on this server (I think incorrectly) and one of the paths that I cannot delete is a path listing the server with it's DNS name /Network/Servers/ns.eocserver.local/Users/<user>.
    The path should be /Network/Servers/eocserver.local/Users/<user>. How do I clean up these entries?

    Here's another interesting aspect to my predicament. If I log into terminal, instead of showing:
    eocserver:~ administrator$
    for my terminal prompt i get the following:
    ns:~ admin$
    My server is called "eocserver" and not "ns" and my DNS is now shut down.
    Another curious thing is that now any new accounts that are created load on the client eMacs within a second compared to at least 30 seconds before this all happened. Not sure why that is but that part is awesome. Since the day this server was set up clients have had to wait for at least 30 seconds for their accounts to load on the client machines.
    It's like something went wrong and as a result the login process for clients is way better. This is rather disconcerting and I'd like to clean it up but I don't want the lag to return.

  • Profile pictures wrong Path

    I have setup the thumbnail pictures for users in Sharepoint 2013. I can browse the library throughy this  link
    http://myserver/sites/mysite/_layouts/15/start.aspx#/User%20Photos/Forms/Thumbnails.aspx?RootFolder=%2Fsites%2Fmysite%2FUser%20Photos%2FProfile%20Pictures&FolderCTID=0x0120008BF2C6579F4E1947B6C670F4524E2C06&View=%7BDF932ADB%2D33D5%2D4024%2DA88C%2DA4B0253DBE98%7D
    but when I open a user page, the picture is not loading. I see from the debugger that is calling the following url which is missing a "/" right after the sites/mysite
    http://myserver/sites/mysiteUser%20Photos/Profile%20Pictures/j_doe_LThumb.jpg?t=63560464578
    How can I fix this??
    CKotsis

    Hi CKotsis,
    According to your description, my understanding is that the profile picture showed a wrong path.
    Please try to run a full user profile sync, compare the result.
    Please modify and run the following PowerShell commands to check if it works:
    $site = get-spsite "https://sharepoint" 
    $context= [Microsoft.office.server.servercontext]::GetContext($site)  
    $userProfileManager = new-object Microsoft.office.server.userprofiles.userprofilemanager($context)  
    $profiles = $userProfileManager.GetEnumerator()
        foreach ($profile in $profiles)
         $Matchurl = "mysitesUser Photos"
          if($profile["pictureurl"].value -match $matchurl)
                     Write-host $profile["AccountName"].value "contains incorrect url"
                     $CurrentURL = $profile["Pictureurl"].value
                     $CurrentURL = $CurrentURL.tostring()
                     $GoodUrl = "mysites/User Photos"
                     $CorrectUrl = $CurrentURL.replace($matchurl,$goodurl)
                     $profile["pictureurl"].value = $correcturl
                     $profile.commit()
                     Write-host $profile["AccountName"].value "PictureURL has been corrected"
    Here is a similar post for your reference:
    https://social.technet.microsoft.com/Forums/office/en-US/1fa50226-a495-4d3c-8fd3-da9fdede6a52/wrong-profile-picture-url?forum=sharepointadminprevious
    Best Regards,
    Wendy
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Wrong Version of Weblogic Server with Enterprise Pack?

    Hello. I am having a runtime server problem with my Enterprise Pack. Here is the scenario:
    I downloaded and installed Oracle WebLogic Server 10gR3. I am using the bundled (Eclipse) Enterprise Pack that came with it. I am following the "Introduction to the Oracle Enterprise Pack for Eclipse (OEPE) IDE" tutorial. I am at the stage (in wizard) where I am creating an eclipse project, and assigning the target runtime server. It says to pick Oracle WebLogic Server 10gR3 as the server. I do this. At the next step, when I browse and select the weblogic home for my chosen server, I get the following error:
    The path "C:\bea\wlserver_10.3" contains the wrong version of WebLogic Server. Expected version 10.3.0. Found version 10.3.1.
    This strikes me as odd as it is the server that the eclipse enterprise pack came with. At this point, I can go no further. Should I download a different version of the Enterprise Pack? Should I install a different version of weblogic? I am not sure what to do, and would appreciate any insights. Thanks.

    I'm stuck on this also.
    On 2009-09-22 I downloaded and installed Oracle Enterprise Pack for Eclipse 11gR1 from http://www.oracle.com/technology/products/enterprise-pack-for-eclipse/index.html Windows All-In-One oepe-ganymede-win32.zip. I installed it into an existing exclipse directory and maybe that is related. I'm currently deleting that directory and unzipping the root of C to see if that helps.
    We have a DEV instance up that I hope be able to deploy to remotely. It is on a secure server (i.e. https://crpXXdev1:9023). The splash screen indicates that version is WebLogic Server 11g and WebLogic Server Version: 10.3.1.0
    I also downloaded and installed Oracle Web Logic 11gR1 (10.3.1) so I could deploy on my development box as well. I installed it to bea10_3_1_0. I can start this instance and when I do the splash screen says starting weblogic with Java version: java version 1.6.0_11.
    Logs should be written to:C:\bea10_3_1_0\user_projects\domains\base_domain\servers\AdminServer\logs\AdminServer.log.>
    I see Server started in RUNNING mode.
    I throw this in my Browser http://localhost:7001/console/login/LoginForm.jsp and I get splash screen and can log in as User name weblogic.
    Systems Status says OK
    As I go through the OTN Tuturial 'Introdcution to Oracle Enterprise Pack for Eclipse (OEPE) IDE, configure the eclipse.ini fill as shown (e.g. -vm C:\bea10_3_1_0\jdk160_11\bin). And just to be safe I remove the following from my Environment Path so I don't use a pre Jave 1.6 version C:\Sun\SDK\jdk\bin;C:\Program Files\Oracle\jre\1.3.1\bin;
    I fire up eclipse and go to Window / Preference Installed JREs and Add a reference to jdk160_11 in c:\bea10_3_1_0\jdk160_11. That is the only JRE I reference.
    I don the following
    1. Select Help > Software Updates > Available Software > Add Site.
    2. In the Add Site dialog, enter http://download.oracle.com/otn_software/oepe/ganymede, and then click OK.
    3. Select Oracle Enterprise Pack for Eclipse, verify that all of the subcomponents are selected, and then click Install.
    I get some prompts see some download activity and after it is down, restart Eclipse.
    I go to Open Perspective and Java EE is not available as an option to choose. This is bad because I cannot see the Server tab to add a Server. I could do this yesterday before I re-installed Eclipsed. Without the Server tab and can not continue the tutorial to get to where I was having errors yesterday.

  • Wrong version of WebLogic Server

    Greetings,
    I've downloaded and installed the Windows All-In-One Oracle Enterprise Pack for Eclipse 11g. When I try to add a New Server Runtime Environment I get the following error:
    The path "C:\bea\wlserver_10.3" contains the wrong version of WebLogic Server. Expected version 10.3.1. Found version 10.3.0.
    Is there a patch for the server that should have come with?
    Regards,
    gwm

    OEPE 11g supports WLS 8.1, 9.0, 9.1, 9.2, 10.0, 10gR3 (aka 10.3) and 11g (aka 10.3.1, but not released yet). Make sure that you select the right version of the server in the new runtime wizard.
    - Konstantin

  • Setting up Network Address Server Settings (Static IP)

    To be abundantly clear, I do not want to change my Internet Connection Type - its dynamic and will stay that way.  I'm not paying my ISP (Time Warner Cable - RoadRunner in NYC) for a static IP address.
    I am changing my network address server settigns to disable DHCP, and hopefully assign static IPs to the various comps/devices in my home network.  For various reasons (mostly security/ease of use) it would be handy to know my desktop/media center is always (for example) 192.168.1.101, my laptop is always 192.168.1.102, xbox is always...etc etc.
    I have DHCP under network address server settings, and attempted to change TCP/IP protocol of my adapters in the comps to static IP (instead of obtain one automatically).  I followed the WRT54G router manual whilst doing this.  So I inputted the IP for each comp I want to use, 255.255.255.0 for a subnet mask, and the default gateway (in the example, it would be 192.168.1.1, though I want to use a different internal IP address for my network as a security precaution).  Now it also wants primary and alternate DNS.  TimeWarner won't tell me this information.  They say they tell my router it (since its DHCP) and it changes.  So...if I want static IP addresses for the devices in my network, I need my router to have a static ip address externally?  that means I pay more.  Or have I got it wrong?  Please advise.  I know I could check the router's status page and grab the two DNS servers its currently using, but then when my router's IP and DNSs change due to the internet connection being dynamic, I'd have to go change all the devices in the network (PITA!!).  Thank you for your help.

    Most ISPs don't actually change their DNSs only the internet IP adress... you can try grabbing those DNS 1 & 2 and set it to your PC. try checking if those will change for verification.
    If not, then for primary DNS, use 192.168.1.1 (equivalent for your router so whatever the DNS your router will use, it will just route it. but it doesnt always work), for the alternate DNS: you can use 4.2.2.1 or 4.2.2.2
    "a helping hand in a community makes the world a universe"

  • I have entererd the wrong E-mail address for my £15iTunes gift card, how can i get my code back so i can put it on the right account?

    i entered the wrong E-mail address when it asked me for my Apple ID, now my card is useless and i dont have the £15 credit i paid for, i was wondering, if i gave you the code, would you be able to trace what address i typed in (Which will be similar to the one i have now) and would you be able to transfter the £15 credit onto my account?
    I can send you the code if you like?
    Many thanks, James Cummings.

    First, you're not communicating with Apple when you post in these forums. The only people who will respond are fellow users and there's nothing we can do directly with this problem.
    But I can tell you that if you redeemed the card through the wrong iTunes Store ID, then sorry, but there's no way to transfer credit from one account to another. You'll have to use the iTunes Store ID under which you redeemed the card to make your purchases. You would not have been able to redeem the card through another account unless you had the password to that account, though, so you may not have actually successfully redeemed the card. Have you tried to redeem it through your "real" iTunes Store account?
    Regards.

  • I entered the wrong e-mail address on my new IPAD how can I change it?

    I just got an IPAD 2 and during set up got ahead of myself and entered the wrong e-mail address.  It won't let me back to correct this.  Please help!

    If you are talking about your Apple ID - go to Settings>Store>Apple ID - tap the incorrect ID and sign out. Then sign in with the correct ID.

  • I setup my iCloud account on my iPhone 5 with the wrong e mail address, and I don't remmber the password, I reset my tel and erase all the information on my iPhone in order to try to set up a new iCloud account but when I restart I have a problem aga

    I setup my iCloud account on my iPhone 5 with the wrong e mail address, and I don't remmber the password, I reset my tel and erase all the information on my iPhone in order to try to set up a new iCloud account but when I restart I have a problem agaIn , they ask me to put again the old iCloud user account and password, what I can do in order to start the phone when I don't have the correct e mail and I don't remmber the passcode.?

    I have the same problem as the emails go to my iCloud account that I cannot access!!! I cannot answer the security questions as someone else must have set up my iCloud account. Nothing seems to work. It would be great if someone has some ideas as what can be done to recover the situation?

  • I have 3 apple Id accounts and put a15 dollar cift card on one of them and i put the wrong e-mail address to it and can not verify by I tunes

    I have 3 apple Id counts and put a cift card on one of them, but I puy the wrong e-mail address to it to verify with I tunes? HELP PLEASE!!!!!!

    I would contact iTunes:
    http://www.apple.com/support/itunes/contact/

  • How to get the absolute path of logicalhost server domain on Windows Sun

    i am reading a file from Xsql Folder, that is located in the logicalhost Sun\AppServer\domains\domain1\applications\j2ee-apps.(IN Sun Application Server)
    I am pretty sure that using the absolute path will solve this issue, so my first question is: How to get the absolute path of logicalhost server domain on Windows?
    i tried with System.getProperty("com.sun.aas.instanceRoot").
    but i am able to retrive Sun\AppServer\domains\domain1 upto this .i am unable to retrive Sun\AppServer\domains\domain1\applications\j2ee-apps.
    please suggest me how u can get absolute path in sun application server

    Take a look here

Maybe you are looking for

  • A tela da Configuração do Grupo de item aparece fora da tela de acesso

    Grupo, Gostaria de ajuda, o servidor do meu cliente caiu e estava usando o cadastramento do grupo de item, agora quando tento abrir ele pararece no alto sem poder ser inserido os cadastros, já tentei de todas as formas baixar a tela mais não tive suc

  • An error in the system has occurred. Please contact the system administrato

    This error appears when I try to access the Leopard Server- Advanced forum: Error An error in the system has occurred. Please contact the system administrator if the problem persists. Useful links : Forum Home -- browse the forums here. Search Forums

  • Date Parameters do not respond to Localization

    We are using CR 2008 in our Windows App and feeding CR Reports with Parameters, two of which are the "start date" and "end date" of the reporting data. When UK users of our app run our reports all dates in the report respond to the Localization setti

  • Trouble with Leopard and Clean Access Agent

    I just got Leopard yesterday. I loaded it to my computer and all went well. Except when I tried to get on the internet (on my college campus that requires Cisco Clean Access) it wouldn't let me. I realize this is a third party software problem, but I

  • Help with Credit and Order Review Team

    Hi there, I recently tried to order the iPhone 6 and found that additional action was required to contact the credit and order review team. The number they gave me was for the prepaid wireless calling center. I should explain that I'm currently on a