Kind of exception of Lifecycle Callback Method

I understood right ? Lifecycle callback methods can throw only RuntimeException ? They can't throw ApplicationException ?
Instead AroundInvoke methods can throw both type of exception ,
is true this?
If it is , there is a way to gain control after a @PrePersist method throw a RuntimeException ?
My original problem , is a bit common :
When I perform any operation on Entity, I have to check my business validation rules first to call persist method , then I thinked to put my rules on a metohd into entity class and anotate it with @PrePersist and @PreUpdate annotation.
But when my validation method throw my BusinessException ( annotated as @ApplicationException) I get a ClassCastException with message content " full path class name of BusinessException" and client get an EJBException
Then I can't gain control on my validation process.
Maybe I haven't to put validation method on entity class ,but on Facade Session Bean that call the em.persist() , and use Interceptor facility ?
Following a resume code of my problem :
@Stateless
class myFacadeBean{
public insertEntity(MyEntity entity){
try{
em.persist(entity)
catch (Exception) {
manage some ApllicationException
class MyEntity {
@PrePersist
void doValidate(){
throw new BusinessValidation(...);
}

I managed to defeat the problem I was having, but I should mention that neither one of those exception type handlers got called. Of course, CException - as the base class - should by all rights have caught any of them.
The try/catch was this:
COleVariant v = /* unsigned char */;
try {
m_DIO.SingleWrite(v);
catch (COleException* pE) {
/* handle */
catch (COleDispatchException* pE) {
/* handle */
catch (CException* pE) {
/* handle */
catch (...) {
/* handle */
The catch(...) block always got called.

Similar Messages

  • A method handling several kinds of exceptions

    Hello there!
    I want to create a method that enables me to log several different kinds of exception... I used this code as for my method:
    public void myExceptions(Exception ex){
              try{
                   File file1 = new File("exceptions.txt");
                   boolean success1 = file1.createNewFile();
                   if (success1){
                        BufferedWriter bw1 = new BufferedWriter(new FileWriter(file1));
                        bw1.write(String.valueOf(ex)+"\n");
                        bw1.close();
         }It works fine with Exception but not with every other kind i work with like IOException... is there a way universalize the input type of my method so as not to create different methods for each type of exception?
    Thanks a lot!

    If you specify just the filename it will be stored in the directory which is current when the application is started. Personally I don't think that's a particularly useful place. On the other hand it's bad practice to hard-code file paths in programs. You could store a file path in, say, a properties file or the Preferences class.

  • SOAP Runtime: SOAP Runtime exception: 1023 occurred in method IF_SOAP_TRANS

    Hi ,
    we currently have the SAP discovery system setup, i have notice that when i check the system log via sm21 , i recieve hundreds of the following error messages:
    SOAP Runtime: SOAP Runtime exception: 1023 occurred in method IF_SOAP_TRANSPORT_BINDING~receive of class CL_SOAP11_HTTP_TPBND at position 1
    SOAP Runtime: Exception message: SRT: Processing error in Internet Communication Framework: ("ICF Error when receivin g the response: ICM_HTTP_CONNECTION_FAILED")
    Please advise where to check on resolving this error as some services donot work because of this,All services start up fine , i have also checked /nsicf  and some RFC ,but have not found any thing specific.
    Kind Regards
    A.

    Hi,
    I know this question was asked a long time ago but you should check out the following note and fix to un-release the "osp" background jobs running under SM37.
    Note 1113842 - Discovery System V3 Central Note

  • Java.rmi.ConnectException on calling callback method

    I have an interface exposed as a remote service with a simple method to register the callback object on wich the server calls a method to notify an event.
    public void registerForNotification (ExitCodeCallback callback) throws RemoteException;
    public interface ExitCodeCallback extends Remote
       * @param event
       * @throws RemoteException
      public void notifyExitCode (ExitCodeEvent event) throws RemoteException;
    public class ExitCodeEvent implements Serializable
       * Comment for <code>serialVersionUID</code>
      private static final long serialVersionUID = -8542839971016423057L;
      private Integer code;
      private String sourceName;
       * @param source
       * @param exitCode
      public ExitCodeEvent (String source, Integer exitCode)
        exitCode = code;
        sourceName = source;
       * @return Object
      public Object asString ()
        return sourceName + " exited with code " + code;
    }When the server try to call this method causes an exception to be thrown
    java.rmi.ConnectException: Connection refused to host: 26.2.242.76; nested exception is:
         java.net.ConnectException: Connection refused: connect
         at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:574)
         at sun.rmi.transport.tcp.TCPChannel.createConnection(TCPChannel.java:185)
         at sun.rmi.transport.tcp.TCPChannel.newConnection(TCPChannel.java:171)
         at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:94)
         at java.rmi.server.RemoteObjectInvocationHandler.invokeRemoteMethod(RemoteObjectInvocationHandler.java:179)
         at java.rmi.server.RemoteObjectInvocationHandler.invoke(RemoteObjectInvocationHandler.java:132)
         at $Proxy2.notifyExitCode(Unknown Source)
         at it.sogei.jscheduler.rmi.server.SchedulerServicesServerSide$InnerServerExitCodeCallback.notifyExitCode(SchedulerServicesServerSide.java:156)
         at it.sogei.jscheduler.rmi.server.ApplicationTask.notifyExitCode(ApplicationTask.java:129)
         at it.sogei.jscheduler.rmi.server.WaiterThread.run(WaiterThread.java:47)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: java.net.ConnectException: Connection refused: connect
         at java.net.PlainSocketImpl.socketConnect(Native Method)
         at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
         at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
         at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
         at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:366)
         at java.net.Socket.connect(Socket.java:516)
         at java.net.Socket.connect(Socket.java:466)
         at java.net.Socket.<init>(Socket.java:366)
         at java.net.Socket.<init>(Socket.java:179)
         at sun.rmi.transport.proxy.RMIDirectSocketFactory.createSocket(RMIDirectSocketFactory.java:22)
         at sun.rmi.transport.proxy.RMIMasterSocketFactory.createSocket(RMIMasterSocketFactory.java:128)
         at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:569)
         ... 10 morebut, surprisingly, the client receives the event even if the ExitCodeEvent.asString() called on that object print the following line
    null exited with code null.
    I wonder how this could be happened?

    - It happens every single time the callback method is invoked, I see the event been deserialized client-side with the fields initialized with null values and server-side there is the java.rmi.ConnectException.
    - The client can't unexport the callback object, that's because I didn't think to do it.
    this is the method where I start to notify to all the registered client the event
    for (ExitCodeCallback callbackElement : callback)
            try
              callbackElement.notifyExitCode(event);
            catch (RemoteException ex)
              logger.debug("Unable to notify.", ex);
          }where
    List<ExitCodeCallback> callback;and implementation of the callback interface is
    public class ClientExitCodeCallback implements ExitCodeCallback
      transient Logger logger = Logger.getLogger(ClientExitCodeCallback.class);
       * @see it.sogei.jscheduler.ExitCodeCallback#notifyExitCode()
      public void notifyExitCode (ExitCodeEvent event) throws RemoteException
        logger.warn(event.asString());
    }

  • Is it possible to delete user in onUserSync callback method?

    Hi,
      I've setup LADP and accessing the CQ using LADP authentication. I've been logging user info in 'onUserSync' callback method. But as per our requirement I don't want to create CQ user at some conditions. So I'm trying to remove user in 'onUserSync' callback method. But I'm getting exception while removing user at following statement.
    userManager.getAuthorizable(userId).remove();
    Here is my sample code:
    public void onUserSync(User user,
    Map<String, Value[]> attributes,
    ValueFactory vf)
    throws RepositoryException{
    log.debug("####### Begin: onUserSync #######");
            Bundle b = FrameworkUtil.getBundle(getClass());
            BundleContext bc  = b.getBundleContext();
            ServiceReference sr  = bc.getServiceReference(Repository.class.getName());
            try{
                Repository repository = (Repository) bc.getService(sr);
                Session session = repository.login(new SimpleCredentials("admin", "admin".toCharArray()), "crx.default");
                log.debug("============= Session created ===========");
               final JackrabbitSession jackrabbitSession = (JackrabbitSession) session;
               log.debug("============= jackrabbit Session created ===========");
               UserManager userManager = jackrabbitSession.getUserManager();
                          log.debug("User Name:{}",user.getID());
                    String userId=user.getID();
                    log.debug("Ldap Sync User Name:{}",userId);
                    jackrabbitSession.save();
                   log.debug("Jackrabbit session is saved before removing the gruop..");
                  userManager.getAuthorizable(userId).remove();
                 log.debug("User has been removed..");
                          jackrabbitSession.save();
               og.debug("Jackrabbit session is saved after removing the gruop..");
                jackrabbitSession.logout();
            }catch(Exception e)
                e.printStackTrace();
                log.debug("Exception:{}",e.getMessage());
                  finally {
                if(sr != null){
                    bc.ungetService(sr);
    log.debug("####### End: onUserSync   #######");
    Quick Responses would be more helpful..
    Thanks
    Siva

    HI,
    If in the process of setting up your Apple ID as the iMessages "Account" there have been some "extras" created you will have to do the following:-
    Make the Finder the front App (listed in the menu bar)
    Use the Go Menu
    Hold down the ALT key and select the Library at appears.
    Open Preferences
    Find the file com.apple.imservice.iMessages.plist
    Drag it to the Trash
    Restart Messages
    You may have to reset the iMessages/Apple ID up again but the "extras" should be gone.
    10:20 PM      Monday; September 3, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Exception when invoking create method on entity ejb's home object

    I have a simple entity bean. I am able to get the reference to the entity's home object. But when I run create method on entity's home interface, I get the following exception. The create method takes no arguments as the primary key is Auto-Increment field in MYSQL database. Here is the exception. I am using jdeveloper and embedded OC4J as server.
    07/06/22 15:51:15 java.lang.NullPointerException
    07/06/22 15:51:15 at EmployeeHome_EntityHomeWrapper2.create(EmployeeHome_EntityHomeWrapper2.java:1168)
    07/06/22 15:51:15 at com.pd.EmpAddInput.addEmployee(EmpAddInput.java:64)
    07/06/22 15:51:15 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    07/06/22 15:51:15 at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    07/06/22 15:51:15 at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    07/06/22 15:51:15 at java.lang.reflect.Method.invoke(Method.java:585)
    07/06/22 15:51:15 at com.sun.faces.el.MethodBindingImpl.invoke(MethodBindingImpl.java:146)
    07/06/22 15:51:15 at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:92)
    07/06/22 15:51:15 at javax.faces.component.UICommand.broadcast(UICommand.java:332)
    07/06/22 15:51:15 at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:287)
    07/06/22 15:51:15 at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:401)
    07/06/22 15:51:15 at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:95)
    07/06/22 15:51:15 at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:268)
    07/06/22 15:51:15 at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:110)
    07/06/22 15:51:15 at javax.faces.webapp.FacesServlet.service(FacesServlet.java:213)
    07/06/22 15:51:15 at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:712)
    07/06/22 15:51:15 at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:369)
    07/06/22 15:51:15 at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:865)
    07/06/22 15:51:15 at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:447)
    07/06/22 15:51:15 at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:215)
    07/06/22 15:51:15 at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)
    07/06/22 15:51:15 at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)
    07/06/22 15:51:15 at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    07/06/22 15:51:15 at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)
    07/06/22 15:51:15 at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)
    07/06/22 15:51:15 at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)
    07/06/22 15:51:15 at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    07/06/22 15:51:15 at java.lang.Thread.run(Thread.java:595)
    What may be causing this exception.

    I have solved the problem. It had to do with the autocommit=true feature of the MYSQL connection. However I have ran into another trouble. I am getting the following exception.
    java.lang.IllegalStateException: Can not call getPrimaryKey() inside ejbCreate(...) methods, the entity does not have an identity yet, see the EJB 2.0 specification chapter 10.5.4
         at com.evermind.server.ejb.EJBUtils.throwGetPrimaryKeyInEJBCreateException(EJBUtils.java:892)
         at EmployeeRemote_EntityBeanWrapper0.getPrimaryKey(EmployeeRemote_EntityBeanWrapper0.java:1686)
         at EmployeeHome_EntityHomeWrapper2.create(EmployeeHome_EntityHomeWrapper2.java:1055)
         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 com.evermind.server.rmi.RmiMethodCall.run(RmiMethodCall.java:53)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    java.lang.IllegalStateException: Can not call getPrimaryKey() inside ejbCreate(...) methods, the entity does not have an identity yet, see the EJB 2.0 specification chapter 10.5.4
         at com.evermind.server.rmi.RMICall.EXCEPTION_ORIGINATES_FROM_THE_REMOTE_SERVER(RMICall.java:109)
         at com.evermind.server.rmi.RMICall.throwRecordedException(RMICall.java:125)
         at com.evermind.server.rmi.RMIClientConnection.obtainRemoteMethodResponse(RMIClientConnection.java:517)
         at com.evermind.server.rmi.RMIClientConnection.invokeMethod(RMIClientConnection.java:461)
         at com.evermind.server.rmi.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:63)
         at com.evermind.server.rmi.RecoverableRemoteInvocationHandler.invoke(RecoverableRemoteInvocationHandler.java:28)
         at __Proxy0.create(Unknown Source)
         at com.pd.model.EmployeeRemoteClient.main(EmployeeRemoteClient.java:37)
    I am not calling getPrimaryKey() in ejbCreate() then why this exception

  • TS1398 My Wifi has completely gone, the option on the slider is greyed out, and the slider won't slide. Tried all the fixes on the forums, (except the fridge/frezzer method), none work. Grrrrr!

    My Wifi has completely gone, the option on the slider is greyed out, and the slider won't slide. Tried all the fixes on the forums, (except the fridge/frezzer method), none work. Grrrrr! This has been an issue since installing new IOS! How long will it take apple to come up with a fix. My carrier offered me an early upgarde at a massively inflated monthly cost (how kind of them!).

    My Wifi has completely gone, the option on the slider is greyed out, and the slider won't slide. Tried all the fixes on the forums, (except the fridge/frezzer method), none work. Grrrrr! This has been an issue since installing new IOS! How long will it take apple to come up with a fix. My carrier offered me an early upgarde at a massively inflated monthly cost (how kind of them!).

  • Callback Methods called when a UI Componet is displayed

    Hi ,
    There are 3 callback methods called as preInitialize , initialize and creationComplete that will come into picture when a UI Component is initialized .
    Can anybody clarify my confusion here , what does a UI Component Mean here ??
    Is it a Container like a Application or a control like Button ??
    Please share your ideas . Thanks for reading .

    Here is a link that explains the lifecycle of Flex components.  It is an oldie ( Flex 2 ) but a goodie !
    http://www.adobe.com/livedocs/flex/201/html/wwhelp/wwhimpl/common/html/wwhelp.htm?context= LiveDocs_Book_Parts&file=containers_intro_063_12.html

  • How to Stop the method Action When an Exception Occur in other Method

    Hi All ,
    public void action( Event clientEvent) {
    startAction();
    JOptionPane.showMessageDialog(null, getDocumnetId());
    how to Stop the method action ( "action" ) if an exception occur in the method ("startAction")
    ( if the exception occur we doesn't need to show the JOption Message )

    Hi,
    try FacesContext.getCurrentInstance().renderResponse();
    Frank

  • How to throw Exception in Thread.run() method

    I want to throw exception in Thread.run() method. How can I do that ?
    If I try to compile the Code given below, it does not allow me to compile :
    public class ThreadTest {
         public static void main(String[] args) {
         ThreadTest.DyingThread t = new DyingThread();
         t.start();
         static class DyingThread extends Thread {
         public void run() {
         try {
                   //some code that may throw some exception here
              } catch (Exception e) {
              throw e;//Want to throw(pass) exception to caller
    }

    (a) in JDK 1.4+, wrap your exception in RuntimeException:
    catch (Exception e)
    throw new RuntimeException(e);
    [this exception will be caught by ThreadGroup.uncaughtException() of this thread's parent thread group]
    In earlier JDKs, use your own wrapping unchecked exception class.
    (b) if you know what you are doing, you can make any Java method throw any exception using Thread.stop(Throwable) regardless of what it declares in its "throws" declaration.

  • Service MBean with callback Method?

    Hi,
    I have an application written for JBoss AppServer. There is a ManagedBean that extends a JBoss specific class org.jboss.system.ServiceMBean. This class provides a callback Method "startService()" wich is called by JMX.
    I now want to migrate to WebLogic 10. My question is (as I am not deep into MBeans) is there something similar in WebLogic? Is there an interface provided to achieve a service-like behavior like I mentioned? How can this be done?!
    Thanks in advance.
    Cheers

    Callback functions are more performant. Event listeners allow for a higher degree of decoupling in some cases, because you often don't need to know where the thing is you're listening to and the thing dispatching the event doesn't need to know or care who, if anyone, is listening. And as soon as you need for more than one thing to listen, callbacks get more complex (see AS3 Signals).
    With either callbacks or event listeners, keep in mind you are handing a reference to the listening object to the dispatching object. Make sure to clean everything up when the listening object is no longer in use, or you can wind up with memory leaks.

  • Non-application exception occurred while processing method createReportsExc

    Hi,
    Any one get the following exception
    Non-application exception occurred while processing method createReportsExcelFile on bean BeanId(bsd#bsdejb.jar#ReportsDownload, null): java.lang.NoSuchMethodError: java.lang.RuntimeException: method <init>(Ljava/lang/Throwable;)V not found
         at jxl.write.biff.File.write(File.java(Compiled Code))
         at jxl.write.biff.SheetWriter.write(SheetWriter.java(Compiled Code))
         at jxl.write.biff.SheetWriter.write(SheetWriter.java(Compiled Code))
         at jxl.write.biff.WritableSheetImpl.write(WritableSheetImpl.java:1165)
         at jxl.write.biff.WritableWorkbookImpl.write(WritableWorkbookImpl.java:805)
         at com.bsdnet.ejb.report.ReportsDownloadEJB.writeToBUReportExcelFile(ReportsDownloadEJB.java(Compiled Code))
         at com.bsdnet.ejb.report.ReportsDownloadEJB.createBUReport(ReportsDownloadEJB.java:2151)
         at com.bsdnet.ejb.report.ReportsDownloadEJB.createReportsExcelFile(ReportsDownloadEJB.java:411)
         at com.bsdnet.ejb.report.EJSRemoteStatelessReportsDownload.createReportsExcelFile(EJSRemoteStatelessReportsDownload.java:49)
         at com.bsdnet.ejb.report._ReportsDownload_Stub.createReportsExcelFile(_ReportsDownload_Stub.java:258)
         at com.bsdnet.batch.report.ReportsJobProcessingThread.run(ReportsJobProcessing.java:282)
    IF Yes, Then Please help me out asap.
    Thanks,
    Sumit Gupta

    Since you want to use a class that is not part of your EJB environment you cant access it.
    Like you said your ELUWS14 class is part of your web project, most likely to be inside a war. And the session bean inside an ear.
    If you need that class on both environments (session beans and web components) the best approach is to create a JAR file and include it there. If it is going to change a lot then the best approach is to have it on your ear (EJB side), and your web components should call the session beans method to invoke operations.
    Your business rules should not access your presentation layer:
    EJB -> Web components Not a good idea
    EJB <-> Web components Not a good idea
    EJB <- Web components This is the way to go
    So, web components should access classes from the ear, and not viceversa. This is why containers make ear classes accesible to web component, and not in the other way

  • An exception occurred in the method Cache.init - After ATG RUP 7 and JDK 6

    Hi All,
    We have migrated from JDK 1.4 to JDK 1.6 - 401561.1
    We have applied ATG RUP 7 - 783600.1
    Application - 11.5.10.2
    Database - 10.2.0.4
    When tryng to open the login page, its trying for long time and ending in internal server error and could see below error in the jvm logs..
    Exception in static block of jtf.cache.CacheManager. Stack trace is: oracle.apps.jtf.base.resources.FrameworkException: IAS C
    ache initialization failed
    at oracle.apps.jtf.cache.IASCacheProvider.init(IASCacheProvider.java:332)
    at oracle.apps.jtf.cache.CacheManager.activateCache(CacheManager.java:1444)
    at oracle.apps.jtf.cache.CacheManager.initCache(CacheManager.java:752)
    at oracle.apps.jtf.cache.CacheManager.<clinit>(CacheManager.java:378)
    at oracle.apps.fnd.cache.Cache.setCacheFullName(Cache.java:228)
    at oracle.apps.fnd.cache.Cache.initCache(Cache.java:114)
    at oracle.apps.fnd.cache.Cache.<init>(Cache.java:89)
    Caused by: oracle.apps.jtf.base.resources.FrameworkException:
    An exception occurred in the method Cache.init
    oracle.ias.cache.commx.GroupException: Unable to find or become the coordinator after 119 attempts.
    The base exception is:
    Unable to find or become the coordinator after 119 attempts.
    at oracle.apps.jtf.base.resources.FrameworkException.convertException(FrameworkException.java:607)
    at oracle.apps.jtf.base.resources.FrameworkException.addException(FrameworkException.java:585)
    After disablign the cache , login is going fine "wrapper.bin.parameters=-DLONG_RUNNING_JVM=false "
    Can you please advice on how to resolve this with cache on.
    Thanks in advance.
    Regards,
    Rakesh

    Hussein,
    Checked the last 2 notes and the patch we already applied and other one is for R12.
    Yet to check the first note in detail.....
    Meanwhile i see a bug 8945245 which has the same issue as we have and it seems to be fixed, but not able to get any details from that bug. Any idea on what would be the fix mentioned in the bug.....
    Thanks & Regards,
    Rakesh

  • Use of gl calls with jogl outside callback methods

    Hello,
    I use JOGL, and I can use the gl calls only when I've the GL object in one of callback methods of GLEventListener,
    is it possible to use gl calls outside those methods?

    These resources may be helpful:
    http://daoexamples.sourceforge.net/related.html
    http://daoexamples.sourceforge.net/index.html

  • I have changed my payment method with another and since then it dose not except the new payment method i tried another one same thing is happing

    i have changed my payment method with another and since then it dose not except the new payment method i tried another one same thing is happing

    What payment method are you trying to use? Prepaid debit cards by chance? Apple does not accept prepaid cards.

Maybe you are looking for