Change colours of BSP standalone application

Hi all,
I want to run e-recruiting (bsp or webdynpro) as standalone application and need to change the colours of the GUI elements. The header picture should also be changed.
Where can I do the changes? Do I do it in the portal theme editor even if I don't use portal to display the web application??
Thanks in advance
Karsten

Hi Karsten,
you do not need portal to create or change themes and to use it for your application.
There is a good documentation which explains it:
https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/ccb6bcf4-0401-0010-e3bc-ec0ef03e13d1
Regards,
Frank

Similar Messages

  • Changing Colours in E-Recruitment Applications

    Hi All,
    I have been asked to change colours in E-Recruitment screens.
    We are using ABAP Webdynpro for E Rec application.
    Kindly guide me how to achieve this.
    Thanks,
    Sridar.

    You can use it by using eclipse theme editor... or netweaver developer studio.
    However theme editor is simple to use..
    there is a standard program using whihc u can download a sap standard theme... you can copy and modify the theme in theme editor.
    and using the smae program u can upload it in the themes folder..
    Once your custom theme is created, you can call it using the parameters in or default it directly in the dynpro application.
    Regards,
    Rao

  • Blocks in standalone applications which can be double clicked for changing parameters

    Can we have blocks in standalone applications which can be double clicked for changing parameters.
    something like an options/configure button which opens another window and helps us to change tha parameters  of that particular
    block.

    Well, you will need to program your application that way. Maybe I am not understanding this correctly but what parameters do you want to change in your standalone application?
    Adnan Zafar
    Certified LabVIEW Architect
    Coleman Technologies

  • Standalone application can't get JDBC data source from Weblogic 10.3

    We have the following configuration :
    A Weblogic server 10.3 (default installation).
    The server contains a JMS queue (jndi name: "DMQ") and JDBC data sources (jndi names: Oracle thin XA - "dataSource", MS SQL - "dataSource1")
    We have built wlfullclient5.jar for Java 1.5 ([http://edocs.bea.com/wls/docs103/client/jarbuilder.html#wp1078122]) (according to the docs)
    And now we use a test standalone application with the wlfullclient5.jar :
    public static void main (String[] args) throws NamingException {
    bq. Hashtable<String, String> env = new Hashtable<String, String>(); \\     env.put(Context.+INITIAL_CONTEXT_FACTORY+, "weblogic.jndi.WLInitialContextFactory"); \\     env.put(Context.+PROVIDER_URL+, "http://serv1:7001"); \\     env.put(Context.+SECURITY_CREDENTIALS+, "weblogic"); \\     env.put(Context.+SECURITY_PRINCIPAL+, "weblogic"); \\     InitialContext ic = new InitialContext(env); \\ \\ System.+out+.println("Get DMQ"); \\     ic.lookup("DMQ"); \\ System.+out+.println("Get dataSource"); \\     ic.lookup("dataSource");
    bq. System.+out+.println("Get dataSource1"); \\     ic.lookup("dataSource1"); \\ System.+out+.println("Done"); \\
    Here is the output when connected to WLS 10.3:
    bq. Get DMQ \\ Get dataSource \\ Exception in thread "Main Thread" java.lang.AssertionError: Failed to generate class for weblogic.jdbc.common.internal.RmiDataSource_1030_WLStub \\ at weblogic.rmi.internal.StubGenerator.generateStub(_StubGenerator.java:790_) \\ at weblogic.rmi.internal.StubGenerator.generateStub(_StubGenerator.java:779_) \\ at weblogic.rmi.extensions.StubFactory.getStub(_StubFactory.java:74_) \\ at weblogic.rmi.internal.StubInfo.resolveObject(_StubInfo.java:213_) \\ at weblogic.rmi.internal.StubInfo.readResolve(_StubInfo.java:207_) \\ at sun.reflect.NativeMethodAccessorImpl.invoke0(_Native Method_) \\ at sun.reflect.NativeMethodAccessorImpl.invoke(_NativeMethodAccessorImpl.java:39_) \\ at sun.reflect.DelegatingMethodAccessorImpl.invoke(_DelegatingMethodAccessorImpl.java:25_) \\ at java.lang.reflect.Method.invoke(_Method.java:585_) \\ at java.io.ObjectStreamClass.invokeReadResolve(_ObjectStreamClass.java:1033_) \\ at java.io.ObjectInputStream.readOrdinaryObject(_ObjectInputStream.java:1728_) \\ at java.io.ObjectInputStream.readObject0(_ObjectInputStream.java:1305_) \\ at java.io.ObjectInputStream.readObject(_ObjectInputStream.java:348_) \\ at weblogic.utils.io.ChunkedObjectInputStream.readObject(_ChunkedObjectInputStream.java:197_) \\ at weblogic.rjvm.MsgAbbrevInputStream.readObject(_MsgAbbrevInputStream.java:564_) \\ at weblogic.utils.io.ChunkedObjectInputStream.readObject(_ChunkedObjectInputStream.java:193_) \\ at weblogic.rmi.internal.ObjectIO.readObject(_ObjectIO.java:62_) \\ at weblogic.rjvm.ResponseImpl.unmarshalReturn(_ResponseImpl.java:240_) \\ at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(_ClusterableRemoteRef.java:348_) \\ at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(_ClusterableRemoteRef.java:259_) \\ at weblogic.jndi.internal.ServerNamingNode_1030_WLStub.lookup(Unknown Source) \\ at weblogic.jndi.internal.WLContextImpl.lookup(_WLContextImpl.java:392_) \\ at weblogic.jndi.internal.WLContextImpl.lookup(_WLContextImpl.java:380_) \\ at javax.naming.InitialContext.lookup(_InitialContext.java:351_) \\ at test.main(_test.java:23_) \\ Caused by: java.lang.reflect.InvocationTargetException \\ at sun.reflect.NativeConstructorAccessorImpl.newInstance0(_Native Method_) \\ at sun.reflect.NativeConstructorAccessorImpl.newInstance(_NativeConstructorAccessorImpl.java:39_) \\ at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(_DelegatingConstructorAccessorImpl.java:27_) \\ at java.lang.reflect.Constructor.newInstance(_Constructor.java:494_) \\ at weblogic.rmi.internal.StubGenerator.generateStub(_StubGenerator.java:788_) \\ at weblogic.rmi.internal.StubGenerator.generateStub(_StubGenerator.java:779_) \\ at weblogic.rmi.extensions.StubFactory.getStub(_StubFactory.java:74_) \\ at weblogic.rmi.internal.StubInfo.resolveObject(_StubInfo.java:213_) \\ at weblogic.rmi.internal.StubInfo.readResolve(_StubInfo.java:207_) \\ at sun.reflect.NativeMethodAccessorImpl.invoke0(_Native Method_) \\ at sun.reflect.NativeMethodAccessorImpl.invoke(_NativeMethodAccessorImpl.java:39_) \\ at sun.reflect.DelegatingMethodAccessorImpl.invoke(_DelegatingMethodAccessorImpl.java:25_) \\ at java.lang.reflect.Method.invoke(_Method.java:585_) \\ at java.io.ObjectStreamClass.invokeReadResolve(_ObjectStreamClass.java:1033_) \\ at java.io.ObjectInputStream.readOrdinaryObject(_ObjectInputStream.java:1728_) \\ at java.io.ObjectInputStream.readObject0(_ObjectInputStream.java:1305_) \\ at java.io.ObjectInputStream.readObject(_ObjectInputStream.java:348_) \\ at weblogic.utils.io.ChunkedObjectInputStream.readObject(_ChunkedObjectInputStream.java:197_) \\ at weblogic.rjvm.MsgAbbrevInputStream.readObject(_MsgAbbrevInputStream.java:564_) \\ at weblogic.utils.io.ChunkedObjectInputStream.readObject(_ChunkedObjectInputStream.java:193_) \\ at weblogic.rmi.internal.ObjectIO.readObject(_ObjectIO.java:62_) \\ at weblogic.rjvm.ResponseImpl.unmarshalReturn(_ResponseImpl.java:240_) \\ at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(_ClusterableRemoteRef.java:348_) \\ at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(_ClusterableRemoteRef.java:259_) \\ at weblogic.jndi.internal.ServerNamingNode_1030_WLStub.lookup(Unknown Source) \\ at weblogic.jndi.internal.WLContextImpl.lookup(_WLContextImpl.java:392_) \\ at weblogic.jndi.internal.WLContextImpl.lookup(_WLContextImpl.java:381_) \\ at javax.naming.InitialContext.lookup(_InitialContext.java:351_) \\ at test.main(_test.java:26_) \\ Caused by: java.lang.ArrayIndexOutOfBoundsException: 6 \\ at weblogic.jdbc.common.internal.RmiDataSource_1030_WLStub.ensureInitialized(Unknown Source) \\ at weblogic.jdbc.common.internal.RmiDataSource_1030_WLStub.<init>(Unknown Source) \\ at sun.reflect.NativeConstructorAccessorImpl.newInstance0(_Native Method_) \\ at sun.reflect.NativeConstructorAccessorImpl.newInstance(_NativeConstructorAccessorImpl.java:39_) \\ at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(_DelegatingConstructorAccessorImpl.java:27_) \\ at java.lang.reflect.Constructor.newInstance(_Constructor.java:494_) \\ at weblogic.rmi.internal.StubGenerator.generateStub(_StubGenerator.java:788_) \\ at weblogic.rmi.internal.StubGenerator.generateStub(_StubGenerator.java:779_) \\ at weblogic.rmi.extensions.StubFactory.getStub(_StubFactory.java:74_) \\ at weblogic.rmi.internal.StubInfo.resolveObject(_StubInfo.java:213_) \\ at weblogic.rmi.internal.StubInfo.readResolve(_StubInfo.java:207_) \\ at sun.reflect.NativeMethodAccessorImpl.invoke0(_Native Method_) \\ at sun.reflect.NativeMethodAccessorImpl.invoke(_NativeMethodAccessorImpl.java:39_) \\ at sun.reflect.DelegatingMethodAccessorImpl.invoke(_DelegatingMethodAccessorImpl.java:25_) \\ at java.lang.reflect.Method.invoke(_Method.java:585_) \\ at java.io.ObjectStreamClass.invokeReadResolve(_ObjectStreamClass.java:1033_) \\ at java.io.ObjectInputStream.readOrdinaryObject(_ObjectInputStream.java:1728_) \\ at java.io.ObjectInputStream.readObject0(_ObjectInputStream.java:1305_) \\ at java.io.ObjectInputStream.readObject(_ObjectInputStream.java:348_) \\ at weblogic.utils.io.ChunkedObjectInputStream.readObject(_ChunkedObjectInputStream.java:197_) \\ at weblogic.rjvm.MsgAbbrevInputStream.readObject(_MsgAbbrevInputStream.java:564_) \\ at weblogic.utils.io.ChunkedObjectInputStream.readObject(_ChunkedObjectInputStream.java:193_) \\ at weblogic.rmi.internal.ObjectIO.readObject(_ObjectIO.java:62_) \\ at weblogic.rjvm.ResponseImpl.unmarshalReturn(_ResponseImpl.java:240_) \\ at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(_ClusterableRemoteRef.java:348_) \\ at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(_ClusterableRemoteRef.java:259_) \\ at weblogic.jndi.internal.ServerNamingNode_1030_WLStub.lookup(Unknown Source) \\ at weblogic.jndi.internal.WLContextImpl.lookup(_WLContextImpl.java:392_) \\ at weblogic.jndi.internal.WLContextImpl.lookup(_WLContextImpl.java:380_) \\ at javax.naming.InitialContext.lookup(_InitialContext.java:351_) \\ at test.main(_test.java:23_)
    But at the same time the output when connected to WLS 10.0 is :
    Get DMQ \\Get dataSource \\Get dataSource1 \\Done
    (so that the test passed)
    Could you give me a piece of advice ?
    Thanks,
    Sergey

    I hit the same problem as yours. This issue is caused by JDK version. The JDK used by Weblogic 10.3 is java 6, while your client program's jdk version is java5. So change the both of them to java 6. This issue will be fixed.
    Don't forget to rebuild the wlfullclient.jar which also should be java 6.
    Good luck!

  • Exported PDF changes colour depending on software its viewed on

    Hi
    I've searched on the forums but can't find a solution to my problem. I export my design to PDF in indesign CS6 and looks fine on my Windows 8.1 laptop, but when the printer company open it up in their software it changes colour. I can replicate it viewing on my iphone for some reason.
    Please see the below pictures to see what I mean:
    Correct colours:
    Dropbox - Correct Colour.png
    Incorrect colours:
    Dropbox - Incorrect colour.png
    PDF export settings:
    Dropbox - PDF Settings.png
    Please let me know if you need anymore details.
    Thanks
    Stephen

    @Stephen – you told us where you see the incorrect colors. But you did not tell us where the printing company sees the incorrect color. What is there application? An iPhone has no color management. It is no color proofing device. Not at all!
    As Willi already pointed out: Acrobat Pro will qualify, Adobe Reader will qualify.
    "Correct color" is a wide field… ;-)
    And on not-callibrated monitors or devices the numbers of individual colors count (always coupled with their output intent, of course).
    Uwe

  • Strange current VI`s path returned in standalone application

    I know that there is a difference in the path returned when using the "Current VIs path" in the development environment and in a standalone application, but this is not what I had expected: This is the path returned from the Current VIs path in the standalone application:
    C:\LabView-programmer\RADHAZ-programmer\RADHAZ\builds\rad.exe\RADHAZ-programmer\RADHAZ\rad.vi. Why is this the correct path to the VI?
    If I strip this path once, and build a new path with the name of my dynamically called VI  I get: C:\LabView-programmer\RADHAZ-programmer\RADHAZ\builds\rad.exe\RADHAZ-programmer\RADHAZ\instr.vi. It starts from this path, but It won`t load some text-files located at C:\LabView-programmer\RADHAZ-programmer\RADHAZ\builds\kal-data without making changes to the instr.vi.
    I tried to used the App.Dir property to find the correct top level directory, and it returns C:\LabView-programmer\RADHAZ-programmer\RADHAZ\builds as expected. But this is not the path that the dynamically called VI need.
    Any suggestions is appreciated..
    I searched for a detailed tutorial for setting up the build specification, but didn`t find any that helped much.
    Gunnar
    Solved!
    Go to Solution.

    HI Gunnar,
    have you tried the last point of the Advanced AppBuild settings as described in the help?
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • How do I change colour negative to positive?

    How do I change colour negative to positive?

    Using the application Final Cut Express?
    Are you speaking of a film negative for a photograph?
    You can edit the image to the timeline, then go Effects Tab > Video Filters > Channel > Invert and apply the Invert effect to the clip on the timeline.
    Note that film negatives do not render color correctly when inverted. When they were printed, color correction "packs" were applied that were emulsion specific to balance the latent color skew present in the negative image.
    So you will also need to then add the effect Video Filters > Color Correction > Color Corrector and make further adjustments.
    MtD

  • Standalone application questions

    Hi,
    Question 1:
    I have a data acquisition application using Labview. Four analog channels are recorded on HDD and displayed on waveform chart continuously.
    Development application runs fine but standalone application on DELL laptop has problems: waveform does not show proper Grids; sometimes vertical and horizontal grid lines are broken. There is no problem recording data but only problem is displaying waveform.
    The same standalone application used to run without any problem but after some minor modification, it behaves strange.
    Any suggestions to fix the waveform display problems will be greatly appreciated.
    Question 2:
    �VI Property > Customize Windows Appearance > Show abort button� unchecked will disappear ABORT
    button from VI. .After standalone application compilation and installation, the ABORT button was visible. How hide the ABORT button on the standalone application.
    Question 3:
    Can I replace Labview default RUN button with custom button, I want to hide Labview default RUN button and want to make a separate RUN button. Can I access property node or local variable of that RUN button?
    Thanks in advance,
    Kishor

    About question 1.
    I had some strange behaviour with charts and transparent backgrounds.
    Perhaps it's something like this...
    About question 2.
    Perhaps you have made a build script that has the properties set. After
    changing the VI, loading the build script might overwrite the VI settings.
    About question 3.
    You should modify the VI to wait for a button to be pressed (a while, 10 MS
    wait, and a button). Let the VI start automatically (run when opened). This
    has the same effect.
    Regards,
    Wiebe.
    "Jeremy Braden" wrote in message
    news:[email protected]..
    > 1. The VI may have been corrupted after your minor changes. Do you
    > have an old copy of the good code. You can also copy the block
    > diagram of th
    e bad VI to a new VI and build an executable from the new
    > VI. Also do you see the same behavior with the classic waveform
    > chart? What happens if you build a new LV executable with dummy
    > information going to the chart?
    > 2. The tests I ran showed that you can make the abort button
    > invisible with the steps you mentioned. Do you think that you may
    > have not saved your changes?
    > 3. You cannot replace the run arrow. Atleast not from a nice
    > integrated published solution sort of way. There are no properties
    > for the run arrow.

  • Modify logon page for Standalone Application

    Hi,
    I need to modify logon page for a standalone web dynpro application ( not in enterprise Portal).
    I only find documentations for change it in EP, but nothing about standalone application.
    Some ideas?
    Thanks
    Andrea

    Hi Andrea,
             you can modify the design of the WD appln using the properties that is listed for each UI elements.
             You can also change the layout of the root container Element properties to Matrix layout to satisfy ur kind of design.
            For displaying different lanuages in a dropdown box.
    1) select DropdownbyKey UI Element.
    2) set this to context attribute.
    3) Go to Dictionary -- Local dictionary -- simple type --create new simple type.
    4) In the datatype select the Enumeration tab and give the different text and values.(In ur case give ur different type of languages.)
    5) Go to WD appln. select the attribute that u hav created and change its type to the corresponding simple type.
    6) select dictionary simple type>Local dictionary>package that u hav declared-->inside that select ur simple type and execute it.
    Hope this one satisfies ur query.
    Regards,
    Nagarajan.

  • New windows on clicking items in standalone applications

    Can standalone applications have new windows as menu's opened by clicking on the blocks , which have a lot of data parameters to be changed.
    In case I do not want to keep those data parameters on the front panel of a standalone application .
    windows which open like in express VI's .
    please suggest.

    Hi connoisseur,
    use a subVI with settings "open when called" and "close afterwards"...
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • Front Row 2 - Why a standalone application?

    Perhaps this thread can consolidate some of the various other complaints against Front Row 2 that seem to stem from the same issue that I, at least, perceive as being a big part of the problem: that FR2 is a standalone application in Leopard rather than a front-end interface for media-handling applications in the background, as it was in Tiger.
    So I'm just curious and would like to hear from those who may be more "in the know" why Apple made this move? Why is Front Row "better" as a standalone application? When in Front Row in Tiger, if you watched a movie, QuickTime would be handling it in the background. If you listened to music, it was iTunes that was handling it. If you watched a slideshow, iPhoto was responsible. If you were watching a DVD, DVD Player was doing the work. In Leopard, however, Front Row handles all these media files/types by itself, and I've only seen that as a negative so far.
    For example: in Tiger, a custom slideshow I had created in iPhoto would be displayed exactly as I had specified (including custom timings, photo framing, etc.) when viewing that slideshow in Front Row. In Leopard, not all those settings are carried over and the slideshow doesn't display as I've set it up (although it continues to display perfectly in iPhoto). In Tiger, all my album artwork in iTunes was displayed correctly in Front Row. In Leopard, the artwork of several albums will not display even though the album art is visible in iTunes (and via CoverFlow and QuickLook in Finder). And, of course, there's the issue that many report that music playing in FR2 will stop if FR2 is exited, or even when you just exit the music section of FR2. Why the disconnect? By having Front Row be a standalone application, it just opens the door for issues where the files/media isn't being correctly handed over from its proper application to what we see in Front Row.
    While I do mostly love the new interface of Front Row (although I miss the desktop fading into the background effect upon launch of FR2), I've seen it take a pretty significant performance hit. Some HD movie trailers that played flawlessly in Front Row on Tiger are sluggish and choppy on FR2 on the same hardware. These same trailers play just fine by themselves in QuickTime, however. Tiger's Front Row properly showed previews for all my slideshows and movies almost instantly, while FR2 takes quite awhile to create previews for everything - and isn't able to create previews at all for some files (Apple's own HD movie trailers, for example).
    Since FR2 is trying to handle all the media and filetypes by itself, rather than handing off the tasks to the proper applications in the background that can handle them more efficiently, it seems to become a bloated system hog. After spending about 15 minutes in FR2 going through various media, I noticed it seemed to slow down more and more. I exited to check Activity Monitor, and even though Front Row wasn't even running anymore, it was using almost 1GB of RAM. Evidently, all those previews it has to create (starting over each time you get into FR2, I might add) really start to take a toll over time with heavy use. For someone with a HTPC-Mac who wasn't accustomed to ever having to exit Front Row in Tiger - much less actually restart the machine because of it - it seems like a horrible step backwards.
    So again, I'm hoping someone can offer some insights into why Front Row was changed to a standalone application instead of being further enhanced as a front-end UI for the proper media applications running in the background. I understand why they wanted to change the interface to be AppleTV-like, but I don't understand the loss of features and the backwards step in performance.

    That's a benefit to the PPC users, of course, but I can't imagine that was a major influence on Apple's decision to do it. Would they really remove features and hinder overall performance just to cater to old hardware? That doesn't seem very Apple-like. Nor does it make much sense to handicap Front Row for everyone who does have a capable Intel Mac just so others can run it on old PPC machines (which likely can't get the best performance out of Front Row anyway, given the way it gobbles up system resources by bearing the burden of dealing with so many forms of media/files by itself all at once).
    Maybe the bigger picture - which is harder to see now only a few days after the launch of Leopard - involves better long-term development of Front Row features that will be easier to implement with it being a standalone application rather than a front-end UI. So while it will be great when/if the performance is improved and new features are added, it's little consolation to those who upgraded to Leopard (and I do love most of the rest of 10.5, really) but think we took a major step back with Front Row.
    Front Row isn't a big deal to those who use it infrequently, but for those who were somewhat dependent on it as a vital component of HTPC, these "little" issues add up and are pretty frustrating.

  • Changing Colour and font of individual OAF pages

    Hi,
    Is it possible to change colour and font for individual OAF pages?I am aware of CUSTOM.xss but that changes it for the whole application.I want to make the changes for specific pages.
    Thanks,

    Try using HTML:
    Set the text to:
    area.setText("<html>My <b>Text</b> Here</html>");
    and see if the word Text is in bold. If so, then you can go as far as you want using HTML tags to set bold, color, etc.

  • How to use JDBC Connection Pools in a standalone application?

    Hi, there,
    I have a question about how to use JDBC Connection Pools in an application. I know well about connection pool itself, but I am not quite sure how to keep the pool management object alive all the time to avoid being destroyed by garbage collection.
    for example, at the website: http://www.developer.com/java/other/article.php/626291, there is a simple connection pool implementation. there are three classes:JDBCConnection, the application's gateway to the database; JDBCConnectionImpl, the real class/object to provide connection; and JDBCPool, the management class to manage connection pool composed by JDBCConnectionImpl. JDBCPool is designed by Singleton pattern to make sure only one instance. supposing there is only one client to use connection for many times, I guess it's ok because this client first needs instantiate JDBCPool and JDBCConnectionImpl and then will hold the reference to JDBCPool all the time. but how about many clients want to use this JDBCPool? supposing client1 finishes using JDBCPool and quits, then JDBCPool will be destroyed by garbage collection since there is no reference to it, also all the connections of JDBCConnectionImpl in this pool will be destroyed too. that means the next client needs recreate pool and connections! so my question is that if there is a way to keep pool management instance alive all the time to provide connection to any client at any time. I guess maybe I can set the pool management class as daemon thread to solve this problem, but I am not quite sure. besides, there is some other problems about daemon thread, for example, how to make sure there is only one daemon instance? how to quit it gracefully? because once the whole application quits, the daemon thread also quits by force. in that case, all the connections in the pool won't get chance to close.
    I know there is another solution by JNDI if we develop servlet application. Tomcat provides an easy way to setup JNDI database pooling source that is available to JSP and Servlet. but how about a standalone application? I mean there is no JNDI service provider. it seems a good solution to combine Commons DBCP with JNID or Apache's Naming (http://jakarta.apache.org/commons/dbcp/index.html). but still, I don't know how to keep pool management instance alive all the time. once we create a JNDI enviroment or naming, if it will save in the memory automatically all the time? or we must implement it as a daemon thread?
    any hint will be great apprieciated!
    Sam

    To my knoledge the pool management instance stays alive as long as the pool is alive. What you have to figure out is how to keep a reference to it if you need to later access it.

  • How do I stop text from changing colour when hovering over it?

    Hello, I have downloaded a template for Dream Weaver CS6 (Which is the version i am usig). When you hover over one of the boxes the top text changes colour to black instead of staying white... does any one know how i can make it so the text stays the same colour. I will post a print screen of it.
    Before clicking:
    View image: 1
    When hovering over it:
    http://postimg.org/image/wdsii9mab/
    I will post the code of the index page aswell: <!DOCTYPE html> <html lang="en"> <head> <title>Home</title> <meta ch - Pastebin.com
    Any help is appreciated. Thanks.

    Your unwanted pink hover color comes from style.css line 181 here
    .btn_{
        background: none repeat scroll 0 0 #cf3046;    border: medium none;
        border-radius: 3px;
        box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
        color: #ffffff;
        font-family: "Open Sans",sans-serif;
        font-size: 12px;
        font-weight: bold;
        line-height: 15px;
        margin-top: 20px;
        padding: 7px 13px 8px;
        text-decoration: none;
        text-shadow: none;
        text-transform: uppercase;

  • Is there a way to format multiple images at once? Change colour mode or resolution?

    Is there a way to format multiple images at once? Change colour mode or resolution?

    It's very easy to make an action.
    Go to window > actions
    In the actions panel, simply click the 'create a new action' button, it starts recording as soon as you've created it (when you've given it a name).
    Now you can apply the changes you want to make to the images on the file you have opened.
    After you've done all you need to do. You click the 'stop' button. The action is now ready to use. And you can apply the changes you made on all the other files.
    Then you can continue how gener7 explained.
    I usually include a save and close command, so that the whole batch doesn't end up opened after running the script.
    But if you do that you have to create a new file, and save it to your computer before you start recording the action, otherwise the save command will be replaced by each file. And you'll end up with one edited file in the end. At least for as far as I know!

Maybe you are looking for

  • Note 916654 - LM13: Verification field not cleared after [Enter] key

    Hi Experts, I'm facing the issue as stated in the OSS note 916654 - LM13: Verification field not cleared after [Enter] key. My current system is ECC, that is why the OSS is already applied to the ECC version. But the problem is, i still faced the pro

  • PO quantity comma and point

    Hi                In Po quantity given is 180,000kg. But in print of PO it is showing 180.000 Any settimgs are there so that it should show 180,000. Thank you Shakir

  • How to add leading 0 for material contain alphanumeric

    The requirement: display material with 10 digits.  At first I used,  l_matnr+8(10), but there is a problem if the material less than 8 digits. I tried this function:CONVERSION_EXIT_MATN1_INPUT to add leading 0,but it works for material contain number

  • Hints and tips for creating a wireless network with windows

    G'day All, I am trying to setup up a wireless network so I can share large files between my Macbook Pro and my housemates Windows XP machine. I have no problem actually creating the network on my Macbook Pro and his windows machine can "see" it butI'

  • RMAN concepts

    When we make changes to a table (DML) with NOLOGGING option these changes are still captured in incremental backup even though they are not captured in the redo logs so what is the source to make note of these changes i.e the source for the block cha