Does the JRE 1.5 is supported for the WLS 8.1SP3 client

Hi,
Does the JRE 1.5 is supported for the WLS 8.1SP3 client
Regards,
Ahamad

Hi,
Does the JRE 1.5 is supported for the WLS 8.1SP3 client
Regards,
Ahamad

Similar Messages

  • Does the IE CS6 version have Support for the Middle Eastern tool set? - left to right typing etc.

    Does the IE CS6 version have Support for the Middle Eastern tool set? - left to right typing etc.

    I assume IE means International English, as opposed to English North America (aka US English). There is Middle Eastern and Hebrew support via an English user interface for programs that support it such as InDesign.
    You can change the install language by launching the Adobe Application Manager and clicking on your name in the top left to bring up a context menu. From the menu select Preferences and then click the drop down for Languages. See the screen shot below:

  • I am trying to download a free trial of photoshop for my macbook pro and it says there is an error and that the requirements for the new version is not supported for the mac I have. I have looked at the list of requirements but have no idea how to tell wh

    I am trying to download a free trial of photoshop for my macbook pro and it says there is an error and that the requirements for the new version is not supported for the mac I have. I have looked at the list of requirements but have no idea how to tell what I do and do not have?

    Apple Menu --> About this Mac.
    Mylenium

  • Does intel latest  mother boareds support for the Solaries 10 OS

    Hello Friends this is Mr.MA.Prakash from India. I want to know intel latest mother boards not supporting solaries 10. i tried installing on some intel mother board numbers.
    please suggest, which intel latest mother board support for the solaries 10 operating system.
    thanking u.
    ma.prakash.

    I've had a fun time last week setting up an Intel MFSYS25 blade server and MF5000SI quad-core Xeon blades with Solaris 10.
    I only had Solaris 10u4 (8/07) on hand, and it only worked in 32-bit mode (boot with kernel/unix explicitly specified, as in Safe mode descriptor).
    However adding patches (back from Jan 2008) helped, and the system works fine in 64-bit mode.
    I believe it should work with Solaris 10u5 since it includes these patches and newer ones, but haven't checked.

  • Selective XML Index feature is not supported for the current database version , SQL Server Extended Events , Optimizing Reading from XML column datatype

    Team , Thanks for looking into this  ..
    As a last resort on  optimizing my stored procedure ( Below ) i wanted to create a Selective XML index  ( Normal XML indexes doesn't seem to be improving performance as needed ) but i keep getting this error within my stored proc . Selective XML
    Index feature is not supported for the current database version.. How ever
    EXECUTE sys.sp_db_selective_xml_index; return 1 , stating Selective XML Indexes are enabled on my current database .
    Is there ANY alternative way i can optimize below stored proc ?
    Thanks in advance for your response(s) !
    /****** Object: StoredProcedure [dbo].[MN_Process_DDLSchema_Changes] Script Date: 3/11/2015 3:10:42 PM ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    -- EXEC [dbo].[MN_Process_DDLSchema_Changes]
    ALTER PROCEDURE [dbo].[MN_Process_DDLSchema_Changes]
    AS
    BEGIN
    SET NOCOUNT ON --Does'nt have impact ( May be this wont on SQL Server Extended events session's being created on Server(s) , DB's )
    SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED
    select getdate() as getdate_0
    DECLARE @XML XML , @Prev_Insertion_time DATETIME
    -- Staging Previous Load time for filtering purpose ( Performance optimize while on insert )
    SET @Prev_Insertion_time = (SELECT MAX(EE_Time_Stamp) FROM dbo.MN_DDLSchema_Changes_log ) -- Perf Optimize
    -- PRINT '1'
    CREATE TABLE #Temp
    EventName VARCHAR(100),
    Time_Stamp_EE DATETIME,
    ObjectName VARCHAR(100),
    ObjectType VARCHAR(100),
    DbName VARCHAR(100),
    ddl_Phase VARCHAR(50),
    ClientAppName VARCHAR(2000),
    ClientHostName VARCHAR(100),
    server_instance_name VARCHAR(100),
    ServerPrincipalName VARCHAR(100),
    nt_username varchar(100),
    SqlText NVARCHAR(MAX)
    CREATE TABLE #XML_Hold
    ID INT NOT NULL IDENTITY(1,1) PRIMARY KEY , -- PK necessity for Indexing on XML Col
    BufferXml XML
    select getdate() as getdate_01
    INSERT INTO #XML_Hold (BufferXml)
    SELECT
    CAST(target_data AS XML) AS BufferXml -- Buffer Storage from SQL Extended Event(s) , Looks like there is a limitation with xml size ?? Need to re-search .
    FROM sys.dm_xe_session_targets xet
    INNER JOIN sys.dm_xe_sessions xes
    ON xes.address = xet.event_session_address
    WHERE xes.name = 'Capture DDL Schema Changes' --Ryelugu : 03/05/2015 Session being created withing SQL Server Extended Events
    --RETURN
    --SELECT * FROM #XML_Hold
    select getdate() as getdate_1
    -- 03/10/2015 RYelugu : Error while creating XML Index : Selective XML Index feature is not supported for the current database version
    CREATE SELECTIVE XML INDEX SXI_TimeStamp ON #XML_Hold(BufferXml)
    FOR
    PathTimeStamp ='/RingBufferTarget/event/timestamp' AS XQUERY 'node()'
    --RETURN
    --CREATE PRIMARY XML INDEX [IX_XML_Hold] ON #XML_Hold(BufferXml) -- Ryelugu 03/09/2015 - Primary Index
    --SELECT GETDATE() AS GETDATE_2
    -- RYelugu 03/10/2015 -Creating secondary XML index doesnt make significant improvement at Query Optimizer , Instead creation takes more time , Only primary should be good here
    --CREATE XML INDEX [IX_XML_Hold_values] ON #XML_Hold(BufferXml) -- Ryelugu 03/09/2015 - Primary Index , --There should exists a Primary for a secondary creation
    --USING XML INDEX [IX_XML_Hold]
    ---- FOR VALUE
    -- --FOR PROPERTY
    -- FOR PATH
    --SELECT GETDATE() AS GETDATE_3
    --PRINT '2'
    -- RETURN
    SELECT GETDATE() GETDATE_3
    INSERT INTO #Temp
    EventName ,
    Time_Stamp_EE ,
    ObjectName ,
    ObjectType,
    DbName ,
    ddl_Phase ,
    ClientAppName ,
    ClientHostName,
    server_instance_name,
    nt_username,
    ServerPrincipalName ,
    SqlText
    SELECT
    p.q.value('@name[1]','varchar(100)') AS eventname,
    p.q.value('@timestamp[1]','datetime') AS timestampvalue,
    p.q.value('(./data[@name="object_name"]/value)[1]','varchar(100)') AS objectname,
    p.q.value('(./data[@name="object_type"]/text)[1]','varchar(100)') AS ObjectType,
    p.q.value('(./action[@name="database_name"]/value)[1]','varchar(100)') AS databasename,
    p.q.value('(./data[@name="ddl_phase"]/text)[1]','varchar(100)') AS ddl_phase,
    p.q.value('(./action[@name="client_app_name"]/value)[1]','varchar(100)') AS clientappname,
    p.q.value('(./action[@name="client_hostname"]/value)[1]','varchar(100)') AS clienthostname,
    p.q.value('(./action[@name="server_instance_name"]/value)[1]','varchar(100)') AS server_instance_name,
    p.q.value('(./action[@name="nt_username"]/value)[1]','varchar(100)') AS nt_username,
    p.q.value('(./action[@name="server_principal_name"]/value)[1]','varchar(100)') AS serverprincipalname,
    p.q.value('(./action[@name="sql_text"]/value)[1]','Nvarchar(max)') AS sqltext
    FROM #XML_Hold
    CROSS APPLY BufferXml.nodes('/RingBufferTarget/event')p(q)
    WHERE -- Ryelugu 03/05/2015 - Perf Optimize - Filtering the Buffered XML so as not to lookup at previoulsy loaded records into stage table
    p.q.value('@timestamp[1]','datetime') >= ISNULL(@Prev_Insertion_time ,p.q.value('@timestamp[1]','datetime'))
    AND p.q.value('(./data[@name="ddl_phase"]/text)[1]','varchar(100)') ='Commit' --Ryelugu 03/06/2015 - Every Event records a begin version and a commit version into Buffer ( XML ) we need the committed version
    AND p.q.value('(./data[@name="object_type"]/text)[1]','varchar(100)') <> 'STATISTICS' --Ryelugu 03/06/2015 - May be SQL Server Internally Creates Statistics for #Temp tables , we do not want Creation of STATISTICS Statement to be logged
    AND p.q.value('(./data[@name="object_name"]/value)[1]','varchar(100)') NOT LIKE '%#%' -- Any stored proc which creates a temp table within it Extended Event does capture this creation statement SQL as well , we dont need it though
    AND p.q.value('(./action[@name="client_app_name"]/value)[1]','varchar(100)') <> 'Replication Monitor' --Ryelugu : 03/09/2015 We do not want any records being caprutred by Replication Monitor ??
    SELECT GETDATE() GETDATE_4
    -- SELECT * FROM #TEMP
    -- SELECT COUNT(*) FROM #TEMP
    -- SELECT GETDATE()
    -- RETURN
    -- PRINT '3'
    --RETURN
    INSERT INTO [dbo].[MN_DDLSchema_Changes_log]
    [UserName]
    ,[DbName]
    ,[ObjectName]
    ,[client_app_name]
    ,[ClientHostName]
    ,[ServerName]
    ,[SQL_TEXT]
    ,[EE_Time_Stamp]
    ,[Event_Name]
    SELECT
    CASE WHEN T.nt_username IS NULL OR LEN(T.nt_username) = 0 THEN t.ServerPrincipalName
    ELSE T.nt_username
    END
    ,T.DbName
    ,T.objectname
    ,T.clientappname
    ,t.ClientHostName
    ,T.server_instance_name
    ,T.sqltext
    ,T.Time_Stamp_EE
    ,T.eventname
    FROM
    #TEMP T
    /** -- RYelugu 03/06/2015 - Filters are now being applied directly while retrieving records from BUFFER or on XML
    -- Ryelugu 03/15/2015 - More filters are likely to be added on further testing
    WHERE ddl_Phase ='Commit'
    AND ObjectType <> 'STATISTICS' --Ryelugu 03/06/2015 - May be SQL Server Internally Creates Statistics for #Temp tables , we do not want Creation of STATISTICS Statement to be logged
    AND ObjectName NOT LIKE '%#%' -- Any stored proc which creates a temp table within it Extended Event does capture this creation statement SQL as well , we dont need it though
    AND T.Time_Stamp_EE >= @Prev_Insertion_time --Ryelugu 03/05/2015 - Performance Optimize
    AND NOT EXISTS ( SELECT 1 FROM [dbo].[MN_DDLSchema_Changes_log] MN
    WHERE MN.[ServerName] = T.server_instance_name -- Ryelugu Server Name needes to be added on to to xml ( Events in session )
    AND MN.[DbName] = T.DbName
    AND MN.[Event_Name] = T.EventName
    AND MN.[ObjectName]= T.ObjectName
    AND MN.[EE_Time_Stamp] = T.Time_Stamp_EE
    AND MN.[SQL_TEXT] =T.SqlText -- Ryelugu 03/05/2015 This is a comparision Metric as well , But needs to decide on
    -- Peformance Factor here , Will take advise from Lance if comparision on varchar(max) is a vital idea
    --SELECT GETDATE()
    --PRINT '4'
    --RETURN
    SELECT
    top 100
    [EE_Time_Stamp]
    ,[ServerName]
    ,[DbName]
    ,[Event_Name]
    ,[ObjectName]
    ,[UserName]
    ,[SQL_TEXT]
    ,[client_app_name]
    ,[Created_Date]
    ,[ClientHostName]
    FROM
    [dbo].[MN_DDLSchema_Changes_log]
    ORDER BY [EE_Time_Stamp] desc
    -- select getdate()
    -- ** DELETE EVENTS after logging into Physical table
    -- NEED TO Identify if this @XML can be updated into physical system table such that previously loaded events are left untoched
    -- SET @XML.modify('delete /event/class/.[@timestamp="2015-03-06T13:01:19.020Z"]')
    -- SELECT @XML
    SELECT GETDATE() GETDATE_5
    END
    GO
    Rajkumar Yelugu

    @@Version : ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    Microsoft SQL Server 2012 - 11.0.5058.0 (X64)
        May 14 2014 18:34:29
        Copyright (c) Microsoft Corporation
        Developer Edition (64-bit) on Windows NT 6.2 <X64> (Build 9200: ) (Hypervisor)
    (1 row(s) affected)
    Compatibility level is set to 110 .
    One of the limitation states - XML columns with a depth of more than 128 nested nodes
    How do i verify this ? Thanks .
    Rajkumar Yelugu

  • [Consolidation-Locked] Please add RAW support for the Nikon D600 to Lightroom as soon as possible!

    My Fair Adobe,
    Please add RAW support for the Nikon D600 to Lightroom as soon as possible!
    ViewNX lets me get to the images, but come on!!! I know Lightroom, and you, ViewNX, are no Lightroom.
    Yes, I see everyone else ASKING for D600 support. I'm here to beg for it! Don't make me wait much longer!
    Message title was edited by: Brett N
    Message title was edited by: Brett N

    Rob, my reading of your site is that this plug-in copies settings from raw to jpeg, does it work the other way around as well?
    Rob Cole wrote:
    One of the great things about the new 0-based defaults and linear tone curve is:
    You can develop the jpegs now, in Lightroom, and then sync the settings to the raws later (e.g. using RawPlusJpeg), and provided you select a matching camera profile, they will look almost the same (white balance won't translate over, but everything else will, more or less). Beware lens corrections applied to the raws might alter the registration of precision local adjustments.
    Note: I recommend shooting with ADL off in order for this to work better, and consider turning sharpening off in camera as well, and noise reduction and everything else to whatever extent is possible.
    Rob

  • I installed LR CC , but when i try launching it flashes & it is gone. I tried the solution in the Adobe Site - which says search for the folder Library/Application Support/ Adobe/ Sl Store ...., but i can't seem to find the SL Store or SLCache folders ( i

    I installed LR CC , but when i try launching it flashes & it is gone. I tried the solution in the Adobe Site - which says search for the folder Library/Application Support/ Adobe/ Sl Store ...., but i can't seem to find the SL Store or SLCache folders ( i use the Mac). Only then can i apply the solution. I just cant seem to find the folder in the first place

    That did not work for me & as per adobe site help if signing out does not help- we are supposed to go the above folders & do some additional steps, but i could not find the folders & hence the question

  • Tether support for the Nikon D750 in lightroom 5

    Will there be tether support for the Nikon D750 in Lightroom 5

    You are absolutely correct Lightroom does not have tether support for the new Nikon D750. see the list of supported cameras.
    Tethered camera support in Lightroom
    Nikon need to provide the required sdk info for the camera to enable Adobe to work on adding tether support.

  • Help! Some features of Mac OS X Mavericks are not supported for the disk "Macintosh HD"

    I'm on a MacBook 13" mid 2010, OS X 10.7.5, I want to upgrade to OS X Mavericks. I have searched around for a few days, I find people with the same problem but can't really get the solution for it. I prefer not to reinstall OS X, I want to upgrade. I don't have boot camp or something just a 250 GB HD.
    Well, while I'm trying to upgrade from the download from Apps Store, I open the installer, press continue then accepts the Terms.. then select Macintosh HD and click install, then an warning message shows up "Some features of Mac OS X Mavericks are not supported for the disk "Macintosh HD"
    As I've read the article that is included in the waring message i did try to install anyway because it say that I would be fine, but when i did try to install the installer starts and after like 3 minutes a window appears, Install Failed.
    I've even try to make a installer on USB, both with the command in terminal and with Diskmaker, but it does not help.
    It seems impossible to upgrade. Please Help me.

    First, see the heading "What to do if the installer warns that no Recovery System can be created" in this support article. If you use Boot Camp, back up and delete the Windows partition using Boot Camp Assistant. Try the installation again.

  • Now Here! Support for the Canon PowerShot G1

    After much trial and error, I have figured out how to support the Canon PowerShot G1.
    I started with the settings for the hacked un-supported G2 (thanks to user jpugsley for this message: http://discussions.apple.com/thread.jspa?threadID=262930). Then I read the source code to the open source dcraw.c command line raw convertor. There I found Adobe's translation values for the G1 which has a CYGM filter array. I'd say this opens up opportunities for many other CYGM cameras to be supported.
    The premul values seem to affect the color balance of the images. Adjusting the values very slightly may be helpful. I don't know what most of the other values are. The m2 array values came from dcraw.c You probably shouldn't touch those.
    The images seem to open fine in Preview and Aperture. I hope Apple officially supports this camera soon (Aperture 1.1?).
    How To:
    All you have to do is paste the following XML into this file (make sure you save a backup of the file first). Rebooting is NOT needed:
    /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ImageIO.fram ework/Versions/Current/Resources/Raw.plist
    <key>Canon-PowerShot G1</key>
    <dict>
    <key>blackReplace</key> <true/>
    <key>black</key> <integer>32</integer>
    <key>max</key> <integer>1023</integer>
    <key>white</key> <integer>1023</integer>
    <key>premul0</key> <real>1.00</real> <key>premul1</key> <real>1.2</real> <key>premul2</key> <real>1.1</real> <key>premul3</key> <real>1.11</real>
    <key>m1</key>
    <array>
    <real>1.0507</real> <real>-0.4281</real> <real>-0.0161</real>
    <real>-0.5540</real> <real>1.2938</real> <real>0.2909</real>
    <real>-0.1205</real> <real>0.1844</real> <real>0.8335</real>
    <real>-0.1566</real> <real>1.1051</real> <real>0.0577</real>
    </array>
    <key>m2</key>
    <array>
    <real>-0.4778</real> <real>0.9467</real> <real>0.2172</real>
    <real>0.4743</real> <real>-0.1141</real> <real>0.4344</real>
    <real>-0.5146</real> <real>0.9908</real> <real>0.6077</real>
    <real>-0.1566</real> <real>1.1051</real> <real>0.0577</real>
    </array>
    <key>mc</key> <real>0.83355</real>
    <key>otrc</key>
    <array>
    <real>0.00</real> <real>0.090</real> <real>1.467</real> <real>0.260</real> <real>1.842</real> <real>0.652</real> <real>1.040</real> <real>0.538</real>
    </array>
    </dict>

    This is stellar.
    Thanks. It wasn't as hard as I thought it would be... I didn't think it was possible at first.
    is this in fact all
    there is to supporting a new camera RAW format --
    providing a translation array in a plist file?
    What follows is pure speculation... I really don't have a solid understanding of this at all.
    Seems like all you have to do is get these Camera->XYZ trans values (trans may stand for transform or translate). The image is essentially monochrome with color filters over it. Some cameras use RGB filters, looks like Apple has supported a lot of those. Some are CYGM, so far Apple hasn't supported any of those. Apple has supported the Sony DSC F828 which is RGBE where E stands for Emerald. Total guess, but each set of three values in the m2 array is associated with a color. (9 total for RGB and 12 for CYGM and RGBE). Guessing, each of these sets of three values probably is used to calculate a response curve for each color.
    Basically, when dcraw.c provided twelve values, I began to poke around Raw.plist and discovered the Sony F828 camera also had 12 values in its m2 array. It also had 4 premul (pre-multiplier) values, one for each set of 3 m2 values. So I took a leap of faith that CYGM could be supported because after all, a color is just a color. Does the computer really care if the value represents emerald or magenta? This produced a promising image but color was way off. I had to then tweak each premul value to bring the color in. Those values don't seem to be linear. A minor adjustment can either dramatically change everything or have no noticeable effect.
    Are all RAW formats essentially supported via simply a
    declarative filter array, or did it just happen to
    work for G1 RAW, and other formats are different?
    My amateur guess is many cameras are similar and a few stand out as different. For example, I'm guessing the Foveon cameras are an example of a different sort of RAW file. Thats just a guess based on looking at dcraw.c.
    if this is all there is to
    supporting a new RAW format, I wonder
    - why more of the RAW formats weren't supported in the first place.
    To get you to buy a fancy new camera on the Apple Store? Lazyness? Not enough time? Lack of cooperation from the manufacturer? All of the above?
    - why RAW formats haven't been progressively added
    since the Aperture release.
    Seems like they could have had support for dozens of additional cameras. This took me only a matter of hours to figure out. Someone with a deep understanding could have done this in minutes.
    The real time sink is when you almost have the colors correct and you are endlessly tweaking trying to get them perfect... as you will see, the colors will be fine in certain exposures and way off in others. Look at daylight vs. tungsten photos. It may take many hours to get the values of the camera correct to customers exacting standards. We, the photographers, are very picky.
    Why don't we just contact Canon, Nikon, etc. and get
    their translation values?
    There are values for 83 additional cameras that aren't supported by Apple in the dcraw.c file. That's a place to start.

  • Is there support for the GraphicsFmt object in FrameMaker 11 ExtendScript?

    I was reading the FDK documentation for FrameMaker 11 and I see that support has been added for Object formats using FO_GraphicsFmt.
    Is there support for the GraphicsFmt object in FrameMaker 11 ExtendScript?
    If not, when will it be added?
    Another question: Will the ExtendScript documentation ever be improved?

    Stuart,
    I am pretty sure you can use the object from ExtendScript. With the FDK documentation you should be able to guess the property names in ExtendScript, but the easiest way is to use a small test document and write a small script to get at the GraphicsFmt object. Set a breakpoint and use the Data Browser and/or JavaScript Console to see how FM uses the object.
    As for better ExtendScript documentation: I am working on a website (www.progframe.com) that will feature better documentation, combining the current docs with stuff picked up from the FDK reference and test scripts. It will also have tutorials for newbie scripters. If Adobe does not put an effort into the docs, I might as well do it and possibly pick up some scripting jobs that way. I am planning to launch the website early next year and keeping it up to date so that ExtendScript info is immediately available when a new FM version hits the market.
    Kind regards
    Jang

  • Will Verizon offer any thing to iPhone 4 users since Apple will stop releasing update and support for the device?

    Apple recent stated they will no longer offer any support for the iPhone 4, no more updates, apps will stop working with the advancement of software updates. over all by the end of the year the phone will be almost completely phased out. Does Verizon have any type of plan for their current iphone 4 device users?

    Verizon has nothing to do with Apple updates.
    It is much like Microsoft who phased out support updates to Win 31, Windows 95,98,ME and now Windows XP.
    You must deal with Apple http://www.apple.com/support
    Good Luck

  • Outlook Web Access is currently unavailable. If the problem continues, contact technical support for your organization and tell them the following: No Client Access servers of the appropriate version can be accessed from the Internet

    Good Morning,
         We are getting this error 
    Outlook Web Access is currently unavailable. If the problem continues, contact technical support for your organization and tell them the following: No Client Access servers
    of the appropriate version can be accessed from the Internet
    We installed a new Exchange 2007 CAS on Windows 2008R2. Got rid of old CAS on Exchange 2007. Now seeing this error. Does anyone have an idea??

    Hi,
    If the issue persists, I recommend you install Exchange 2007 SP3 RU7 and check the result. Also, ensure that Exchange 2010 SP2 RU1 or later version is installed. Old Exchange version may lead to the CAS-to-CAS proxy incompatibility.
    What's more, here are some helpful blogs for your reference.
    Exchange 2010 SP2 RU1 and CAS-to-CAS Proxy Incompatibility
    http://blogs.technet.com/b/exchange/archive/2012/02/17/exchange-2010-sp2-ru1-and-cas-to-cas-proxy-incompatibility.aspx
    OWA Coexistence With Legacy Versions
    http://blogs.technet.com/b/sjimmie/archive/2010/07/09/owa-coexistence-with-legacy-versions.aspx
    Hope this can be helpful to you.
    Best regards,
    Amy Wang
    TechNet Community Support

  • Does my company have a corporate account for the formscentral?

    does my company have a corporate account for the formscentral?
    I need to find the Customer service or sales to ask this, but I am unable to find a contact email for customer support.

    Hi;
    There is no concept of a "corperate account" for FormsCentral, each user would have their own subscription.  The closest we've had was something called "Team Admin" where you could purchase a pack of subscriptions under one users name and they could administer those accounts granting access to other users.  The Team Admin method of purchase is no longer available but it is possible your company purchased a Team Admin account. 
    Do you know what email address would have been used if a Team Admin account was purchased?  There would be one "master" account.
    Thanks,
    Josh

  • Can you please put me in touch with the support  for the trial copy of adobe acrobat XI pro which I had tried out on March 15 for 30 days. I have  been trying to cancel since the cost is too much and Acrobat Reader is OK for me. I can't find uninstaller.

    Can you please put me in touch with the support  for the trial copy of adobe acrobat XI pro which I had tried out on March 15 for 30 days. I have  been trying to cancel since the cost is too much and Acrobat Reader is OK for me. I can't find uninstaller.
    I have had to erase my disk since then with trouble with Apple Store not recognising my machine and the reload from Time Machine has given complications . Can you please cancel my trial and return my Trial money.

    If you paid for what you used then it was not a trial.
    Look thru the following links and use the chat option if required for your situation:
    Cancel your membership or subscription | Creative Cloud
    https://helpx.adobe.com/x-productkb/policy-pricing/cancel-membership-subscription.html
    https://forums.adobe.com/thread/1703848
    Chat support - For the link below click the Still Need Help? option in the blue area at the bottom and choose the chat option...
    Creative Cloud support (all Creative Cloud customer service issues)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html ( http://adobe.ly/19llvMN )
    Phone support | Orders, returns exchanges
    http://helpx.adobe.com/x-productkb/global/phone-support-orders.html

Maybe you are looking for

  • Executing a stored procedure from an Ifs Program

    I have a need to execute a stored procedure in another schema within the same database, and I need to receive an OUT parameter to continue processing. The oracle.ifs.server.sql.IfsConnection is not in my class path. Can someone tell me which jar file

  • Relocated original files to desktop (on low disk space) and lost photos?

    Help! My wife and I exchanged our vows on the Napali Coast and we lost our photos... 2006 Macbook, iphoto06: As I was importing our 200 photos from the hike, my computer warned me that I was running out of disk space and stopped before finishing the

  • URGENT: help me to update PO_STANDARD_XSLFO.xsl

    Hi we need the standard PO out put with our company logo and name. For that I would like to insert our Company logo and name into the standard template PO_STANDARD_XSLFO.xsl, I tried to upload our own template to "Standard Purchase Order Stylesheet"

  • Influencing query security - burning problem

    Hi all, I've a burning problem that I was not able to find a solution for within 1 week so far. I want to simplyfy a selection of variables needed to run a query. So in fact you need three different values to identify a specific set of data. In order

  • BPC 7.5 Installation

    Hi,    We are trying to install the BPC 7.5 and integrate it with the BO Enterprise.  BPC 7.5 is installed and it is working fine. No problems with that. BO Enterprise is installed and we can log into the CMC. No problems with this as well. When we a