Licensing Framework

Hello,
does anyone know where one can find a freely distributed licensing framework, or suggest any solution to unblock certain functionalities only for the users provided with a licence? (talking of experimental software that I developed, not minded for commerce at present status) .

Hello Yassine,
What license do we have to take if we want to use only this provider ?
You will need a SQL Anywhere client license (a "seat") for each of your client deployments. You may want to talk to SAP Sales for further details about your exact requirements for your planned deployments.
What are the limitation of this provider (Sybase database version comptatibility, EF6 limitations ?)
See further details about EF6 support here:
http://sqlanywhere-forum.sap.com/questions/22161/entity-framework-6-provider
EF6 support was first released with CR #768717, in SQL Anywhere 12.0.1.4142 and 16.0.1993. There was an additional fix required for the design-first wizard in CR #770760 in 12.0.1.4162 and 16.0.2014.
Finally, there was an issue with Microsoft EFTools 6.1.1 and lower where the third-party provider would not be detected correctly until the project included the assembly reference in the app.config file and the project was built. In EFTools 6.1.2 and higher, only the app.config reference is required - building the project or cleaning the project should not affect this issue now.
Is there support regarding this provider ?
Yes, any issues with the provider can be reported as an incident to SQL Anywhere SAP Support via the component BC-SYB-SQA. You can also post issues to here or on our alternative forum: http://sqlanywhere-forum.sap.com/
Where can i find differences between v12 and v16 ?
The official documentation ( http://dcx.sap.com/ ) lists the changes between version 12.0.0 and 16.0:
DocCommentXchange - What's new in 12.0.1
DocCommentXchange - What's new in 16.0
Regards,
Jeff Albion
SAP Active Global Support

Similar Messages

  • Licensing Framework for Java

    Hello,
    does anyone know where one can find a freely distributed licensing framework for java applications, or suggest any solution to unblock certain functionalities only for the users provided with a licence? (talking of experimental software that I developed, not minded for commerce at present status) .

    there are some java libraries that are free for non
    commercial use but require to purchase a license for
    commercial applications.yes there is. This is true also of non java software.
    There is also the GPL (GNU public license) which allows you to distribute the code, but only in an open source way.
    My question is : what if some one use this library in
    commercial app without purchasing licence ? how can
    the owner of the librairy control the use of his
    work. and if you use it for commercial purposes what
    will happen ?Then you have a lawsuit. The damaged party may seek compensation and potentially damages from the license violator. The license owner may also seek an injunction

  • License of data controls, data bindings without the ADF framework

    I am just wondering. If i create a Java EE web application in Jdeveloper and use datacontrols and data bindings for my JSF pages. I don't use the ADF rich faces but the basic JSF components. Does that require a license for ADF? Can that be easily deployed on a tomcat server?
    As far as i understand are the bindings and data controls part of JSF 227 which is created by oracle. If i want to use it outside of oracle products, do i need to create my own implementation of that standard or how does it work? If i use Jdeveloper, i can easily create datacontrols and use the drag & drop method to create JSF tables and so on. But does that require a license for ADF or can i use it for free?
    Just to be sure... I am not using ADF BC but i am using hibernate as data access layer. From their i create a class that i convert to data control.
    Edited by: Yannick Ongena on Nov 1, 2010 12:02 PM

    The section Licensing of the JDeveloper FAQ page ( says:
    Q: How do I know if I need a TopLink and ADF runtime license?A: You will need to be licensed for a production deployment of ADF if you are using any of the following features:
    Oracle TopLink
    ADF Controller / ADF Task Flows
    ADF Business Components
    ADF Model layer databinding
    ADF Faces Component
    ADF Swing
    ADF UIX User interface components
    ADF Actions / Datapages for Struts>
    DataControls and ADF Bindings are part of the ADF Model layer databinding, so they require runtime licenses if not used on Oracle WebLogic Server or Oracle iAS.http://www.oracle.com/technetwork/developer-tools/jdev/jdeveloper11gfaq-085697.html#L0<a/> says:
    Q: How do I know if I need a TopLink and ADF runtime license?A: You will need to be licensed for a production deployment of ADF if you are using any of the following features:
    Oracle TopLink
    ADF Controller / ADF Task Flows
    ADF Business Components
    ADF Model layer databinding
    ADF Faces Component
    ADF Swing
    ADF UIX User interface components
    ADF Actions / Datapages for Struts>
    DataControls and ADF Bindings are part of the ADF Model layer databinding, so they require runtime licenses if not used on Oracle WebLogic Server or Oracle iAS.

  • Some Thoughts On An OWB Performance/Testing Framework

    Hi all,
    I've been giving some thought recently to how we could build a performance tuning and testing framework around Oracle Warehouse Builder. Specifically, I'm looking at was in which we can use some of the performance tuning techniques described in Cary Millsap/Jeff Holt's book "Optimizing Oracle Performance" to profile and performance tune mappings and process flows, and to use some of the ideas put forward in Kent Graziano's Agile Methods in Data Warehousing paper http://www.rmoug.org/td2005pres/graziano.zip and Steven Feuernstein's utPLSQL project http://utplsql.sourceforge.net/ to provide an agile/test-driven way of developing mappings, process flows and modules. The aim of this is to ensure that the mappings we put together are as efficient as possible, work individually and together as expected, and are quick to develop and test.
    At the moment, most people's experience of performance tuning OWB mappings is firstly to see if it runs set-based rather than row-based, then perhaps to extract the main SQL statement and run an explain plan on it, then check to make sure indexes etc are being used ok. This involves a lot of manual work, doesn't factor in the data available from the wait interface, doesn't store the execution plans anywhere, and doesn't really scale out to encompass entire batches of mapping (process flows).
    For some background reading on Cary Millsap/Jeff Holt's approach to profiling and performance tuning, take a look at http://www.rittman.net/archives/000961.html and http://www.rittman.net/work_stuff/extended_sql_trace_and_tkprof.htm. Basically, this approach traces the SQL that is generated by a batch file (read: mapping) and generates a file that can be later used to replay the SQL commands used, the explain plans that relate to the SQL, details on what wait events occurred during execution, and provides at the end a profile listing that tells you where the majority of your time went during the batch. It's currently the "preferred" way of tuning applications as it focuses all the tuning effort on precisely the issues that are slowing your mappings down, rather than database-wide issues that might not be relevant to your mapping.
    For some background information on agile methods, take a look at Kent Graziano's paper, this one on test-driven development http://c2.com/cgi/wiki?TestDrivenDevelopment , this one http://martinfowler.com/articles/evodb.html on agile database development, and the sourceforge project for utPLSQL http://utplsql.sourceforge.net/. What this is all about is having a development methodology that builds in quality but is flexible and responsive to changes in customer requirements. The benefit of using utPLSQL (or any unit testing framework) is that you can automatically check your altered mappings to see that they still return logically correct data, meaning that you can make changes to your data model and mappings whilst still being sure that it'll still compile and run.
    Observations On The Current State of OWB Performance Tuning & Testing
    At present, when you build OWB mappings, there is no way (within the OWB GUI) to determine how "efficient" the mapping is. Often, when building the mapping against development data, the mapping executes quickly and yet when run against the full dataset, problems then occur. The mapping is built "in isolation" from its effect on the database and there is no handy tool for determining how efficient the SQL is.
    OWB doesn't come with any methodology or testing framework, and so apart from checking that the mapping has run, and that the number of rows inserted/updated/deleted looks correct, there is nothing really to tell you whether there are any "logical" errors. Also, there is no OWB methodology for integration testing, unit testing, or any other sort of testing, and we need to put one in place. Note - OWB does come with auditing, error reporting and so on, but there's no framework for guiding the user through a regime of unit testing, integration testing, system testing and so on, which I would imagine more complete developer GUIs come with. Certainly there's no built in ability to use testing frameworks such as utPLSQL, or a part of the application that let's you record whether a mapping has been tested, and changes the test status of mappings when you make changes to ones that they are dependent on.
    OWB is effectively a code generator, and this code runs against the Oracle database just like any other SQL or PL/SQL code. There is a whole world of information and techniques out there for tuning SQL and PL/SQL, and one particular methodology that we quite like is the Cary Millsap/Jeff Holt "Extended SQL Trace" approach that uses Oracle diagnostic events to find out exactly what went on during the running of a batch of SQL commands. We've been pretty successful using this approach to tune customer applications and batch jobs, and we'd like to use this, together with the "Method R" performance profiling methodology detailed in the book "Optimising Oracle Performance", as a way of tuning our generated mapping code.
    Whilst we want to build performance and quality into our code, we also don't want to overburden developers with an unwieldy development approach, because what we'll know will happen is that after a short amount of time, it won't get used. Given that we want this framework to be used for all mappings, it's got to be easy to use, cause minimal overhead, and have results that are easy to interpret. If at all possible, we'd like to use some of the ideas from agile methodologies such as eXtreme Programming, SCRUM and so on to build in quality but minimise paperwork.
    We also recognise that there are quite a few settings that can be changed at a session and instance level, that can have an effect on the performance of a mapping. Some of these include initialisation parameters that can change the amount of memory assigned to the instance and the amount of memory subsequently assigned to caches, sort areas and the like, preferences that can be set so that indexes are preferred over table scans, and other such "tweaks" to the Oracle instance we're working with. For reference, the version of Oracle we're going to use to both run our code and store our data is Oracle 10g 10.1.0.3 Enterprise Edition, running on Sun Solaris 64-bit.
    Some initial thoughts on how this could be accomplished
    - Put in place some method for automatically / easily generating explain plans for OWB mappings (issue - this is only relevant for mappings that are set based, and what about pre- and post- mapping triggers)
    - Put in place a method for starting and stopping an event 10046 extended SQL trace for a mapping
    - Put in place a way of detecting whether the explain plan / cost / timing for a mapping changes significantly
    - Put in place a way of tracing a collection of mappings, i.e. a process flow
    - The way of enabling tracing should either be built in by default, or easily added by the OWB developer. Ideally it should be simple to switch it on or off (perhaps levels of event 10046 tracing?)
    - Perhaps store trace results in a repository? reporting? exception reporting?
    at an instance level, come up with some stock recommendations for instance settings
    - identify the set of instance and session settings that are relevant for ETL jobs, and determine what effect changing them has on the ETL job
    - put in place a regime that records key instance indicators (STATSPACK / ASH) and allows reports to be run / exceptions to be reported
    - Incorporate any existing "performance best practices" for OWB development
    - define a lightweight regime for unit testing (as per agile methodologies) and a way of automating it (utPLSQL?) and of recording the results so we can check the status of dependent mappings easily
    other ideas around testing?
    Suggested Approach
    - For mapping tracing and generation of explain plans, a pre- and post-mapping trigger that turns extended SQL trace on and off, places the trace file in a predetermined spot, formats the trace file and dumps the output to repository tables.
    - For process flows, something that does the same at the start and end of the process. Issue - how might this conflict with mapping level tracing controls?
    - Within the mapping/process flow tracing repository, store the values of historic executions, have an exception report that tells you when a mapping execution time varies by a certain amount
    - get the standard set of preferred initialisation parameters for a DW, use these as the start point for the stock recommendations. Identify which ones have an effect on an ETL job.
    - identify the standard steps Oracle recommends for getting the best performance out of OWB (workstation RAM etc) - see OWB Performance Tips http://www.rittman.net/archives/001031.html and Optimizing Oracle Warehouse Builder Performance http://www.oracle.com/technology/products/warehouse/pdf/OWBPerformanceWP.pdf
    - Investigate what additional tuning options and advisers are available with 10g
    - Investigate the effect of system statistics & come up with recommendations.
    Further reading / resources:
    - Diagnosing Performance Problems Using Extended Trace" Cary Millsap
    http://otn.oracle.com/oramag/oracle/04-jan/o14tech_perf.html
    - "Performance Tuning With STATSPACK" Connie Dialeris and Graham Wood
    http://www.oracle.com/oramag/oracle/00-sep/index.html?o50tun.html
    - "Performance Tuning with Statspack, Part II" Connie Dialeris and Graham Wood
    http://otn.oracle.com/deploy/performance/pdf/statspack_tuning_otn_new.pdf
    - "Analyzing a Statspack Report: A Guide to the Detail Pages" Connie Dialeris and Graham Wood
    http://www.oracle.com/oramag/oracle/00-nov/index.html?o60tun_ol.html
    - "Why Isn't Oracle Using My Index?!" Jonathan Lewis
    http://www.dbazine.com/jlewis12.shtml
    - "Performance Tuning Enhancements in Oracle Database 10g" Oracle-Base.com
    http://www.oracle-base.com/articles/10g/PerformanceTuningEnhancements10g.php
    - Introduction to Method R and Hotsos Profiler (Cary Millsap, free reg. required)
    http://www.hotsos.com/downloads/registered/00000029.pdf
    - Exploring the Oracle Database 10g Wait Interface (Robin Schumacher)
    http://otn.oracle.com/pub/articles/schumacher_10gwait.html
    - Article referencing an OWB forum posting
    http://www.rittman.net/archives/001031.html
    - How do I inspect error logs in Warehouse Builder? - OWB Exchange tip
    http://www.oracle.com/technology/products/warehouse/pdf/Cases/case10.pdf
    - What is the fastest way to load data from files? - OWB exchange tip
    http://www.oracle.com/technology/products/warehouse/pdf/Cases/case1.pdf
    - Optimizing Oracle Warehouse Builder Performance - Oracle White Paper
    http://www.oracle.com/technology/products/warehouse/pdf/OWBPerformanceWP.pdf
    - OWB Advanced ETL topics - including sections on operating modes, partition exchange loading
    http://www.oracle.com/technology/products/warehouse/selfserv_edu/advanced_ETL.html
    - Niall Litchfield's Simple Profiler (a creative commons-licensed trace file profiler, based on Oracle Trace Analyzer, that displays the response time profile through HTMLDB. Perhaps could be used as the basis for the repository/reporting part of the project)
    http://www.niall.litchfield.dial.pipex.com/SimpleProfiler/SimpleProfiler.html
    - Welcome to the utPLSQL Project - a PL/SQL unit testing framework by Steven Feuernstein. Could be useful for automating the process of unit testing mappings.
    http://utplsql.sourceforge.net/
    Relevant postings from the OTN OWB Forum
    - Bulk Insert - Configuration Settings in OWB
    http://forums.oracle.com/forums/thread.jsp?forum=57&thread=291269&tstart=30&trange=15
    - Default Performance Parameters
    http://forums.oracle.com/forums/thread.jsp?forum=57&thread=213265&message=588419&q=706572666f726d616e6365#588419
    - Performance Improvements
    http://forums.oracle.com/forums/thread.jsp?forum=57&thread=270350&message=820365&q=706572666f726d616e6365#820365
    - Map Operator performance
    http://forums.oracle.com/forums/thread.jsp?forum=57&thread=238184&message=681817&q=706572666f726d616e6365#681817
    - Performance of mapping with FILTER
    http://forums.oracle.com/forums/thread.jsp?forum=57&thread=273221&message=830732&q=706572666f726d616e6365#830732
    - Poor mapping performance
    http://forums.oracle.com/forums/thread.jsp?forum=57&thread=275059&message=838812&q=706572666f726d616e6365#838812
    - Optimizing Mapping Performance With OWB
    http://forums.oracle.com/forums/thread.jsp?forum=57&thread=269552&message=815295&q=706572666f726d616e6365#815295
    - Performance of mapping with FILTER
    http://forums.oracle.com/forums/thread.jsp?forum=57&thread=273221&message=830732&q=706572666f726d616e6365#830732
    - Performance of the OWB-Repository
    http://forums.oracle.com/forums/thread.jsp?forum=57&thread=66271&message=66271&q=706572666f726d616e6365#66271
    - One large JOIN or many small ones?
    http://forums.oracle.com/forums/thread.jsp?forum=57&thread=202784&message=553503&q=706572666f726d616e6365#553503
    - NATIVE PL SQL with OWB9i
    http://forums.oracle.com/forums/thread.jsp?forum=57&thread=270273&message=818390&q=706572666f726d616e6365#818390
    Next Steps
    Although this is something that I'll be progressing with anyway, I'd appreciate any comment from existing OWB users as to how they currently perform performance tuning and testing. Whilst these are perhaps two distinct subject areas, they can be thought of as the core of an "OWB Best Practices" framework and I'd be prepared to write the results up as a freely downloadable whitepaper. With this in mind, does anyone have an existing best practices for tuning or testing, have they tried using SQL trace and TKPROF to profile mappings and process flows, or have you used a unit testing framework such as utPLSQL to automatically test the set of mappings that make up your project?
    Any feedback, add it to this forum posting or send directly through to me at [email protected]. I'll report back on a proposed approach in due course.

    Hi Mark,
    interesting post, but I think you may be focusing on the trees, and losing sight of the forest.
    Coincidentally, I've been giving quite a lot of thought lately to some aspects of your post. They relate to some new stuff I'm doing. Maybe I'll be able to answer in more detail later, but I do have a few preliminary thoughts.
    1. 'How efficient is the generated code' is a perennial topic. There are still some people who believe that a code generator like OWB cannot be in the same league as hand-crafted SQL. I answered that question quite definitely: "We carefully timed execution of full-size runs of both the original code and the OWB versions. Take it from me, the code that OWB generates is every bit as fast as the very best hand-crafted and fully tuned code that an expert programmer can produce."
    The link is http://www.donnapkelly.pwp.blueyonder.co.uk/generated_code.htm
    That said, it still behooves the developer to have a solid understanding of what the generated code will actually do, such as how it will take advantage of indexes, and so on. If not, the developer can create such monstrosities as lookups into an un-indexed field (I've seen that).
    2. The real issue is not how fast any particular generated mapping runs, but whether or not the system as a whole is fit for purpose. Most often, that means: does it fit within its batch update window? My technique is to dump the process flow into Microsoft Project, and then to add the timings for each process. That creates a Critical Path, and then I can visually inspect it for any bottleneck processes. I usually find that there are not more than one or two dogs. I'll concentrate on those, fix them, and re-do the flow timings. I would add this: the dogs I have seen, I have invariably replaced. They were just garbage, They did not need tuning at all - just scrapping.
    Gee, but this whole thing is minimum effort and real fast! I generally figure that it takes maybe a day or two (max) to soup up system performance to the point where it whizzes.
    Fact is, I don't really care whether there are a lot of sub-optimal processes. All I really care about is performance of the system as a whole. This technique seems to work for me. 'Course, it depends on architecting the thing properly in the first place. Otherwise, no amount of tuning of going to help worth a darn.
    Conversely (re. my note about replacing dogs) I do not think I have ever tuned a piece of OWB-generated code. Never found a need to. Not once. Not ever.
    That's not to say I do not recognise the value of playing with deployment configuration parameters. Obviously, I set auditing=none, and operating mode=set based, and sometimes, I play with a couple of different target environments to fool around with partitioning, for example. Nonetheless, if it is not a switch or a knob inside OWB, I do not touch it. This is in line with my dictat that you shall use no other tool than OWB to develop data warehouses. (And that includes all documentation!). (OK, I'll accept MS Project)
    Finally, you raise the concept of a 'testing framework'. This is a major part of what I am working on at the moment. This is a tough one. Clearly, the developer must unit test each mapping in a design-model-deploy-execute cycle, paying attention to both functionality and performance. When the developer is satisifed, that mapping will be marked as 'done' in the project workbook. Mappings will form part of a stream, executed as a process flow. Each process flow will usually terminate in a dimension, a fact, or an aggregate. Each process flow will be tested as an integrated whole. There will be test strategies devised, and test cases constructed. There will finally be system tests, to verify the validity of the system as a production-grade whole. (stuff like recovery/restart, late-arriving data, and so on)
    For me, I use EDM (TM). That's the methodology I created (and trademarked) twenty years ago: Evolutionary Development Methodology (TM). This is a spiral methodology based around prototyping cycles within Stage cycles within Release cycles. For OWB, a Stage would consist (say) of a Dimensional update. What I am trying to now is to graft this within a traditional waterfall methodology, and I am having the same difficulties I had when I tried to do it then.
    All suggestions on how to do that grafting gratefully received!
    To sum up, I 'm kinda at a loss as to why you want to go deep into OWB-generated code performance stuff. Jeepers, architect the thing right, and the code runs fast enough for anyone. I've worked on ultra-large OWB systems, including validating the largest data warehouse in the UK. I've never found any value in 'tuning' the code. What I'd like you to comment on is this: what will it buy you?
    Cheers,
    Donna
    http://www.donnapkelly.pwp.blueyonder.co.uk

  • Why is Acrobat DC so unstable? Why does it crash when i try to use any tool on a simple document? how can i stabilize the app so i can use it? the license is too expensive for this nonsense/

    i want to be able to use the app asap - all i need to do is extract some pages from a document. the thing just keeps quitting. i installed it last night, have uninstalled it and reinstalled, and still no joy. i have also installed the reader version on my mac laptop, and the same happens there. why release so unstable a program? but that i suppose is conjecture.
    how can i make this program stable is the most relevant questions.
    i am running Mac OS X 10.10.2 on an iMac (21.5-inch, Late 2009). I have 8gb ram. I have the CC license, all other adobe products work well on this machine. acrobat always has too...

    This latest crash occurred while Acrobat was attempting to OCR a page. This never caused crashes with the most recent, previous versions of Acrobat. What did you people do to mess things up ??
    Process:    
    AdobeAcrobat [1671]
    Path:       
    /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/MacOS/AdobeAcrobat
    Identifier: 
    com.adobe.Acrobat.Pro
    Version:    
    15.007.20033 (15.007.20033)
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [193]
    Responsible:
    AdobeAcrobat [1671]
    User ID:    
    501
    Date/Time:  
    2015-04-22 15:46:59.504 -0700
    OS Version: 
    Mac OS X 10.9.5 (13F1077)
    Report Version:  11
    Anonymous UUID:  F5F85303-155B-5670-645B-C1D90CAE2818
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: EXC_I386_GPFLT
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.adobe.Acrobat.framework 
    0x0000000108303c9f 0x10742b000 + 15568031
    1   com.adobe.Acrobat.framework 
    0x0000000108373f6b 0x10742b000 + 16027499
    2   com.adobe.Acrobat.framework 
    0x00000001083741e5 0x10742b000 + 16028133
    3   com.adobe.Acrobat.framework 
    0x00000001082c5a31 0x10742b000 + 15313457
    4   com.adobe.AcrobatPlugin.TouchUp    0x000000011c8a4cc9 0x11c6d0000 + 1920201
    5   com.adobe.AcrobatPlugin.TouchUp    0x000000011c929f47 0x11c6d0000 + 2465607
    6   com.adobe.AcrobatPlugin.TouchUp    0x000000011c6f94ea 0x11c6d0000 + 169194
    7   com.adobe.Acrobat.framework 
    0x000000010746345a 0x10742b000 + 230490
    8   com.adobe.Acrobat.framework 
    0x000000010812e3be 0x10742b000 + 13644734
    9   com.adobe.Acrobat.framework 
    0x0000000108115290 0x10742b000 + 13542032
    10  com.adobe.Acrobat.framework 
    0x0000000108512168 0x10742b000 + 17723752
    11  com.adobe.Acrobat.framework 
    0x0000000108512462 0x10742b000 + 17724514
    12  com.adobe.Acrobat.framework 
    0x00000001075aceab 0x10742b000 + 1580715
    13  com.apple.Foundation    
    0x00007fff870c52d7 __NSFireDelayedPerform + 333
    14  com.apple.CoreFoundation
    0x00007fff8979a3e4 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
    15  com.apple.CoreFoundation
    0x00007fff89799f1f __CFRunLoopDoTimer + 1151
    16  com.apple.CoreFoundation
    0x00007fff8980b5aa __CFRunLoopDoTimers + 298
    17  com.apple.CoreFoundation
    0x00007fff897556a5 __CFRunLoopRun + 1525
    18  com.apple.CoreFoundation
    0x00007fff89754e75 CFRunLoopRunSpecific + 309
    19  com.apple.HIToolbox     
    0x00007fff85cc6a0d RunCurrentEventLoopInMode + 226
    20  com.apple.HIToolbox     
    0x00007fff85cc6685 ReceiveNextEventCommon + 173
    21  com.apple.HIToolbox     
    0x00007fff85cc65bc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    22  com.apple.AppKit        
    0x00007fff87c0c24e _DPSNextEvent + 1434
    23  com.apple.AppKit        
    0x00007fff87c0b89b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    24  com.apple.AppKit        
    0x00007fff87bff99c -[NSApplication run] + 553
    25  com.adobe.Acrobat.framework 
    0x000000010743335b 0x10742b000 + 33627
    26  com.adobe.Acrobat.framework 
    0x0000000107431c40 RunAcrobat + 236
    27  com.adobe.Acrobat.Pro   
    0x0000000107422cb2 main + 86
    28  com.adobe.Acrobat.Pro   
    0x0000000107422c54 start + 52
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib  
    0x00007fff894d7662 kevent64 + 10
    1   libdispatch.dylib       
    0x00007fff90b82421 _dispatch_mgr_invoke + 239
    2   libdispatch.dylib       
    0x00007fff90b82136 _dispatch_mgr_thread + 52
    Thread 2:: Dispatch queue: NSOperationQueue 0x60800003be60
    0   libsystem_kernel.dylib  
    0x00007fff894d6a3a __semwait_signal + 10
    1   libsystem_c.dylib       
    0x00007fff84d7adc0 nanosleep + 200
    2   com.apple.Foundation    
    0x00007fff870f1c8d +[NSThread sleepForTimeInterval:] + 156
    3   com.adobe.Acrobat.framework 
    0x000000010835747b 0x10742b000 + 15910011
    4   com.apple.Foundation    
    0x00007fff87068ec1 -[__NSOperationInternal _start:] + 631
    5   com.apple.Foundation    
    0x00007fff87068b6b __NSOQSchedule_f + 64
    6   libdispatch.dylib       
    0x00007fff90b8028d _dispatch_client_callout + 8
    7   libdispatch.dylib       
    0x00007fff90b847e3 _dispatch_async_redirect_invoke + 154
    8   libdispatch.dylib       
    0x00007fff90b8028d _dispatch_client_callout + 8
    9   libdispatch.dylib       
    0x00007fff90b82082 _dispatch_root_queue_drain + 326
    10  libdispatch.dylib       
    0x00007fff90b83177 _dispatch_worker_thread2 + 40
    11  libsystem_pthread.dylib 
    0x00007fff896dfef8 _pthread_wqthread + 314
    12  libsystem_pthread.dylib 
    0x00007fff896e2fb9 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib  
    0x00007fff894d6716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x00007fff896e0c3b _pthread_cond_wait + 727
    2   com.adobe.AGM           
    0x0000000109d802e2 AGMMessageQueueImpl::Pull() + 68
    3   com.adobe.AGM           
    0x0000000109d8021d AGMWorkQueueTask::operator()() + 73
    4   com.adobe.AGM           
    0x000000010a1166c3 boost::(anonymous namespace)::thread_proxy(void*) + 136
    5   libsystem_pthread.dylib 
    0x00007fff896de899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff896de72a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff896e2fc9 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib  
    0x00007fff894d6716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x00007fff896e0c3b _pthread_cond_wait + 727
    2   com.adobe.AGM           
    0x0000000109d802e2 AGMMessageQueueImpl::Pull() + 68
    3   com.adobe.AGM           
    0x0000000109d8021d AGMWorkQueueTask::operator()() + 73
    4   com.adobe.AGM           
    0x000000010a1166c3 boost::(anonymous namespace)::thread_proxy(void*) + 136
    5   libsystem_pthread.dylib 
    0x00007fff896de899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff896de72a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff896e2fc9 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib  
    0x00007fff894d6716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x00007fff896e0c3b _pthread_cond_wait + 727
    2   com.adobe.AGM           
    0x0000000109d802e2 AGMMessageQueueImpl::Pull() + 68
    3   com.adobe.AGM           
    0x0000000109d8021d AGMWorkQueueTask::operator()() + 73
    4   com.adobe.AGM           
    0x000000010a1166c3 boost::(anonymous namespace)::thread_proxy(void*) + 136
    5   libsystem_pthread.dylib 
    0x00007fff896de899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff896de72a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff896e2fc9 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib  
    0x00007fff894d6716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x00007fff896e0c3b _pthread_cond_wait + 727
    2   com.adobe.Acrobat.framework 
    0x0000000108ba4189 0x10742b000 + 24613257
    3   com.adobe.Acrobat.framework 
    0x0000000108ba3100 0x10742b000 + 24609024
    4   com.adobe.Acrobat.framework 
    0x0000000108ba1257 0x10742b000 + 24601175
    5   libsystem_pthread.dylib 
    0x00007fff896de899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff896de72a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff896e2fc9 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib  
    0x00007fff894d2a56 semaphore_wait_trap + 10
    1   com.adobe.Acrobat.framework 
    0x0000000108b029f5 0x10742b000 + 23951861
    2   com.adobe.Acrobat.framework 
    0x0000000108b037b8 0x10742b000 + 23955384
    3   com.adobe.Acrobat.framework 
    0x0000000108b03aa5 0x10742b000 + 23956133
    4   com.adobe.Acrobat.framework 
    0x0000000108b03552 0x10742b000 + 23954770
    5   libsystem_pthread.dylib 
    0x00007fff896de899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff896de72a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff896e2fc9 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib  
    0x00007fff894d2a56 semaphore_wait_trap + 10
    1   com.adobe.Acrobat.framework 
    0x0000000108b029f5 0x10742b000 + 23951861
    2   com.adobe.Acrobat.framework 
    0x0000000108b037b8 0x10742b000 + 23955384
    3   com.adobe.Acrobat.framework 
    0x0000000108b03aa5 0x10742b000 + 23956133
    4   com.adobe.Acrobat.framework 
    0x0000000108b03552 0x10742b000 + 23954770
    5   libsystem_pthread.dylib 
    0x00007fff896de899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff896de72a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff896e2fc9 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib  
    0x00007fff894d2a56 semaphore_wait_trap + 10
    1   com.adobe.Acrobat.framework 
    0x0000000108b029f5 0x10742b000 + 23951861
    2   com.adobe.Acrobat.framework 
    0x0000000108b037b8 0x10742b000 + 23955384
    3   com.adobe.Acrobat.framework 
    0x0000000108b03aa5 0x10742b000 + 23956133
    4   com.adobe.Acrobat.framework 
    0x0000000108b03552 0x10742b000 + 23954770
    5   libsystem_pthread.dylib 
    0x00007fff896de899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff896de72a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff896e2fc9 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib  
    0x00007fff894d2a56 semaphore_wait_trap + 10
    1   com.adobe.Acrobat.framework 
    0x0000000108b029f5 0x10742b000 + 23951861
    2   com.adobe.Acrobat.framework 
    0x0000000108b037b8 0x10742b000 + 23955384
    3   com.adobe.Acrobat.framework 
    0x0000000108b03aa5 0x10742b000 + 23956133
    4   com.adobe.Acrobat.framework 
    0x0000000108b03552 0x10742b000 + 23954770
    5   libsystem_pthread.dylib 
    0x00007fff896de899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff896de72a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff896e2fc9 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib  
    0x00007fff894d2a56 semaphore_wait_trap + 10
    1   com.adobe.Acrobat.framework 
    0x0000000108b029f5 0x10742b000 + 23951861
    2   com.adobe.Acrobat.framework 
    0x0000000108b037b8 0x10742b000 + 23955384
    3   com.adobe.Acrobat.framework 
    0x0000000108b03aa5 0x10742b000 + 23956133
    4   com.adobe.Acrobat.framework 
    0x0000000108b03552 0x10742b000 + 23954770
    5   libsystem_pthread.dylib 
    0x00007fff896de899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff896de72a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff896e2fc9 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib  
    0x00007fff894d2a56 semaphore_wait_trap + 10
    1   com.adobe.Acrobat.framework 
    0x0000000108b029f5 0x10742b000 + 23951861
    2   com.adobe.Acrobat.framework 
    0x0000000108b037b8 0x10742b000 + 23955384
    3   com.adobe.Acrobat.framework 
    0x0000000108b03aa5 0x10742b000 + 23956133
    4   com.adobe.Acrobat.framework 
    0x0000000108b03552 0x10742b000 + 23954770
    5   libsystem_pthread.dylib 
    0x00007fff896de899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff896de72a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff896e2fc9 thread_start + 13
    Thread 13:
    0   libsystem_kernel.dylib  
    0x00007fff894d2a56 semaphore_wait_trap + 10
    1   com.adobe.Acrobat.framework 
    0x0000000108b029f5 0x10742b000 + 23951861
    2   com.adobe.Acrobat.framework 
    0x0000000108b037b8 0x10742b000 + 23955384
    3   com.adobe.Acrobat.framework 
    0x0000000108b03aa5 0x10742b000 + 23956133
    4   com.adobe.Acrobat.framework 
    0x0000000108b03552 0x10742b000 + 23954770
    5   libsystem_pthread.dylib 
    0x00007fff896de899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff896de72a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff896e2fc9 thread_start + 13
    Thread 14:
    0   libsystem_kernel.dylib  
    0x00007fff894d2a56 semaphore_wait_trap + 10
    1   com.adobe.Acrobat.framework 
    0x0000000108b029f5 0x10742b000 + 23951861
    2   com.adobe.Acrobat.framework 
    0x0000000108b037b8 0x10742b000 + 23955384
    3   com.adobe.Acrobat.framework 
    0x0000000108b03aa5 0x10742b000 + 23956133
    4   com.adobe.Acrobat.framework 
    0x0000000108b03552 0x10742b000 + 23954770
    5   libsystem_pthread.dylib 
    0x00007fff896de899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff896de72a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff896e2fc9 thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib  
    0x00007fff894d2a56 semaphore_wait_trap + 10
    1   com.adobe.Acrobat.framework 
    0x0000000108b029f5 0x10742b000 + 23951861
    2   com.adobe.Acrobat.framework 
    0x0000000108b037b8 0x10742b000 + 23955384
    3   com.adobe.Acrobat.framework 
    0x0000000108b03aa5 0x10742b000 + 23956133
    4   com.adobe.Acrobat.framework 
    0x0000000108b03552 0x10742b000 + 23954770
    5   libsystem_pthread.dylib 
    0x00007fff896de899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff896de72a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff896e2fc9 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib  
    0x00007fff894d2a56 semaphore_wait_trap + 10
    1   com.adobe.Acrobat.framework 
    0x0000000108b029f5 0x10742b000 + 23951861
    2   com.adobe.Acrobat.framework 
    0x0000000108b037b8 0x10742b000 + 23955384
    3   com.adobe.Acrobat.framework 
    0x0000000108b03aa5 0x10742b000 + 23956133
    4   com.adobe.Acrobat.framework 
    0x0000000108b03552 0x10742b000 + 23954770
    5   libsystem_pthread.dylib 
    0x00007fff896de899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff896de72a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff896e2fc9 thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib  
    0x00007fff894d2a56 semaphore_wait_trap + 10
    1   com.adobe.Acrobat.framework 
    0x0000000108b029f5 0x10742b000 + 23951861
    2   com.adobe.Acrobat.framework 
    0x0000000108b037b8 0x10742b000 + 23955384
    3   com.adobe.Acrobat.framework 
    0x0000000108b03aa5 0x10742b000 + 23956133
    4   com.adobe.Acrobat.framework 
    0x0000000108b03552 0x10742b000 + 23954770
    5   libsystem_pthread.dylib 
    0x00007fff896de899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff896de72a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff896e2fc9 thread_start + 13
    Thread 18:
    0   libsystem_kernel.dylib  
    0x00007fff894d2a56 semaphore_wait_trap + 10
    1   com.adobe.Acrobat.framework 
    0x0000000108b029f5 0x10742b000 + 23951861
    2   com.adobe.Acrobat.framework 
    0x0000000108b037b8 0x10742b000 + 23955384
    3   com.adobe.Acrobat.framework 
    0x0000000108b03aa5 0x10742b000 + 23956133
    4   com.adobe.Acrobat.framework 
    0x0000000108b03552 0x10742b000 + 23954770
    5   libsystem_pthread.dylib 
    0x00007fff896de899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff896de72a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff896e2fc9 thread_start + 13
    Thread 19:
    0   libsystem_kernel.dylib  
    0x00007fff894d2a56 semaphore_wait_trap + 10
    1   com.adobe.Acrobat.framework 
    0x0000000108b029f5 0x10742b000 + 23951861
    2   com.adobe.Acrobat.framework 
    0x0000000108b037b8 0x10742b000 + 23955384
    3   com.adobe.Acrobat.framework 
    0x0000000108b03aa5 0x10742b000 + 23956133
    4   com.adobe.Acrobat.framework 
    0x0000000108b03552 0x10742b000 + 23954770
    5   libsystem_pthread.dylib 
    0x00007fff896de899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff896de72a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff896e2fc9 thread_start + 13
    Thread 20:
    0   libsystem_kernel.dylib  
    0x00007fff894d2a56 semaphore_wait_trap + 10
    1   com.adobe.Acrobat.framework 
    0x0000000108b029f5 0x10742b000 + 23951861
    2   com.adobe.Acrobat.framework 
    0x0000000108b037b8 0x10742b000 + 23955384
    3   com.adobe.Acrobat.framework 
    0x0000000108b03aa5 0x10742b000 + 23956133
    4   com.adobe.Acrobat.framework 
    0x0000000108b03552 0x10742b000 + 23954770
    5   libsystem_pthread.dylib 
    0x00007fff896de899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff896de72a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff896e2fc9 thread_start + 13
    Thread 21:
    0   libsystem_kernel.dylib  
    0x00007fff894d2a56 semaphore_wait_trap + 10
    1   com.adobe.Acrobat.framework 
    0x0000000108b029f5 0x10742b000 + 23951861
    2   com.adobe.Acrobat.framework 
    0x0000000108b037b8 0x10742b000 + 23955384
    3   com.adobe.Acrobat.framework 
    0x0000000108b03aa5 0x10742b000 + 23956133
    4   com.adobe.Acrobat.framework 
    0x0000000108b03552 0x10742b000 + 23954770
    5   libsystem_pthread.dylib 
    0x00007fff896de899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff896de72a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff896e2fc9 thread_start + 13
    Thread 22:
    0   libsystem_kernel.dylib  
    0x00007fff894d2a56 semaphore_wait_trap + 10
    1   com.adobe.Acrobat.framework 
    0x0000000108b029f5 0x10742b000 + 23951861
    2   com.adobe.Acrobat.framework 
    0x0000000108b037b8 0x10742b000 + 23955384
    3   com.adobe.Acrobat.framework 
    0x0000000108b03aa5 0x10742b000 + 23956133
    4   com.adobe.Acrobat.framework 
    0x0000000108b03552 0x10742b000 + 23954770
    5   libsystem_pthread.dylib 
    0x00007fff896de899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff896de72a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff896e2fc9 thread_start + 13
    Thread 23:
    0   libsystem_kernel.dylib  
    0x00007fff894d6716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x00007fff896e0c3b _pthread_cond_wait + 727
    2   com.adobe.Acrobat.framework 
    0x0000000108ba4189 0x10742b000 + 24613257
    3   com.adobe.Acrobat.framework 
    0x0000000108ba3100 0x10742b000 + 24609024
    4   com.adobe.Acrobat.framework 
    0x0000000108ba1257 0x10742b000 + 24601175
    5   libsystem_pthread.dylib 
    0x00007fff896de899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff896de72a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff896e2fc9 thread_start + 13
    Thread 24:
    0   libsystem_kernel.dylib  
    0x00007fff894d2a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib  
    0x00007fff894d1d18 mach_msg + 64
    2   com.apple.CoreFoundation
    0x00007fff89755f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation
    0x00007fff89755539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation
    0x00007fff89754e75 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit        
    0x00007fff87dac05e _NSEventThread + 144
    6   libsystem_pthread.dylib 
    0x00007fff896de899 _pthread_body + 138
    7   libsystem_pthread.dylib 
    0x00007fff896de72a _pthread_start + 137
    8   libsystem_pthread.dylib 
    0x00007fff896e2fc9 thread_start + 13
    Thread 25:
    0   libsystem_kernel.dylib  
    0x00007fff894d6716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x00007fff896e0c3b _pthread_cond_wait + 727
    2   com.adobe.Acrobat.framework 
    0x000000010789902f 0x10742b000 + 4644911
    3   com.adobe.Acrobat.framework 
    0x0000000107889db1 0x10742b000 + 4582833
    4   com.adobe.Acrobat.framework 
    0x00000001083e08bf 0x10742b000 + 16472255
    5   com.adobe.Acrobat.framework 
    0x0000000107885753 0x10742b000 + 4564819
    6   com.adobe.Acrobat.framework 
    0x0000000107893804 0x10742b000 + 4622340
    7   libsystem_pthread.dylib 
    0x00007fff896de899 _pthread_body + 138
    8   libsystem_pthread.dylib 
    0x00007fff896de72a _pthread_start + 137
    9   libsystem_pthread.dylib 
    0x00007fff896e2fc9 thread_start + 13
    Thread 26:
    0   libsystem_kernel.dylib  
    0x00007fff894d764a kevent + 10
    1   com.adobe.Acrobat.framework 
    0x0000000108badaab 0x10742b000 + 24652459
    2   com.adobe.Acrobat.framework 
    0x0000000108afd2bd 0x10742b000 + 23929533
    3   libsystem_pthread.dylib 
    0x00007fff896de899 _pthread_body + 138
    4   libsystem_pthread.dylib 
    0x00007fff896de72a _pthread_start + 137
    5   libsystem_pthread.dylib 
    0x00007fff896e2fc9 thread_start + 13
    Thread 27:
    0   libsystem_kernel.dylib  
    0x00007fff894d2a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib  
    0x00007fff894d1d18 mach_msg + 64
    2   com.apple.CoreFoundation
    0x00007fff89755f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation
    0x00007fff89755539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation
    0x00007fff89754e75 CFRunLoopRunSpecific + 309
    5   com.adobe.AcrobatPlugin.EFS 
    0x000000010fd7541b 0x10fd5b000 + 107547
    6   com.apple.Foundation    
    0x00007fff870c7d8b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib 
    0x00007fff896de899 _pthread_body + 138
    8   libsystem_pthread.dylib 
    0x00007fff896de72a _pthread_start + 137
    9   libsystem_pthread.dylib 
    0x00007fff896e2fc9 thread_start + 13
    Thread 28:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib  
    0x00007fff894d2a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib  
    0x00007fff894d1d18 mach_msg + 64
    2   com.apple.CoreFoundation
    0x00007fff89755f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation
    0x00007fff89755539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation
    0x00007fff89754e75 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation    
    0x00007fff870c7f87 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation    
    0x00007fff870c7d8b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib 
    0x00007fff896de899 _pthread_body + 138
    8   libsystem_pthread.dylib 
    0x00007fff896de72a _pthread_start + 137
    9   libsystem_pthread.dylib 
    0x00007fff896e2fc9 thread_start + 13
    Thread 29:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib  
    0x00007fff894d69aa __select + 10
    1   com.apple.CoreFoundation
    0x00007fff897a1a03 __CFSocketManager + 867
    2   libsystem_pthread.dylib 
    0x00007fff896de899 _pthread_body + 138
    3   libsystem_pthread.dylib 
    0x00007fff896de72a _pthread_start + 137
    4   libsystem_pthread.dylib 
    0x00007fff896e2fc9 thread_start + 13
    Thread 30:
    0   libsystem_kernel.dylib  
    0x00007fff894d79f2 read + 10
    1   com.adobe.Acrobat.framework 
    0x0000000107888133 0x10742b000 + 4575539
    2   com.adobe.Acrobat.framework 
    0x0000000107886604 0x10742b000 + 4568580
    3   com.adobe.Acrobat.framework 
    0x00000001078901ac 0x10742b000 + 4608428
    4   com.adobe.Acrobat.framework 
    0x0000000107885753 0x10742b000 + 4564819
    5   com.adobe.Acrobat.framework 
    0x0000000107893804 0x10742b000 + 4622340
    6   libsystem_pthread.dylib 
    0x00007fff896de899 _pthread_body + 138
    7   libsystem_pthread.dylib 
    0x00007fff896de72a _pthread_start + 137
    8   libsystem_pthread.dylib 
    0x00007fff896e2fc9 thread_start + 13
    Thread 31:
    0   libsystem_kernel.dylib  
    0x00007fff894d69aa __select + 10
    1   com.adobe.AcrobatPlugin.Comments    0x00000001125de008 0x11227e000 + 3538952
    2   com.adobe.AcrobatPlugin.Comments    0x00000001125de425 0x11227e000 + 3540005
    3   com.adobe.AcrobatPlugin.Comments    0x00000001125de75b 0x11227e000 + 3540827
    4   com.adobe.AcrobatPlugin.Comments    0x000000011256ef13 0x11227e000 + 3084051
    5   com.adobe.AcrobatPlugin.Comments    0x000000011276bc0f 0x11227e000 + 5168143
    6   libsystem_pthread.dylib 
    0x00007fff896de899 _pthread_body + 138
    7   libsystem_pthread.dylib 
    0x00007fff896de72a _pthread_start + 137
    8   libsystem_pthread.dylib 
    0x00007fff896e2fc9 thread_start + 13
    Thread 32:
    0   libsystem_kernel.dylib  
    0x00007fff894d6e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff896dff08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib 
    0x00007fff896e2fb9 start_wqthread + 13
    Thread 33:
    0   libsystem_kernel.dylib  
    0x00007fff894d6e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff896dff08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib 
    0x00007fff896e2fb9 start_wqthread + 13
    Thread 34:
    0   libsystem_kernel.dylib  
    0x00007fff894d6e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff896dff08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib 
    0x00007fff896e2fb9 start_wqthread + 13
    Thread 35:
    0   libsystem_kernel.dylib  
    0x00007fff894d6e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff896dff08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib 
    0x00007fff896e2fb9 start_wqthread + 13
    Thread 36:
    0   libsystem_kernel.dylib  
    0x00007fff894d6e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff896dff08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib 
    0x00007fff896e2fb9 start_wqthread + 13
    Thread 37:
    0   libsystem_kernel.dylib  
    0x00007fff894d6e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff896dff08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib 
    0x00007fff896e2fb9 start_wqthread + 13
    Thread 38:
    0   libsystem_kernel.dylib  
    0x00007fff894d6e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff896dff08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib 
    0x00007fff896e2fb9 start_wqthread + 13
    Thread 39:
    0   libsystem_kernel.dylib  
    0x00007fff894d6e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff896dff08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib 
    0x00007fff896e2fb9 start_wqthread + 13
    Thread 40:
    0   libsystem_kernel.dylib  
    0x00007fff894d6e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff896dff08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib 
    0x00007fff896e2fb9 start_wqthread + 13
    Thread 41:
    0   libsystem_kernel.dylib  
    0x00007fff894d6e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff896dff08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib 
    0x00007fff896e2fb9 start_wqthread + 13
    Thread 42:
    0   libsystem_kernel.dylib  
    0x00007fff894d6e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff896dff08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib 
    0x00007fff896e2fb9 start_wqthread + 13
    Thread 43:
    0   libsystem_kernel.dylib  
    0x00007fff894d6e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff896dff08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib 
    0x00007fff896e2fb9 start_wqthread + 13
    Thread 44:
    0   libsystem_kernel.dylib  
    0x00007fff894d6e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff896dff08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib 
    0x00007fff896e2fb9 start_wqthread + 13
    Thread 45:
    0   libsystem_kernel.dylib  
    0x00007fff894d6e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff896dff08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib 
    0x00007fff896e2fb9 start_wqthread + 13
    Thread 46:
    0   libsystem_kernel.dylib  
    0x00007fff894d6e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff896dff08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib 
    0x00007fff896e2fb9 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x454e4f422d49532f  rbx: 0x0000618000248310  rcx: 0x0000000000000000  rdx: 0x0000000109b7dfe0
      rdi: 0x00007fe9ea6602f0  rsi: 0x0000000000000000  rbp: 0x00007fff587dbbb0  rsp: 0x00007fff587dbb90
       r8: 0x0000000000000040   r9: 0x00007fff587dbb00  r10: 0x0000050300000000  r11: 0x0000000000000000
      r12: 0x00007fff74331420  r13: 0x0000000109b7ad58  r14: 0x00006000002544c0  r15: 0x00007fff74331420
      rip: 0x0000000108303c9f  rfl: 0x0000000000010246  cr2: 0x0000000108373ff4
    Logical CPU:
    0
    Error Code: 
    0x00000000
    Trap Number:
    13
    Binary Images:
    0x107421000 -   
    0x107423fff +com.adobe.Acrobat.Pro (15.007.20033 - 15.007.20033) <FD883658-7F81-3781-BF5A-E7160ECDEA5E> /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/MacOS/AdobeAcrobat
    0x10742b000 -   
    0x1098d5ff7 +com.adobe.Acrobat.framework (15.007.20033 - 15.007.20033) <22778E59-6EA4-3260-96A9-1641284117D2> /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Frameworks/Acrobat.framework/Versions/A/Acrobat
    0x109c0e000 -   
    0x109d5bff7 +com.adobe.ACE (AdobeACE 2.20.02.34252 - 2.20.02.34252) <DF2FA57B-FF8B-3AB3-8202-A48B685F3AF9> /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x109d73000 -   
    0x10a36ffff +com.adobe.AGM (AdobeAGM 4.30.57.1 - 4.30.57.1) <717F95AB-749A-3578-9109-42CC1DC7DF89> /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x10a858000 -   
    0x10a877fff +com.adobe.BIB (AdobeBIB 1.2.03.34252 - 1.2.03.34252) <AC4C9DD4-7FFA-3ABC-AF3D-5BB1201EC482> /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x10a87f000 -   
    0x10aba4ff7 +com.adobe.CoolType (AdobeCoolType 5.14.04.34252 - 5.14.04.34252) <6E348DF6-055E-3008-8B75-3D9A6EB0C16E> /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x10ac65000 -   
    0x10ac66ff0  ATSHI.dylib (363.5) <4FB22D13-D340-3F94-B0DD-F40899399E61> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/ATSHI.dylib
    0x10ac72000 -   
    0x10ac72ffb +cl_kernels (???) <B41E7EFD-29FD-4CBA-829C-CDE716EF03A9> cl_kernels
    0x10c499000 -   
    0x10c4c0ff7 +com.adobe.AcrobatPlugin.Updater (15.007.20033 - 15.007.20033) <8C9191EB-FD53-3D1D-B351-5903B6584CC1> /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Plugins/Updater.acroplugin/Contents/MacOS/Updater
    0x10c4ca000 -   
    0x10c4ccfff +AcrobatUpdateHelperLib.dylib (1) <A1B780FD-80BE-3A94-BB16-2C771662B2B5> /Library/Application Support/Adobe/*/AcrobatUpdateHelperLib.dylib
    0x10e03e000 -   
    0x10e065ff7 +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <4F41AFEC-269C-36D3-8160-93FD31B67206> /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
    0x10e34b000 -   
    0x10e36fff7 +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.9.0.33931 - 3.9.0.33931) <FC64B09E-8B23-3E05-B03A-5CB9BFB60586> /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8Shared Expat
    0x10e5d5000 -   
    0x10e64dfff +com.adobe.AcroSQLite (AcroSQLite - 1.0.0) <231E5716-70E9-3ECF-8F9D-C802F14DE920> /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Frameworks/AcroSQLite.framework/Versions/A/AcroSQLite
    0x10e658000 -   
    0x10e6fbff7  ColorSyncDeprecated.dylib (426) <1EBD0729-A174-3EA5-B226-DE63C2E89D14> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x10fd5b000 -   
    0x10fd85fff +com.adobe.AcrobatPlugin.EFS (15.007.20033 - 15.007.20033) <A0971EEF-0C45-37F3-859B-16E4846C7125> /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Plugins/EFS.acroplugin/Contents/MacOS/EFS
    0x10fdc8000 -   
    0x10fec9fff +com.adobe.amtlib (9.0.0.2 - 9.0.0.2) <3F115300-9436-3FC8-96E3-0CAFC726F02C> /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Frameworks/amtlib.framework/amtlib
    0x10ff78000 -   
    0x110ef9ff7 +com.adobe.AcrobatPlugin.AcroForm (15.007.20033 - 15.007.20033) <66032FC6-B61E-3E99-A8BB-E502B9F6CE76> /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Plugins/AcroForm.acroplugin/Contents/MacOS/AcroForm
    0x1113eb000 -   
    0x111584ff7 +com.adobe.AcrobatPlugin.DigSig (15.007.20033 - 15.007.20033) <7EA0A86E-F214-3E24-ABB3-448EEF35E673> /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Plugins/DigSig.acroplugin/Contents/MacOS/DigSig
    0x1115a3000 -   
    0x1120c4ff7 +com.adobe.AcrobatPlugin.PPKLite (15.007.20033 - 15.007.20033) <E88ADCE1-119A-3D02-ACB6-EFEA0FF9E2F2> /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Plugins/PPKLite.acroplugin/Contents/MacOS/PPKLite
    0x11227e000 -   
    0x112a6fff7 +com.adobe.AcrobatPlugin.Comments (15.007.20033 - 15.007.20033) <D44862C6-B06C-35E7-80CF-D8CC6F38BD10> /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Plugins/Comments.acroplugin/Contents/MacOS/Comments
    0x112be9000 -   
    0x112bf8fff  libSimplifiedChineseConverter.dylib (61) <F5827491-A4E3-3471-A540-8D1FE241FD99> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x112f2c000 -   
    0x112f3efff  libTraditionalChineseConverter.dylib (61) <A182514D-426F-3D5F-BA69-4C4A4680ECB8> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x112f5e000 -   
    0x113011ff7 +com.adobe.AdobeXMPCore (Adobe XMP Core 5.6 -c 15 - 81.157285) <C07C646A-64B4-383F-A3F0-6E39FE41347D> /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x1134e6000 -   
    0x113547ff7 +com.adobe.AcrobatPlugin.Reflow (15.007.20033 - 15.007.20033) <CCDCA4B4-A163-30FD-B8D7-7163B374154A> /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Plugins/Reflow.acroplugin/Contents/MacOS/Reflow
    0x113aef000 -   
    0x113b66ff7  com.apple.xquery (1.3.1 - 30) <2F2DC0D6-456F-33A0-8537-E0C651F6817C> /System/Library/PrivateFrameworks/XQuery.framework/XQuery
    0x114508000 -   
    0x114524fff  libJapaneseConverter.dylib (61) <94EF6A2F-F596-3638-A3DC-CF03567D9427> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0x114586000 -   
    0x1145a7ff7  libKoreanConverter.dylib (61) <22EEBBDB-A2F2-3985-B9C7-53BFE2B02D08> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0x114802000 -   
    0x11483ffff +com.adobe.AcrobatPlugin.PaperCapture (15.007.20033 - 15.007.20033) <739013D4-6018-385A-B615-777BE5822BA3> /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Plugins/PaperCapture.acroplugin/Contents/MacOS/PaperCapture
    0x114ade000 -   
    0x114b8bff7 +com.adobe.AcrobatPlugin.PDDom (15.007.20033 - 15.007.20033) <533D722C-0787-391C-9556-4928E52183A9> /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Plugins/PDDom.acroplugin/Contents/MacOS/PDDom
    0x1151b0000 -   
    0x115296fef  unorm8_bgra.dylib (2.3.58) <280D6FDD-8CA5-36EC-9EA1-D7DC09598E20> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_bgra .dylib
    0x1159f1000 -   
    0x115b00ff7 +IMSLib.dylib (9.0.1.5 - 9.0.1.5) <AC77A2DA-B4AC-3F26-95C6-E649631A0A99> /Applications/Utilities/Adobe Application Manager/*/IMSLib.dylib
    0x115b1b000 -   
    0x115b85ff7 +com.adobe.AcrobatPlugin.Spelling (15.007.20033 - 15.007.20033) <72D24790-DEB5-36A2-8959-662FA0A81A56> /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Plugins/Spelling.acroplugin/Contents/MacOS/Spelling
    0x115f2b000 -   
    0x11613bfff +com.adobe.AcrobatPlugin.EScript (15.007.20033 - 15.007.20033) <ED781A57-96C4-335D-AEE4-F4DB1CE95640> /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Plugins/EScript.acroplugin/Contents/MacOS/EScript
    0x1161d5000 -   
    0x116f1afff +com.adobe.ICUData (4.0 - 3.61) <B9864D01-126E-3C56-B04C-993F9890F6AD> /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Frameworks/ICUData.framework/Versions/4.0/ICUData
    0x116f2e000 -   
    0x117031ff7 +com.adobe.ICUUnicode (4.0 - 3.61) <CE487901-E84A-3E54-95AB-91F2EAF57F6A> /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Frameworks/ICUUnicode.framework/Versions/4.0/ICUUnicode
    0x11707c000 -   
    0x1170f8ff7 +com.adobe.linguistic.LinguisticManager (9.0.0 - 21429) <4D65F948-FC77-3DCB-8370-995E98502B48> /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
    0x11757e000 -   
    0x11761cff7 +com.irislink.mac.drsasian (1.2 - 0.8) <096B7E58-92EF-85A6-C041-A1F3FF8F8FBA> /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Plugins/PaperCapture.acroplugin/Contents/Frameworks/OCRLibrary.frame work/Versions/A/Frameworks/iDRS15.framework/Resources/drsasian.framework/drsasian
    0x117d4b000 -   
    0x117f7efff +com.adobe.adobehunspellplugin2 (1.0) <33570601-55DC-39F9-BE6B-A438BB5C5236> /Library/Application Support/Adobe/*/AdobeHunspellPlugin.bundle/Contents/MacOS/AdobeHunspellPlugin
    0x118bb4000 -   
    0x118ca2fff +com.irislink.mac.irislex (1.0 - 0.15) <95E5528B-5B7A-3A8C-93AC-7A2B54C42108> /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Plugins/PaperCapture.acroplugin/Contents/Frameworks/OCRLibrary.frame work/Versions/A/Frameworks/iDRS15.framework/Resources/irislex.framework/irislex
    0x11c6d0000 -   
    0x11cdd4ff7 +com.adobe.AcrobatPlugin.TouchUp (15.007.20033 - 15.007.20033) <D17380F1-A82E-3100-8525-94D6CA58C7A7> /Applications/Adobe Acrobat DC/Adobe Acrobat.app/Contents/Plugins/TouchUp.acroplugin/Contents/MacOS/TouchUp

  • Acrobat Pro and Reader fighting for Safari frameworks folder...

    We manage hundreds of Macs of which most are at 10.4.8.
    We have both Acrobat Pro and Reader 7.0.8 installed on all Macs.
    Sometime within the last few weeks something has changed on our systems (eg: upgrading from something under 10.4.8 to 10.4.8) that is causing Acrobat Pro and Reader to fight for the Safari.app/Contents/Frameworks/ folder. This folder contains aliases to either Pro or Reader frameworks within that Acrobat app's own frameworks folder (...Acrobat Pro.app/Contents/Frameworks/)
    This issue is that the end user is prompted to authenticate for either Reader or Pro to "repair itself" which it is just changing the aliases within the Safari Frameworks folder to point to their own frameworks.
    If I set Preview as the default pdf viewer and then delete Acrobat Reader so that only Preview and Acrobat Pro are on the client, then it seems to work beautifully without authentication request. We would like to keep Reader on the systems though. We use Sassafras' Keyserver with a limited number of licenses for Acrobat Pro.
    Has anyone else experienced this? Found a solution, etc?
    Thanks!

    I agree with rikbarry - I finally reinstalled Acrobat, then ran the 
    update to 9.4.5. The updater took nearly an hour to finish which can't 
    be normal, but the software appears to be the correct version now.
    I work for a very small graphic design company and use an older emac 
    that has pretty much reached its shelf life for many apps and OS. 
    Could my aging computer be contributing to the problem?
    Because we depend heavily on pdf workflow, I chose to reinstall 
    WITHOUT running the uninstaller first, as the 9.4.4 version was at 
    least still functioning. I was somewhat surprised that it worked, and 
    I am NOT looking forward to the next updater.

  • Issue with - Connector Framework  SAP EP 7.0

    HI
    Need assitance on usage of connector framework to connect to SAP R/3 using SSO.
    I am trying to call a BAPI from a jsp iView using sap connector framework.
    Release :  EP (SAP NetWeaver 7.0 (2004s) SPS 12).
    Steps I did so far :
    1. imported following jars in my project :
    a. activation.jar
    b. connector.jar
    c. GenericConnector.jar
    d. jaas.jar
    e. jta.jar
    f. portal_services_api_lib.jar
    2. declared import of class:
    <%@ page import = "com.sapportals.portal.ivs.cg.*" %>
    <%@ page import = "com.sapportals.connector.connection.IConnection" %>
    <%@ page import = "com.sapportals.connector.execution.structures.*" %>
    <%@ page import = "com.sapportals.connector.execution.functions.IInteraction" %>
    <%@ page import = "com.sapportals.connector.execution.functions.IInteractionSpec" %>
    3. appended portalapp.xml with :
      <application-config>
        <property name="SharingReference" value=",com.sap.portal.htmlb,com.sap.portal.pagebuilder,com.sap.portal.themes.lafservice,com.sap.portal.navigation.service,com.sap.portal.navigation.helperservice,com.sap.portal.license.runtime,com.sap.portal.common.commonservices,SAPJ2EE::library:com.sap.portal.common,com.sap.portal.ivs.connectorservice"/>
      </application-config>
    4. added following code :
         IConnectorGatewayService cgService = (IConnectorGatewayService) PortalRuntime.getRuntimeResources().getService(IConnectorGatewayService.KEY);
         IConnection connection = cgService.getConnection("ABC", request);
    <b>     IInteraction ix = connection.createInteractionEx();</b>
    5. Verfied connectivity of system alias ABC with connetion test from portal.
    When I test the repective iview after deployment it fails on the bold line with an error 'unable to deploy jsp'. I could verify that cgService and connection objects were initialized.
    Will appreciate expert comments/suggestions on the issue.
    Thanks and cheers,
    Amit.

    Hi,
    When you select that property, you get a value field in the bottom of the screen to enter the Cutom values.
    You can give the value there and click on the Set button.
    Also check the dbpool properties for this error code.
    Regards,
    Venkat

  • Server0 getting down and logon not possible ( error in license check)

    Hi Guys,
    I rebooted my SAP server and after that server0 is in disabled mode, well both the boxes seems to be green but the server0 node in disable mode as if it is maintained by some parameter and I have changed it, which is not the case, also there is no log with dev_server0 since then. I have followed 723909 note and also copied the parameters of a running server but didn't get success. Also when I am trying to login through SAPGUI its giving me error " Logon not possible( error in license check)" while the license is already installed.
    dev_w0 log says
    M Wed Sep 01 14:42:14 2010
    M  *** ERROR => sap license, no valid license found [likeyapi_w.c 2260]
    M  *** ERROR => wlikey_check_webas: There is a permanent license key for "NetWeaver_ADA" in the system but it has never been checked successfully. In this situation a temporary license key mustn't be installed. [sliclikey.c  1314]
    M  *** ERROR => The temporary license key for NetWeaver_ADA could not be installed [likeyapi_w.c 2305]
    SAP ECC 6.0 release 700
    DB: MaxDB
    OS: Win2k3 server
    Please help.
    Regards
    Mridul Gupta

    License issue is resolved but server0 node is still in disable status while the instances shows green, I checked dev_jcontrol log and found :
    [Thr 2168] [Node: server0] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_25-x64
    [Thr 2168] JStartupICheckFrameworkPackage: can't find framework package E:\usr\sap\W6Q\DVEBMGS12\exe\jvmx.jar
    JStartupIReadSection: read node properties [ID123322550]
    -> node name          : server0
    -> node type          : server
    -> node execute       : no
    -> jlaunch parameters :
    -> java path          : C:\j2sdk1.4.2_25-x64
    I think the node execute sud be yes, I just wanted to know how I can enable this.
    Regards,
    Mridul Gupta

  • Does compiling an advanced datagrid using flex ant task require additional config other than the license property?

    Hi,
        I am trying to build my Flex app which uses the Advanced Data Grid in a couple of locations. Originally, when I built the app using the flex ant tasks, I noticed the Visualization Trial watermark show up on the screen. I then added the license tag with the serial number to my flex-config.xml and re-ran my ant build. The watermark goes away, but then when I look at the advanced datagrid, the datagrid shows up with the hierarchy, but the data does not display in the grid (only the group by nodes are visible, not the data for the leaf elements). This works fine when I build the app using my Flex Builder. Is there something I am missing or need to add to my flex ant task to make this work?
    Any help or guidance is much appreciated.
    The following is the ant task to build the module that uses the ADG:
        <target name="compile-modules" depends="compile-shared">
            <!-- Module 1 -->
            <echo>Compiling module 1...</echo>
            <mxmlc file="${modulesrc.dir}\ui\modules\mod1\Module1.mxml"
                    output="${dist.dir}\modules\mod1\Module1.swf"
                    actionscript-file-encoding="UTF-8"
                    incremental="true"
                    default-background-color="0xFFFFFF"
                    use-network="false"
                    load-externs="${extern-report-xml}">
                <load-config filename="${FLEX_HOME}/frameworks/flex-config.xml" />
                <source-path path-element="${FLEX_HOME}/frameworks"/>
                <!-- source paths -->
                <compiler.source-path path-element="${modulesrc.dir}"/>
                <!-- add external libraries -->
                <compiler.library-path dir="${main.dir}" append="true">
                    <include name="${lib.dir}"/>
                </compiler.library-path>
                <compiler.library-path dir="${FLEX_HOME}/frameworks" append="true">
                    <include name="libs" />
                    <include name="locale/{locale}" />
                </compiler.library-path>
                <compiler.debug>true</compiler.debug>
            </mxmlc>
        </target>
    And here is the ant task for the main application:
        <target name="compile-ui" depends="compile-modules">
            <mxmlc file="${src.dir}/MainApp.mxml" output="${dist.dir}/MainApp.swf"
                    actionscript-file-encoding="UTF-8" keep-generated-actionscript="false"
                    fork="true" maxmemory="1024m">
                <jvmarg value="-XX:MaxPermSize=256m"/>
                <load-config filename="${FLEX_HOME}/frameworks/flex-config.xml"/>
                <source-path path-element="${FLEX_HOME}/frameworks"/>
                <source-path path-element="${src.dir}"/>
                <source-path path-element="${main.dir}/locale/{locale}"/>
                <!-- List of SWC files or directories that contain SWC files. -->
                <!--<compiler.library-path dir="${FLEX_HOME}/frameworks" append="true">
                    <include name="libs" />
                    <include name="locale/{locale}" />
                </compiler.library-path>-->
                <compiler.library-path dir="${FLEX_HOME}/frameworks" append="true">
                    <include name="libs/datavisualization.swc" />
                    <include name="libs/flex.swc" />
                    <include name="libs/framework.swc" />
                    <include name="libs/rpc.swc" />
                    <include name="libs/utilities.swc" />
                    <include name="locale/{locale}" />
                </compiler.library-path>
                <compiler.library-path dir="${main.dir}" append="true">
                    <include name="${lib.dir}"/>
                </compiler.library-path>
                <runtime-shared-library-path path-element="${FLEX_FRAMEWORK}/framework.swc">
                    <url rsl-url="framework_3.2.0.3958.swf"/>
                    <url rsl-url="framework_3.2.0.3958.swz"/>
                </runtime-shared-library-path>
                <compiler.debug>true</compiler.debug>
            </mxmlc>
        </target>
    Regards,
    Purush

    to remove watermark i have added license key in WEB-INF\flex\license.properties file as key = value

  • Usage / License Agreement required for login

    Hi,
    Has anyone implemented a required usage agreement in 5.x?
    I am moving from 4.5 where I would show the usage agreement inside the portal.
    I have no problem with creating a login PEI, but am not sure what is the best way
    to show the agreement page (inside the portal framework or as a pop-up)or to log them out if the do not agree.
    Any help would be appreciated.
    Thanks
    Rick

    "it is allowed only when using Oracle Standard Edition (not One)"
    This makes me a bit suspicious that he is just after sales revenue.
    Their new move to cloud computing includes Amazon Machine Images covering Enterprise, Standard, Standard One and Express Editions.
    http://www.oracle.com/technology/tech/cloud/index.html
    The Licensing FAQ explicitly mentions
    "Under cloud computing, Oracle Standard Edition One may only be licensed on EC2 instances up to 8 virtual cores."
    I'm not clear where your application sits in relation to your database.
    If the database is not directly accessible to the internet (ie you are not giving them SQL access), then the user is interacting with the application, and the database is 'internal' to your company. Generally you have a firewall to make sure it is internal.
    If you are using XE's default Apex as the application, the situation may be different as they are interacting directly with a component of XE.
    If you are using an updated Apex, you'll be guided by the license on that, which is slightly different to the XE and standard OTN license. A careful reading of the license indicates that you are only licensed to install it either on a paid-for Oracle db, or for development, though Oracle have documented and coded it to be installed on XE.

  • Webcenter 11g licensing

    Hi,
    WebCenter consists of multiple parts (framework, services, composer, ...).
    Do I need WebCenter license when I only use the framework and composer functionality but no pre-build webcenter service (like wiki, blog, email, ...)?
    regards
    Peter

    Strange... I thought it was possible. Maybe you can contact someone from oracle sales to be sure.
    Also, what do you want to build? Because you want to build webcenter apps, i think you also want to build portlets. Those portlets, do they need to be ADF portlets or taskflows converted into a portlet? The reason for this, is because ADF portlets and taskflows to portlets require the ADF portlet bridge and if i recall correctly from previous discussion i had with a customer, the portlet bridge is only available in the webcenter service and webcenter suite licence. So if their is a sepperate webcenter framework license (which i think their is...) you don't have the portlet bridge included into it. Therefore you need at least the webcenter services or suite.

  • "Function not authorized for License" error

    Hi All,
    I am getting "Function not authorized for License" error when i am retrieving details from a custom UI Map.
    The UI Map invokes a Business Service which calls a service program.
    I have written a page service for the service program.
    What License is this error indicating?
    I am using CCB 2.3.1 and Eclipse SDK 2.2.0.5.

    Check Admin Menu -> Installation Options Framework -> Accessible Modules to see if any module is turned off.
    Next go to Admin Menu -> Feature Configuration -> Feature Type = Module Configuration and remove an entry of a module which is turned off.
    Try the UI Map again

  • SDDM guest login, transition to KDE Framework

    Hi,
    I am preparing the Transition to KDE Frameworks and as a first step I want to install SDDM, as suggested here.
    Some time ago I set up an Ubuntu-style guest-account or guest-login with KDM/KDE4 and would like to keep that in SDDM. A home directory is set up on a temporary file system on kdm start (as root before login dialog appears, see below), and cleaned/recreated after each logout.  I copied it from here. Now the question:
    Is it possible to do that in SDDM?
    There is an entry "Guest-login" on a TODO page of SDDM at github, which is about half a year old. So don't know if that has been implemented or not. Do you know?
    Also, there is a Wishlist entry on the SDDM github site, which seems to request just what I need. There it is suggested to use pam_mount and systemd (auto)mount units in a user-session, but I'm not sure if that would help in my problem?
    Currently I'm calling a script "guest-account" (see below) in /usr/share/config/kdm/Xsetup. Xsetup is looks like:
    #! /bin/sh
    # Xsetup - run as root before the login dialog appears
    /root/scripts/guest-account add
    And  /usr/share/config/kdm/Xreset looks like:
    #! /bin/sh
    # Xreset - run as root after session exits
    if [ $USER = 'guest' ];
    then
    /root/scripts/guest-account remove guest
    /root/scripts/guest-account add
    fi
    The script guest-account (found it here) looks like:
    #!/bin/sh -e
    # (C) 2008 Canonical Ltd.
    # Author: Martin Pitt <[email protected]>
    # License: GPL v2 or later
    # modified by David D Lowe and Thomas Detoux
    # Setup user and temporary home directory for guest session.
    # If this succeeds, this script needs to print the username as the last line to
    # stdout.
    add_account ()
    mkdir /tmp/guest
    HOME="/tmp/guest"
    USER=`echo $HOME | sed 's/\(.*\)guest/guest/'`
    # if $USER already exists, it must be a locked system account with no existing
    # home directory
    if PWSTAT=`passwd -S "$USER"` 2>/dev/null; then
    if [ "`echo \"$PWSTAT\" | cut -f2 -d\ `" != "L" ]; then
    echo "User account $USER already exists and is not locked"
    exit 1
    fi
    PWENT=`getent passwd "$USER"` || {
    echo "getent passwd $USER failed"
    exit 1
    GUEST_UID=`echo "$PWENT" | cut -f3 -d:`
    if [ "$GUEST_UID" -ge 500 ]; then
    echo "Account $USER is not a system user"
    exit 1
    fi
    HOME=`echo "$PWENT" | cut -f6 -d:`
    if [ "$HOME" != / ] && [ "${HOME#/tmp}" = "$HOME" ] && [ -d "$HOME" ]; then
    echo "Home directory of $USER already exists"
    exit 1
    fi
    else
    # does not exist, so create it
    # Arch Linux modification: Ubuntu/Debian uses their own adduser package,
    # which works differently from the own provided by the shadow package.
    # Instead, use useradd, which works in any distro.
    # Only the syntax is changed
    # adduser -> useradd
    # --system -> --system
    # --no-create-home -> --no-create-home
    # --home -> --home-dir
    # --gecos -> --comment
    # --group -> --user-group
    # --shell -> --shell
    #adduser --system --no-create-home --home / --gecos "Guest" --group --shell /bin/bash $USER || {
    useradd --system --no-create-home --home-dir / --comment "Guest" --user-group --shell /bin/bash $USER || {
    umount "$HOME"
    rm -rf "$HOME"
    exit 1
    echo "guest:guest"|chpasswd
    fi
    # create temporary home directory
    mount -t tmpfs -o mode=700 none "$HOME" || { rm -rf "$HOME"; exit 1; }
    chown $USER:$USER "$HOME"
    gs_skel=/etc/guest-session/skel/
    if [ -d "$gs_skel" ] && [ -n "`find $gs_skel -type f`" ]; then
    cp -rT $gs_skel "$HOME"
    else
    cp -rT /etc/skel/ "$HOME"
    fi
    chown -R $USER:$USER "$HOME"
    usermod -d "$HOME" "$USER"
    # Load restricted session
    #dmrc='[Desktop]\nSession=guest-restricted'
    #/bin/echo -e "$dmrc" > "$HOME"/.dmrc
    chown -R $USER:$USER "$HOME"
    echo $USER
    remove_account ()
    USER=$1
    PWENT=`getent passwd "$USER"` || {
    echo "Error: invalid user $USER"
    exit 1
    USERUID=`echo "$PWENT" | cut -f3 -d:`
    HOME=`echo "$PWENT" | cut -f6 -d:`
    # deluser is provided by the adduser package on Debian/Ubuntu. useradd
    # doesn't have a '--system' parameter, which causes deluser to only delete
    # system users, so this will be handled using this script.
    SYS_UID_MIN="$(cat /etc/login.defs | grep SYS_UID_MIN | awk '{print $2}')"
    SYS_UID_MAX="$(cat /etc/login.defs | grep SYS_UID_MAX | awk '{print $2}')"
    if [ "$USERUID" -lt "$SYS_UID_MIN" ] || [ "$USERUID" -gt "$SYS_UID_MAX" ]; then
    echo "Error: user $USER is not a system user."
    exit 1
    fi
    if [ "${HOME}" = "${HOME#/tmp/}" ]; then
    echo "Error: home directory $HOME is not in /tmp/."
    exit 1
    fi
    # kill all remaining processes
    while ps h -u "$USER" >/dev/null; do
    killall -9 -u "$USER" || true
    sleep 0.2;
    done
    umount "$HOME" || umount -l "$HOME" || true
    rm -rf "$HOME"
    # remove leftovers in /tmp
    find /tmp -mindepth 1 -maxdepth 1 -uid "$USERUID" -print0 | xargs -0 rm -rf || true
    #deluser --system "$USER"
    userdel "$USER"
    case "$1" in
    add)
    add_account
    remove)
    if [ -z $2 ] ; then
    echo "Usage: $0 remove [account]"
    exit 1
    fi
    remove_account $2
    echo "Usage: $0 add|remove"
    exit 1
    esac
    Last edited by stri (2015-01-29 04:00:19)

    Release 12 enforces multi-org. We have the profile options 'MO: Operating Unit' and 'MO: Default Operating Unit' set to our one and only org_id. Is there also a default responsibility that needs to be set to allow GUEST access to an OAF page in R12?
    Thanks,
    Elaine

  • SOA suite licensing for production use

    Hi,
    I have been toying around with JDeveloper 11g and Oracle SOA Suite 11g and finally I can now say I am in a position to recommend to start moving the organisation's business processes and enterprise integration gradually to this framework. However I am slightly confused what the Oracle SOA Suite license would cover.
    It is not clear what components are covered with the SOA Suite 11g license (for example: is the OSB also included? it is a separate download. Is CEP included?)
    Also, will we need a separate Oracle database license for it to really work? If yes what database is needed (Enterprise, Standard etc.)? or does the SOA Suite license cover the use of a database too in some way, as long as it is used for SOA and BPEL etc.?
    I presume that for a reliable framework we would need at least 2 nodes with clustering at both application level and database level, so we really need to do our homework well with regards to the costs required.
    thanks.

    Oracle SOA Suite 11g licence includes full use license for Oracle Service Bus(even though it is available as separate download) and so is true for CEP.
    Refer to [http://download.oracle.com/docs/cd/E12839_01/integration.1111/e10223/01_components.htm]
    Yes, SOA Suite will require a database and does not include any kind of database license related to SOA Suite license. For development purposes free Oracle DB XE will suffice.

  • Where in the bc4j framework is the real implementation of interface methods

    I was going through a ADF for forms and 4 GL developers and came across following code.
    package devguide.examples.client;
    import oracle.jbo.client.Configuration;
    import oracle.jbo.*;
    import oracle.jbo.domain.Number;
    import oracle.jbo.domain.*;
    +public class TestClient {+
    +public static void main(String[] args) {+
    String amDef = "devguide.examples.UserService";
    String config = "UserServiceLocal";
    ApplicationModule am =
    Configuration.createRootApplicationModule(amDef,config);
    ViewObject vo = am.findViewObject("UserList");
    +while (vo.hasNext()) {+
    Row curUser = vo.next();
    System.out.println(vo.getCurrentRowIndex()". "++
    curUser.getAttribute("UserId")" "++
    curUser.getAttribute("Email"));
    Configuration.releaseRootApplicationModule(am,true);
    +}+
    +}+
    I wanted to understand that findViewObject returns an interface of type ViewObject.Since ViewObject is an interface so it does not have code implementation of any of its method like hasNext or next.Where in the framework is the actual implementation of these methods ?
    Thanks

    Are you asking to look at the code of the interface?
    For that you'll need an Oracle Support license and then you can request the actual source code of Oracle ADF from Oracle Support by opening an SR.
    If you just want to see the documentation for a method check the documentation API section for example:
    http://docs.oracle.com/cd/E35521_01/index.htm
    http://docs.oracle.com/cd/E35521_01/apirefs.111230/e17483/toc.htm
    http://docs.oracle.com/cd/E35521_01/apirefs.111230/e17483/oracle/jbo/ViewObject.html

Maybe you are looking for