Help for weblogic timer

Please help on timer.
Thanks a lot.
Xiao
I got the following error when try to use weblogic timer:
<NT Performance Pack> NATIVE: created IoCompletionPort successfully.
IoPort=0x00
00024c
Tue Aug 08 12:24:55 PDT 2000:<I> <WebLogicServer> WebLogic Server
started
Tue Aug 08 12:25:09 PDT 2000:<I> <ListenThread> Adding address:
localhost/127.0.
0.1 to licensed client list
Tue Aug 08 12:25:09 PDT 2000:<I> <NT Performance Pack> Allocating: '2'
NT reader
threads
Tue Aug 08 12:25:14 PDT 2000:<I> <CliCon-#|myserver|0.965762672267>
Connection t
o client for ClientContext - id: '#|myserver|0.965762672267', bound:
'true', dea
d: 'false' has been unexpectedly lost because
weblogic.rjvm.PeerGoneException:
- with nested exception:
[java.net.SocketException: Connection reset by peer].
Initiating hard disconnect.
Tue Aug 08 12:25:14 PDT 2000:<I> <CliCon-#|myserver|0.965762672267>
Removing Cli
entContext - id: '#|myserver|0.965762672267', bound: 'false', dead:
'false' beca
use of hard disconnect timeout
the code for the timer
* CONFIDENTIAL, Copyright (C) 2000
* This file is copyrighted by Uhere and should not be reproduced
* in any form and/or distributed without prior consent of Uhere.
package com.uhere.ubs.service;
* Timer for auction
* @author Xiao Zhou
* @version 1.0
* @since 1.0
import weblogic.time.common.*;
import weblogic.common.*;
import weblogic.jndi.*;
import javax.naming.*;
import java.util.*;
import com.uhere.ubs.utility.*;
public class AuctionTimer implements ScheduleDef, TriggerDef {
private T3ServicesDef services;
private final int AUCTION_SETUPED = 0;
private final int AUCTION_STARTED = 1;
private final int AUCTION_CLOSING = 2;
private long startTime = 0, endTime = 0, timeIncrement = 0;
private int auctionItemId = 0, status = 0;
public void setServices(T3ServicesDef services) {
this.services = services;
* ScheduleDef Interface
* @param ParamSet
* @exception ParamSetException
* @since 1.0
public void scheduleInit(ParamSet ps) throws ParamSetException {
startTime = ps.getParam("startTime").asLong();
endTime = ps.getParam("endTime").asLong();
timeIncrement = ps.getParam("timeIncrement").asLong();
auctionItemId = ps.getParam("auctionItemId").asInt();
* TriggerDef interface
* @param ParamSet
* @exception ParamSetException
* @since 1.0
public void triggerInit(ParamSet ps) throws ParamSetException {
* This method is only called internally by Weblogic schedule when
the action will be called next time
* @param long time
* @return time for next triggger
* @since 1.0
public long schedule(long t) {
System.out.println("signal schedule1");
if (status == AUCTION_SETUPED) {
System.out.println("signal schedule2");
return startTime;
else if (timeIncrement == 0 || t < endTime - timeIncrement) {
status = AUCTION_CLOSING;
return endTime;
else
return t + timeIncrement;
* This method is only called internally by Weblogic scheduled
action
* @param Schedulable
* @since 1.0
public void trigger(Schedulable sched) {
System.out.println("signal schedule3");
if (status == AUCTION_SETUPED) {
status = AUCTION_STARTED;
System.out.println("start auction");
else if (status == AUCTION_CLOSING) {
System.out.println("close auction");
else {
System.out.println("signal auction");
* external parties call this method to start the scheduled cycle of
action.
* @exception UBSException
* @since 1.0
* @param startTime
* @param endTime
* @param timeIncrement
* @param auctionItemId
public static void startTimer(long startTime, long endTime, long
timeIncrement, int auctionItemId,
String url) throws UBSException {
try {
System.out.println("signal startTime1");
ParamSet schedParams = new ParamSet();
schedParams.setParam("startTime", startTime);
schedParams.setParam("endTime", endTime);
schedParams.setParam("timeIncrement", timeIncrement);
schedParams.setParam("auctionItemId", auctionItemId);
Scheduler scheduler = new
Scheduler("com.uhere.ubs.service.CommonTimer", schedParams);
Trigger trigger = new
Trigger("com.uhere.ubs.service.CommonTimer");
ScheduledTriggerDef std =
getT3Services(url).time().getScheduledTrigger(scheduler, trigger);
std.schedule();
System.out.println("signal startTime2");
} catch (Exception e) {
UBSException.handle(e, UBSException.OP_EXP);
private static T3ServicesDef getT3Services(String wlUrl) throws
javax.naming.NamingException {
T3ServicesDef t3s;
Hashtable env = new Hashtable();
env.put(Context.PROVIDER_URL, wlUrl);
env.put(Context.INITIAL_CONTEXT_FACTORY,
weblogic.jndi.WLInitialContextFactory.class.getName());
Context ctx = new InitialContext(env);
t3s = (T3ServicesDef)ctx.lookup("weblogic.common.T3Services");
ctx.close();
return (t3s);
client
static public void testTimer() {
try {
long time = new Date().getTime();
AuctionTimer.startTimer(time+5000,time+20000,0,0,url);
catch (Throwable t) { t.printStackTrace(); }

I've used a std timer in Java
Try the following :
private Timer timer; // The thread
public void startTimer(){
timer = new Timer();
timer.schedule(closeConnection,1000*60,1000*120);
then run startTimer whenever you wanna hit it...
regards,
Dag Norland,
Donar AS, Norway
"Xiao Zhou" <[email protected]> wrote in message
news:[email protected]...
Please help on timer.
Thanks a lot.
Xiao
I got the following error when try to use weblogic timer:
<NT Performance Pack> NATIVE: created IoCompletionPort successfully.
IoPort=0x00
00024c
Tue Aug 08 12:24:55 PDT 2000:<I> <WebLogicServer> WebLogic Server
started
Tue Aug 08 12:25:09 PDT 2000:<I> <ListenThread> Adding address:
localhost/127.0.
0.1 to licensed client list
Tue Aug 08 12:25:09 PDT 2000:<I> <NT Performance Pack> Allocating: '2'
NT reader
threads
Tue Aug 08 12:25:14 PDT 2000:<I> <CliCon-#|myserver|0.965762672267>
Connection t
o client for ClientContext - id: '#|myserver|0.965762672267', bound:
'true', dea
d: 'false' has been unexpectedly lost because
weblogic.rjvm.PeerGoneException:
- with nested exception:
[java.net.SocketException: Connection reset by peer].
Initiating hard disconnect.
Tue Aug 08 12:25:14 PDT 2000:<I> <CliCon-#|myserver|0.965762672267>
Removing Cli
entContext - id: '#|myserver|0.965762672267', bound: 'false', dead:
'false' beca
use of hard disconnect timeout
the code for the timer
>
* CONFIDENTIAL, Copyright (C) 2000
* This file is copyrighted by Uhere and should not be reproduced
* in any form and/or distributed without prior consent of Uhere.
>
>
>
>
package com.uhere.ubs.service;
* Timer for auction
* @author Xiao Zhou
* @version 1.0
* @since 1.0
import weblogic.time.common.*;
import weblogic.common.*;
import weblogic.jndi.*;
import javax.naming.*;
import java.util.*;
import com.uhere.ubs.utility.*;
public class AuctionTimer implements ScheduleDef, TriggerDef {
private T3ServicesDef services;
private final int AUCTION_SETUPED = 0;
private final int AUCTION_STARTED = 1;
private final int AUCTION_CLOSING = 2;
private long startTime = 0, endTime = 0, timeIncrement = 0;
private int auctionItemId = 0, status = 0;
public void setServices(T3ServicesDef services) {
this.services = services;
* ScheduleDef Interface
* @param ParamSet
* @exception ParamSetException
* @since 1.0
public void scheduleInit(ParamSet ps) throws ParamSetException {
startTime = ps.getParam("startTime").asLong();
endTime = ps.getParam("endTime").asLong();
timeIncrement = ps.getParam("timeIncrement").asLong();
auctionItemId = ps.getParam("auctionItemId").asInt();
* TriggerDef interface
* @param ParamSet
* @exception ParamSetException
* @since 1.0
public void triggerInit(ParamSet ps) throws ParamSetException {
* This method is only called internally by Weblogic schedule when
the action will be called next time
* @param long time
* @return time for next triggger
* @since 1.0
public long schedule(long t) {
System.out.println("signal schedule1");
if (status == AUCTION_SETUPED) {
System.out.println("signal schedule2");
return startTime;
else if (timeIncrement == 0 || t < endTime - timeIncrement) {
status = AUCTION_CLOSING;
return endTime;
else
return t + timeIncrement;
* This method is only called internally by Weblogic scheduled
action
* @param Schedulable
* @since 1.0
public void trigger(Schedulable sched) {
System.out.println("signal schedule3");
if (status == AUCTION_SETUPED) {
status = AUCTION_STARTED;
System.out.println("start auction");
else if (status == AUCTION_CLOSING) {
System.out.println("close auction");
else {
System.out.println("signal auction");
* external parties call this method to start the scheduled cycle of
action.
* @exception UBSException
* @since 1.0
* @param startTime
* @param endTime
* @param timeIncrement
* @param auctionItemId
public static void startTimer(long startTime, long endTime, long
timeIncrement, int auctionItemId,
String url) throws UBSException {
try {
System.out.println("signal startTime1");
ParamSet schedParams = new ParamSet();
schedParams.setParam("startTime", startTime);
schedParams.setParam("endTime", endTime);
schedParams.setParam("timeIncrement", timeIncrement);
schedParams.setParam("auctionItemId", auctionItemId);
Scheduler scheduler = new
Scheduler("com.uhere.ubs.service.CommonTimer", schedParams);
Trigger trigger = new
Trigger("com.uhere.ubs.service.CommonTimer");
ScheduledTriggerDef std =
getT3Services(url).time().getScheduledTrigger(scheduler, trigger);
std.schedule();
System.out.println("signal startTime2");
} catch (Exception e) {
UBSException.handle(e, UBSException.OP_EXP);
private static T3ServicesDef getT3Services(String wlUrl) throws
javax.naming.NamingException {
T3ServicesDef t3s;
Hashtable env = new Hashtable();
env.put(Context.PROVIDER_URL, wlUrl);
env.put(Context.INITIAL_CONTEXT_FACTORY,
weblogic.jndi.WLInitialContextFactory.class.getName());
Context ctx = new InitialContext(env);
t3s = (T3ServicesDef)ctx.lookup("weblogic.common.T3Services");
ctx.close();
return (t3s);
client
static public void testTimer() {
try {
long time = new Date().getTime();
AuctionTimer.startTimer(time+5000,time+20000,0,0,url);
catch (Throwable t) { t.printStackTrace(); }

Similar Messages

  • Help for run-time menu localization

    I would like to dynamically change the run-time menu according to the predefined language setting. For example, if the setting (may be set up in a txt file) is German, then when the application is running, it automaticall display a german menu. if the setting is spanish, the menu will change to spanish display. Any help will be appreciated.

    The attached VI can dynamically change the run-time menu and short-cut menu based on language.
    帖子被ttrr在07-24-2006 09:12 PM时编辑过了
    Attachments:
    Multi Language Menu.zip ‏13 KB

  • Problem|Install iTunes problem! help for first time using iPod touch (2G)

    Look i try to install the iTunes, but after press the install button, its write:
    "The installer ecountered errors before iTunes could be configured.
    Your system has not been modifited. To retry these operations at a later time, please run the installer again."
    What to do? ****!250 Dollar on this iPod, not for free! i must have it working.
    Please help me =]

    Have you seen this iPod 101 tutorial? You might want to bookmark it.
    http://www.apple.com/support/ipod/howto/

  • Need help for storing time along with the date

    Hi,
    I have one procedure as follows, In last_update_column of the table job_data having date and time.But after execution of this procedure only date is inserting into the job_master.
    If I queires the table job_master with to_char(Last_Update_Date, 'DD-MM-YYYY HH24:MI:SS') , then it is showing time as 12:00:00.
    I tried to insert date with to_char,to_date format but it is not working.
    Please provide me the solution.
    Thanks in advance.
    create or replace
    PROCEDURE         SP_LOAD_JOB
    IS
    CURSOR CUR_DATA  IS
            SELECT   PARENT_ITEM,
         `               CHILD_ITEM_ID,
                   LAST_UPDATE_DATE
      FROM job_data,
    BEGIN
      For Cursor_job In CUR_DATA
                 Loop
                 Exit When CUR_DATA%Notfound;           
        Insert Into job_master(parent_Code,
                                       child_code,
                                       last_update_date)
    values(
                             Cursor_job.PARENT_ITEM,
                             Cursor_job.CHILD_ITEM_ID, ,
                             Cursor_job.Assembly_Item_Id,
                              Cursor_Bom.LAST_UPDATE_DATE)
    commit;
    end loop;
    END;

    Hi,
    I don't believe you
    First to input time to job_master from job_data table first you have to store time in job_data.
    execute 
    select LAST_UPDATE_DATE from job_data
    and show result.
    Second remark : your procedure will not compile success Because
        Insert Into job_master(parent_Code,
                                       child_code,
                                       last_update_date)  ---3columns
       values(
                             Cursor_job.PARENT_ITEM,
                             Cursor_job.CHILD_ITEM_ID, ,
                             Cursor_job.Assembly_Item_Id,
                              Cursor_Bom.LAST_UPDATE_DATE) ----4columns
    Third remark : why to insert into table from other you wrote procedure???! you need only type insert stmt like this
        Insert Into job_master(parent_Code,
                                       child_code,
                                       last_update_date)
        select .... from  job_data
    Ramin Hashimzade

  • Please help for current-time

    Hi dear friends. I wonder how to get the current system time and date within an applet code. Please help me. Barbaros.

    This should help you with getting some help:
    http://forum.java.sun.com/thread.jsp?forum=31&thread=271751

  • F4 help for Time field

    Hi,
    I am using a Time field in Table control, I would like to get F4 help for selecting time on this field.
    Anybody can tell which FM will serve this ?
    Thanks in Advance
    Regards
    Ranjith

    There is no need of any FM. What ever column you want the Time F4 help , You make that field Reference to SYST-UZEIT or some time field.
    They you will get the F4 help automatically.

  • Input Help for TIME type field

    I saw below discussion regarding a dropdown for a "TIME" type field.
    Re: Time Search Help
    It's a resuable component (that Thomas Jung created) and find it very slick.
    I just couldn't make it to work. I'm getting a dump when I pressed the dropdown on the "TIME" field.
    I was wondering, has anyone used this in conjunction with select-options (WDR_SELECT_OPTIONS) ?
    I'm getting a system-dump, "Component usage VALUE_HELP does not exist". I double checked the name that I used on the "USED COMPONENT" tab and it is VALUE_HELP.
    During method ADD_SELECTION_FIELD (for IF_WD_SELECT_OPTIONS) I'm using two parameters I_VALUE_HELP_TYPE = 'APPLDEV' and I_VALUE_HELP_ID = 'VALUE_HELP'.
    Maybe I'm not using the right parameters ?
    Anyway, I would appreciate if anyone could give me directions to correct the problem.Or maybe there is another and better way of having an input help for a "TIME" type field on select-option.
    Thanks.
    Vic

    That is because the TIME is a freely programmed value help and freely programmed value helps are not supported by the Select-Options component.  That limited is listed in the online help:
    Type of input help specified as type IF_WD_VALUE_HELP_HANDLER.
    Note that only ABAP Dictionary-based input help and OVS input help are supported; freely programmable input help is not supported.
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/45/bf07361248003de10000000a11466f/frameset.htm
    The reason for this is that the freely programmed value help is accessed via a component usage.  The Select-Options however are a separate component. They have no declaration to your components, component usages.  Therefore they produce the error that the component usage doesn't exist - which is correct.  It doesn't exist in the Select-Options Component.

  • Weblogic Time API

    List,
    jversion: jdk1.2.2
    wlversion: 5.1sp7
    Someone posted a message last year regarding the weblogic time api. I am
    having a similar error and wanted to know if anyone has resolved this
    issue.
    I'm simply running the ServerTime.java application located in the
    weblogic/examples/time folder.
    I get the following on the wl console log when i run the test app:
    ----------------------wl log-----------------------------------------
    Fri Apr 20 13:36:08 CDT 2001:<I> <RJVM> Signaling peer
    -3940176906498944186C199.82.241.17 gone:
    weblogic.rjvm.PeerGoneException:
    - with nested exception:
    [java.net.SocketException: Connection reset by peer]
    Fri Apr 20 13:36:08 CDT 2001:<I> <CliCon-#|myserver|0.987791533919>
    Connection to client for ClientContext - id:
    '#|myserver|0.987791533919', bound: 'true', dead: 'false' has been
    unexpectedly lost because weblogic.rjvm.PeerGoneException:
    - with nested exception:
    [java.net.SocketException: Connection reset by peer].
    Initiating hard disconnect.
    -----end of log-----------------------------
    Thanks in advance for any assistance given.
    -Mario

    The key is that there are three or four interfaces that you need and it
    really only makes sense to have one class and implement them all on it.
    Cameron Purdy
    Tangosol, Inc.
    http://www.tangosol.com
    +1.617.623.5782
    WebLogic Consulting Available
    "Robert Patrick" <[email protected]> wrote in message
    news:[email protected]..
    Hi,
    I have to admit that the examples aren't as clear about showing the
    functionality as they should be. However, I think that if you take theexamples
    as a starting point and play with them a little, you will see that it'snot too
    difficult to use this API.
    Robert
    Nenad Sokolovic wrote:
    Hi everyone,
    I am currently evaluating BEA Weblogic server 5.1 and I would like to
    make a
    component that
    would perriodicaly send e-mails to users (once a day at predefined time,for
    example). I have found
    few examples for Weblogic Time API usage in BEA Weblogic documentation,but
    reading their code
    and explanation did not help me at all...
    I would appreciate any help...
    Thanks, Nenad

  • Please help me about jdeveloper application deployment for weblogic

    At the beginning I just thought after developing an adf application then just deploy it as a .ear file and deploy it in the weblogic console and everything will be ok.But in fact I got a lot of problems. Then I got a tutorial for that and I do what it said step by step but some new problems occured. This is the tutorial I mentioned: [How-To: ADF Deployment Guide|http://www.oracle.com/webfolder/technetwork/jdeveloper/howto/11114/managedserver/wlsadfms.htm]
    Now could somebody tell how did you deploy your adf application?
    Here is the errors I got.
    This is the install packege and the OS I use:
    1. CentOS 6.3_x64 + jdeveloper11123.jar(include wls10.3.5) + adr(package name is ofm_appdev_generic_11.1.1.6.0_disk1_1of1.zip)[and just now I used a solaris11 vm from oracle and install jdeveloper11.1.2.3, the same probem occured as in CentOS.]
    2. Win7_x64 + jdeveoper11123.exe(include wls10.3.5) + adr mentioned above
    Here is the problems I get:
    in the case 1,after I install the jdeveloper(using sun jdk 1.7), the weblogic seems to be well though I didn't configure a domain.But after I open an
    application(which I get from the oracle jdeveloper tutorial demo,which works well in my Win7 env) and I run it, the integrated weblogic can't get
    started. Firstly in the console it said the -jrocket identifier is not recognized, then I modify the setDomainEnv.sh and the startWebLogic.sh file in the
    integrated wls domain (the one in the .jdeveloper directer) to set the JAVA_VM variable to -server.After that another problem came out: when the
    wls goes to status "starting",it is blocked and I turn to the system monitor it shows that a java thread using more than 1GB of memory of my system
    and occupy 150% of my cpu(it's a double-core computer). I wait for about 5 minutes when a error came said "PermSize is too small".then I modify the
    setDomainEnv.sh file again to set the PermSize to be 1024m and MaxPermSize to be 2048.(the variable name is something like that, maybe not the
    exactly right. I think you can understand which one it is.) But the problem is still there.
    then in the case 2.Firstly the jdev and the integrated wls works well, but when i deploy an application which works well to a ear file and deploy it to a
    standalone wls(10.3.5) it never works.the error is something referrence/dependences libraries is not found.Then I tried to new a server connection to
    the standalone wls and I got the tutorial [how_to_deploy_adf|http://www.oracle.com/webfolder/technetwork/jdeveloper/howto/11114/managedserver/wlsadfms.html] , as the tutorial said I patch my standalone
    wls with the adr and everything goes ok, no error reported.Then I tried the new server in the new machine under the manage of the adminserver and apply the
    adf template in the localhost:port/em console. But after I restart the new server(by the console and then by the stop+startweblogic.bat file) the server is running
    while the application in the new server is just "Unavailable". I tried this for three times in three computer, two of them are running win7,the other one is running winxp.
    I don't know what is wrong and I am totally a newbie about this. Somebody please help me.Thanks a lot!
    regard,Neo.

    Neo,
    there are a couple of problems. First of all, jdev comes with it'S own jdk bundled in the product (jdk 1.6_x). Next thing is if you use JDev 11.1.2.3.0 to build an application you must use a wls 10.3.5 or 10.3.6 where you need to install the correct runtime onto. In your case you first install adf runtime 11.1.1.6.0 and then you need to install two patches which update the adf runtime to 11.1.2.3.0. These spathes are only available via support.oracle.com, meaning you need asupport contract to get them.
    More information you can find in my blog http://tompeez.wordpress.com/2011/09/14/jdeveloper-versions-vs-weblogic-server-versions/
    The rest of your problems go away once you have installed the right adf runtime on your server.
    Timo

  • I ned help i need to start fresh new firefox dont know how to remove old profiles its totally ruined i can use it but not like suppose to thank you for your time

    there are so many things not working right i really do not know where to start
    if someone counld assist me PERSONALLY hands on that would be very much appreciated
    i just need to delete ALL old files the whole firefox
    and i need someone willing to have patients and understanding that will help me thats all i can say
    ive used firefox on and off 4 ever
    i like it over IE like 101% chrome is okay but not y choice
    firefox in my 46 year old eyes RULES!
    so if someone is willing to help me id love that
    im thinking ive deleted some file of very great importance
    PLUS i hate the Flash & Jave & Chrome errors that pop up
    PLUS
    statse.webtrendslive.com : server does not support RFC 5746, see CVE-2009-3555
    support.mozilla.com : server does not support RFC 5746, see CVE-2009-3555
    code I like this
    then there is on my space & other sites java is () Null or void
    im not a computer whiz
    but im not DUMB either
    i cant edit profiles and codes
    if i could id be one volunteer on here to help anyone N everyone i could
    on Superpoke pets
    it no longer allws me to go from inventory popular
    to ether stock left
    or lower to higher cost
    or higher to lower cost
    just an example
    this is frustrating to me ALL of it
    im ready to just throw my hans up n say 4 get the net
    please help me someone
    anyone
    thank you for your time in this matter
    and have a wonderful rest of your weekend

    Managing Profiles
    http://support.mozilla.com/en-US/kb/Managing-profiles

  • F4 help for Time field in Webdynpro Screen

    Hi Experts,
    I'm using TIMS data type for my Time field. In ECC we will have F4 function for the same data element, but in Webdynpro screen, am not getting the F4 help.
    I got some information from SCN that I need to go for some custom search help. But with which reference to the table, am I want to create it.
    Please let me know, is there any other possible way to create F4 for time field for webdynpro.
    Even I tried to use some standard search help, but am getting an error as 'Sending of dynpro ' ' not possible. No window system type specified'.
    Expecting valuable information from you experts.
    With Regards,
    RAM.

    Hi RAM,
    For time field, there is no SAP delivered search help in WDA , so we need to go for freely programmed search help.
    Please refer the below link, in which Mr. Thomas, has provided the links for search help document you can follow and create new search help component
    and also nugget of the component which can be imported using ZSAPLINK program.
    search help for time
    Regards,
    Rama

  • When I external edit an aperture photo using Photoshop Elements 9 and then get out, the changes are not reflected in Aperture when I return - this used to work for me but doesn't seem to have for some time - help please?

    Have used Aperture for some time - at some point this stopped working - not sure when
    workflow:
    click photo and elect to use the external editor (Photoshop Elements 9)
    Copy of the photo is created in Aperture with the "O" badge and I am rolled out to Photoshop
    Have to change the type to 8-bit in Photoshop to start making changes
    When done and I exit I am prompted to save the photo
    On returning to Aperture however the "O" badged photo does not get updated/reflect my changes
    Other Things:
    I can find a changed photo sitting in the Aperture Library using finder or Photoshop itself - so I know changes have been made a new file saved (TIFF).
    I am wondering if I am missing some (new) preference such that the changes are not proerly being saved for re-display/storage in the Aperture Library
    I am running Lion OSX at the moment but the behaviour was the same under Snow Lepoard versions.
    Current version of Aperture is 3.1.3, Elements is 9.0
    Any help/suggestions greatfully received

    Try using psd.  Some rerports indicate some confustion between the apps with TIFF.  See:
    https://discussions.apple.com/message/15921933#15921933
    I cannot confirm, nor test, since I use PS CS5, and not Elements.
    Ernie

  • OS is Mountain Lion, upgraded no problems, used an external Hard drive for my time machine, now my iPhoto will not show any of my photo's or ay new ones I import! Help please!!

    OS is Mountain Lion, upgraded no problems, used an external Hard drive for my time machine, now my iPhoto will not show any of my photo's or ay new ones I import! Help please!!

    Do you get this window when you hold down the Command+Option keys and launch iPhoto?
    If not then you're not holding down both keys long enough.
    OT

  • Help me to add some libraries for WebLogic Portal project

    My Web portal project (10.3.2) that was created with Oracle Enterprise pack for Eclipse with some custom configurations:
    - Beehive controls
    - Beehive netUI
    - Struts 1.2
    - WebLogic Control Extension 10.2
    - full feature for "WebLogic portal"
    - "Portal application controld 10.3.2" and "Portal framework beehive adapter" support in WebLogic Portal (optional)
    I need these packages to process some user and group informations:
    - com.bea.p13n.controls.ejb.usermgmt
    - com.bea.p13n.controls.userInfoQuery
    - com.bea.portal.tools.security.group
    - com.bea.portal.tools.security.user
    My problem is impossible to import these package (except: com.bea.p13n.controls.ejb.usermgmt). I've read carefully API Javadoc for these package informations but it cannot help anymore.
    Anybody can tell me what libraries should be added to project to solve my problem ?
    Thank in advance.
    Ps:
    This is my screenshot for project configuration:
    http://i284.photobucket.com/albums/ll10/docphongm41/screenshot/screenshot.png

    Thank Kevin.
    I've fix my problem by adding some jar files, such as war-classes.jar which can be found in workspace/.metadata/.plugin/oracle.eclipse.tools.weblogic/libraries/wlp-tools-ugm-web-lib_10.3.2_10.3.2/1/WEB-INF/lib
    So, I can use UserID class in my source code without any error notification on Eclipse. Everything sound to be okay, but it isnt. When I initialize an UserID object in my pageflow controller class like this:
    UserID uid = new UserID("::security:user");
            String uname = uid.getUserName();I'll get an exception:
    com.bea.netuix.nf.UIControlException: com.bea.portlet.adapter.scopedcontent.ActionLookupFailedException: java.lang.NoClassDefFoundError: com/bea/portal/tools/security/user/UserIDI don't know why JVM cannot found my imported class though I've already added library and imported this class to the source.

  • F4 help for Time field in webdynpro abap

    Hi Guru's,
    how to get f4 help for time field in webdynpro abap.
    thanks in advance,
    narendra

    Hi Narendra,
    Check this link:
    Re: Time Search Help
    Also few more links here:
    http://forumsa.sdn.sap.com/search.jspa?forumID=249&threadID=&q=time+help&objID=f249&dateRange=lastyear&numResults=15&rankBy=10001
    Also check if this example helps you: WDR_TEST_HELP
    If your query is not yet answered then its advisable to post in webdynpro for abap (Web Dynpro ABAP). You may get some quick repliy.
    Regards,
    Swarna Munukoti.

Maybe you are looking for

  • An error occured while creating the new dataset Could not get type informat

    Uses: Windows XP Pro SP3+; OracleXE; Oracle 8i Client; ODP.NET; Visual Studio 2005 PRO; I had OracleXE and was using OracleXE's Oracle.DataAccess Version 10.2.0.100 which was located in C:\oraclexe\app\oracle\product\10.2.0\server\BIN. Then to use Or

  • Problem Updating iTunes with Windows Vista

    I downloaded iTunesSetup.exe and ran as an Admin and during the installation I get an error message that says "Could not access network location %APPDATA%\." What does this mean and how do I fix it?

  • Trigger, catproc.sql : ICD Vector problem, plz help

    oracle 817, win2000 I accidently excuted this script HOME\rdbms\admin\catproc.sql while connected as system, not as sys. Afterwards i executed it on sys (still not without errors, but alot less) Now, the manager account is behaving rather weird. im g

  • Interactive script saving in cic

    Hi all We are configuring interactive script to one of our client... The problem is that client want's To save all the conservation held between Customer and Agent i.e answers for Customer.. and use later... please help us to come out of this issue R

  • RSS feed on Forums

    Do you have an RSS feeds for the forums ? I would like to monitor the HTMLDB forum via RSS ? Martin