OWSM: Where to put additional jars for a custom step

I'm in the process of creating a custom step for OWSM. The step relies on some additional libraries that are not found on the server at the moment. Where do I put them so that my custom step will find them?
I'd like to avoid packaging them into the steps jar file if possible.

You can put anywhere and probably create shared library in your server.xml and import them in following shared libraries:
oracle.wsm.policymanager
oracle.wsm.gateway
oracle.wsm.coreman
oracle.wsm.ccore
HTH,
Chintan

Similar Messages

  • Urgent where i put this code for delete

    hi master
    sir this code is right for my requirment but when i put on_delete event system not respons or not delete record
    where i put this code for conditional deletion
    this is my code
    declare
         recno number;
    begin
    if :system.cursor_block='accbal' then
    delete accbal where accid=:chartofacc.accid;
         go_block('chartofacc');
         next_record;
    elsif :system.cursor_block='chartofacc' then
         select count(*) into recno from accbal where accid=:chartofacc.accid;
         if recno=0 then
         delete_record;
         go_block('chartofacc');
         previous_record;
         else
         message ('system found matching record then no delete master record');
         message ('system found matching record then no delete master record');
         end if;
    end if;
    end;
    please gide me which event i use
    thanking you
    aamir

    Hello,
    The ON-DELETE triger fires only after a COMMIT statment and only for those records that have been deleted in the block.
    Francois

  • Verizon, where are my additional languages for swype?

    Verizon, where are my additional languages for swype?
    Why I'm limited to only English and Spanish?!
    How to add more languages to my phone?

    Thanks for the information crb79. After review of the skype application, I was able to locate two applications. We offer a Skype mobile and a Skype Mobile for VErizon. If you downloaded the Skype mobile for Verizon, you may be limited to only two languages. Skype mobile offers all languages. I recommend checking your application and if you have the skype version that only offers two languages, you can remove it and download the Skype Mobile version. I will list directions below.
    You can also research information via the internet for Skype Translate Tool/software. While we do not support this tool and always recommend contacting Skype first, you can review further information via the internet. 
    To remove an application:
    From the home screen, select the applications tab (located at the bottom of the display).
    Select Settings.
    Select Applications.
    Select Manage applications.
    From the All tab, select an application.
    Select Uninstall.
    Select OK.
    Select OK.
    To install applications from the Android Market:
    From the home screen, touch the applications tab (located at the bottom of the display).
    Touch Market.
    If presented, review the Android Market Terms of Service then touch Accept to continue.
    Touch Apps.
    Touch a category (e.g. All applications, Comics, Communication, etc.).
    To sort the list, touch one of the following:
    Top paid
    Top free
    Just in
    Touch an application / widgetsuch as:
    Widgets
    CNN News
    Delivers up-to-the-minute news and information on the latest top stories, weather, and entertainment.
    Weather Bug
    Delivers live local weather conditions.
    Fox News
    Delivers the latest and breaking news.
    Applications
    Visual Voice Mail
    Allows subscribers to view caller and voice mail information and listen to voice mail messages in any order.
    If there is a charge for the application, touch Buy.
    If the application is free, touch Install.
    Touch OK.
    Review the alerts for access. If they are not acceptable touch Cancel.
    If applicable, ensure the desired card is selected then touch Buy now.
    If a payment method has not been established, enter the credit card information then touch Save

  • Urggggent...where to put xmlparserv2.jar

    hi guys i want to use DOM and i dont know where to put this file so when i import it JDev recognize it;

    Go to your project's settings dialog and look under the libraries item. You'll be able to define a new library there (which uses your jar file) that your project can use.

  • Where can i fing .jars for these? Help me

    Hi all!
    I need to convert XmlToPdf using java program.
    I need to add some jars to my project classpath.
    I need .jars for these:
    org.apache.avalon.framework.*;
    org.apache.avalon.framework.logger.*;
    org.apache.fop.apps.*;
    Thanka a lot in advance!

    Hi Ganesh,
    Check out this link to download the jar...
    http://archive.apache.org/dist/xml/fop/binaries/fop-0.20.5-bin.zip
    Regards,
    Uma
    (PS : Reward Helpful answers)

  • Where to put .txt file for easy I/O

    Hi,
    I'm creating a program to run psychological experiments, and I want to make it easy for future researchers to change the lists of stimuli.
    I'm planning on having a set of .txt/.csv files containing the lists, which can be easily modified by anyone. My question is, where do I put them?
    My guess is the easiest solution would be to put them in the same folder as the .jar file, but not to actually include them in the .jar file, as this would make it difficult to edit. So how would I refer to the path name of the list in my program? And, when testing the program as it's being written, should I put the files in the /dist folder that NetBeans created?
    Second question: I want to find and load any and all txt files that may be in the folder (assuming this is where they will go). I won't know ahead of time how many lists there will be. What's the easiest way to do this?
    Thanks!

    Alright, two questions:
    1) To find the files, can I just use some modified form of
    String[] filenames;
              File f = new File(".");
              filenames = f.list();I assume that there's some way of doing the same thing one level up on the directory tree, and then selecting only those files that end in .csv? Is it preferable to use the method that was mentioned above?
    2) I'm still a little confused as to where the files should go. Here in NetBeans, when I use the command above it gives me everything in the very bottom folder, including /dist, /src and everything else in that folder, even though the .jar file itself is located in /dist.
    Is NetBeans not actually running the program from the .jar file?
    When I distribute the code, should I assume that the "File f = new File(".");" will give me everything in the folder where the .jar is sitting?
    [Edit: I've solved #2 myself -- sorry about that. The answer seems to be "yes" and "yes": when testing, I should put my .csv files in the bottom folder, when distributing, I should put them in the folder with the .jar file. I can't do it ahead of time, as NetBeans recreates the /dist folder each time the project is re-built.]
    Thanks!

  • Where does the jar for a custom tag libary need to go?

    I am having trouble getting a custom tag library's classes found. These are located
    in a jar file called blazix.jar.
    I have the following GetName.jsp:
    <%@ taglib prefix="blx" uri="/blx.tld" %>
    <jsp:directive.page import="com.company.project.ejb.UserData"/>
    <jsp:useBean id="user" class="UserData" scope="session"/>
    <HTML>
         <BODY>
              <blx:getProperty name="user" property="*">
              <FORM METHOD=POST ACTION="SaveName.jsp">
                   What's your name? <INPUT TYPE=TEXT NAME=username SIZE=20><BR>
                   What's your e-mail address? <INPUT TYPE=TEXT NAME=email SIZE=20><BR>
                   What's your age? <INPUT TYPE=TEXT NAME=age SIZE=4>
                   <P><INPUT TYPE=SUBMIT>
              </FORM>
              </blx:getProperty>
         </BODY>
    </HTML>
    When I run this, I get the following:
    Parsing of JSP File '/GetName.jsp' failed:
    /GetName.jsp(1): Error in using tag library uri='/blx.tld' prefix='blx': cannot
    find tag class: 'desisoft.jsp.tagext.SetProp'
    probably occurred due to an error in /GetName.jsp line 1:
    <%@ taglib prefix="blx" uri="/blx.tld" %>
    The jar does contain the needed class (desisoft.jsp.tagext.SetProp), but how can
    I tell WebLogic where to find it?
    In other words, what directory does the blazix.jar need to go under? I tried
    adding it to my classpath but that did not help.
    Thanks!

    I got it. Just needed to add my own lib directory under WEB-INF and copy the jar
    to it.
    Question though, why wouldn't this get generated for me? Would think it would
    be a common thing to need.
    "Darrin" <[email protected]> wrote:
    >
    BTW,
    I placed the blx.tld file under the WEB-INF directory. It seems to find
    it OK
    there at least.
    "Darrin" <[email protected]> wrote:
    I am having trouble getting a custom tag library's classes found. These
    are located
    in a jar file called blazix.jar.
    I have the following GetName.jsp:
    <%@ taglib prefix="blx" uri="/blx.tld" %>
    <jsp:directive.page import="com.company.project.ejb.UserData"/>
    <jsp:useBean id="user" class="UserData" scope="session"/>
    <HTML>
         <BODY>
              <blx:getProperty name="user" property="*">
              <FORM METHOD=POST ACTION="SaveName.jsp">
                   What's your name? <INPUT TYPE=TEXT NAME=username SIZE=20><BR>
                   What's your e-mail address? <INPUT TYPE=TEXT NAME=email SIZE=20><BR>
                   What's your age? <INPUT TYPE=TEXT NAME=age SIZE=4>
                   <P><INPUT TYPE=SUBMIT>
              </FORM>
              </blx:getProperty>
         </BODY>
    </HTML>
    When I run this, I get the following:
    Parsing of JSP File '/GetName.jsp' failed:
    /GetName.jsp(1): Error in using tag library uri='/blx.tld' prefix='blx':
    cannot
    find tag class: 'desisoft.jsp.tagext.SetProp'
    probably occurred due to an error in /GetName.jsp line 1:
    <%@ taglib prefix="blx" uri="/blx.tld" %>
    The jar does contain the needed class (desisoft.jsp.tagext.SetProp),
    but how can
    I tell WebLogic where to find it?
    In other words, what directory does the blazix.jar need to go under?
    I tried
    adding it to my classpath but that did not help.
    Thanks!

  • Where to put utility jar (used by EJB's and war)

    Hello all,
    In many cases when you create a web application including EJB's and a WAR file packaged together in an EAR file, you need some utility classes that are used in the EJB's as wel as in the servlets in the WAR. The utility classes might for example be value object classes that servlets use to exchange data with te EJB's.
    My question is: What is the best place to put the utility class files?
    There is a new article on JDC: http://developer.java.sun.com/developer/technicalArticles/J2EE/build/ that gives some tips. For example, it proposes to put the utility JAR in the EAR file and then add a "Class-Path:" entry to the MANIFEST.MF of the EJB's that use the utility classes.
    However, this approach does not work on BEA Weblogic 6.0. Weblogic's classloader just seems to ignore the "Class-Path:" in the EJB JAR's manifest.
    Any thoughts?
    regards
    Jesper

    The "CLASS-PATH" mechanism in that article is a new
    requirement in J2EE 1.3 (final draft 4). Therefore
    right now Weblogic does not support it yet. Now you
    need to put those utility classes in both the WAR (in
    WEB-INF/lib) and EJB JAR files. If you really want
    only 1 copy of the jar file deployed, you can manually
    add that jar file to weblogic server classpath in the
    start script under config/yourdomain.HI all,
    I have some Utility jar file for EJB and Web Application,
    In the second solution about one copy in weblogic,
    I tried it in the WLS60 it's ok
    But it didn't work in WLS61
    Anyone could give me any good suggestion?
    Moen

  • How to put additional charges for Service in Different Accounts

    Dear SAP Colleagues,
    I am trying to make a PO for Air Tickets i.e. Purchase of Air Ticket.
    I need to put Base Price, Airport Tax and Airport Passage as conditions in ticket and when I do MIRO it needs to be put into separate accounts when accounting document is generated.
    I thought of using Material with Mat Type DIEN or Service (Item Cat = D)
    1. I configured the pricing procedure and assigned condition types for Airport Tax as well as Airport Passages (Fixed Amounts in both the cases).
    2. Attached Acc Keys for Airport Tax (ZAT) and Airline Passage (ZAP) to the Condition Types.
    3. Defined the corresponding accounts for ZAT and ZAP in OBYC.
    However for DIEN as well as Service Items, it asks for mandatory Account Assignment Category (so I am using K)
    However once I assign the Account Assignment Category as K, system ignores setting in the Pricing Procedure --> Acc Key --> OBYC --> G/L Account setting and it puts Credit to Customer and Debit to External Services account (A/C that is assigned in the Account Assignment tab in PO)
    1. My query is which Material can be used?
    2. If Service Master is used, what are the additional settings.
    3. How should I change the config so that it considers settings in Pricing Procedure --> Acc Key --> OBYC.
    Thanks and Regards,
    SAP ROI

    Hello pebble,
    I want to begin with apologizing for my delayed response to your post, Best Buy greatly appreciates the fact that you’ve been a loyal customer. I’m discouraged to hear that your recent experience has left you frustrated and not wanting to consider us as your future destination for your next purchase.
    I know from firsthand how important it is to protect your technology, when I learned about the technology that screen protectors have, I knew it was worth the investment. Installing them hasn’t always been easy for me, and for that it’s nice to know that Geek Squad can do it for me while the phone is being activated. Mbrguy and kst8no1 have explained it’s an optional fee if you require the service, I know that I have other family members who feel confident in installing the screen protector themselves. In the future, I would highly recommend discussing your circumstances with your local Best Buy representatives though. They can provide the best information and options for your situation.
    While we may not be able to undo your recent experience, rest assured that the appropriate teams will be notified of your concern. Best Buy relies on customer feedback to improve our stores, our website, and our product and service offerings, so your input is greatly appreciated!
    Thank you for taking the time to share your experience with us.
    Karina|Social Media Specialist | Best Buy® Corporate
     Private Message

  • Where to put temp probe for system temp?

    I just unpacked a thermaltake 80mm smart case fan. It came with a thermal probe(thermocouple) for temp control of the fan. If I wanted to control the fan with the system temp what would be a good place on the board to stick the probe or should I let it "hang" in mid air in the case to get this temp. Where is the sensor that SpeedFan uses to get the system temp. If that is inaccessible what is a good location?

    Where do you place your system fan? You can put at the MOSFET area near to the CPU socket. That's one of the hottest place. Otherwise, just stab it behind your display card, that's also one of the hot spot.

  • Where to put RXTXcomm.jar so NetBeans can find it?

    I am trying to write a program for the RPi in Java, that will read and write a serial port.  I have downloaded RXTXcomm.jar and the appropriate so file.  So far I have benn unable to find the right place to put the RXTXcomm.jar file so that NetBeans can find it.  I have tried Java_ME_platform_SDK_8.0/lib/ext and jre1.8.0_20\lib\ext.  I have also gone into the project properties and specifically told it to look in the  Java_ME_platform_SDK_8.0/lib/ext director but NetBeans still does not find the classes.  I have also imported the gnu.io.* package in my program but NetBeans doesn't find the package.  Any help would be greatly appreciated.

    Hi!
    To read/write serial port you don't' need any side libraries. Simply use either Device IO API or MEEP GCF.
    /Sergey

  • Where is the additional information for a file located.

    This picture display the GetInfo on a file on my computer.
    http://www.digimixstudios.net/FileInformation.png
    It saves where I got it in "More Info" and what program will start to "Open with".
    My question, where is this information being stored?
    I'll just be thumbing thru the API documentation to look for this, but if someone can tell me the specific API, that would just cut down my search time.

    I'm familiar with Logic's tempo in the the event window and on the global tracks. My question is: how do I find the tempo information within an imported midi file? Logic is not recognizing the information, so I want to find it and set the tempos myself - if possible. (It must be possible.)
    If you import a MIDIfile, or drag it to the arrange, you are importing the sequence data into your current project. In other words, regardless of the tempo in the midifile, you are importing into Logic at Logic's current tempo, ignoring the tempo stuff in the midifile.
    if you want to retain the tempo in the MIDIfile, you must "Load" the midifile, not import it. This creates a new project with all the tempo information contained in the midifile.
    Logic has behaved this way the same since the early days.
    In Logic 7 the event window's width could stretch. Since then only the length stretches. There are always notes from the author that are cut off now.
    I don't like the current event list window either...

  • 520: Where to put my docs for use by Office? By ...

    I am new to the Lumia 520.  I want to use it in offline mode, that is, without the internet or phone usage.  So - no Skydrive.
    I want to view and edit MS Office documents, such as Word and Excel files, that I have created on my desktop PC.  I can transfer these .DOC and .XLS files over the USB cable to the 520, using Windows Explorer.
    --> But when I try to put them in "Meda / Documents" on the phone I get the message that "the test.doc file type is not supported on this device...".  The same for .DOC, .XLS, .XLSX, .DOCX, .TXT.
    They will go into the "Data" folder but of course then Office can't find them.
    Note that I am able to put .JPG files into "Pictures", and .MP3 files into "Music".  But nothing into "Documents".
    Any help will be appreciated.
    Solved!
    Go to Solution.

    Are these documents generated by Microsoft Office 2010 or later?
    Have a look at PDF Reader: http://www.windowsphone.com/en-gb/store/app/pdf-reader/8f6154d6-1b70-431a-a579-b6a43477e837
    Happy to have helped forum in a small way with a Support Ratio = 37.0

  • Where to put the code for dynamically change  dataprovider

    I have a table bound to dataprovider1 by default ( by the SJC ). In the same page, I also have a dataprovider2 which is for the same fields of the same table of dataprovider1. The only different is to put some criteria on one field ( like F_D1 = '5' ) so that one provider will show all rows, the other just some rows.
    The code to change the dataprovider is as follows :
    tableRowGroupWorksheet.setValueBinding("sourceData", getApplication().createValueBinding("#{WorksheetPage.dataprovider2}") );
    If I put this code into some button_action() and then I click that button, then the page displays the corresponding data just fine.
    But if I put this code in either preprocess or prerender, then things seems messed up : the number of pages is for data of dataprovider1, but when I click button Next of the table then it shows the number of pages of dataprovider2. ( I also try to put it in init but this does not help either ).
    I need this code to be run when this page is selected but right now it requires me to click on a button :(
    The reason I need it runs automatically is because of the logic generated from the previous page.
    Thanks for your advive,
    Vu

    After re-reading the life-cycles of JSF and the injected phases of SJC, I think I know why it does not work when the page is first called. In this case, AplyRequestValue phase is skipped therefore preprocess is never called. Also in this case, the component tree, with binding, validators, ... is only built in the Render Response phase and this phase is right after PreRender is called therefore the binding code I put in prerender is overwritten by Render Response.
    When using a button action, the component tree is already built and not rebuit under Render Response, therefore that code is not overwritten. Also in this case, preprocess is called so putting that code under either preprocess or prerender will work.
    Please correct me.
    Thanks,
    Vu

  • Where to put init code for static variables? (for UIImages)

    I know that static variables are sorta a global, is that how UIImage is usually stored? What is the convention to declare UIImage variables that exists throughout the lifetime of the app? Where is a good place to init it if I choose to use static variables?

    OK, in that case do something like this:
    MyClass.m
    #import "MyClass.h"
    static UIImage *classImage;
    @implementation MyClass {
    + (void)initialize {
    classImage = <whatever to load image>;
    Code like the above makes the 'classImage' variable work like a typical class variable. It is available to all instances of MyClass but is not visible to other classes. Like a 'private static' class variable in Java. Nothing goes in the header for this variable.
    The 'initialize' method is called once the first time anything ever references MyClass. Kind of like a static initializer in Java. Notice the use of '+' instead of '-' for the method. The '+' makes it a class method instead of an instance method.
    Does that help?
    Message was edited by: RickMaddy

Maybe you are looking for