Expiration and Clean up thread - MDM connector - Visual administrator

Hi Experts!
I  need some suggestion from the Visual administrator - MDM connector.
We have the default setting for maximum connections, clean up thread time and the expiration set.
As of now, clean up thread value is 300 seconds. and Expiration value is set too. But we could see, as the days goes, the number of connections in the 'UsedManagedSessionsCount' is increasing. I feel the expiration is not working.
Could you kindly suggest, how to ensure the expiration and clean up thread is working?
Thanks,
SK

Hello,
1) Connections are used quite a long time (this depends on how
applications using the datasource is implemented, or how long it keeps
the connections referenced). In this case the solution will be to:
  1.1) Increase the pool size: Maximum Connections Number. The optimal
value for this as a rule of thumb is: the max connections with which the
backend (Database) performs best divided to number of servers in the
cluster.
  1.2) Increase the Maximum time to wait for connection - so the
resource system of J2EE Engine will wait for freed connection longer
before throwing the exception. However, from end user viepoint, this
will lower the performance. But it's better than failure.
  1.3) Enable expiration - set Connection Lifetime to 300 (5 minutes) -
this means that after it is returned to the pool if not referred again
within 5 minutes it is destroyed. Also set the automatic cleanup thread
interval to 180 (3 minutes) - each 3 minutes a thread will be run to
detect idle connections.
regards,
John Feely

