Help  using the agentDownload in 10.2

We have grid control installed. I have not installed. I am trying to install the agent download on Solaris 64 bit.
1. I have download the agentDownload from OTN and unzipped.
2. I have read the instructions.txt file and set the hostname and port in the response file and in another file.
3. The instructions.txt tell me to go to the OEM Basic Configuration Doc section 5.4 There is no section 5.4
So I went herE:
http://download.oracle.com/docs/cd/B16240_01/doc/install.102/e10953/installing_agent.htm#DAFDBHDJ
I am pretty confused on how to run the agentDownload script. can someone lead me in the correct direction?
I found this blog:
http://blogs.oracle.com/XPSONHA/2009/02/mass_deployment_for_the_oracle.html
However, I don't see the agentDownload file anywhere in what I unzipped.
solaris_x64/agent/install
I try to run the ./install
I get a list of help options.
solaris > install -b /opt/oracle -m myoemserver.com -r 4889
install: invalid option -- r
Try `install --help' for more information.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

I am pretty confused on how to run the agentDownload script. can someone lead me in the correct direction? http://www.oracle.com/technology/software/products/oem/files/agent-files/64-bit/solaris%20x86-64%20-10.2.0.2-instructions.txt
what's confusing?
In short, this is what you need to do:
-> Prepare the download script (Modify OMS Host and OMS Port)
After configuring move this to Target host.
-> Make sure you have agent_download.rsp
If you do not have this file, mv agent_download.rsp.bck to agent_download.rsp
-> configure wget, check with your system admin to configure this for you.
make sure you have it under path, verify using "which wget"
Once all this is done, execute agentdownload on the target host.
./agentDownload.sloaris_x64
Check documentation for options for this.
However, I don't see the agentDownload file anywhere in what I unzipped.
solaris_x64/agent/installYou should have a file with the name agentDownload.solaris_x64 under solaris_x64
You don't have to download this, you should have this already under $OMS_HOME/sysman/agent_download/version

Similar Messages

  • HT5622 i need help using the icloud it is not making any since to me can some one call me and help me with it please don't try to help me through email i need to talk and listen i don't understand instruction by reading

    i need help using the icloud it is not making any since to me can some one call me and help me with it please don't try to help me through email i need to talk and listen i don't understand instruction by reading.
    <Phone Number Edited by Host>

    You aren't addressing anyone from Apple here.  This is a user forum.
    You might want to call a neaby Apple store to see if they have a free class you could attend.

  • Help using the terminal.

    I'm taking a survey course of languages and we are covering perl this week. I need to write perl script that will parse xml data, but I can't even figure out how to use the terminal.
    when I open the terminal I get this line(I subed out my name and username):
    firstName-LastName-MacBook-Pro:~ username$
    i have tried command from tutorials such as ls and that works, but I can't figure out how to run scripts from a file. I have tried a simple hello world app by typing:
    #!/usr/local/bin/perl
    print "Hello World!\n";
    in text edit saving it as hello.pl then I tried to type hello.pl in the terminal and it says
    -bash: first.pl: command not found
    can someone explain in simple terms how to run simple programs like this?
    thanks, aaron

    Thanks for the help. That was a lot of good information. I did have it saved wrong(as rich text).
    It is a common mistake, and I'm glad you avoided it.
    However I still could not figure out how to run first.pl. using ./first.pl and ~/first.pl
    The "chmod +x first.pl" step is need to mark the file as an executable. As previously suggested by etresoft and me, you can also just use "perl first.pl" and avoid the other configuration stuff.
    I downloaded fraise as you recommended. Can you guide me through the part were you said, "modify your PATH environment varialble so it includes a directory where you put your personal scripts." i did not understand what you meant by "Create the file .bash_profile in your home directory (you will need ls -a to see the file after you create it). In .bash_profile".
    Any file that begins with a period will be invisible to the Finder. And the 'ls' command will by default not show files that begin with a dot. "ls -a" will so all files in a directory, including those that begin with a dot. This was the Unix way of cutting down on clutter in a directory, by having 2 classes of file name, and the ones with a leading dot were then typically used for things like initialization files.
    In this case .bash_profile is a bash shell initialization file. By default Mac OS X Terminal sessions use the bash shell to service the commands you enter at the command prompt.
    However, a new Mac OS X account typically does NOT have a .bash_profile, so if you wish to customize various bash behaviors you would need to create the .bash_profile yourself.
    And as much as I happen to love the vim (and before that vi) text editors, they have a very steep learning curve, so I'm hoping that etresoft was being humorous when he suggested you should avoid a GUI text editor such as Fraise
    And besides, if you start down the vi/Vim path, it will only lead to text editor wars with the emacs uses of the world Since you are trying to get through a programming language survey course, perhaps you can skip the text editor debates until a later semester.
    With respect to PATH. PATH is a standard Unix environment variable that contains a list of directories that the shell (bash) will search when trying to find the executable file with the same name as the command you entered at the shell command prompt.
    If you do not modify your PATH environment variable, it generally looks like:
    echo $PATH
    /bin:/usr/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin
    where each directory is separated by a colon (:). The shell will take the command name you entered, and search each directory from left to right until it find an executable file that matches your command.
    What I was suggesting is that you create your own personal directory where you put executable programs and scripts, and then add that personal directory to your PATH environment variable.
    Since the bash shell is going to read .bash_profile when you start a new Terminal session and execute the commands it finds in .bash_profile, that is the idea place to customize your PATH
    # Assuming you have created a folder called 'bin'
    # in your home directory, and you put your personally
    # created executable programs and scripts in there
    # then the following export command would modify your
    # PATH to include your personal bin directory. It does
    # not need to be called bin, that is just a long standing
    # Unix convention.
    export PATH="$PATH:$HOME/bin"
    After changing the .bash_profile, you would need to either restart your Terminal session or issue the command
    source ~/.bash_profile
    I'm a complete beginner when it comes to this stuff.
    your help is greatly appreciated.
    We all had to start somewhere. In my case the Unix command line prompt was a step up in usability
    ps. how to I enclose my code quotes like you did?
    Code segments (or anything you do not want the forum software to touch) are enclosed in an identical pair of tags. For example:
    ... your code snippit here ...
    And one final point. etresoft pointed out that the she-bang (#!) line was wrong. I find the following to be the most portable way to specify the #! line
    #!/usr/bin/env perl
    print "Hello World!
    /usr/bin/env is a POSIX standard program that must list in /usr/bin/env, and it will invoke the script interpreter specified as its single argument. /usr/bin/env will use PATH to find the script interpreter, so as long as perl exists in one of the directories specified by PATH, my above #! will always find it, no matter what Unix platform I copy my perl script to, or hand it in for a homework assignment (OK, it is been a lot of years since I did homework, but you might find it useful for your survey course).
    etresoft also suggested included the -w option in your #! line. That is not possible when using "#!/usr/bin/env perl", however, you can can just add the "use warnings;" statement to the your perl script and get the same effect:
    #!/usr/bin/env perl
    use warnings;
    print "Hello World!
    And if you want perl to look even close at your code you can change warnings to strict
    #!/usr/bin/env perl
    use strict;
    print "Hello World!
    {code}
    which makes perl really picky about your code.

  • Help using the Connection Trunk command

    Hello Group,
    I could use a bit of assistance accomplishing the following.
    I have two Cisco 1760 Routers with a WIC 1/DSU T1 and one VIC2/E/M in each router.  I am new to CLI commands and could use some tips.
    I would like to set up these routers (I will call them Router A and Router B) to communicate with each other via a internal IP network which spans between two seperate locations. 
    I would like to set up these routers to use the E&M ports to send and receive audio between locations.  The E&M ports are connected to my external equipment which allows for transmit and receive audio to be delivered to the E&M port.  
    I need to be able to allow for the routers to use 2 wire or 4 wire audio between locations, which is matched at both ends.   The routers do not dial phone numbers nor are phones in use at all.  Basically the routers are going to be used to send and receive two way radio voice between the locations which the radios are interfaced to the E&M ports. 
    Can anyone please help me on configuring these routers to accomplish this and if I need to use the Connection Trunk command I can do so, as this is the only purpose of the routers is to relay audio between locations.
    Please Help.
    Thanks A bunch!!
    Rick

    Thank you for taking the time to reply,  However I have allready configured the routers to link the LMR sites together.   I have been connecting LMR assets utilizing ROIP for many years using non-cisco equipment which is specifically designed for ROIP, I have a large inventory of 1760 routers which were originally used for Telco applications which were replaced by newer equipment.  The fact that the routers have become "obsolete" does not mean that they are not usable for my application.   How can you make a statement that this is "limited equipment" when the intended use of this equipment for my application has been accomplished without limitations which are specific to my operation.  
    I posted a request on this forum to obtain some help in the configuration of these devices from people who are familiar with the 1760 router.  Your response was the first response which I had received in regards to my request for assistance, I thank you for at least attaching a link to some resources which I can utilize.  Utilizing the services of a "reputable consultant" or "UC certified partner" would be acceptable in some circumstances, however utilizing the services which would be provided by such would only pose limitations on our technical skills.  I do not want to have to rely on a third party consultants to acheive what is engineered and desgned in house by our staff. 
    I am not looking to purchase new equipment, nor am I looking for consulting help on this issue as we manage and deploy equipment in house.  Enlisting the services of a consultant or certified partner for our Cisco equipment deployments would only add unnecessary costs and time to deploy equipment.  Again thank you for the link to the examples. 
    Respectfully,
    Richard Wiglesworth

  • I need help using the target path tool

    Hi all,
    I realise that I need to keep all my code on the main timeline, so now I need some serious help with targeting movieclips and buttons, when I use the target path tool (the little gun sight in the action script panel) it lets me navigate to the thing I want, but when I use it's suggestion it very often doesn't work, and I am left using trial and error to work it out.  Ican get stuff to work, but I really have no idea why or how I am doing it, Sorry to be such a N00B, but I really think if I can work this out I am going to get somwhere.
    Cheers
    sub

    subtlefly72 wrote:
    Thanks kglad,
    OK that is basically what I have been doing, but its been a bit hit and miss, but maybe now I see why, your last sentence
    of course, all those objects have to exist at the time your code executes.
    So if I am referencing something inside a mc and it doesnt exist on the first frame there will be an error?
    exactly.
    also what is the       this.  Object() and Object(parent)  ??
    Do I need to be using these?
    not when using code on the main timeline.  "this" refers to the current scope which for code on the main timeline, is the main timeline.  the following are the same:
    this.mc and mc
    this.var1 and var1
    And still I want to know why the target tool gives me a path that doesn't work?
    i can't tell you much about the target tool.  i've never used it.  but i tried testing it just now and it seemed to work correctly to target a nested movieclip.  again, you must sure that object exists when your code executes so if you target something on frame 2 (or greater) of a movieclip using code on frame 1 of the main timeline, the reference may be correct but the object won't exist when your code executes.  there are a number of ways to handle that if it's your main problem.

  • Need help using the selection tool

    Hi all,
    I have some strange (to me) occurrences while using the 'quick selection tool'...
    Explanation
    I'm using PS Elements 11 on a Win 7 (64) PC.
    What I want to do is to create a new pic from an existing pic.  The existing pic's background is unsuitable for what I want.  But the FG is what I need.  I thought that selecting the FG object and placing into a new pic would be what I needed using the <quick selection tool>.
    To do this, I am trying to use the <quick selection tool>.  I've had varying degrees of success using it.  One main thing I don't understand & pretty much renders my project useless & undoable, is the fact that whenever I use <refine edge> so that I can refine my edge selection, my pic is immediately lost or taken away.  Since I have no idea as to what's happening, I am forced to close the pic (W/O saving changes, of course) & then re-opening the pic.  All's well until I click the <refine edge> button again, then, my pic disappears AGAIN! 
    My guess is that maybe the pic is somehow transformed to a layer or something.  But, how can I turn this behavior off and not make my pic disappear?? 
    There are a few more details about this <selection tool> that I'm muddy on.  Is there something where I can read more about its use?  I would love to know more, but how?  Where?
    I've now read the online manual part about selection tools.  Although it shed some light, I'm still needing more.
    I am not a constant user of PSE, rather,  I only use it on occasions.  Normally, I use its scanning features.  I may play around with a few other features, but I also know that PSE offers many other powerful features, I rarely, if ever, use.

    This is the Photoshop forum.  You want the Photoshop Elements forum:
    Photoshop Elements

  • Need help using the "skatter" function with brushes.

    I'm using Photoshop 7 right now. I want to use the scatter function with one of the standard brushes to make a star trail, but the problem is that the stars are too thick, there's too many of them. How do I tell it to draw less instances of the brush when I'm in scatter mode? So that it's only dropping 5 at a time or so?

    I have a control bar for "Master Diameter" but I can't find anything that says "spacing."

  • Need Help Using the Report Painter

    Hi experts,
    i'm using report painter GRR1, how can i resize the Lead Column? i need it to increase its length, i had already maintained the texts(short middle and long texts).
    Thanks for the help,
    zryxel

    Go to FORMATTING > COLUMNS > Select the Format Group and Edit Column Width.
    Reward points if useful.
    Salamat!
    AJ

  • Help Using the InfoSwing ComboBoxControl

    I'd like to use ComboBoxControl as a quick find/navaigation
    feature, possibly within a Navigation component. E.g., go to a
    contact record by Last Name. I have created a Lookup rowset but
    I am unable to even get the LOV from this rowset to appear in
    the combobox. I was able to get list to appear in a list box,
    though. The help for this component seemed a bit light. Has
    anyone had any experience with this.
    - Thx
    null

    Abie Aguiar wrote:
    I am making a slideshow, using only still images, in iMovie 6.0.3
    so, why did you post in the iM09 section of this board.. ? anyhow..
    iMHD6 is meant for video; it uses internally two codecs: DV, for standard sized projects, and AIC for HiDef projects.
    what is your project set to: NTSC? 720/1080?
    if your project is set to any Standard format (NTSC/PAL, 4:3, 'wide'), the res is 720x480.. plus, the DV in use is optimized for TV playback - a 'grainy' source doesn't add any quality.
    2nd) preview quality in iM is reduced..
    How do you judge pic quality?
    3rd) exported files lack the 'high' flag.. (=quality is within, but set to 'reduced on playback')
    How is your 'player'/QTplayer set...?
    ...

  • Help using the BLUR Filter in PSE7

    I want to blur the background in some of my photos so that the main subject of the photo is sharp but all background items are blurred. When I try to do this in PSE7 it gives me a message 'could not complete your request as the layer is locked'. If I am able to get past this point how do I identify the subject from the background?

    Hmmm. Blurring, as opposed to bandaging...
    I don't know if this helps any, but - along a similar line of thought - I'd managed to load in a picture of a very wide, blue sky. Not much detail there, so what could possibly go wrong. After all, I'm just experimenting. -Then I tried out the bandage tool, sort of right in the middle of the sky, with blue all around it. (Some kind of a gradient had already been applied to it some time earlier; there is a zigzag mountain range somewhere much farther down.) The bandage tool attempts to look around its periphery, and fill into the middle, based on an 'average' of the periphery. I don't think it is actually averaging, in a mathematical sense, more than making a rough guess as to what the periphery represents, and then using that number, whatever it concocted together, as a sample, and then - having arrived at a sample - deposits a lot of that kind of stuff in the middle. (Remember, the bandage tool is used for filling in a hole, if my guess is correct.)
    Is it really fixing the hole? Rather, it looks a lot more like some kind of interference pattern is being deposited on the blue sky, which can be a very pretty thing to look at, if that is what you are after. (At this point, the interference pattern can be cleaned up by switching to the blur tool; the bandage tool produces noticeable results much faster.)
    But remember, the filling process depends a lot on the size of the circle you are using. It appears that you can adjust the size of the circle from a few pixels, up to a few hundred pixels. If you choose 400 pixels, that is probably too big to be useful.) Did you look above the drawing area, and find a place that indicates the size of the paintbrush can be changed? By golly, that little box also applies to the size of the blurring tool, and the bandage tool. All of those tools are different, but you can define each one of them by going up there and adjusting the pixel size. PSE 6 keeps track of the dimensions of the size of each of the tools. (For instance, I was using a circle that was about 175 pixels wide. -Maybe that's the radius, or maybe that's the diameter, I don't know. But for fixing up very small details, you should try using a circle that is about 7 or 8 pixels wide.)
    If you switch back and forth from the bandage tool, which makes big changes, and the blur tool, which gets rid of minor smudges, you are probably going in the right direction.
    Remember, you can zoom in and out by pressing Command + or Command -, and every time you change the order of magnitude you are dealing with, you should adjust the sizes of the tools you are using.
    Like you, I am new to Photo Shop Elements 6. There is no way to learn without jumping in, and just seeing what you can do, and what happens when you switch from tool to tool.

  • Help using the Bones tool with imported art

    Hi
    I have a game design project that I have to animate characters for. The Bone tool in Flash seems like the perfect tool for the job!
    Here's my problem: I can draw things in Flash and rig them with the Bone tool and animate them fine. However, I'm much more comfortable with Illustrator. But whenever I try to bring in external artwork, I get lots of errors.
    Create (solid color, single object) body parts as layers in Illustrator. Import Illy file to stage in Flash. Drag bone tool across body. Body is highlighted but I can't connect the other objects. I realize the Armature is only above the body layer and all the other layers are on top. Drag Armature layer to top. Still no luck. The bone just doesn't care about the other objects.
    This is my ideal workflow so I'd love it if anybody could tell me what I'm doing wrong here. Should I make all the elements into MovieClips? That hasn't worked when I've tried it. Should I import differently? Should I make the entire character into a movieclip and then rig the instance on the stage?
    I'll be exporting it to PNGs at the end, so I don't need it to be robust down the line.
    I get other errors with other importing methods too, but I can't recall them ("Can't connect...something" when using a PSD). But like I said: Illy to Flash is my ideal.
    Thanks in advance!

    Hi Brian,
    There are two ways of dealing with bones. You can either connect bones to a single shape on a layer. Or you can connect bones to multiple movieclips. The bones will link the movieclips together and put them all on one layer if the movieclips are on different layers.
    Shape cases are good to use if you wish to morph the shape during animation. This is really useful if you have simple shapes.
    For more complex shapes (shape with lots of control points), it is best to convert them to movieclip.
    You can read more about bone in the Adobe help docs:
    http://help.adobe.com/en_US/flash/cs/using/WS58BD3A02-DA25-488f-B534-AE5463A24833.html
    Q

  • Newbie, Help using the persistence API

    Hi all,
    I am trying to implement 1 : n relations between objects.
    In the  SAP example (Persistence example) you can see this:
    P_CLASS_CAR = PDR.createClassDescriptor(Car.CLASSTYPE, CAR_ATTRIBS, new LinkDescriptor[] { PDR.createLinkDescriptor("license", License.CLASSTYPE, MultiplicityType.SINGLE, true)});
    P_CLASS_LICENSE = PDR.createClassDescriptor(License.CLASSTYPE, NO_ATTRIBS, new LinkDescriptor[] { PDR.createLinkDescriptor("car", Car.CLASSTYPE, MultiplicityType.SINGLE, true)});
    In this case we had a that one (1) car has one (1) License or 1:1 relation
    But what about if the relations are 1:n for example one car with many license? Should i use this...
    P_CLASS_CAR = PDR.createClassDescriptor(Car.CLASSTYPE, CAR_ATTRIBS, new LinkDescriptor[] { PDR.createLinkDescriptor("license", License.CLASSTYPE, MultiplicityType.<b>MULTIPLE_VECTOR</b>, true)});
    P_CLASS_LICENSE_<b>1</b> = PDR.createClassDescriptor(License.CLASSTYPE, NO_ATTRIBS, new LinkDescriptor[] { PDR.createLinkDescriptor("car", Car.CLASSTYPE, MultiplicityType<b>.SINGLE</b>, true)});
    P_CLASS_LICENSE_<b>2</b> = PDR.createClassDescriptor(License.CLASSTYPE, NO_ATTRIBS, new LinkDescriptor[] { PDR.createLinkDescriptor("car", Car.CLASSTYPE, MultiplicityType<b>.SINGLE</b>, true)});
    P_CLASS_LICENSE_<b>n</b> = PDR.createClassDescriptor(License.CLASSTYPE, NO_ATTRIBS, new LinkDescriptor[] { PDR.createLinkDescriptor("car", Car.CLASSTYPE, MultiplicityType.<b>SINGLE</b>, true)});
    So i have to put the MULTIPLE_VECTOR instead of SINGLE  to say that there is a 1:n relation for example one (1) car have n licenses but  one (1) license   belongs to only one car. Is this correct?
    Best Regards,
    Erick Ilarraza

    Hi Philipp,
    Yes, I can work with persistence objects, did you need help? I can send you some code with a little of information.
    In this moment I am trying to work with the Synchronization, but It didn't work!!
    Best Regards,
    Erick Ilarraza

  • To Whom want to be helped using  the webutil_102 Jacob_17 Form9i  builder

    Steps Running WEBUTIL Comes With 9i
    1) File Distibution;
         After I unzipped the file webutil_102.ZIP; I distributed the file as follow
         In D:\Dev9i\forms90\java I have the following file: webutil.jar, jacob.jar,
         In C:\webutil\lib, I have the following file:
    Note: the last two files is not appear unless you apply the sign batch that i will describe it after
         In C:\webutil\forms; I have the following file:
         In C:\webutil\server; I have the following file:
    2) File Configuartion (orion-web.xml, forms90.env)
         I edit orion-web.xml file found in
    D:\Dev9i\j2ee\Oracle9iDS\application-deployments\forms\forms90web
    And add the following row:
    <virtual-directory virtual-path="/webutil" real-path="C:\webutil\lib" />
         I edit forms90.env file found in
    D:\Dev9i\forms90\server
    And add the following row:
    # Virtual path for webutil directory as defined in file path j2eedirectory until file orionweb
    AliasMatch ^/forms90/webutil/(..*) "C:\webutil\lib/$1"
    3) sign the jar file (webutil.jar and Jacob.jar)
    I sign the webutil.jar file and Jacob.jar file found C:\webutil\lib; as follow:
    a) I reconfigure the makecert.batch file and save a backup makecert_Modfy_Conf_By_Wissam_GOOD.batch which details how I configured it, you can see this file in the following schema: D:\3_BuckUp_Dev9iFile_After_InstalWebutil9i_RuningGood\Soft_File_Prerequiset\5_WebUtil_Comes_With_Forms 9.0.2\util
    b) I reconfigure the sign.batch file and save a backup sign_Modfy_Conf_By_Wissam_GOOD.batch which details how I configured it; you can see this file in the fellowing schema: D:\3_BuckUp_Dev9iFile_After_InstalWebutil9i_RuningGood\Soft_File_Prerequiset\5_WebUtil_Comes_With_Forms 9.0.2\util
    c) I execute in this order the following batch:
    C:\webutil\util\makecert -- this command is executed just one time.
    Respone: file certificated.
    C:\webutil\util\sign C:\webutil\lib\jacob.jar
    Response: jar signed
    C:\webutil\util\sign C:\webutil\lib\webutil.jar
    Response: jar signed
    d) I verify if the jacob.jar and webutil.jar file are well signed as follow:
    D:\
    cd Dev9i\jdk\bin\
    jarsigner -verify C:\webutil\lib\jacob.jar
    Response: jar verified
    D:\
    cd Dev9i\jdk\bin\
    jarsigner -verify C:\webutil\lib\webutil.jar
    Response: jar verified
    After complete this step you will have In C:\webutil\lib, two new UNSIGNED file jacob.jar webutil.jar are created:
    4) Config (webutil.env and formsweb.cfg and regedit)
    a) webutil.env
    I put after I reconfigure the file webutil.env (you can edit this file to see how I reconfigure it) in the directory Dev9i\forms90\server.
         ORACLE_HOME=D:\Dev9i
         FORMS90_PATH=C:\webutil\forms;C:\webutil\lib
         #CLASSPATH=C:\webutil\lib\webutil.jar;c:\oracle\ids9i\jlib\debugger.jar;c:\oracle\ids9i\jlib\ewt3.jar:c:\oracle\ids9i\jlib\share.jar;c:\oracle\ids9i\jlib\utj90.jar;c:\oracle\ids9i\jdk\jre\lib\rt.jar
         CLASSPATH=C:\webutil\lib\webutil.jar;D:\Dev9i\jlib\debugger.jar;D:\Dev9i\jlib\ewt3.jar;D:\Dev9i\jlib\share.jar;D:\Dev9i\jlib\utj90.jar;D:\Dev9i\jdk\jre\lib\rt.jar;C:\webutil\lib\jacob.jar
         WEBUTIL_CONFIG=C:\webutil\server\webutil.cfg
    b) formsweb.cfg
    I edit formsweb.cfg in D:\Dev9i\forms90\server\formsweb.cfg
    In the end I add the following section:
    #A sample config entry for use with WebUtil
    [webutil]
    pageTitle=Oracle9iAS Forms Services - WebUtil
    width=100%
    height=100%
    baseHTMLjinitiator=c:\webutil\server\webutiljini.htm
    #webUtilArchive=webutil.jar
    webUtilArchive=/forms90/webutil/webutil.jar,/forms90/webutil/jacob.jar
    archive_jini=f90all_jinit.jar
    archive=f90all.jar
    WebUtilLogging=off
    WebUtilLoggingDetail=normal
    WebUtilErrorMode=Alert
    lookAndFeel=oracle
    envFile=webutil.env
    c) Regedit: FORMS90_BUILDER_CLASSPATH
    In regedit I edit the variable FORMS90_BUILDER_CLASSPATH and add:
    D:\Dev9i\jlib\importer.jar;D:\Dev9i\jlib\debugger.jar;D:\Dev9i\jlib\utj90.jar;D:\Dev9i\jlib\dfc90.jar;D:\Dev9i\jlib\help3.jar;D:\Dev9i\jlib\help3-nls.jar;D:\Dev9i\jlib\oracle_ice5.jar;D:\Dev9i\jlib\ewt3.jar;D:\Dev9i\jlib\share.jar;D:\Dev9i\forms90\java\FormsGraph.jar;D:\Dev9i\forms90\java\demo90.jar;D:\Dev9i\forms90\java\ftpbean.jar;D:\Dev9i\forms90\java\simpleFTP.jar;D:\Dev9i\forms90\java\getclientinfo.jar;D:\Dev9i\forms90\java\webutil.jar
    5) Run isql plus
         Connect as meteo
    meteo
    dbrc
         Run the script create_webutil_db.sql as follow:
    SQL> Start C:\webutil\forms\create_webutil_db.sql;
    Response: Package Created
    6) Java Run Time
    at controle pannel I Select “java plug_in 1.3.1.9” , "Advanced Properties" Tab, then scroll the "Java Runtime Environment" Poplist and i choose the last “JRE 1.3.1.17 in c:\...\...\JRE\1.3.1.17”, than validate the dialog box.
    7) Begin Forms Construction
    1.     Open Form builder Connect with meteo/meteo and in PL/SQL libraries open Webutil.pll file.
    a)     File > Save as and Rename the file to different name (e.g WEBUTIL_LIB_MET.pll)
    b)     Compile the new PLL file and generate it (WEBUTIL_LIB_MET.plx) and past this file in the location pointed in the FORM PATH variable in the file webutil.env which itself already past in the directory D:\Dev9i\forms90\server
    c)     Edit the file webutil.cfg found in C:\webutil\server and handle the security issue as follow:
    #NOTE: By default the file transfer is disabled as a security measure
    transfer.database.enabled=TRUE
    transfer.appsrv.enabled=TRUE
    transfer.appsrv.workAreaRoot=c:\temp
    transfer.appsrv.accessControl=TRUE
    #List transfer.appsrv.read.<n> directories
    transfer.appsrv.read.1=c:\temp
    #List transfer.appsrv.write.<n> directories
    transfer.appsrv.write.1=c:\temp
    d)     Attached the new named WEBUTIL_LIB_MET.pll to your form with Remove Path option YES
    e)     Subclass webutil.olb(downloaded) into a Form and you will have a new fmb file saved it as WEBUTILLIB9I_WEBUTILDOCS.fmb
    f)     Open WEBUTIL_DOCS.fmb and subclass or copy (window canvas block program unit) into your new form WEBUTILLIB9I_WEBUTILDOCS.fmb and save it.
    g)     Edit -> Preferences... option, select the "Runtime" Tab, and I updated the Application Server URL:http://wissam-bdd68698:8888/forms90/f90servlet?config= webutil
    h)     Run your form WEBUTILLIB9I_WEBUTILDOCS.fmb and you begin use this file

    Steps Running WEBUTIL Comes With 9iOh,thanks for the conclusion and steps;is this works with Forms [32 Bit] Version 10.1.2.0.2 (Production) ?

  • I need help using the "GetCursorPos" function in the user32.dll on a machine running Win98.

    I'm able to get the x axis information by setting arg1 to TYPE=Numeric, DATA TYPE=Signed 32-bit Integer, PASS=Pointer to Value. I wired a zero to the input.
    When I setup arg2 the same, LabView crashes.???
    This is the first time I've attempted to access a dll, and I'm not sure I'm on track with the operation and I appreciate any help with this matter.

    Hi,
    What you are doing now is:
    BOOL GetCursorPos(
    LPPOINT lpX // cursor's X
    LPPOINT lpY // cursor's Y
    This is not correct! The Api pop only one parameter from stack, and returns
    to the second. The second parameter should be the return andress (set
    automatically), but in your case it's a pointer to lpY! So LV crashes!
    This is the prototype of GetCursorPos:
    BOOL GetCursorPos(
    LPPOINT lpPoint // cursor position
    Wire a cluster to the first parameter (set the dll to "adapt to type"). the
    cluster should have two U32's in it.
    Regards,
    Wiebe.
    "_K_" wrote in message
    news:[email protected]..
    > I'm able to get the x axis information by setting arg1 to
    > TYPE=Numeric, DATA TYPE=Signed 32-b
    it Integer, PASS=Pointer to Value.
    > I wired a zero to the input.
    > When I setup arg2 the same, LabView crashes.???
    > This is the first time I've attempted to access a dll, and I'm not
    > sure I'm on track with the operation and I appreciate any help with
    > this matter.

  • Help using the Foo SubFoo extends Foo SubFoo trick

    Please have a look at the following (simplified) excerpt:
    import java.util.*;
    public class Vertex<V extends Vertex<V>>
    private List<V> sources = new ArrayList<V>();
    public void addEdgeTo (V target)
    // #1: Following leads to: cannot find symbol
         // symbol : method add(omr.test.Vertex<V>)
         target.sources.add(this);
         // #2: Following leads to: warning: [unchecked] unchecked cast to type V
    target.sources.add((V)this);
    I have already studied the very interesting article "Groking Enum (aka Enum<E extends Enum<E>>)" on http://madbean.com/blog/62/ . And I'm using that trick, since I want any instantiation of my Vertex class
    to record links (via the "sources" list) to its source vertices, all being homogeneous.
    In other words, all the vertices are meant to be instances of the same Vertex subtype.
    How do I code this?
    Attempt #1 does not compile
    Attempt #2 works, but gives the "unchecked" warning, something I'd like to avoid...
    Any idea?
    Thanks,
    /Herv�

    Here is a reply to my own post, which solves the original problem:
    import java.util.*;
    public class Vertex<V extends Vertex<V>>
    // Vertices that point to this vertex
    private List<V> sources = new ArrayList<V>();
    // Vertices that this vertex points to
    private List<V> targets = new ArrayList<V>();
    // Add a directed edge between 'source' vertex and 'target' vertex
    public static <V extends Vertex<V>> void addEdge (V source, V target)
    source.targets.add(target);
         target.sources.add(source);
    // And a similar method for removeEdge
    Now both 'source' and 'target' parameters of the addEdge() method are provided at run time and their (identical) subtype properly inferred.
    It compiles and runs OK, and is clear (more symmetrical).
    Bye,
    /Herve

Maybe you are looking for

  • Weird colours with QuickTime sources, broken preview renders & crash at exit (CS4)

    Hi erveryone, I have a strange problem in Premiere Pro CS4: Allmost all QuickTime MOV that I put in the timeline show weird, broken colours. At first I thought this was a problem with a specific codec, but I have now tried several codecs and pretty m

  • Can't get 2005 mac mini to see 1.8 MSata Drive

    Hello I got an old mac mini g4 from my grandparents after I upgraded them to an iMac. I have been upgrading the parts because it's so old. I added the bluetooth/airport Mezzanine Board. and bought a PATA to Msata adapter and a 1.8 Msata Drive. I coul

  • IPad Apps showing (3) but no update available

    I have purchased few Apps and now getting updates, Apps on right side of iTunes showing 3 but no update is available whenever I am checking for update. What is the problem? can I get rid of this number in front of Apps?

  • Can i create Keyboard Shortcuts?

    Hi guys, Does Acrobat has keyboard shortcuts that i could configure or change? When i get a nice designed pdf i like to know each font characteristics and is too slow to go one by one by click, select, right mouse button....Properties everytime. If i

  • Unable to find PL/SQL library in UNIX

    Hi, I am trying to run a report in Unix server after developed and tested in Windows NT. It works fine with Windows NT. But while running in UNIX it gives me the following error. REP-0756: Warning: Unable to find PL/SQL library 'ACES_LETTER_LIB'. REP