Alchemy does not release ByteArray objects

I'm trying to use libjpeg encoder to encode bitmap to jpeg and notice, that original data never releases from memory. After some testing I found tha alchemy hold references to them. Is that a bug or am I doing something wrong?
Here is my ActionScript code:
protected function doSomethingButton_clickHandler(event:MouseEvent):void
     var data:ByteArray = new ByteArray();
     for (var i:int = 0; i < 1000; i++) {
          data.writeInt(Math.round(10000 * Math.random()));
     Demo.doSomething(data); // This is an alchemy class
And here is my *.gg file:
import flash.utils.ByteArray;
public function doSomething(data:ByteArray):void
The functiion does nothing! And profiler shows that all of this ByteArray objects stay in memory:

I'd like to know if the AS3_Release(data) is a valid thing to do, or not.
It's been a while, but the last time I profiled for a leak in alchemy, it appears that the passed-in parameters (to an API compiled with gluegen) are kept in alchemy in some sort of weak reference Dictionary.  These get cleaned up when alchemy decides to scan for cleanup - not when you want them gone.
So, passing-in objects that hold lots of memory (like a byte array) is a bad thing.  I had thousands of Rectangle objects being held by alchemy (and they do not get cleaned by a manual garbage collect in the profiler), but sure enough, they eventually go away.
I didn't think that the AS3_Release on input parameters was a valid thing to do, but perhaps it is, provided the object isn't referenced anywhere else in alchemy for other valid reasons?  I wouldn't want things to blow up.

Similar Messages

  • CrystalReportViewer 2008 does not release GDI objects after closing.

    We need help in resolving an issue with a WinForms application we have developed that makes use of the Crystal Reports 2008 viewer control to both generate reports based on various parameters the user supplies and to view these same reports having been previously saved in crystal 2008 format.
    The issue we are seeing is that GDI objects are being created during the report generation process but some are not being released when the report viewer window is closed down. This leads to the system running out of GDI objects (seen by using the Windows task manager) and ultimately the application crashes. It is only when the application is closed completely that GDI resources are returned to the system.
    In an effort to isolate the cause of this problem we created a much simplified WinForms application that simply allowed us to systematically open and close a WinForm  that contains a CrystalReportViewer  to display one of our example reports. We found that the behaviour is the same for this application too.
    Browsing the crystal reports forums reveals there have been a few questions about u201Cmemory leaksu201D like this (see "Thread: CrystalReportViewer memory usage increases until out of memory" as an example) and there has been a good deal of talk about manually "disposing" of report documents and viewers but trying this does not correct this issue
    The extent of the "GDI Object leak" does depend upon the kind of report that is pulled in. One report we have that is 360 pages long and contains graphs and tables of data leaks 390 object per test iteration.
    Is this a known issue with the Crystal Report Viewer and if so is there an update or a workaround available?
    Are we performing all the correct initialisation prior to using the viewer? For example we are supplying the report to the viewer through a ReportDocument object; is there something special we need to do with that?
    Do we have to do anything special when closing the viewer?
    Could it be to do with the design of our reports? We are using the Crystal Reports 2008 editor (sp1) to do this design.
    We urgently need to help in understanding why this is happening and to be able implement a solution that will address this problem.
    I have provided the following code snippets of this sample application to give a flavour of what we are doing and hopefully you can see that it is not complex. The example shows the crystal viewer being presented with a ReportDocument as a Report Source ... this is how our proper application does things but if you try supplying the filename of the crystal report directly, the problem is the same.
    This C# code was written using Visual Studio 2008.
    // ===================================================================================
    //                                                  Sample Code Snippets  
    // ===================================================================================
        static class Program
            /// <summary>
            /// The main entry point for the application.
            /// </summary>
            [STAThread]
            static void Main()
                Application.EnableVisualStyles();
                Application.SetCompatibleTextRenderingDefault(false);
                Application.Run(new MDIParent1());
    // ===================================================================================
    // ===================================================================================
        public partial class MDIParent1 : Form
            private int childFormNumber = 0;
            public MDIParent1()
                InitializeComponent();
            private void ShowNewForm(object sender, EventArgs e)
                Form childForm = new TestForm();
                childForm.MdiParent = this;
                childForm.Text = "Window " + childFormNumber++;
                childForm.Show();
            private void OpenFile(object sender, EventArgs e)
                OpenFileDialog openFileDialog = new OpenFileDialog();
                openFileDialog.InitialDirectory = Environment.GetFolderPath(Environment.SpecialFolder.Personal);
                openFileDialog.Filter = "Text Files (.txt)|.txt|All Files (.)|.";
                if (openFileDialog.ShowDialog(this) == DialogResult.OK)
                    string FileName = openFileDialog.FileName;
            private void SaveAsToolStripMenuItem_Click(object sender, EventArgs e)
                SaveFileDialog saveFileDialog = new SaveFileDialog();
                saveFileDialog.InitialDirectory = Environment.GetFolderPath(Environment.SpecialFolder.Personal);
                saveFileDialog.Filter = "Text Files (.txt)|.txt|All Files (.)|.";
                if (saveFileDialog.ShowDialog(this) == DialogResult.OK)
                    string FileName = saveFileDialog.FileName;
            private void ExitToolsStripMenuItem_Click(object sender, EventArgs e)
                this.Close();
            private void CutToolStripMenuItem_Click(object sender, EventArgs e)
            private void CopyToolStripMenuItem_Click(object sender, EventArgs e)
            private void PasteToolStripMenuItem_Click(object sender, EventArgs e)
            private void ToolBarToolStripMenuItem_Click(object sender, EventArgs e)
                toolStrip.Visible = toolBarToolStripMenuItem.Checked;
            private void StatusBarToolStripMenuItem_Click(object sender, EventArgs e)
                statusStrip.Visible = statusBarToolStripMenuItem.Checked;
            private void CascadeToolStripMenuItem_Click(object sender, EventArgs e)
                LayoutMdi(MdiLayout.Cascade);
            private void TileVerticalToolStripMenuItem_Click(object sender, EventArgs e)
                LayoutMdi(MdiLayout.TileVertical);
            private void TileHorizontalToolStripMenuItem_Click(object sender, EventArgs e)
                LayoutMdi(MdiLayout.TileHorizontal);
            private void ArrangeIconsToolStripMenuItem_Click(object sender, EventArgs e)
                LayoutMdi(MdiLayout.ArrangeIcons);
            private void CloseAllToolStripMenuItem_Click(object sender, EventArgs e)
                foreach (Form childForm in MdiChildren)
                    childForm.Close();
    // ===================================================================================
    // ===================================================================================
        public partial class TestForm : Form
            private ReportDocument crDocument;
            public TestForm()
                InitializeComponent();
            private void TestForm_Load(object sender, EventArgs e)
                crDocument = new ReportDocument();
                crDocument.Load(@"C:\Reports\Sample1.rpt");
                this.crystalReportViewer1.ReportSource = crDocument;
    //            this.crystalReportViewer1.ReportSource = @"C:\Reports\Sample1.rpt";
            private void TestForm_FormClosing(object sender, FormClosingEventArgs e)
                this.crDocument.Dispose();
    // ===================================================================================

    Hi Martyn,
    I tested this and found after using this code to re-initialize the report viewer there we still 400 GDI objects not getting released. This may or may not be a CR issue. Still testing.
    Try this also, I simply created a close button but you should be able to do this in your form close method also depending on how you do it:
            private void CloseReport_Click(object sender, EventArgs e)
                rptClientDoc.Close();
                crystalReportViewer1.Dispose();
                GC.Collect();
                this.crystalReportViewer1 = new CrystalDecisions.Windows.Forms.CrystalReportViewer();
                InitializeComponent();
                crystalReportViewer1.ShowExportButton = true;
                crystalReportViewer1.EnableRefresh = true;
                crystalReportViewer1.Controls.Count.ToString();
                crystalReportViewer1.BackColor.IsNamedColor.ToString();
                crystalReportViewer1.EnableToolTips = true;
                crystalReportViewer1.Refresh();
    The issue has now been tracked - Problem_Report:  ADAPT01301248
    Thanks again
    Don
    Edited by: Don Williams on Sep 15, 2009 11:01 AM

  • JInternalFrame is closed, but does not release the memory

    Hi,
    I have problem with using of JInternalFrame.
    I create a new internal frame, and close it."setClosed(true);dispose();"
    The frame does not release the memory (after gc the allocated memory is the same)
    Before close I removed all listeners, and closed all reference to other object. (I think so :-) )
    Do You have any idees?
    regards
    G�bor

    Hi,
    I think u will have to release all the associated used objects. or you can also call the finalize() method in order to release the memory.
    Regards,
    Balaji.SN

  • Error : software component version does not support this object type.

    Hi ,
    We are getting error as software component version does not support this object type when we try to create Business Object in PI 7.1 ESR  .
    How can we solve this error.
    Regards,
    Syed
    Edited by: Umar Syed on Jun 11, 2009 12:01 PM

    Hi Srinivas,
    We are working on Modelling in SAP PI, but we are unable to create any Business Object.. is there any specific steps need to be followed.
    Once we login to our ESR from index page we have this option to choose
    Available Profiles :         Process Definition
                                       Service Definition
                                       Unregistered.
    We are getting the option of new types (_Business Object_) only if we select Unregistered Profile and not in other Profiles . Is there some settings need to be done.
    Regards,
    Syed

  • Photoshop does not release memory after closing document.

    When I close a large document Photoshop does not release the memory. If I open another document the program is slow and not resposive. If I close out of Photoshop and restart it then load the other document it is quick and responsive again.

    A bit late to the party here but this issue is still live and I can't find anything else on the forum similar to it (apologies if there is).
    Photoshop does not seem to re-use memory it just keep allocating new right up to the limit before the prog crashes (same applies to Fireworks) so any batch/script processing of more than a handful of files is impossible.
    I am Photoshop via Creative Cloud (so I am always updated to your latest release), Windows 7 64k with 8Mb memory and am using Norton Intenet Security 20.3.1.22 which is updated daily.

  • EMac modem does not release phone line

    I have an original eMac. The modem is capabale of receiving and sending faxing. However, occasionally it does not "release" the phone line causing any incoming fax to get a busy signal and if you try to dial the phone number you also get a busy signal. Unplugging the phone line from the modem port resolves the issue as does restarting.
    What can be done to fix this issue besides getting a new modem.
    Thanks!

    I recall having similar problems with my home pre-broadband dial-up account under 10.1.5. That was blamed on the computer modem and the ISP modems implementing different versions of the same modem protocol (which certainly doesn't say mush for the 'standard' part of the v.92 protocol). That I thought was fixed in later versions of OS X, but you may still want to contact your ISP to ask them if they're aware of other Mac dial-up users with the same problem and if they can suggest any modem commands to add to your modem command strings. You can ask them to check on their end to see if they're receiving the line release command from your modem when you attempt to hang up.
    Since most Mac-related questions to ISP support seem to garner a response of "huh?", your other option would be to try dropping the modem protocol from v.92 to v.90 (and if necessary even lower) to see if those protocols are more compatible with your ISP's modem banks.

  • Discovery does not remove deleted objects

    Well,
    another issue with discoveries.
    We are running discoveries via datafile:
    The discovery DataSource script reads the datafile and creates the objects.
    That's very nice and works perfectly.
    Added entries in the datafile are discovered on the next discovery cycle.
    Unfortunately if you delete some entries from the datafile the discovery does not delete the objects in SCOM.
    Discovery's datasource writes a logfile and the deleted entries from the datafile are really no longer discovered
    ( I'm happy that reading files is a reliable function...).
    So for this cycle discovery data contains some objects less than before.
    But this new discovery does not lead to a deletion of no longer existing objects.
    As a workaround we put these superflues objects in maintenance mode.
    Would be gratefull if somebody has a good solution
    regards
    sebastian

    Please run "Remove-SCOMDisabledClassInstance” from the Operations Manager PowerShell
    console.
    You might get some errors after running this. Errors are about the ObjectIDs and RuleIDs, but you can ignore those errors and should keep running this command until it completes successfully.
    After completing successfully, the deleted objects will be removed the discovery and SCOM.
    Hope this helps.
    Thanks, S K Agrawal

  • ES2 Environment Unstable | head_application_configuration_uuid does not exist on object-type: dsc.sc

    We have test environment in running state for the past months, developer complained something is not usual, when tried to review if any new applications deployed thru admin UI, I ended up this error:
    [11/2/12 17:54:45:367 EDT] 00000028 servlet       I com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: [LiveCycleES2] [/AACComponent] [/layouts/aacLayout.jsp]: Initialization successful.
    [11/2/12 17:54:47:345 EDT] 00000033 TilesRequestP I org.apache.struts.tiles.TilesRequestProcessor initDefinitionsMapping Tiles definition factory found for request processor ''.
    [11/2/12 17:54:49:668 EDT] 00000033 LocalExceptio E   CNTR0020E: EJB threw an unexpected (non-declared) exception during invocation of method "doSupports" on bean "BeanId(LiveCycleES2#adobe-dscf.jar#EjbTransactionCMTAdapter, null)". Exception data: com.adobe.pof.schema.AttributeNotFoundException: Attribute: head_application_configuration_uuid does not exist on object-type: dsc.sc_application.
            at com.adobe.pof.schema.POFAbstractObjectType.getAttribute(POFAbstractObjectType.java:177)
            at com.adobe.pof.DefaultGenericObject.getValue(DefaultGenericObject.java:88)
            at com.adobe.idp.dsc.boi.BOIApplicationBase.getHeadApplicationConfigurationUuid(BOIApplicati onBase.java:237)
            at com.adobe.idp.applicationmanager.application.impl.ApplicationStoreImpl.getApplications(Ap plicationStoreImpl.java:515)
            at com.adobe.idp.applicationmanager.application.impl.ApplicationRegistryImpl.getApplications (ApplicationRegistryImpl.java:906)
            at com.adobe.idp.applicationmanager.service.ApplicationManagerService.getApplications(Applic ationManagerService.java:1206)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:60)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37)
            at java.lang.reflect.Method.invoke(Method.java:611)
            at com.adobe.idp.dsc.component.impl.DefaultPOJOInvokerImpl.invoke(DefaultPOJOInvokerImpl.jav a:118)
            at com.adobe.idp.applicationmanager.invoker.ApplicationInvoker.invoke(ApplicationInvoker.jav a:38)
            at com.adobe.idp.dsc.interceptor.impl.InvocationInterceptor.intercept(InvocationInterceptor. java:140)
            at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
            at com.adobe.idp.dsc.interceptor.impl.DocumentPassivationInterceptor.intercept(DocumentPassi vationInterceptor.java:53)
            at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
            at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor$1.doInTransaction(Transa ctionInterceptor.java:74)
            at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionCMTAdapterBean.execute(EjbTr ansactionCMTAdapterBean.java:357)
            at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionCMTAdapterBean.doSupports(Ej bTransactionCMTAdapterBean.java:227)
            at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EJSLocalStatelessEjbTransactionCMTAdapter_ caf58c4f.doSupports(Unknown Source)
            at com.adobe.idp.dsc.transaction.impl.ejb.EjbTransactionProvider.execute(EjbTransactionProvi der.java:104)
            at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor.intercept(TransactionInt erceptor.java:72)
            at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
            at com.adobe.idp.dsc.interceptor.impl.InvocationStrategyInterceptor.intercept(InvocationStra tegyInterceptor.java:55)
            at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
            at com.adobe.idp.dsc.interceptor.impl.InvalidStateInterceptor.intercept(InvalidStateIntercep tor.java:37)
            at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
            at com.adobe.idp.dsc.interceptor.impl.AuthorizationInterceptor.intercept(AuthorizationInterc eptor.java:188)
            at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
            at com.adobe.idp.dsc.interceptor.impl.JMXInterceptor.intercept(JMXInterceptor.java:48)
            at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
            at com.adobe.idp.dsc.engine.impl.ServiceEngineImpl.invoke(ServiceEngineImpl.java:115)
            at com.adobe.idp.dsc.routing.Router.routeRequest(Router.java:129)
            at com.adobe.idp.dsc.provider.impl.base.AbstractMessageReceiver.routeMessage(AbstractMessage Receiver.java:93)
            at com.adobe.idp.dsc.provider.impl.vm.VMMessageDispatcher.doSend(VMMessageDispatcher.java:20 9)
            at com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat cher.java:66)
            at com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:208)
            at com.adobe.idp.applicationmanager.client.ApplicationManagerClient.callApplicationManager(A pplicationManagerClient.java:78)
            at com.adobe.idp.applicationmanager.client.ApplicationManager.getApplications(ApplicationMan ager.java:336)
            at com.adobe.repository.ui.aac.struts.actions.SwitchArchivesPageAction.execute(SwitchArchive sPageAction.java:168)
            at com.adobe.repository.ui.aac.struts.actions.CommandProcessorAction.execute(CommandProcesso rAction.java:228)
            at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
            at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
            at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
            at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:718)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:831)
            at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1657)
            at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1597)
            at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:131)
            at com.adobe.repository.ui.aac.AacServletFilter.doFilter(AacServletFilter.java:137)
            at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java: 188)
            at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:116)
            at com.adobe.framework.SecurityFilter.doFilter(SecurityFilter.java:206)
            at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java: 188)
            at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:116)
            at com.adobe.framework.SessionBundleFilter.doFilter(SessionBundleFilter.java:135)
            at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java: 188)
            at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:116)
            at com.adobe.repository.ui.aac.CharacterEncodingFilter.doFilter(CharacterEncodingFilter.java :76)
            at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java: 188)
            at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:116)
            at com.ibm.ws.webcontainer.filter.WebAppFilterChain._doFilter(WebAppFilterChain.java:77)
            at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:908)
            at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:934)
            at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:502)
            at com.ibm.ws.webcontainer.servlet.ServletWrapperImpl.handleRequest(ServletWrapperImpl.java: 179)
            at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:3933)
            at com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java:276)
            at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:931)
            at com.ibm.ws.webcontainer.WSWebContainer.handleRequest(WSWebContainer.java:1583)
            at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:186)
            at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink .java:452)
            at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewRequest(HttpInboundLink.jav a:511)
            at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.processRequest(HttpInboundLink.java: 305)
            at com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete(HttpICLReadCallback.jav a:83)
            at com.ibm.ws.ssl.channel.impl.SSLReadServiceContext$SSLReadCompletedCallback.complete(SSLRe adServiceContext.java:1784)
            at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionLi stener.java:165)
            at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:217)
            at com.ibm.io.async.AsyncChannelFuture.fireCompletionActions(AsyncChannelFuture.java:161)
            at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:138)
            at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:204)
            at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:775)
            at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:905)
            at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1604)
    [11/2/12 17:54:49:744 EDT] 00000033 DMAdapter     I com.ibm.ws.ffdc.impl.DMAdapter getAnalysisEngine FFDC1009I: Analysis Engine using data base: /wsste/wasapps/OLF/WASv70/profiles/nhwsutgCell/nhwsutg/properties/logbr/ffdc/adv/ffdcdb.x ml
    [11/2/12 17:54:50:706 EDT] 00000033 FfdcProvider  W com.ibm.ws.ffdc.impl.FfdcProvider logIncident FFDC1003I: FFDC Incident emitted on /wsste/wasapps/OLF/WASv70/profiles/nhwsutgCell/nhwsutg/logs/ffdc/ADB_nhwsutgServer1_55fa5 5fa_12.11.02_17.54.49.6837809252540716734891.txt com.ibm.ejs.container.LocalExceptionMappingStrategy.setUncheckedException 178
    [11/2/12 17:54:50:715 EDT] 00000033 LocalTranCoor E   WLTC0017E: Resources rolled back due to setRollbackOnly() being called.
    [11/2/12 17:54:51:544 EDT] 00000033 FfdcProvider  W com.ibm.ws.ffdc.impl.FfdcProvider logIncident FFDC1003I: FFDC Incident emitted on /wsste/wasapps/OLF/WASv70/profiles/nhwsutgCell/nhwsutg/logs/ffdc/ADB_nhwsutgServer1_55fa5 5fa_12.11.02_17.54.50.7232356566147224587866.txt com.ibm.ejs.csi.TranStrategy.rollback 375
    [11/2/12 17:54:51:552 EDT] 00000033 CommandProces E   Application Administration: com.adobe.pof.schema.AttributeNotFoundException: Attribute: head_application_configuration_uuid does not exist on object-type: dsc.sc_application.
                                     java.lang.RuntimeException: com.adobe.pof.schema.AttributeNotFoundException: Attribute: head_application_configuration_uuid does not exist on object-type: dsc.sc_application.
            at com.adobe.repository.ui.aac.struts.actions.SwitchArchivesPageAction.execute(SwitchArchive sPageAction.java:190)
            at com.adobe.repository.ui.aac.struts.actions.CommandProcessorAction.execute(CommandProcesso rAction.java:228)
            at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
            at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
            at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
            at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:718)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:831)
            at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1657)
            at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1597)
            at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:131)
            at com.adobe.repository.ui.aac.AacServletFilter.doFilter(AacServletFilter.java:137)
            at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java: 188)
            at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:116)
            at com.adobe.framework.SecurityFilter.doFilter(SecurityFilter.java:206)
            at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java: 188)
            at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:116)
            at com.adobe.framework.SessionBundleFilter.doFilter(SessionBundleFilter.java:135)
            at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java: 188)
            at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:116)
            at com.adobe.repository.ui.aac.CharacterEncodingFilter.doFilter(CharacterEncodingFilter.java :76)
            at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java: 188)
            at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:116)
            at com.ibm.ws.webcontainer.filter.WebAppFilterChain._doFilter(WebAppFilterChain.java:77)
            at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:908)
            at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:934)
            at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:502)
            at com.ibm.ws.webcontainer.servlet.ServletWrapperImpl.handleRequest(ServletWrapperImpl.java: 179)
            at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:3933)
            at com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java:276)
            at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:931)
            at com.ibm.ws.webcontainer.WSWebContainer.handleRequest(WSWebContainer.java:1583)
            at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:186)
            at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink .java:452)
            at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewRequest(HttpInboundLink.jav a:511)
            at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.processRequest(HttpInboundLink.java: 305)
            at com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete(HttpICLReadCallback.jav a:83)
            at com.ibm.ws.ssl.channel.impl.SSLReadServiceContext$SSLReadCompletedCallback.complete(SSLRe adServiceContext.java:1784)
            at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionLi stener.java:165)
            at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:217)
            at com.ibm.io.async.AsyncChannelFuture.fireCompletionActions(AsyncChannelFuture.java:161)
            at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:138)
            at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:204)
            at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:775)
            at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:905)
            at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1604)
    Caused by: com.adobe.pof.schema.AttributeNotFoundException: Attribute: head_application_configuration_uuid does not exist on object-type: dsc.sc_application.
            at com.adobe.idp.applicationmanager.client.ApplicationManagerClient.callApplicationManager(A pplicationManagerClient.java:98)
            at com.adobe.idp.applicationmanager.client.ApplicationManager.getApplications(ApplicationMan ager.java:336)
            at com.adobe.repository.ui.aac.struts.actions.SwitchArchivesPageAction.execute(SwitchArchive sPageAction.java:168)
            ... 45 more
    Caused by: com.adobe.pof.schema.AttributeNotFoundException: Attribute: head_application_configuration_uuid does not exist on object-type: dsc.sc_application.
            at com.adobe.idp.dsc.boi.BOIApplicationBase.getHeadApplicationConfigurationUuid(BOIApplicati onBase.java:240)
            at com.adobe.idp.applicationmanager.application.impl.ApplicationStoreImpl.getApplications(Ap plicationStoreImpl.java:515)
            at com.adobe.idp.applicationmanager.application.impl.ApplicationRegistryImpl.getApplications (ApplicationRegistryImpl.java:906)
            at com.adobe.idp.applicationmanager.service.ApplicationManagerService.getApplications(Applic ationManagerService.java:1206)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:60)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37)
            at java.lang.reflect.Method.invoke(Method.java:611)
            at com.adobe.idp.dsc.component.impl.DefaultPOJOInvokerImpl.invoke(DefaultPOJOInvokerImpl.jav a:118)
            at com.adobe.idp.applicationmanager.invoker.ApplicationInvoker.invoke(ApplicationInvoker.jav a:38)
            at com.adobe.idp.dsc.interceptor.impl.InvocationInterceptor.intercept(InvocationInterceptor. java:140)
            at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
            at com.adobe.idp.dsc.interceptor.impl.DocumentPassivationInterceptor.intercept(DocumentPassi vationInterceptor.java:53)
            at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
            at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor$1.doInTransaction(Transa ctionInterceptor.java:74)
            at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionCMTAdapterBean.execute(EjbTr ansactionCMTAdapterBean.java:357)
            at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionCMTAdapterBean.doSupports(Ej bTransactionCMTAdapterBean.java:227)
            at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EJSLocalStatelessEjbTransactionCMTAdapter_ caf58c4f.doSupports(Unknown Source)
            at com.adobe.idp.dsc.transaction.impl.ejb.EjbTransactionProvider.execute(EjbTransactionProvi der.java:104)
            at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor.intercept(TransactionInt erceptor.java:72)
            at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
            at com.adobe.idp.dsc.interceptor.impl.InvocationStrategyInterceptor.intercept(InvocationStra tegyInterceptor.java:55)
            at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
            at com.adobe.idp.dsc.interceptor.impl.InvalidStateInterceptor.intercept(InvalidStateIntercep tor.java:37)
            at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
            at com.adobe.idp.dsc.interceptor.impl.AuthorizationInterceptor.intercept(AuthorizationInterc eptor.java:188)
            at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
            at com.adobe.idp.dsc.interceptor.impl.JMXInterceptor.intercept(JMXInterceptor.java:48)
            at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
            at com.adobe.idp.dsc.engine.impl.ServiceEngineImpl.invoke(ServiceEngineImpl.java:115)
            at com.adobe.idp.dsc.routing.Router.routeRequest(Router.java:129)
            at com.adobe.idp.dsc.provider.impl.base.AbstractMessageReceiver.routeMessage(AbstractMessage Receiver.java:93)
            at com.adobe.idp.dsc.provider.impl.vm.VMMessageDispatcher.doSend(VMMessageDispatcher.java:20 9)
            at com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat cher.java:66)
            at com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:208)
            at com.adobe.idp.applicationmanager.client.ApplicationManagerClient.callApplicationManager(A pplicationManagerClient.java:78)
            ... 47 more
    I did run the LCM to see if that fix the issue, but it failed at Db initializing. error as below:
    [2012-11-02 17:38:50,723], SEVERE, Thread-11, com.adobe.livecycle.bootstrap.client.BootstrapRequestClient, com.adobe.livecycle.bootstrap.BootstrapException: ALC-TTN-011-031: Bootstrapping failed for platform component [DocumentServiceContainer].  The wrapped exception's message reads:
    See nested exception; nested exception is: com.adobe.pof.schema.RelationNotFoundException: Relation: application_configuration does not exist on object-type: dsc.sc_application.
            at com.adobe.livecycle.bootstrap.bootstrappers.DSCBootstrapper.bootstrap(DSCBootstrapper.jav a:73)
            at com.adobe.livecycle.bootstrap.framework.ManualBootstrapInvoker.invoke(ManualBootstrapInvo ker.java:78)
            at com.adobe.livecycle.bootstrap.framework.BootstrapServlet.doGet(BootstrapServlet.java:156)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:718)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:831)
            at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1657)
            at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:939)
            at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:502)
            at com.ibm.ws.webcontainer.servlet.ServletWrapperImpl.handleRequest(ServletWrapperImpl.java: 179)
            at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(CacheServletWrapper.jav a:91)
            at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:864)
            at com.ibm.ws.webcontainer.WSWebContainer.handleRequest(WSWebContainer.java:1583)
            at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:186)
            at com.ibm.ws.ard.channel.ARDChannelConnLink.handleDiscrimination(ARDChannelConnLink.java:18 8)
            at com.ibm.ws.ard.channel.ARDChannelConnLink.ready(ARDChannelConnLink.java:93)
            at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink .java:452)
            at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewRequest(HttpInboundLink.jav a:511)
            at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.processRequest(HttpInboundLink.java: 305)
            at com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete(HttpICLReadCallback.jav a:78)
            at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionLi stener.java:165)
            at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:217)
            at com.ibm.io.async.AsyncChannelFuture.fireCompletionActions(AsyncChannelFuture.java:161)
            at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:138)
            at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:204)
            at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:775)
            at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:905)
            at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1604)
    Caused by: javax.ejb.EJBException: See nested exception; nested exception is: com.adobe.pof.schema.RelationNotFoundException: Relation: application_configuration does not exist on object-type: dsc.sc_application.
            at com.adobe.pof.odapi.POFSchemaManagerImpl.synchronizeAll(POFSchemaManagerImpl.java:1127)
            at com.adobe.pof.odapi.POFSchemaManagerRemoteBean.synchronizeAll(POFSchemaManagerRemoteBean. java:511)
            at com.adobe.pof.odapi.EJSLocalStatelessadobe_POFSchemaManagerLocalEJB_626825cc.synchronizeA ll(Unknown Source)
            at com.adobe.pof.odapi.POFSchemaManagerLocalEJBAdapter.synchronizeAll(POFSchemaManagerLocalE JBAdapter.java:135)
            at com.adobe.idp.dsc.initializer.DSCInitializerBean.installSchema(DSCInitializerBean.java:20 1)
            at com.adobe.idp.dsc.initializer.DSCInitializerBean.bootstrap(DSCInitializerBean.java:94)
            at com.adobe.idp.dsc.initializer.EJSLocalStatelessDSCInitializerBeanLocalEJB_7bb34e85.bootst rap(Unknown Source)
            at com.adobe.livecycle.bootstrap.bootstrappers.DSCBootstrapper.bootstrap(DSCBootstrapper.jav a:68)
            ... 26 more
    Caused by: com.adobe.pof.schema.RelationNotFoundException: Relation: application_configuration does not exist on object-type: dsc.sc_application.
            ... 34 more
    [2012-11-02 17:38:50,735], INFO, Thread-11, com.adobe.livecycle.lcm.feature.bootstrap.BootstrapTask, Completing task: com.adobe.livecycle.lcm.feature.bootstrap.BootstrapTask@4c144c14 isDone:true
    [2012-11-02 17:38:50,735], INFO, Thread-11, com.adobe.livecycle.lcm.feature.bootstrap.BootstrapTask, Completing task: com.adobe.livecycle.lcm.feature.bootstrap.BootstrapTask@4c144c14 isDone:true
    [2012-11-02 17:38:50,736], SEVERE, Thread-11, com.adobe.livecycle.lcm.feature.bootstrap.BootstrapTask, Task failed
    com.adobe.livecycle.bootstrap.BootstrapException: ALC-TTN-103-000: Bootstrapping request failed on server.  Message from server:
    ALC-TTN-011-031: Bootstrapping failed for platform component [DocumentServiceContainer].  The wrapped exception's message
    reads:
    See nested exception; nested exception is: com.adobe.pof.schema.RelationNotFoundException: Relation: application_configuration does not
    exist on object-type: dsc.sc_application.
    Check application server logs for details.
            at com.adobe.livecycle.bootstrap.client.BootstrapRequestClient.analyzeResponse(BootstrapRequ estClient.java:152)
            at com.adobe.livecycle.bootstrap.client.BootstrapRequestClient.bootstrap(BootstrapRequestCli ent.java:63)
            at com.adobe.livecycle.bootstrap.client.BootstrapManager.executeStep(BootstrapManager.java:2 03)
            at com.adobe.livecycle.lcm.feature.bootstrap.BootstrapTask$ActualTask.<init>(BootstrapTask.j ava:125)
            at com.adobe.livecycle.lcm.feature.bootstrap.BootstrapTask$1.construct(BootstrapTask.java:58 )
            at com.adobe.livecycle.lcm.core.tasks.SwingWorker$2.run(SwingWorker.java:114)
            at java.lang.Thread.run(Thread.java:736)
    [2012-11-02 17:38:51,184], SEVERE, AWT-EventQueue-0, com.adobe.livecycle.lcm.feature.bootstrap.BootstrapDialog, Bootstrap exception
    com.adobe.livecycle.bootstrap.BootstrapException: ALC-TTN-103-000: Bootstrapping request failed on server.  Message from server:
    ALC-TTN-011-031: Bootstrapping failed for platform component [DocumentServiceContainer].  The wrapped exception's message
    reads:
    See nested exception; nested exception is: com.adobe.pof.schema.RelationNotFoundException: Relation: application_configuration does not
    exist on object-type: dsc.sc_application.
    Check application server logs for details.
            at com.adobe.livecycle.bootstrap.client.BootstrapRequestClient.analyzeResponse(BootstrapRequ estClient.java:152)
            at com.adobe.livecycle.bootstrap.client.BootstrapRequestClient.bootstrap(BootstrapRequestCli ent.java:63)
            at com.adobe.livecycle.bootstrap.client.BootstrapManager.executeStep(BootstrapManager.java:2 03)
            at com.adobe.livecycle.lcm.feature.bootstrap.BootstrapTask$ActualTask.<init>(BootstrapTask.j ava:125)
            at com.adobe.livecycle.lcm.feature.bootstrap.BootstrapTask$1.construct(BootstrapTask.java:58 )
            at com.adobe.livecycle.lcm.core.tasks.SwingWorker$2.run(SwingWorker.java:114)
            at java.lang.Thread.run(Thread.java:736)
    [2012-11-02 17:40:38,734], INFO, AWT-EventQueue-0, com.adobe.livecycle.lcm.feature.bootstrap.BootstrapDialog, onExit(com.adobe.livecycle.lcm.gui.LCMDialogExitEvent: CLOSE)
    Techstack: ES2 (9.5), AIX 6.1, Oracle 11gr2, WAS 7.0.0.17.
    Any one faced similar issue can add their inputs, How can we avoid such issues in future.
    Thanks in advance and much appreciated.
    Regards,
    Buddiga

    This error disappeared when we changed to the drivers ojdbc6.jar provided by Adobe along with the bundle. We were using the one that are available local to the system(default from oracle). I shall post more information if I see any other occurance.
    Hope this is helpful.

  • Clicked Touchpad does not release.

    With lent words from another thread: “Yesterday my touchpad would suddenly act as if I was holding it down, thus dragging stuff around the screen.”
    First, a click does not release anymore.
    Second I used a mouse and read, that updating the SL may repair this.
    Third I updated.
    Then: Nor the pad worked, nor the mouse are working.
    What to do, please? Re-installing?

    Karl Pfeiffer (.at) wrote:
    It does not help with the pad and disabled the MBP to use a keyboard.
    I'm not sure I understand. Did the update make it worse?
    Last: I can not boot from the Tiger DVD, not from the (dropped in) Leopard, not from the Snow DVD, not from the internal nor fom an external drive.
    Writing controled per Wacom Bluetooth Tablet…
    Sorry, I don't understand. You cannot boot from anything except the BT Wacom tablet, but the MBP will work fine with that?
    Some keyboard/trackpad issues are caused by the ribbon cable between the battery and the inside of the the battery compartment. Try removing the battery and booting with just the power cord attached, and see if the keyboard/trackpad work this way.

  • EM10gR2 Grid Control / Change Management Pack does not support TYPE objects

    I wonder any Oracle EM10gR2 Grid Control users, implementing Oracle Change Management Pack, have used it for the release and proper packages management.
    Issue1 - On an EM console / Web GUI the DDL comparison and synchronization is not supported at all. Implementing it @ customer it appeared that we have to install a 10g Java Client in order to use the code comparison and sync functionalities.
    Issue2 - and this is more serious - it appears that even with Java client in use, you cannot compare or sync objects related to TYPE or TYPE BODY data types. The comparison simply hangs.
    Asked help from support, they mentioned an ER from 8i and logged a new ER for 10g/11g. That is surprising especially as the doc (http://download.oracle.com/docs/html/A96679_01/toc.htm) about code comparison does not exclude the TYPE objects from the supported options.
    Any fellow DBA running to a same problem? What solutions & recommendations might you have?

    Hi Mugunthan,
    Can you provide links to any tutorial or example (screenshots) of using Setup Manager to transfer something between two environments (say Users or DFFs)?
    Thanks,
    Gareth

  • JMF Does not release the RTP ports

    Hi,
    I am working on a program that simply listens RTP messages from the network and play them on a PC. My datasource is created as follows:
    String url2= "rtp://127.0.0.1:10000/audio/1";
    medialocator=new MediaLocator(url2);
    ds=Manager.createDataSource(medialocator);
    This ds will later be given to a player for the local playback. It has a flow like this: DS->Processor->DS->Player.
    Everything works fine for the first execution. The stream is played. However when I stop the player, processor and even the ds, JMF does not realease the RTP ports. I still can see them in the netstat output. Heres how I try to release the resources:
    public void releaseResources(){
    try{
    if(player!=null){
    player.stop();
    player.deallocate();
    player=null;
    if(ds2!=null){
    ds2.stop();
    ds2.disconnect();
    ds2=null;
    if(processor!=null){
    processor.stop();
    processor.removeControllerListener(this);
    processor.deallocate();
    medialocator=null;
    ds=null;
    Because of this problem, when I try to do the same thing on the same url after sometime, it gives the error "Cannot create the RTP Session: Can't open local data port: 10000". The ports are released after I shutdown the JVM.
    Does anyone have an idea on how to release this ports in the same JVM session?
    Thanks a lot,
    Murat

    DataSource objects open a connection to their source, in your case, a connection to an RTP port. You need to call
    ds.disconnect()
    on both datasources, but SPECIFICLLY on ds (as opposed to ds2) if you want it to release the port.

  • Closing or Disposing the Connection Does Not Release Open Cursors

    Hi,
    I have an architecture like this:
    Web Service ---> Business COM+ Component ---> Data COM+ Component
    I found that doing a SetAbort() plus explicitly close and dispose the OracleConnection object in my COM+ component does not necessarily close the open cursor.
    The way I tested was I would call the same same service multiple times and do a "select * from v$open_cursor where user_name = 'xxx'", I would see a bunch of open cursors with exactly the same SQL_TEXT. The only way to close those open cursors seems to be killing the aspnet_wp.exe process in the Task Manager.
    Someone here suggested it might be .NET's problem but I don't think so since I had the same problem with OraMTS 9i.
    Can someone from Oracle help? Thanks.
    -Linus

    Neeraj,
    Thank you for your reply. I'd like to let you know that my company submitted a TSR ticket last year (around Oct.?) on this issue and it's still not fixed, yet. This problem prevents us from using COM+ to handle any transactions, which is not acceptable to us. Please try to raise the issue again to your development team if you can, we are depending on the fix.

  • PO when Finally Closed does not release funds

    In 11.5.9; if we final close a PO using standard "po_actions.close_po" procedure, the PO used to get Finally Closed and corresponding Funds get released.
    However, the same does not work in 11.5.10.
    I would be glad if anyone can help me in this regard. Please note that we are using encumbrance feature; hence it is a very critical issue.
    Thanks,
    M. Geethanath
    [email protected]

    In 11.5.9; if we final close a PO using standard "po_actions.close_po" procedure, the PO used to get Finally Closed and corresponding Funds get released.
    However, the same does not work in 11.5.10.
    I would be glad if anyone can help me in this regard. Please note that we are using encumbrance feature; hence it is a very critical issue.
    Thanks,
    M. Geethanath
    [email protected]

  • PS Touch Android does not release memory when closed.

    I have to force closure with Task Manager on my Samsung Note 2 running JB 4.1. Why and when will it be fixed?

    Hi Ignacio,
    Sorry for the lack of information - I had typed more complete description, but had trouble posting it.
    The app is installed on a Samsung Galaxy Note 2 phone that is running Jellybean 4.1.1.
    The only way I can see to exit the application is by using the "back" soft key under the screen on the right. Some apps have an "exit" choice under the "menu" soft key, but that key is not active with PSTouch.
    I see the same issue with Google Chrome. The menu key is active with this app, but it does not have an "exit" choice.
    With both these apps, I have to go to the "Active Apps" tab of the Task Manager to release memory.
    There is one difference with PS Touch. Google Chrome always starts the same way whether or not I release it's memory. With PS Touch, if I release memory after closing with the back key, the next time I start it I get an initial royal blue screen with the PS Touch icon in the middle followed by a second screen with a menu in the middle titled "New Project From". If I exit at that point, it takes two presses of the back key to first close the menu and then exit the program and return to a home screen. If I do not release memory, the next time I start PS Touch, it goes directly to the second screen, but without the "New Project From" menu.
    I hope this gives you the information you need.
                      Pete

  • Connection pooling does not work Oracle Objects! Oracle please respond!

    The problem is that when we retrieve Oracle Objects using pooled connection (closing logical connection at the end of every call)it takes 6-8 times longer than in case we share the same physical connection for all database calls. Parts of our application which do not utilize Oracle Objects (just old good relational data) works just fine with pooled connections - no performance degradation
    This is my reconstruction of f the what is happening behind the seen, so some parts can be not entirely correct.
    OracleConnection class caches StructDescriptor objects in descriptorCache hash table. StructDescriptor objects map content of oracle STRUCTs which are retrieved through the connection onto oracle type names. For example if you retrieve an instance of HR.EMPLOYEE_T oracle object from database some metadata will be retrieved and stored as an entry in descriptorCache cache table associated with "HR.EMPLOYEE_T" key to assist CustomDatum interface. It is a time consuming process and caching of this metadata improves it dramatically.
    Now when using pooled connection descriptorCache gets cleared when you close your logical connection (java.sql.Connection) so next time you get a connection from your pooled connection it will have to repopulate the cache which as I said is very time consuming. As a result even though we can reuse our physical connection by using pooled connection whole setup does not work - fetching metadata takes a long time and we cant use Oracle objects in EJB environment (or Servlet environment)
    Alex Roytman
    Peace Technology, Inc.
    (301) 206-9696
    null

    check out managed datasources in the manuals

Maybe you are looking for