Similar Messages

  • How and where to install MDM Connector and MDM Java API

    Hi all
    I am installing MDM Server 5.5 and refering to Installation gude
    MDM 5.5 SP06 installation guide (Document Version 1.1 – December 10, 2007).  While installing Development and Portal components , We have to install MDM Connector and MDM JAVA API. I want to know whether the file JAVAAPI<version>.sca file is to extracted on MDM Server or SRM Server ( Using SDM). Please let me know
    Thanks in advance.
    Vitthal prabhu

    Hi Vitthal,
                 We have to install MDM Connector and MDM JAVA API.
    All these sca files that u got along with the business content needs to be deployed onto Web Application Server (recommended WAS 7.0 ).
    U can deploy these files with the help of SDM.
    Hope dis solves ur problem.
    Regards Tejas..............

  • Visual Administrator and ABAP Client Proxy (external web service)

    Hello,
    I have generated client proxy in SE80. Is it possible to see it in Visual Administrator?
    I need to make changes to some security setting and hoping to do it within Visual Administrator.
    Thanks,
    Alex

    Hi,
    I think that your are mixing things up.
    A client proxy in SE80 is in the Abap stack.
    Visual Administrator is used to configure the Java stack.
    Don't forget that the Netweaver application server is mostly a marketing myth.
    In real life there are a Netweaver  Abap application server and a Netweaver Java application server.
    These 2 application servers are sticked together with some "software glue"...
    Regards,
    Olivier

  • Remote MBeans in Visual Administrator

    Is it possible to register an MBean remotely, and have it accessible via the Visual Administrator?   (and shouldn't I see the bean using the monitoring service whether I extend BroadcastingStandardMBeanWrapper or not?)
    I've been through 3 or 4 iterations now, but here's a snippet of what I'm looking at currently. 
    MBeanServerConnection mbsc = m.connect();
    String pathInTheTree = "/Applications/Remote JMX";
    /* Create the Hello World MBean */
    Hello mbean = new Hello();
    ObjectName cl = ObjectNameFactory.getNameForClassLoader("sap.com/myclassloader", null, null);
    Properties p = new Properties();
    p.setProperty("admin.path", "/Cluster/MyMBean");
    p.setProperty("admin.displayName", "MyMBean");
    BroadcastingStandardMBeanWrapper wrapper = new BroadcastingStandardMBeanWrapper(mbean, null, p);
    ObjectName name = ObjectNameFactory.getNameForServerChildPerNode(ObjectName.quote(pathInTheTree), wrapper.getClass().getName(), null, null);
    if (mbsc.isRegistered(name)) {
        mbsc.unregisterMBean(name);
    mbsc.createMBean(wrapper.getClass().getName(), name, cl);
    Which yields the following stack trace:
    Exception in thread "main" javax.management.ReflectionException
         at com.sap.engine.services.jmx.MBeanServerConnectionImpl.invokeMbsInternal(MBeanServerConnectionImpl.java:523)
         at com.sap.engine.services.jmx.MBeanServerConnectionImpl.createMBean(MBeanServerConnectionImpl.java:128)
         at com.example.mbeans.Main.main(Main.java:57)
    Caused by: java.lang.NoSuchMethodException: com.sap.engine.services.basicadmin.mbean.BroadcastingStandardMBeanWrapper.<init>()
         at java.lang.Class.getConstructor0(Class.java:1937)
         at java.lang.Class.getConstructor(Class.java:1027)
         at com.sap.engine.services.jmx.CompletionInterceptor.instantiate(CompletionInterceptor.java:632)
         at com.sap.engine.services.jmx.CompletionInterceptor.createMBean(CompletionInterceptor.java:272)
         at com.sap.engine.services.jmx.CompletionInterceptor.createMBean(CompletionInterceptor.java:250)
         at com.sap.pj.jmx.server.interceptor.BasicMBeanServerInterceptor.createMBean(BasicMBeanServerInterceptor.java:94)
         at com.sap.engine.services.jmx.RedirectInterceptor.createMBean(RedirectInterceptor.java:157)
         at com.sap.pj.jmx.server.interceptor.MBeanServerInterceptorChain.createMBean(MBeanServerInterceptorChain.java:202)
         at com.sap.engine.services.jmx.MBeanServerSecurityWrapper.createMBean(MBeanServerSecurityWrapper.java:210)
         at com.sap.engine.services.jmx.MBeanServerInvoker.invokeMbs(MBeanServerInvoker.java:102)
         at com.sap.engine.services.jmx.ClusterInterceptor.invokeMbs(ClusterInterceptor.java:212)
         at com.sap.engine.services.jmx.ClusterInterceptor.createMBean(ClusterInterceptor.java:391)
         at com.sap.engine.services.jmx.MBeanServerInterceptorInvoker.invokeMbs(MBeanServerInterceptorInvoker.java:75)
         at com.sap.engine.services.jmx.connector.p4.P4ConnectorServerImpl.invokeMbs(P4ConnectorServerImpl.java:61)
         at com.sap.engine.services.jmx.connector.p4.P4ConnectorServerImplp4_Skel.dispatch(P4ConnectorServerImplp4_Skel.java:64)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:320)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:198)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:129)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    This seems to be due to the absence of a no-arg contructor (which is not required by the spec, IIUC), so I hacked around that by wrapping the wrapper (aack) and delegating method invocations appropriately...  This runs normally, but I still don't see my MBeans in the visual admin console.
    Thoughts, anyone?
    TIA,
    Bill

    Figured it out myself.  Was using the wrong MBeanServerConnection.createMBean method - the one that tries to instantiate the mbean with a no-arg constructor.  <:-|
    Should have been:
    Hello mbean = new Hello();
    Object[] params = new Object[] { mbean, HelloMBean.class, p };
    String[] sig = new String[] { "java.lang.Object", "java.lang.Class", "java.util.Properties" };
    mbsc.createMBean(wrapperClass, objectName, classloaderName, params, sig);

  • ERROR in Document Services Configuration through visual administrator

    Hi Experts,
                   I am using NETWEAVER 7.0 , I am getting error when i am trying to do 'Document Services Configuration' and 'Document Services License Service' through visual administrator message is
    "[permissions_collection_operator]: [permission_collection]:  domain's permissions: [
      standalone: [, ]
      collections:
    {(java.lang.RuntimePermission loadLibrary)(java.lang.RuntimePermission queuePrintJob)(java.lang.RuntimePermission stopThread)}
    {(java.net.SocketPermission localhost:1024- listen,resolve)(java.net.SocketPermission * connect,resolve)}
    {(java.util.PropertyPermission java.version read)(java.util.PropertyPermission java.vm.name read)(java.util.PropertyPermission java.vm.vendor read)(java.util.PropertyPermission os.name read)(java.util.PropertyPermission java.vendor.url read)(java.util.PropertyPermission java.vm.specification.vendor read)(java.util.PropertyPermission java.specification.vendor read)(java.util.PropertyPermission os.version read)(java.util.PropertyPermission java.specification.name read)(java.util.PropertyPermission java.class.version read)(java.util.PropertyPermission file.separator read)(java.util.PropertyPermission os.arch read)(java.util.PropertyPermission java.vm.version read)(java.util.PropertyPermission java.vm.specification.name read)(java.util.PropertyPermission java.specification.version read)(java.util.PropertyPermission java.vendor read)(java.util.PropertyPermission java.vm.specification.version read)(java.util.PropertyPermission * read)(java.util.PropertyPermission path.separator read)(java.util.PropertyPermission line.separator read)}
    {(java.io.FilePermission * read,write)}
    And error when double click on  ''Document Services License Service' message is -
    "Error while loading service Document Services License Service
    java.lang.ClassNotFoundException: com.adobe.service.sap.licensing.AdminUI"
    Thanks & Regards
    Anirudh Saini

    You have the ads_agent pw set incorrectly on the java side. -- I think

  • ABOUT "connecttion lifetime" and "clean thread"

    Hi expert, can you explain what "connection lifetime" and "clean thread" mean in JDBC Connector service to me ?thanks

    Hi Justin,
    Though I am no developer, here's what I found:
    The JDBC Connector Service is a resource adapter based on the Java Database Connectivity (JDBC) standard to enable you to connect to databases. It creates, manages, and stores in a pool the DataSource objects that are used to obtain physical connections to a database.
    Next comes a document type definition (DTD) which is used for producing XML files for the creation of DataSource objects. What you asked are elements used to define this DTD. Explanation is:
    1. ELEMENT expiration-control (connection-lifetime, run-cleanup-thread)
    Connection-lifetime element specifies a period in seconds, after which the connection expires.
    Used in: expiration-control
    2. ELEMENT run-cleanup-thread (#PCDATA)
    Isolation-level element determines a transaction isolation level for the DataSource object. If you do not specify the isolation level, the system uses the default isolation level of the used database.
    Used in: data-source
    ELEMENT isolation-level (#PCDATA)
    Sql-engine element defines what type of connection the system should return.
    Valid values:
    Open_SQL u2013 the system returns a DBI CommonConnection
    Native_SQL u2013 the system returns a DBI DirectConnection
    Vendor_SQL u2013 the system returns a standard connection from JDBC driver (not using DBI at all)
    Used in: data-source
    Please follow Link: [http://help.sap.com/saphelp_nw2004s/helpdata/en/64/0bee3da7138e5be10000000a114084/frameset.htm]
    Please reward points if that helped.
    regards, Sean.

  • Unable to connect to NWA and Visual administrator

    HI all - I have Java stack installed i at its own database which coexists with another ABAP stack on same virtual machine.
    I am not able to connect to Visual administrator to install the saplicens. connection error is as follow
    Unable to connect to hostname:50104.
    I have checked the value of p4 using configtool and it is 50104.
    I have 2 extra emergency users that I have created to make sure if do not face user errors. Since DNS is not resolving FQHN, I have updates /etc/hosts file in my pc to make sure there are no network issues.
    The only error I see is in ms_dev which is indicating saplicense has been expired.
    Any idea, how to solve this problem?
    DB= Oracle 10.2.0.2
    CRM JAVA 7.0 EHP1
    CRM ABAP 7.0 EHP1
    Instances CJX(Java instance) and CSX (ABAP)
    Tnsnames Listener and tnscsx
    Your help is appreciated.
    Regards
    K

    Hi Sunny, Thx for taking a look. I think I am in right direction after checking the logs. I did not have a chance to configure UME afterthe  install. I am not sure if I should use APAP stack as the source. In the same time, My license is expired and can not connect to NWA or Visual admin.
    Here are the logs
    System trace:
    #1.#C0000A6717E800020000000001762FC700047ECE97733050#1265325676114#/System/Serve
    r/VisualAdministrationTool##com.sap.engine.services.adminadapter.gui.tasks.Login
    Task#######Thread[Thread-9,6,main]##0#0#Error#1#/System/Server/VisualAdministrat
    ionTool#Plain###Error while trying to login to localhost: Cannot create new Remo
    teLoginContext.#
    Trace files:
    #1.#C0000A6717E800010000000101762FC700047ECE910D3800#1265325568767#com.sap.engin
    e.services.adminadapter.gui.tasks.LoginTask##com.sap.engine.services.adminadapte
    r.gui.tasks.LoginTask#######Thread[Thread-5,6,main]##0#0#Error#1#/System/Server/
    VisualAdministrationTool#Java###Error while trying to login to localhost: Cannot
    create new RemoteLoginContext.
    [EXCEPTION]
    #1#com.sap.engine.services.security.exceptions.BaseLoginException: Cannot cr
    eate new RemoteLoginContext.
            at com.sap.engine.services.security.remote.login.RemoteLoginContext.<ini
    t>(RemoteLoginContext.java:71)
            at com.sap.engine.services.adminadapter.gui.tasks.LoginTask.connectActio
    n(LoginTask.java:98)
            at com.sap.engine.services.adminadapter.gui.tasks.LoginTask.run(LoginTas
    k.java:81)
            at java.lang.Thread.run(Thread.java:534)
    Caused by: com.sap.engine.services.rmi_p4.P4IOException: Cannot open connection
    on host: 10.103.23.232 and port: 50104
            at com.sap.engine.services.rmi_p4.P4ObjectBrokerClientImpl.getException(
    P4ObjectBrokerClientImpl.java:706)
            at com.sap.engine.services.rmi_p4.ConnectionManager.getConnection(Connec
    tionManager.java:257)
            at com.sap.engine.services.rmi_p4.P4ObjectBrokerClientImpl.resolveInitia
    lReference(P4ObjectBrokerClientImpl.java:154)
            at com.sap.engine.services.rmi_p4.P4ObjectBrokerClientImpl.resolveInitia
    lReference(P4ObjectBrokerClientImpl.java:113)
            at com.sap.engine.services.rmi_p4.P4ObjectBrokerClientImpl.resolveInitia
    lReference(P4ObjectBrokerClientImpl.java:109)
            at com.sap.engine.services.security.remote.login.RemoteLoginContext.<ini
    t>(RemoteLoginContext.java:60)
            ... 3 more
    Visualadmin console:
    log generation timestamp : 2010_02_04_at_07_55_27
    Feb 4, 2010 7:56:45 AM [1265291805268]:Error   : Thread[Thread-9,5,main]
                         com.sap.engine.services.rmi_p4:    com.sap.engine.services.
    rmi_p4.Parser newRequest MSG:The possible problem is that there is no correctly
    working server node available. Check your working servers
    Feb 4, 2010 8:02:41 AM [1265292161634]:Error   : Thread[Thread-23,6,main]
                         com.sap.engine.services.rmi_p4:    com.sap.engine.services.
    rmi_p4.Parser newRequest MSG:The possible problem is that there is no correctly
    working server node available. Check your working servers

  • Opening and cleaning a Macbook Pro (retina 2012)

    I have had my MacBook Pro retina for more than 2 years, without cleaning the insides yet
    I have used it extensively, many hours every day, and there has been periods of daily smoking
    Should I just order a screwdriver set (pentalobe?), open it and clean the fans etc.?
    I assume warranty is already expired.
    But will opening and cleaning it be complicated or risky business? I'm good with electronics, but Apple uses small and delicate screws/parts etc.
    Should I use a swab, compressed air container, or will a vacuum cleaner do? (metal/plastic head; static electricity)

    Mow.gli wrote:
    Should I just order a screwdriver set (pentalobe?), open it and clean the fans etc.?
    I would.  I open up my MBPs without fear.  I suggest that you place it on a large surface with a clean towel underneath.  That way you can slide it around without damage and when you drop a screw, it will tend NOT to bounce away.
    I assume warranty is already expired.
    Yes, unless you purchased Apple care which extends it to three years.
    But will opening and cleaning it be complicated or risky business? I'm good with electronics, but Apple uses small and delicate screws/parts etc.
    Should I use a swab, compressed air container, or will a vacuum cleaner do? (metal/plastic head; static electricity)
    I do not consider it risky if you use patience and a little common sense.  You may also need a #00 Phillips driver and possibly a Torx driver.  Check the iFixit.com web site for disassembly instructions for you model and appropriate tools.  That way you will have an idea what to expect.  Swabs with a non-residue electronics cleaner and compressed air are good ideas.  A vacuum cleaner should be used very judiciously.
    Ciao.

  • Cleaning the 30 pin connector

    I took my phone to the Apple store to have the 30 pin connector looked at. They said there was corrosion on the connector and that was affecting the charging. I'm considering using contact cleaner from Radio Shack. I'm looking for ideas on how to apply it and clean the contacts in such a small space.

    I'd get a good stiff ESD brush & use that first. Best to keep all liquids away from your phone.

  • My subscription has expired and I want to cancel

    My subscription has expired and I want to cancel it, each day I get an email from Adobe informing me my credit card information has been declined.. How do I cancel and remove the old credit card information?

    This is an open forum, not Adobe support... You need Adobe support to cancel a subscription
    -start here https://forums.adobe.com/thread/1703848
    -or by telephone http://helpx.adobe.com/x-productkb/global/phone-support-orders.html
    --and two links which may provide more details, if the above links don't help you
    -http://helpx.adobe.com/x-productkb/policy-pricing/return-cancel-or-change-order.html
    -http://helpx.adobe.com/x-productkb/policy-pricing/cancel-membership-subscription.html

  • Expired subscription clean up job failing

    the history message from the step:
    Date 19/11/2014 08:41:11
    Log Job History (Expired subscription clean up)
    Step ID 1
    Server TV-SQL1
    Job Name
    Expired subscription clean up
    Step Name Run agent.
    Duration 00:00:01
    Sql Severity 16
    Sql Message ID 1934
    Operator Emailed
    Operator Net sent
    Operator Paged
    Retries Attempted 0
    Message
    Executed as user: IBA\xxx. DELETE failed because the following SET options have incorrect settings: 'ANSI_NULLS, QUOTED_IDENTIFIER'. Verify that SET options are correct for use with indexed views and/or indexes on computed columns and/or filtered indexes and/or
    query notifications and/or XML data type methods and/or spatial index operations. [SQLSTATE 42000] (Error 1934).  The step failed.
    when I run the step manually I get:
    Msg 1934, Level 16, State 1, Line 1
    DELETE failed because the following SET options have incorrect settings: 'ANSI_NULLS, QUOTED_IDENTIFIER'. Verify that SET options are correct for use with indexed views and/or indexes on computed columns and/or filtered indexes and/or query notifications and/or
    XML data type methods and/or spatial index operations.
    Msg 20709, Level 16, State 1, Procedure sp_MScleanup_conflict, Line 66
    The merge process could not clean up the conflict table "[MSmerge_conflict_recordings_items]" for publication "recordings".
    I think I know which table (items in db recordings). it has a computed field with a replicated text index on it.
    the computed field definition is:
    (ltrim(isnull([item_title],'')+' ')+isnull([item_desc],'')) which are 2 other fields in the table nvarchar allowing nulls.
    what do I need to do to stop the cleanup job from crashing.
    thanx
    david

    Which version of SQL are you using?
    Did you check this article -
    http://blogs.msdn.com/b/sqlserverfaq/archive/2014/11/13/merge-replication-expired-subscription-clean-up-job-sp-expired-subscription-cleanup-sp-mscleanup-conflict-fails-with-error-msg-1934-level-16-state-1-and-msg-20709-level-16-state-1-procedure-sp-mscleanup-conflict.aspx
    Regards, Ashwin Menon My Blog - http:\\sqllearnings.com

  • I've had CC Student Subscription for over a year - - Over the last few months when I try to sign in, I get message saying "I've Signed Out". When I go to CS6, it says my trial is expired and I must purchase. Is there something I can do to stop this madnes

    I've had CC Student Subscription for over a year - - Over the last few months when I try to sign in, I get message saying "I've Signed Out". When I go to CS6, it says my trial is expired and I must purchase. Is there something I can do to stop this madness?

    Sign Out When Sign In http://forums.adobe.com/thread/1450581?tstart=0 may help
    -and http://helpx.adobe.com/creative-cloud/kb/unable-login-creative-cloud-248.html
    And, just in case you ever have this problem...
    BLANK Cloud Screen http://forums.adobe.com/message/5484303
    -and step by step http://forums.adobe.com/thread/1440508?tstart=0
    -and http://helpx.adobe.com/creative-cloud/kb/blank-white-screen-ccp.html

  • Every day Expired subscription clean up job fails on publisher server

    Dear All,
    Few days back I configured transactional replication b/w 2 server after that every day I noticed
    Expired subscription clean up job fails on publisher server but not any effect to replication it's going smooth.
    ERROR MESSAGE:
    Only functions and some extended stored procedures can be executed from within a function. [SQLSTATE 42000] (Error 557).  The step failed
    please help me!!!
    Thank In Advance!!!
    mastanvali shaik

    Actuvally already I configured replication for this server 3 database after we moved to another server for some h/w issue.
    that time we deleted subscriber and publisher and break transaction replication.
    after new server configuration it's allow to configure replication for 2 databases only.
    as per above query I found category 1 for 3 databases but 2 databases are in replication.
    the another databases that showing category 1 is past in replication, but it doesn't allow to configure replication.
    please give me solution for same .
    Db name
    dbid
    sid
    mode
    status
    status2
    category
    cmptlevel
    version
    ABCD
    7
      0x010500000000000515000000C953D90F09EF4A00F4EBEF3281230000
    0
    65536
    1090519040
    1
    100
    661
     -replication running
    FGH
    11  
    0x010500000000000515000000C953D90F09EF4A00F4EBEF3281230000
    0
    65536
    1090519040
    1
    100
    661
    - not allowing for   replication
    XYZ
    12
       0x0105000000000005150000006FE21C5B049413F15AD147AEF4010000
    0
    65536
    1090519040
    1
    100
    661
     -replication running
    past replication working for three databases
    mastanvali shaik

  • How do I fully and cleanly uninstall unwanted apps?

    Have recently swapped from a Windows machine to a brand new and customised iMac. I've therefore had to accept that the OS is Mavericks and that pre-loaded on the machine are iPhoto and the iWork suite. I now wish to remove, if permitted, the following of these from the machine:
    iPhoto
    Keynote
    Numbers
    Games
    How can I do this fully and cleanly? I gather that you can do a 'shake' test for an app you want to delete from the machine and, if it's permitted to remove the app, you then drag its icon on to the Trash. But as I understand it this doesn't necessarily remove other extraneous files associated with the app. So, how do I discover what those are, where they're located, and what exactly to do with them?
    Incidentally, of the iWork suite I've decided to keep Pages.
    I'm a little concerned that perhaps uninstalling these apps might remove some files that are shared with other apps on the machine, including functions built into the operating system. Will that conceivably happen? Is iPhoto, for example, required to display images in Apple Mail, and is it also required for me to be able to import RAW and other images from a camera using direct drag 'n drop (into a folder of my own choosing)? And what about Preview? Will that get removed along with iPhoto?
    I only do serious work on my computer, and I want to keep this machine's contents lean and clean.

    Barney and Tony,
    Not sure if this reply will appear in the correct sequence in the discussion thread but I've had a look at those folders and files you mentioned, Barney. There was nothing in most of them. Library/Extensions exists as System/Library on my setup but I saw nothing in it pertaining to any of the three apps concerned.
    In <System>/Applications/Numbers/Contents I found such cryptic folders as:
    _Code Signature
    _MAS Receipt
    info.plist
    MAC OS
    Pkg info
    etc
    but, again, looking in these folders yielded nothing that appeared remotely associated with any of the three apps. In searches like this you can get right down to the very coding level if you wish, it seems. However, unless you're familiar with the coding you've no idea as to what these functions are, or how they interact with other apps and processes. And I'm certainly not.
    One thing I did come across, however, happened when I was looking at one of the more hidden-away user functions of the Apple Mail client and I noticed that apps such as iPhoto and PhotoBooth are involved in importing images into the client. That being so, it might be better for me not to remove iPhoto, since I use and rely on Apple Mail quite a lot.
    All in all, it's difficult for me to make an informed judgement on this. Possibly, Apple's now organised the uninstall of certain apps in a much fuller and cleaner way than before and so perhaps all I'd need to do, in reality, is to perform the 'wiggle' uninstall. But I just don't know. And there's always the danger that removing what are now some quite embedded apps could cause some other related app or utility to not function properly from hereon. So, in the end, I might have to just concede that I'm stuck with these apps.
    Possibly, the only way of ridding my machine of them is for me to perform at a later date a major cleanup, completely wiping the HD, and reinstalling Mavericks from scratch.
    If only Apple had never installed those apps in the first place! Why on earth did they have to be compulsory?! So much for Apple and their products being user-friendly! I'm disappointed in Apple over this.

  • After trial version expired and purchasing creative cloud membership programs still will not open

    I keep getting "trial version expired" even though I have purchased the cloud membership around 3 weeks ago.  I did the chat with someone who had me remove my cache, which did work for me to run Photoshop, but not for Dreamweaver.  I installed a patch for the download manager that did not work as well.  I have installed and uninstalled multiple times with no luck, and now have a project due Thursday!!  Please help!!

    I don't think these issues pertain to mine.  There is something getting mixed up between my trail version (expired) and my new Creative Cloud subscription.  Its like it can't see it for some reason.  I was able to get Photoshop to work but Dreamweaver is being stubborn!! Please help my project is now due tomorrow... !! Thanks!
    From: [email protected]
    To: [email protected]
    Subject: After trial version expired and purchasing creative cloud membership programs still will not open
        Re: After trial version expired and purchasing creative cloud membership programs still will not open
        created by Mylenium in Downloading, Installing, Setting Up - View the full discussion
    Sign in or activation errors | CS6, CS5.5 Subscriptions, CS6 Perpetual Mylenium
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5162797#5162797
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5162797#5162797
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5162797#5162797. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Downloading, Installing, Setting Up by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

Maybe you are looking for

  • Adobe Reader cannot play embedded Flash content

    I don't know why, the Flash format was originally created by Macromedia, and then Adobe acquired the company, but the Adobe Reader cannot display Flash content. My PDF file is here: http://genifer.googlecode.com/files/agi-book.pdf Scroll to page 37.

  • Max Size for a message thru SAP PI 7.0 SPS13

    Hi,      I have a problem with a very large message. The scenario is a JDBC -> SAP PI -> ABAP Proxy. I'm getting this error: ErrorTransmitting the message to endpoint http://<server>:8000/sap/xi/engine?type=entry using connection JDBC_http://sap.com/

  • Can't boot after system update - INIT: No inittab file found

    Hi i've a pc where i installed arch linux more than one year ago Its a: PentiumII 400mhz 192mb ram 2 harddrives (don't know if i use them as a lvm or if each consists of 2 partitions used as mountpoints) graphic card nvidia TNT2 i wanted to update it

  • Transpose or Pivot

    I am a new user to Oracle Reports and I am trying to convert many reports from our current environment in SAS. We have many reports in our current SAS environment in which we basically transpose (pivot) our data before we produce the report. There is

  • Take offline and then detach Database. Won't let me attach Database back into SQL Server...

    Hi, Read some other posts, but couldn't get it to work. Thanks in advance, Here is the error notice: