Accessing a XML file located in a remote machine.

I have a XML file located in a remote machine(source machine), and I want to be able to move the data from that file to a remote database (target).
I have a central ODI deployment and a central master and worker repository.
The issue I have is that it seams to me that in order to use an XML file the XML file needs to be local to the ODI client(topology manager, designer etc).
The question what do I need to do in order to access the file located in the remote source machine if that machine does not have an ODI client?
Thanks

Hi Terence,
why don't you try to put all your JPA stuff (classes, persistence.xml, etc) in a "library" jar file and then deploy it inside your .war (under META-INF/lib) and .ear (under the lib)?
Is it acceptable for your purpose?
Fabio De Santi

Similar Messages

  • Access the XML file

    Hi
    I am having to access the XML file names and/or XML data from a shared folder of XI system. I need to access that shared folder and display the information like the name of the file or the data in it on to a portal. Please let me know how do I go about it.
    thank you
    chan

    First of all thank you very much
    I want began to implement it on my computer
    This code
    <object classid = "clsid: d27cdb6e-ae6d-11cf-96b8-444553540000" codebase = "http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab # version = 9,0,0, 0 "width =" 920 "height =" 218 "id =" banner "align =" middle ">
    <param name="allowScriptAccess" value="sameDomain" />
    <param name="allowFullScreen" value="true" />
    <param name="movie" value="banner.swf" /> <param name="quality" value="high" /> <param name="bgcolor" value="#ffffff" />
           <param name="FlashVars" value="setupXML=1/newSettings.xml&contentXML=1/newContent.xml"/>
         <embed src = "banner.swf" FlashVars = "setupXML = 1/newSettings.xml & contentXML= 1 / newContent.xml" quality = "high" bgcolor = "# ffffff" width = "920" height = "218" name = "banner "align =" middle "
         allowScriptAccess = "sameDomain" allowFullScreen = "true" type = "application / x-shockwave-flash" pluginspage = "http://www.macromedia.com/go/getflashplayer" />
    </ object>
    I added the NEXT code, originally no FlashVars code
    FlashVars = "setupXML = 1/newSettings.xml & contentXML = 1 / newContent.xml"
           <param name="FlashVars" value="setupXML=1/newSettings.xml&contentXML=1/newContent.xml"/>
    Post
    Attempting to launch and connect to Player using URL D: \ 87 \ banner.swf
    [SWF] D: \ 87 \ banner.swf - 518076 bytes after decompression
    IOERROR (maybe the XML file does not exit or have an incorrect name)

  • Access the jar helpfile located in a remote host

    Hi,
    I can't find any example how I can have the java help of my application using a jar helpfile that is located in a remote host.
    A limitation is that the jar helpfile has to be in the classpath to. I don't think I can set a classpath pointing to a remote host.
    Anyone can give me some direction how to setup javahelp to use a remote jar file?
    Thanks,
    Diego

    Hi efebo,
    “The same applies for a DC ”
    As for replicating virtualized DC (Personally,  I do not suggest to replicate DC , even though it can be replicate ), please refer to following link:
    http://technet.microsoft.com/en-us/library/dn250021.aspx
     "In short, Exchange does
    not support the Hyper-V Replica feature.  Exchange has a long history of supporting virtualisation from
    Exchange 2003 onwards.  It is fully supported to install Exchange
    2007,
    2010 or
    2013 as a virtual machine on Hyper-V, but using the Hyper-V replica feature is not supported.
    For details please refer to following link:
    http://blogs.technet.com/b/rmilne/archive/2013/07/29/exchange-and-hyper-v-replica-support.aspx
    I assuming that the "Remote DR site" and the primary site both have public IPs .
    Based on my knowledge  you can not access replica site VM  directly after a disaster , maybe you need to rebuild primary site and replicate VM back .
    Best Regards
    Elton Ji
    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.

  • I am receiving the 'Could not sign you in [Access denied: 530]. Check your user name and password' problem on Adobe Muse CC 2014 and I cannot access the xml file that is supposed to fix this issue?

    I am a PC user and I have Adobe Creative Cloud Muse 2014. I have received the 'Could not sign you in [Access denied: 530]. Check your user name and password' error when trying to upload my muse site to my ftp host, GoDaddy. I have successfully done this in the past and only recently it has stopped working. I looked online at the FAQ Adobe Muse Help | Uploading an Adobe Muse Site to a third-party hosting service and it said to download the ftpprefs.xml file but this file simply leads to a blank page that says /*Not found*//*Not found*/.
    Can someone direct me to a working page with this file or provide a different solution? Thank you!

    Hello,
    As you are getting error [Access denied: 530] it means issue is with access. Either the username and password you are entering is incorrect or you do not have proper permissions.
    I would suggest you to contact Godaddy to either reset password or reset the permissions.
    Regards
    Vivek

  • How to refer to the xml file located on unix server

    I have a xml file which is located on unix server and have a hard time, reverse engg. it .
    if anyone has any knowledge on this , that will be helpful.

    I have application server where my xml is located.e..g /tmp/xyz.xml
    I have designer on my laptop from where i have created a agent which points to my application server.
    I am able to create a data server which does say test successful.
    In model i tried to create new model and trying to reverse engg. the xml now i get following error .
    java.sql.SQLException: Could not generate the DTD because the file could not be created. Verify that you have write permission in the directory.
    if you can point me to documentation which has some information on this will be helpful or any hint..

  • How to access a xml file stored in a jar file

    Hi all,
    We have a java web start app that uses the jasper reports libraries to produce pdf reports. When running and testing from the ide the prog works ok. However when we place the jar on the web server and run the web start app the prog complains "the system cannot find the file specified".
    The xml files are stored in the jar under a directory called reports. The code access the files like so. (We are temporarily writing the output file to c drive.)
    JasperCompileManager.compileReportToFile("reports\\airexportagy.xml","c:\\airexportagy.jasper");
    IS there a different way one is supposed to access these resources from a jar file using web start?
    THanks

    Always (well, almost always anyway) access resource files thru the classloader. Example:
    InputStream xmlStream = getClass().getResourceAsStream("/myresource.xml");
    This will find "myresource.xml" in the classpath. If you omit the "/" part, it will still attempt to find that file in the classpath, but expect to find it within the same directory hierarchy as the calling class (its package hierarchy).

  • How to get XML file located in SAP directory for SAP XI

    In my system, there is a function to create IDOC and store as a xml file in directory of SAP for example u201C/inf/ERQ/XML/u2019 .I want to use this XML file as a input for SAP XI to map and generate output as an IDOC. However, I donu2019t know how to setup integration directory for this scenario. Iu2019m not sure how to access directory in SAP using SAP XI. Any help would be grateful. Thank you.
    Thank you expert,
    @tom

    Hi
    Check this PDF
    http://www.sap-press.com/downloads/h982_sample_chapter.pdf
    search with "Mapping program in SAP XI" in the above link
    http://www.sap-press.de/download/dateien/1191/sappress_exchange_infrastructure.pdf
    Regards
    Pavan

  • Cs3 color setting xml file location ( colors.xml )

    In previous versions of dreamweaver ( or previous to windows
    vista ) I was able to access this file via documents and settings
    and then into the macromedia subfolders.
    It contained the file colors.xml which held my code coloring
    preferences.
    Any idea where that file would be in CS3 adn Vista?

    Protoculture wrote:
    > Actually yes I did use the search tool.
    >
    > Unfortunatley it did not find the colors.xml file.
    >
    > Has it been renamed?
    I haven't created any custom colours, but Vista search found
    this for me
    in seconds:
    C:\Program Files\Adobe\Adobe Dreamweaver
    CS3\configuration\CodeColoring\Colors.xml
    I presume that if an individual user creates a set of custom
    colours,
    the XML file will be in the Roaming folder.
    David Powers, Adobe Community Expert
    Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • How Do I Access An XML File For A SWF I Put Into Captivate 6.0

    Hi,
    I inserted a swf animation into my Captivate project that calls an external xml file. When I run the Captivate project, the swf works except it doesn't display any of the information from the xml file. How do I get Captivate let the inserted swf see the xml?
    Thanks

    Sreekanth,
    I was thinking that might be the solution. I'll test it on Monday and update the results.
    Thanks,
    Mike

  • UIModel XML file location - creation and refactoring

    I am using JDeveloper 9.0.5.2. How can I control where the UIModel XML file is created when I create it explicitly or implicitly via drag-drop within JDeveloper?
    This is giving me fits. I have had some success only when explicitly creating the UIModel, but if its implicitly created before I get to it, it seems to have a mind of its own.
    So likewise, once a UIModel is created, how can I rename it or move it to a different package?
    B

    Jdeveloper creates the UIModel files in the projects default package. (Project Properties|Input Paths).
    The only way to refactor UIModels is to do it manually. You need to copy the uimodel to the correct directory, then remove it from the application workspace, and open the new uimodel and add it to the workspace.
    Finally, edit the Databindings.cpx file in a text editor and update the package name of the uimodel.
    Gareth

  • Xml files located in src directory not loading

    In my src directory If have a directory called 'users'. This contains the default settings for a new user. In that directory is a number of xml files, and I can't load them. I'm using:
    file = File.applicationDirectory.resolvePath("/users/default.xml");
    I've tried moving the 'users' directory up a level so it is at the same level as 'src' but that didn't solve it either. I've also tried using
    File.applicationStorageDirectory
    But that didn't work, although these are read only files so it shouldn't be necessary.
    It works fine in the development envionment if I load the files using the old flash commands but that doesn't work in the exported application.
    Also I notice when I export the application to an AIR file and install it, there are no subdirectories there, there is no 'users' direcorty visible. Only my AIR app, is everything embeded within that file?
    I expect I've missed something really basic but can't see it. Help!!!

    Usually, when you build the app, the files go into a bin-debug or
    bin-release folder.  There are settings to ensure that certain source
    folders also get copied into the output directory.  If you're not doing that
    you probably should as it will be easier to package up and install the app
    if everything it needs is within the output directory.
    Once you have that done, the path will probably be users/default.xml without
    the leading slash.

  • Bpel-config.xml and soa-infra-config.xml file location in SOA 11g Pre-built

    Hi frnds,
    I have downloaded and started Oracle SOA 11g Pre-built from http://www.oracle.com/technetwork/middleware/soasuite/learnmore/vmsoa-172279.html and trying to configure it according to my requirements to upgrade from SOA 10g to 11g. But I can't find bpel-config.xml and soa-infra-config.xml files in BPEL domain home (i.e. /oracle/fmwhome/user_projects/domains/domain1).
    Can you please help me?
    BR, Lisan

    None of those roles are intended to be granted to application users. Those are instead to limit various operational / support responsibilities. For instance, if you have "operators" for your production environment who are responsible for starting & stopping servers vs "Administrators" who are performing configuration changes, etc.
    The SOA* versions can be used to separate even further - an "Operator" ( with rights in the WL console ) can be distinct from a "SOAOperator" ( with rights in the SOA /em ), etc.
    http://download.oracle.com/docs/cd/E14571_01/integration.1111/e10226/appx_roles_privs.htm#insertedID2
    also, here is a bit more on soa-infra roles:
    http://download.oracle.com/docs/cd/E14571_01/integration.1111/e10226/appx_users.htm#insertedID4

  • Show browse files dialog by listing remote machin files in web application

    Hi all,
    I want to develop a web application which has "Browse Server" button to browse remote server. After selecting files and folders from remote server, need to read all files and folders from server and store that information in Database. Please provide some ideas and help regarding this.
    I think that i need to develop a custom component based on jfilechooser to connect to server and show the selection dialog like windows file upload.
    I don't no how to list server files and show as browse dialog to select and read those files.
    Thanks in advance.
    Regards,
    Venkata Subba Reddy

    Most web browsers can browse FTP. You can achieve what you want without writing a single line of code. How cool is that?

  • Wordpress xml file from local to remote MySQL

    I am developing a php site with an attached WordPress blog using Dreamweaver CS6 on my localhost test server. My php pages contain echos from private blog posts with an average of several divs per page.
    Heres my problem, when I export the xml from my localhost and import the xml into my remote hosted WordPress blog the categories I assigned locally do not have the same category #assignment.
    Example:
    blog/?cat=10 for a catagory on my local blog changes assignment to lets say
    blog/?cat=9 on my hosted remote site blog.
    Of course this totally messes up the echoed content going to the respective divs on the php main site pages.
    How can I either get the xml to maintain the cat=# or else edit the category number assignment on the remote site?
    The reason I want to develop locally is to be able to demo the site in different locals which do not have internet access. In other words I would like my localhost test server site mirror the actucal site on the web.
    Any suggestions would be greatly appreciated.

    I wonder why the order of catID has changed remotely. Can you do the following?
    Do a full backup of your remote database
    Export your local DB as .sql file
    Import that onto your remote DB (full import)
    See if the order remains the same. Let us know how it goes.
    If that doesn't work, I'll walk you through how to change the order to match local listing.

  • KDE/dolphin delete files located on sshfs remotely

    Currently deleting any files mounted via fuse.sshfs makes dolphin copy the files over to my pc and save them in ~/.local/share/Trash.
    I have found this, and have checked the directories in question
    - .Trash exists with 777 + sticky bit
    - .Trash-1000 (id of both my local AND remote user) exists as well with 700 without the sticky bit
    Both folders are in the $topdir (/data remotely) as described by the specification. Copying them over to /home/myuser/mountpoint (which would be my local $topdir) does not change the behavior
    The specification says that .Trash-uid is to be created automatically in case .Trash with required attributes does not exist.
    Why is dolphin not deleting the files remotely?

    Thanks, but that's a crude workaround at best. It also does not handle trash at all - the only option is to delete the file permanently.
    I've  found this 11 years old unresolved bug here, seems to be what is causing it.  Konqueror behaves the same, so it seems it's a kio thing once again.

Maybe you are looking for

  • Help.define purchasing options

    hello gys; in EBS r12.1.1 I want define purchasing options but not open the web page,cause this error.. the profle is fine. Error Page Exception Details. oracle.apps.fnd.framework.OAException: oracle.jbo.SQLStmtException: JBO-27122: SQL error during

  • Error while converting OTF to PDF

    Hi All, I am getting an error when i am trying to convert smartform to PDF. the error is : Error analysis     An exception occurred that is explained in detail below.     The exception, which is assigned to class 'CX_SY_DYN_CALL_      not caught in  

  • How to use a variable global?

    Oracle 10g Enterprise edition Is there a way to retain a text in a global variable session specific? The global variable is declared in a package specification. But i am losing the values as the session changes. Can any one suggest me an approach to

  • Restrict the data to a set of values in the input selection

    Hi, We have a requirement it goes like this.. I've a object ZTEST which stores values (A,B, C..... Z). This object is extensively used across various DSO's and Infoset and Reports were created on top of them. Whenever I create a prompt on this object

  • I downloaded a game from apple store and while I was playing the mac blocked... what can I do?

    I downloaded a game from apple store and while I was playing the mac blocked... what can I do? Nothing that I push doesn;t make anything!