Extending a VO - FTP question

I am looking at this userguide:
http://oracle.anilpassi.com/extend-vo-in-oa-framwork.html
Because I have a VO on our eBusiness system that needs to be extended.
I am new to JDeveloper, so apologies for the very silly question.
One of the steps on the doc says:
you need to FTP all relevant the files from $JAVA_TOP/oracle/apps/../..However, using my FTP account, I can't see anything with $JAVA_TOP listed. Could that be because I don't have access?
If I FTP onto our Oracle server, I see folders like:
.dt
.java
.SPOT
.ssh
.topasrecrc
arffs1
audit
bin
cdromWe have other folders corresponding to instance names - e.g.
TESTAnd if I look in there, I can only see:
lost+found
oracleIs this an access issue? I'm scared of asking our DBAs because they will throw things at me, like sarcasm and scorn, for asking such things!
Any advice much appreciated
Thanks

Click on oracle. Here you will find Java top.
Like
/u01/oracle/ InstanceNameComn / java // check for your common_TOP
Thanks
--Anil                                                                                                                                                                                                                                                                                               

Similar Messages

  • FTP question; very basic

    I don't know how to configure FTP File Transfer to start an upload to web.
    Where do i get the information to fill in the fields??
    Please help

    thank you Mike
    I¹ve heard of zenfolio and will revisit them.....I just wish it was easier
    to use Lightroom....one stop shopping is so seductive.
    nancy
    From: MikeLeone <[email protected]>
    Reply-To: <[email protected]>
    Date: Tue, 08 Dec 2009 15:15:44 -0700
    To: Nancy Dinoto <[email protected]>
    Subject: FTP question; very basic
    John Vitollo had this to say:
    Do you have a website and/or do you own your own domain name... such as
    http://forums.adobe.com/people/nancy7147.com? You'll need a website hosting
    company to serve your website to the world.
    Depends on your ISP. I'm a Comcast cable customer; they allow me to have
    a personal website. I could use that space to do it.
    In my case, I have a Flickr pro account. When it expires, I will
    probably move to Zenfolio, as I like their presentation much better. I
    can't use LR slideshows with Flickr or Zenfolio, but that's not a
    deslbreaker for me.

  • FTP question for newbie -- How to access external volume?

    I have set up an old Mac (running Tiger) as a server on my LAN; attached to this Mac are several Firewire disks. I want to use FTP (with retrospect Express) to automatically back up from another computer to these disks.
    I can successfuly mount these Firewire disks using AFP on the other computer. But when I use FTP, I seem only to access the user account I use to log in. How do I get FTP to go those Firewire disks to transfer the backup files?
    Please forgive me if this is a naive question... Thanks in advance for any advice!

    To configure the FTP server in Tiger requires creating and editing certain files using the terminal application. So if you have no prior UNIX or command line experience you may find this tricky and you would need to read the man file for ftpd.
    So I would suggest you try out PureFTP manager which is a front end application for an alternative FTP server.
    I have used this Application and found it quite straightforward to use.

  • File and FTP Question

    We have a situation where a bank places an EDI document on their FTP site and then we go and download the file and process it. We are SOA Suite customers and have been using the tools for over a year. My question is would it be recommended to tackle this problem with BPEL or ESB and the ftp adapter? The bank doesn't require any kind of acknowledgement, but I've never dealt with EDI docs before and thought B2B might do a better and more seemless job of processing the EDI doc. My other concern is that B2B is overkill for this scenario since it isn't transaction based meaning the bank will place their file a couple of times a day and not everytime there's a transaction. Hope this makes sense. Be happy to provide more info as I'm just getting started.
    Thanks for any advice.

    Ramesh,
    Thank you for the reply. My confusion is that I don't really have a trading partner to setup or specify communication. I simply need to poll an FTP site for an EDI document and process it, basically a one-sided effort. Is this possible with B2B? There is essentially no interaction with the bank and no acknowledement that needs to be sent.
    Thanks again.

  • Display extended ascii characters as question mark in xml file

    I am creating a XML file with encoding as UTF-8. Some tag values contain some extended ascii characters. When i run the java program to create the file in windows, the extended ascii characters are display correctly. But in linux it is displaying as ?(question mark).
    i am not able to rectify this. can anyone help me....
    Its urgent
    Thanks in advance.
    Message was edited by:
    Rosy_Thomas@Java

    Probably the locale is not set for the shell you are running in. The default 'C' locale uses the ASCII encoding which defines only 128 characters. See if giving the commandexport LC_CTYPE=en_US.UTF-8before starting the program fixes the issue.

  • FTPS question.

    Hi,
    If I use a FTPS connection to get a file in a server I need the FTPS only in the server that I use to get the file or I need in both servers the FTPS connection?
    Thanks for the help!

    HI,
    You need to configure the FTP server for this.
    For more have a look into SAP Note - 821267 Question No 19.
    Regards,
    Moorthy

  • Ftp question when trying to connect CS4 manually

    HI!
    I'm trying to connect CS4 manually (don't have a connection key). After putting in my ftp details, the question comes up "on the FTP server, what folder contains your website?" It then says "Contribute needs to locate your site on the FTP server:     example:/users/myfolder/public-html/"
    It then tells me that if I don't know, to contact my web administrator. I've done that, and they don't know, and just refer me to the adobe webpage which supposedly will answer the question. It doesn't.
    This seems to be an easy one to answer, but I'm totally non-techie, and if my website administrator doesn't know the answer, then I'm stuck. Can anybody help? Thanks!!

    Thanks, I worked it out in the end; when I changed webhost, the old pw
    remained but I hadn't realized because it wasn't clear, and I'm not sure
    what I'm doing...
    Sarah

  • String: Extend or not extend that�s the question ...

    A simple design question:
    If you need a method to create a String with chars of the same value, let us name it fill.
    Would you inherit from String or create a helper class with a static method, and why:
    class XString : extends String
    String fill(int count, char character)
    //add character count times to a String and return the result
    class StringHelper
    static String fill(int count, char character)
    //add character count times to a String and return the result
    I think it�s bad design to create this awful helper class.
    What�s your opinion.
    Dirk

    But is this good OO Design? It seems to
    me like a goto in prozedural languages.So the argument is whether you should extend the functionality of a particular object by actually extending the class? I can see why creating helper classes can feel like "fragmenting" the code.
    One of the problems with extension, despite its core role in OO principles, is that its implementation in non-trivial situations tends to break one of the other OO principles... encapsulation.
    Extending a class to fulfil the existing API is generally fine, but any kind of extension to the API generally requires knowledge of how the extended class functions - the implementation - to prevent disrupting existing behaviour, or requires rewriting the extended functions to prevent such clashes. There's a good example in Doug Lea's book Effective Java.
    In the context of the original example, I probably wouldn't want a method that returns a String, but an extension to StringBuffer with a repeat(char with, int count, int index) method which inserts a character a given number of times in the given location in an efficient manner would have been quite useful to me in various situations - most involving padding a buffer to a desired length before returning the required String.
    Is there a particularly good reason why StringBuffer is declared final, preventing this? The only way to (pretend to) do this would be to decorate StringBuffer with a repeating class which creates a char array and inserts that into the buffer... any other method fails to meet the requirements of efficiency. In other cases, there may be no efficient way to perform some task without extension, because no sufficiently efficient method is provided.
    I've talked myself into a corner, and I don't know which side of the fence I stand on. I'll continue to write decorator classes though, because I can't write extensions.

  • FTP question in Terminal

    I am new to the command line so I appologize if this is a silly question.
    I just wanted to know once you have logged onto an ftp server and navigated to the directory you want to "put" a file into, how to find out what your location on the local machine is. I assume that I start at my root which is why I can navigate to my desktop using "lcd Desktop". But how can I see what is on my desktop? I guess I am asking for a way to do a local ls command.
    Thanks!

    Are you saying "! ls"? Nothing happened when I tried that.
    Remote system type is UNIX.
    Using binary mode to transfer files.
    ftp> ! ls
    ftp>
    *edit
    Now it gives me this
    ftp> ! ls
    Applications Library Pictures SME
    Desktop Movies Pictures.sit Sites
    Documents Music Public Unnamed Site 1
    lol why does it work now and not before?

  • Terminal FTP questions

    I have successfully been able to connect to my server using terminal. So far I can change dir., create dir. and get files. The problem I am haviung is that I cannot put files to the server from anywhere on my computer, actually to better describe this is the error message I get:
    ftp> put /Users/myUserName/Desktop/sample1.php
    local: /Users/myUserName/Desktop/sample1.php remote: /Users/myUserName/Desktop/sample1.php
    500 Unknown command
    227 Entering Passive Mode (72,22,69,91,32,22)
    553-Can't open that file: No such file or directory
    553 Rename/move failure: No such file or directory
    ftp>
    FYI: my password and username are accepted
    second question/s: when should I use binary and when should I use ascii? do i just use ascii for '.txt' files and the rest use binary?

    I have successfully been able to connect to my server
    using terminal. So far I can change dir., create dir.
    and get files. The problem I am haviung is that I
    cannot put files to the server from anywhere on my
    computer, actually to better describe this is the
    error message I get:
    ftp> put /Users/myUserName/Desktop/sample1.php
    local: /Users/myUserName/Desktop/sample1.php remote:
    /Users/myUserName/Desktop/sample1.php
    500 Unknown command
    227 Entering Passive Mode (72,22,69,91,32,22)
    553-Can't open that file: No such file or directory
    553 Rename/move failure: No such file or directory
    ftp>
    FYI: my password and username are accepted
    Hmmm. What kind of computer is your server? It looks like ftp is trying to upload the file using your local path on the remote server. There are two ways to get to the local directory. First, you could just change to that directory:
    <pre class="command">cd /Users/myUserName/Desktop</pre>
    to use your example. Second, you can use the lcd command once you're in the ftp program:
    second question/s: when should I use binary and when
    should I use ascii? do i just use ascii for '.txt'
    files and the rest use binary?
    <pre class="command">ftp> lcd /Users/myUserName/Desktop
    Local directory now /Users/myUserName/Desktop</pre>
    Secondly, you should navigate to the proper directory on the remote machine using the cd and ls ftp commands. For example, suppose the server is a Linux server, and your web page goes in a public_html folder. When you log in, you might be at the root level of your account:
    <pre class="command">ftp> ls
    drwxr-xr-x 2 usrname group 4096 Jun 3 08:00 public_html
    drwxr-xr-x 2 usrname group 4096 Mar 22 16:47 bin
    ftp> cd public_html
    250 CWD command successful</pre>
    Then you can just put the file on the server:
    <pre class="command">ftp> put sample1.php</pre>
    And not have to bother with figuring out the relative paths on both sides.
    charlie

  • WRT350N FTP question

    I got the WRT350N router the other day, it's running like a champ!  So far i'm still learning on how to fully get the FTP portion of it working. 
    For testing purposes, I'm using a 20gb HDD split into two 10gb partitions.  I've set both partitions to be shared.  Partition 1 shows up as NTFS2 and partition 2 shows up as NTFS3.  I've set what i thought would have worked almost like active directory, the groups permissions.  There are the default groups "admin" & "guest";  I've added 2 groups, let's say "X" & "Y".  The way i want this to work is that group "X" would have access to only NTFS2 and group "Y" have access to NTFS3.  I have 2 seperate Users setup, again let's call them "X" & "Y".  So under group management I have user "X" & admin (by default) under group "X" and same scenario for group and user "Y".  I have a 3rd user "Z" that has access to boths Partitions/Groups.  I've given full R/W permissions to user "X" in group "X" and to partition 1 and so forth and so on to user/group "Y" for partition 2.
    Hopefully I've painted a good picture on how this is set.  Now to my problem.
    - When logged in as admin and "Z" i see and have access to both partitions. 
    - When logged in as "Y" not only do have access to partition 2, but I also have access to partition 1.
    - When logged in as "X" it gives me a "permission denied" error.
    Now my question is, why does have "Y" have access to both partitions, when it's not granted that permission and is "X" restricted from seeing any of the partitions?
     Please help.
    Thank you!

    This is not about your question, but was curious if you can access the FTP partion from the Internet as well as the local network? Also does the config restore feature work?

  • Extending Wireless--​a few questions

    I posted a while back about needing to extend wireless coverage to an RV about 60 feet from the current router.  Well, I finally am getting around to it, but still have a few questions.
    I have the Westell A90-9100EM 15-10 model.  
    I've read the "Can I get an ethernet connection in a room with only coax" article.
    So I understand I need a splitter, router and extra cable.
    Since I have the Westell, does it matter if I buy another of the exact same model or would the Actiontec MI424-WR work just as well?
    The part about reconfiguring it has me a bit confused.  Can I hook it up to a laptop to do it, even though I'm receiving wi-fi on that laptop from my present modem?  
    It sounds like using another Westell involves a bit more configuring, is that correct?  If so, then the Actiontec would probably be a bit easier?
    Thank you,
    TJ

    tntpointer wrote:
    1) Since I have the Westell, does it matter if I buy another of the exact same model or would the Actiontec MI424-WR work just as well?
    2)  The part about reconfiguring it has me a bit confused.  Can I hook it up to a laptop to do it, even though I'm receiving wi-fi on that laptop from my present modem?  
    3)  It sounds like using another Westell involves a bit more configuring, is that correct?  If so, then the Actiontec would probably be a bit easier?
    1)  It does not matter.  Either another Westell or an Actiontec will work.
    2)  Connect the laptop to the second router.  Temporarily disable wireless on the laptop so it's only talking to the second router.
    3)  Configuration is identical between a Westell and an Actiontec.
    Note:  The configuration steps in the FAQ you referenced ONLY apply to the second router.  Never to the primary router.

  • Simple FTP question

    Hi,
    I'm running 10.4.7 server here at work for our mail and web server. We want to open an FTP site for client uploads as well. I created a new user with a home directory and deleted all the default folders in the FTP users home directory.
    So right now I am able to log in and upload files to it no problem. The problem is I can't see any of the files I have uploaded or any files at all through the FTP program. I set up the FTP users home folder as a shared point with full read & write access for owner, group and other.
    Still no luck all I get is an empty window to upload files into. Never can see what I've uploaded or anything else in there.
    Any help is greatly appreciated and if you need any info about my setup please ask.
    Thanks in advance...
    G5 2.3 Dual - MacMini 1.42 - iBook G4 1.33 - PowerMac G4 500   Mac OS X (10.4.7)  

    What are you using for your FTP client?

  • FTP question

    If I set up the ftp and use the "get files" to pull a website
    into my DW, will it take it offline or just copy it to my machine?
    I don't want to take it offline as the current site needs to
    be up until it is updated.
    Thanks!

    "j500" <[email protected]> wrote in message
    news:flmfrc$dvv$[email protected]..
    > If I set up the ftp and use the "get files" to pull a
    website into my DW,
    > will
    > it take it offline or just copy it to my machine?
    It will just copy it to your machine.
    Patty Ayers | Adobe Community Expert
    www.WebDevBiz.com
    Free Articles on the Business of Web Development
    Web Design Contract, Estimate Request Form, Estimate
    Worksheet

  • IWeb FTP question

    I need to publish my site into a certain folder of my web site, but I don't see an option on how to do that. It would be much easier to have iWeb publish to the folder rather than going through and saving to a folder, then uploading through an FTP client. Any suggestions? Thanks.

    You should be able to set the ftp path in iWeb just like you do in your ftp client so you can publish directly from iWeb to the server.
    Click to view full size
    OT

Maybe you are looking for

  • How can I get a full screen on my tv when i am mirroring from my ipad 2

    how can I get a full screen on my tv when I am mirroring from my ipad 2?

  • How to avoid orphaned system tray icon?

    I know how to create a system tray icon for my application using InstallSysTrayIcon(). I also know how to remove it before the program terminates (calling RemoveSysTrayIcon()). But the program closes in an expected way, or through the Task Manager, f

  • Absence type not visible in ESS

    Hello SAP Consultants Employee when trying to apply leave thru ESS,  the employee is not able to view absence types in the drop down selection. Backend version is 4.7 and portal is 6.0 version We have checked with the portal team on the same issue.Th

  • Linking and ECC document to CRM complaint

    Hello! I have to implement the method GET_SEARCH_HELP of the badi CRM_COPY_BADI_EXTERN to get the reference document number in ECC from CRM. Somebody knows how can i do it? Thanks!!

  • Cats_appr_lite

    Hi,   For cats_appr_lite t-code my client wants only one specific user to be able to see only 2 attandence/absance types in dropdown but not all. How can I do this for that one user. And the outputs should also be for only that 2 users if the field i