Configuring error queue through script

Hello,
I have two queues where the second is the error queue for the first. I can set everything manually through console but I need to create a python script that will do it automatically.
I looked up some information on internet and I was able to create the queues:
<pre>
def create_Queue( moduleName, queueName, queueJNDIName, subDeployementName):
print "creating Queue named " + queueName
cd( '/JMSSystemResources/' + moduleName + '/JMSResource/' + moduleName)
theBean = cmo.lookupQueue( queueName)
if theBean == None:
cmo.createQueue( queueName)
else :
print "Queue already created ..."
cd("/JMSSystemResources/" + moduleName + "/JMSResource/" + moduleName + "/Queues/" + queueName)
set( "Name", queueName)
set( "SubDeploymentName", subDeployementName)
set( "JNDIName", queueJNDIName)
</pre>
but I don't know how to set up the Error Queue. I tried:
<pre>
prefix = "/JMSSystemResources/" + JMSModuleName + "/JMSResource/" + JMSModuleName + "/Queues/"
cd(prefix + "first")
set("ErrorDestination", prefix + "second")
</pre>
but without success. I don't know if I am trying something completely wrong or if just the name of the attribute is wrong ...

transferModule = cmo.createJMSSystemResource('TransferModule');
#optionally target
#transferModule.getTargets().append(aserver);
jmsResource = transferModule.getJMSResource();
jmsResource.createQueue('TransferQueue');
transferQueue = jmsResource.lookupQueue('TransferQueue');
jmsResource.createQueue('ErrorQueue');
errorQueue = jmsResource.lookupQueue('ErrorQueue');
transferQueue.setJNDIName('jms/TransferQueue');
#transferQueue.setSubDeploymentName('TransferSubDeployment');
transferQueue.getDeliveryParamsOverrides().setRedeliveryDelay(100);
transferQueue.getDeliveryFailureParams().setRedeliveryLimit(5);
transferQueue.getDeliveryFailureParams().setExpirationPolicy('Redirect');
transferQueue.getDeliveryFailureParams().setErrorDestination(errorQueue);What you also can do is configure your JMS environment using the console.
While you are doing this, you can record your modifications.
The record button is located in the top middle of the console.

Similar Messages

  • Mail the message while transferring to error queue

    Hi,
              I want to mail the message when a message is sent to error queue.
              I have configured error queue in weblogic console.
              Thanks and Regards
              A.SathishKumar

    "Stickied" in the top section of this Windows Hotsync board is a thread with instructions to do a clean uninstall of Palm Desktop.  Try that, then reinstall the previous version.
    smkranz
    I am a volunteer, and not an HP employee.
    Palm OS ∙ webOS ∙ Android

  • How to configure a error queue for weblogic jms topic

    Hi guys.
    I want to configure a error queue for weblogic jms topic. Wanted: The message goes to error destination when messages have expired or reached their redelivery limit.
    1. using jms transport configure proxy service:
    Retry Count :3
    Retry Interval:10
    Error Destination: ErrorTopic
    Expiration Policy: Redirect
    I tried use the proxy service to consume message from the jms topic . and generation an error in the proxy message flow. But the message didn't goes into the error topic.
    Any suggestions for this topic? Can anyone provide some helps or any useful links.
    Thanks in advance.
    Mingzhuang

    Mingzhuang
    I want to configure a error queue for weblogic jms topic. Wanted: The message goes to error destination when messages have expired or reached their redelivery limit.
    1. using jms transport configure proxy service:
    Retry Count :3
    Retry Interval:10
    Error Destination: ErrorTopic
    Expiration olicy: RedirectUnlike File/SFTP, JMS proxy service definition does not have the concept of Error Destination. To accomplish similar functionality go to JMSQ on (for which proxy is configured) server console (http://localhost:7001/console) and configure the Error Destination. Following URL will help in how to configure JMS Q.
    http://edocs.bea.com/wls/docs103/ConsoleHelp/taskhelp/jms_modules/queues/ConfigureQueues.html
    http://edocs.bea.com/wls/docs103/ConsoleHelp/taskhelp/jms_modules/queues/ConfigureQueueDeliveryFailure.html
    I tried use the proxy service to consume message from the jms topic . and generation an error in the proxy message flow. But the message didn't goes into the error topic.If every thing is configured as per above step, then the after retries, the weblogic server will put the message into JMS topic configured. Your proxy will receive from this topic.
    Let me know if we are not on same page.
    Cheers
    Manoj

  • Problem Configuring JMS Error Queue

    Domain configuration : one adminServer, One cluster, 2 managedservers in cluster
    Two distibuted Queues: InboundQueue, Error Queue
    I want to redirect any bad message from InboundQueue to ErrorQueue and discard it.
    It worked fine for 4 yrs in Wls 8.1 ( did configured in 8.1)..
    now i upgrde to wls 10.1 and i did same configuration but InboundQueue is not redirecting to Errorqueue..
    Dont know where i am missing..
    here is the config.xml entry and jms/JmModule.xml files..
    config.xml entry_
    <jms-system-resource>
    <name>JmsModule</name>
    <target>cluster1</target>
    <sub-deployment>
    <name>subdeployment1</name>
    <target>JmsServer1,JmsServer2</target>
    </sub-deployment>
    <descriptor-file-name>jms/JmsModule-jms.xml</descriptor-file-name>
    </jms-system-resource>
    JmsModule.xml_
    <?xml version='1.0' encoding='UTF-8'?>
    <weblogic-jms xmlns="http://www.bea.com/ns/weblogic/90" xmlns:sec="http://www.bea.com/ns/weblogic/90/security" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wls="http://www.bea.com/ns/weblogic/90/security/wls" xsi:schemaLocation="http://www.bea.com/ns/weblogic/920 http://www.bea.com/ns/weblogic/920.xsd">
    <uniform-distributed-queue name="ErrorQueue">
    <sub-deployment-name>subdeployment1</sub-deployment-name>
    <delivery-params-overrides>
    <delivery-mode>Non-Persistent</delivery-mode>
    <time-to-deliver>-1</time-to-deliver>
    <time-to-live>-1</time-to-live>
    <priority>-1</priority>
    <redelivery-delay>-1</redelivery-delay>
    </delivery-params-overrides>
    <delivery-failure-params>
    <redelivery-limit>0</redelivery-limit>
    </delivery-failure-params>
    <jndi-name>ErrorQueue</jndi-name>
    <load-balancing-policy>Round-Robin</load-balancing-policy>
    <forward-delay>-1</forward-delay>
    </uniform-distributed-queue>
    <uniform-distributed-queue name="InboundQueue">
    <sub-deployment-name>subdeployment1</sub-deployment-name>
    <delivery-params-overrides>
    <delivery-mode>Persistent</delivery-mode>
    <time-to-deliver>10</time-to-deliver>
    <time-to-live>10</time-to-live>
    <priority>2</priority>
    <redelivery-delay>10</redelivery-delay>
    </delivery-params-overrides>
    <delivery-failure-params>
    <error-destination>ErrorQueue</error-destination>
    <redelivery-limit>1</redelivery-limit>
    <expiration-policy>Redirect</expiration-policy>
    </delivery-failure-params>
    <jndi-name>InboundQueue</jndi-name>
    <load-balancing-policy>Round-Robin</load-balancing-policy>
    <forward-delay>10</forward-delay>
    </uniform-distributed-queue>
    </weblogic-jms>
    Any help
    Thanks
    ksr

    Are you still having a problem? If so, I recommend trying to simplify the reproducer by removing the "time-to-deliver", "redelivery-delay", and "time-to-live" settings.
    <time-to-deliver>10</time-to-deliver>
    <time-to-live>10</time-to-live>
    <redelivery-delay>10</redelivery-delay>
    Note that these are all set to a very small value (10 milliseconds), and that the message will expire before it can be delivered or redelivered. The delivery delay is 10 millis, so by the time the delivery delay completes, the time-to-live will have passed -- furthermore, if there was no delivery delay, the redelivery delay is at 10 millis -- so by the time the redel occurs the time-to-live expires).
    Tom

  • Adobe Illustrator Crashes After Launch - Configuration Error 5

    Hardware config:
    Model Name:          MacBook Air
    Model Identifier:          MacBookAir4,1
    Processor Name:          Intel Core i5
    Processor Speed:          1.6 GHz
    Number of Processors:          1
    Total Number of Cores:          2
    L2 Cache (per Core):          256 KB
    L3 Cache:          3 MB
    Memory:          4 GB
    Software:
    System Version:          OS X 10.8.2 (12C60)
    Adobe Creative Cloud, Illustrator CS6
    Problem:
    Adobe Illustrator was working fine on my MacBook Pro. That is in the shop being fixed, meanwhile I have a loaner computer which is what the specs are above. All my Adobe apps work, except for Illustrator. When I launch it, it loads everything but just as the main menu across the top loads I get an error stating:
    Configuration error
    Please uninstall and reinstall the product.
    If this problem still occurs, please contact Adobe technical support for help, and mention the error code shown at the bottom of this screen.
    Error: 5
    http://www.adobe.com/support/
    I've uninstalled and reinstalled Illustrator. With and without preferences. Many times. I went so far as to uninstall all my Adobe products, use the CS cleaner, and manually go in and delete any files I could find related to anything Adobe. I just reinstalled, and yet I get the same error. I've read about other people having a similar problem, but nobody seems to have a solution. Anyone have any ideas?
    An additional detail, I have my hard drive from the MacBook Pro, and when I boot from it (through the Macbook Air, it's attached via USB) I still have the same issue of Illustrator crashing just after launch with the same error message. The ultimate test will be when I get my MBP back Thursday and am able to see if it's something specific to the MBA.
    Note: I spent an hour or so on the phone with Adobe support and we changed permissions on various folders, downloaded the newer version of the Adobe Application Manager, uninstalled Illustrator again and reinstalled it, repaired permissions, etc. and nothing fixed the problem. The support rep took over my computer and did a bunch of things but to no avail. He then said he was going to try one more thing before escalating it, but then the phone disconnected us. I was connected through chat and he said he was going to call me back, but never did and then the chat window automatically closed and I don't know how to get back in touch with him.

    Still no luck with Adobe support. I call, it takes 20 minutes for them to figure out they've already tried everything at the entry level and that it needs to be escalated, they tell me I'll get a call sometime in the next 1-2 days, the call comes when I'm not at my office or phone (sometimes at 7 pm at night, sometimes at 7 am in the morning, two times when I am rarely at my computer in my office), they leave a message telling me to call in, and the process repeats.
    Now, there is this information below from a crash report. If anyone can make heads or tails of this let me know.
    Process:         Adobe Illustrator [55287]
    Path:            /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    Identifier:      com.adobe.illustrator
    Version:         682 (16.0.0)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [187]
    User ID:         501
    Date/Time:       2013-02-01 20:30:24.800 -0700
    OS Version:      Mac OS X 10.8.2 (12C60)
    Report Version:  10
    Interval Since Last Report:          967910 sec
    Crashes Since Last Report:           14
    Per-App Interval Since Last Report:  515 sec
    Per-App Crashes Since Last Report:   4
    Anonymous UUID:                      AD46D210-611E-B8F9-AF00-22DF16B55578
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000008
    VM Regions Near 0x8:
    -->
        __TEXT                 0000000100000000-000000010186d000 [ 24.4M] r-x/rwx SM=COW  /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.adobe.illustrator.plugins.SymbolPalette          0x000000011bc96e9e PluginMain + 358030
    1   com.adobe.illustrator.plugins.SymbolPalette          0x000000011bc9a34c PluginMain + 371516
    2   com.adobe.illustrator.plugins.SymbolPalette          0x000000011bc5f970 PluginMain + 131424
    3   com.adobe.illustrator.plugins.SymbolPalette          0x000000011bc9a1af PluginMain + 371103
    4   com.adobe.illustrator.plugins.SymbolPalette          0x000000011bc987d3 PluginMain + 364483
    5   com.adobe.illustrator.plugins.SymbolPalette          0x000000011bc9eaa8 PluginMain + 389784
    6   com.adobe.illustrator.plugins.SymbolPalette          0x000000011bc8376b PluginMain + 278363
    7   com.adobe.illustrator.plugins.SymbolPalette          0x000000011bc3f93c PluginMain + 300
    8   com.adobe.illustrator                   0x0000000100c84bfa std::_Rb_tree<SPSUAS, std::pair<SPSUAS const, int>, std::_Select1st<std::pair<SPSUAS const, int> >, std::less<SPSUAS>, std::allocator<std::pair<SPSUAS const, int> > >::erase(SPSUAS const&) + 24282
    9   com.adobe.illustrator                   0x0000000100c7f1ec std::_Rb_tree<SPSUAS, std::pair<SPSUAS const, int>, std::_Select1st<std::pair<SPSUAS const, int> >, std::less<SPSUAS>, std::allocator<std::pair<SPSUAS const, int> > >::erase(SPSUAS const&) + 1228
    10  com.adobe.illustrator                   0x0000000100c8236c std::_Rb_tree<SPSUAS, std::pair<SPSUAS const, int>, std::_Select1st<std::pair<SPSUAS const, int> >, std::less<SPSUAS>, std::allocator<std::pair<SPSUAS const, int> > >::erase(SPSUAS const&) + 13900
    11  com.adobe.illustrator                   0x0000000100c82656 std::_Rb_tree<SPSUAS, std::pair<SPSUAS const, int>, std::_Select1st<std::pair<SPSUAS const, int> >, std::less<SPSUAS>, std::allocator<std::pair<SPSUAS const, int> > >::erase(SPSUAS const&) + 14646
    12  com.adobe.illustrator                   0x0000000100c84bfa std::_Rb_tree<SPSUAS, std::pair<SPSUAS const, int>, std::_Select1st<std::pair<SPSUAS const, int> >, std::less<SPSUAS>, std::allocator<std::pair<SPSUAS const, int> > >::erase(SPSUAS const&) + 24282
    13  com.adobe.illustrator                   0x0000000100c7f1ec std::_Rb_tree<SPSUAS, std::pair<SPSUAS const, int>, std::_Select1st<std::pair<SPSUAS const, int> >, std::less<SPSUAS>, std::allocator<std::pair<SPSUAS const, int> > >::erase(SPSUAS const&) + 1228
    14  com.adobe.illustrator                   0x0000000100c8236c std::_Rb_tree<SPSUAS, std::pair<SPSUAS const, int>, std::_Select1st<std::pair<SPSUAS const, int> >, std::less<SPSUAS>, std::allocator<std::pair<SPSUAS const, int> > >::erase(SPSUAS const&) + 13900
    15  com.adobe.illustrator                   0x0000000100c800ac std::_Rb_tree<SPSUAS, std::pair<SPSUAS const, int>, std::_Select1st<std::pair<SPSUAS const, int> >, std::less<SPSUAS>, std::allocator<std::pair<SPSUAS const, int> > >::erase(SPSUAS const&) + 5004
    16  com.adobe.illustrator                   0x0000000100c8157e std::_Rb_tree<SPSUAS, std::pair<SPSUAS const, int>, std::_Select1st<std::pair<SPSUAS const, int> >, std::less<SPSUAS>, std::allocator<std::pair<SPSUAS const, int> > >::erase(SPSUAS const&) + 10334
    17  com.adobe.illustrator                   0x000000010098374d 0x100000000 + 9975629
    18  com.adobe.illustrator                   0x0000000100984a39 0x100000000 + 9980473
    19  com.adobe.illustrator                   0x0000000100987e29 0x100000000 + 9993769
    20  com.adobe.illustrator                   0x000000010070044b 0x100000000 + 7341131
    21  com.adobe.illustrator                   0x000000010083cfde 0x100000000 + 8638430
    22  com.adobe.illustrator                   0x00000001006ff280 0x100000000 + 7336576
    23  com.adobe.illustrator                   0x00000001006ef5d4 0x100000000 + 7271892
    24  com.adobe.illustrator                   0x00000001001635f8 0x100000000 + 1455608
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8ebf7d16 kevent + 10
    1   libdispatch.dylib                       0x00007fff96849dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff968499ee _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff8ebf76d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff9230beec _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff9230bcb3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff922f6171 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff8ebf76d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff9230beec _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff9230bcb3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff922f6171 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff8ebf70fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff9230df89 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff8b9dd214 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff8b9dd3eb TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff8b93fb24 MPWaitOnQueue + 252
    5   com.adobe.ACE                           0x0000000102a262c9 0x1029ed000 + 234185
    6   com.adobe.ACE                           0x0000000102a255da 0x1029ed000 + 230874
    7   com.apple.CoreServices.CarbonCore          0x00007fff8b9b47e4 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                       0x00007fff92309742 _pthread_start + 327
    9   libsystem_c.dylib                       0x00007fff922f6181 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff8ebf70fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff9230df89 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff8b9dd214 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff8b9dd3eb TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff8b93fb24 MPWaitOnQueue + 252
    5   com.adobe.ACE                           0x0000000102a262c9 0x1029ed000 + 234185
    6   com.adobe.ACE                           0x0000000102a255da 0x1029ed000 + 230874
    7   com.apple.CoreServices.CarbonCore          0x00007fff8b9b47e4 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                       0x00007fff92309742 _pthread_start + 327
    9   libsystem_c.dylib                       0x00007fff922f6181 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff8ebf70fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff9230df89 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff8b9dd214 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff8b9dd3eb TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff8b93fb24 MPWaitOnQueue + 252
    5   com.adobe.ACE                           0x0000000102a262c9 0x1029ed000 + 234185
    6   com.adobe.ACE                           0x0000000102a255da 0x1029ed000 + 230874
    7   com.apple.CoreServices.CarbonCore          0x00007fff8b9b47e4 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                       0x00007fff92309742 _pthread_start + 327
    9   libsystem_c.dylib                       0x00007fff922f6181 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff8ebf70fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff9230df89 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff8b9dd214 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff8b9dd3eb TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff8b93fb24 MPWaitOnQueue + 252
    5   com.adobe.ACE                           0x0000000102a262c9 0x1029ed000 + 234185
    6   com.adobe.ACE                           0x0000000102a255da 0x1029ed000 + 230874
    7   com.apple.CoreServices.CarbonCore          0x00007fff8b9b47e4 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                       0x00007fff92309742 _pthread_start + 327
    9   libsystem_c.dylib                       0x00007fff922f6181 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff8ebf70fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff9230df89 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff8b9dd214 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff8b9dd3eb TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff8b93fb24 MPWaitOnQueue + 252
    5   com.adobe.ACE                           0x0000000102a262c9 0x1029ed000 + 234185
    6   com.adobe.ACE                           0x0000000102a255da 0x1029ed000 + 230874
    7   com.apple.CoreServices.CarbonCore          0x00007fff8b9b47e4 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                       0x00007fff92309742 _pthread_start + 327
    9   libsystem_c.dylib                       0x00007fff922f6181 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff8ebf70fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff9230df89 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff8b9dd214 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff8b9dd3eb TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff8b93fb24 MPWaitOnQueue + 252
    5   com.adobe.ACE                           0x0000000102a262c9 0x1029ed000 + 234185
    6   com.adobe.ACE                           0x0000000102a255da 0x1029ed000 + 230874
    7   com.apple.CoreServices.CarbonCore          0x00007fff8b9b47e4 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                       0x00007fff92309742 _pthread_start + 327
    9   libsystem_c.dylib                       0x00007fff922f6181 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff8ebf70fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff9230df89 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff8b9dd214 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff8b9dd3eb TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff8b93fb24 MPWaitOnQueue + 252
    5   com.adobe.ACE                           0x0000000102a262c9 0x1029ed000 + 234185
    6   com.adobe.ACE                           0x0000000102a255da 0x1029ed000 + 230874
    7   com.apple.CoreServices.CarbonCore          0x00007fff8b9b47e4 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                       0x00007fff92309742 _pthread_start + 327
    9   libsystem_c.dylib                       0x00007fff922f6181 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff8ebf76d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff9230beec _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff9230bcb3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff922f6171 start_wqthread + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff8ebf70fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff9230df89 _pthread_cond_wait + 869
    2   com.adobe.AGM                           0x0000000102ed4d5b AGMInitialize + 3255471
    3   com.adobe.AGM                           0x0000000102ed5b5c AGMInitialize + 3259056
    4   com.adobe.AGM                           0x0000000102edcdeb AGMInitialize + 3288383
    5   libsystem_c.dylib                       0x00007fff92309742 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff922f6181 thread_start + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff8ebf70fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff9230df89 _pthread_cond_wait + 869
    2   com.adobe.ape.engine                    0x000000011929ac0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine                    0x0000000119048ec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine                    0x000000011929acd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine                    0x000000011929ad4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine                    0x000000011929ae79 APXGetHostAPI + 2516713
    7   libsystem_c.dylib                       0x00007fff92309742 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff922f6181 thread_start + 13
    Thread 14:
    0   libsystem_kernel.dylib                  0x00007fff8ebf70fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff9230df89 _pthread_cond_wait + 869
    2   com.adobe.ape.engine                    0x000000011929ac0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine                    0x0000000119048ec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine                    0x000000011929acd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine                    0x000000011929ad4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine                    0x000000011929ae79 APXGetHostAPI + 2516713
    7   libsystem_c.dylib                       0x00007fff92309742 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff922f6181 thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib                  0x00007fff8ebf70fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff9230df89 _pthread_cond_wait + 869
    2   com.adobe.ape.engine                    0x000000011929ac0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine                    0x0000000119048ec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine                    0x000000011929acd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine                    0x000000011929ad4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine                    0x000000011929ae79 APXGetHostAPI + 2516713
    7   libsystem_c.dylib                       0x00007fff92309742 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff922f6181 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib                  0x00007fff8ebf70fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff9230df89 _pthread_cond_wait + 869
    2   com.adobe.ape.engine                    0x000000011929ac0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine                    0x0000000119048ec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine                    0x000000011929acd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine                    0x000000011929ad4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine                    0x000000011929ae79 APXGetHostAPI + 2516713
    7   libsystem_c.dylib                       0x00007fff92309742 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff922f6181 thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib                  0x00007fff8ebf5686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8ebf4c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff91c95803 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff91c9aee6 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff91c9a6b2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreMediaIO                   0x00007fff8b2ed6f8 CMIO::DAL::RunLoop::OwnThread(void*) + 146
    6   com.apple.CoreMediaIO                   0x00007fff8b2e52de CAPThread::Entry(CAPThread*) + 156
    7   libsystem_c.dylib                       0x00007fff92309742 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff922f6181 thread_start + 13
    Thread 18:
    0   libsystem_kernel.dylib                  0x00007fff8ebf70fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff9230dfc3 _pthread_cond_wait + 927
    2   com.adobe.ape.engine                    0x000000011929abd0 APXGetHostAPI + 2516032
    3   com.adobe.ape.engine                    0x00000001192b2ddb APXGetHostAPI + 2614859
    4   com.adobe.ape.engine                    0x000000011929acd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine                    0x000000011929ad4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine                    0x000000011929ae79 APXGetHostAPI + 2516713
    7   libsystem_c.dylib                       0x00007fff92309742 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff922f6181 thread_start + 13
    Thread 19:
    0   libsystem_kernel.dylib                  0x00007fff8ebf70fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff9230dfc3 _pthread_cond_wait + 927
    2   com.adobe.ape.engine                    0x000000011929abd0 APXGetHostAPI + 2516032
    3   com.adobe.ape.engine                    0x000000011942d2c3 APXGetHostAPI + 4164403
    4   com.adobe.ape.engine                    0x000000011929acd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine                    0x000000011929ad4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine                    0x000000011929ae79 APXGetHostAPI + 2516713
    7   libsystem_c.dylib                       0x00007fff92309742 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff922f6181 thread_start + 13
    Thread 20:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x00007fff8ebf7386 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff92393800 nanosleep + 163
    2   libsystem_c.dylib                       0x00007fff92393717 usleep + 54
    3   com.apple.AppKit                        0x00007fff906f1958 -[NSUIHeartBeat _heartBeatThread:] + 543
    4   com.apple.Foundation                    0x00007fff8c174612 __NSThread__main__ + 1345
    5   libsystem_c.dylib                       0x00007fff92309742 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff922f6181 thread_start + 13
    Thread 21:
    0   libsystem_kernel.dylib                  0x00007fff8ebf76d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff9230beec _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff9230bcb3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff922f6171 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x000000010ff9a850  rcx: 0x00000000003f0200  rdx: 0x0000000000000000
      rdi: 0x000000010ff9a810  rsi: 0x0000000000000000  rbp: 0x00007fff5fbff080  rsp: 0x00007fff5fbff080
       r8: 0x0000000000000002   r9: 0x000000002be65c26  r10: 0x000000010fe2e710  r11: 0x0000000025493f16
      r12: 0x000000010ff9a850  r13: 0x000000010ff9a800  r14: 0x000000010ff9a880  r15: 0x000000010ff9a800
      rip: 0x000000011bc96e9e  rfl: 0x0000000000010246  cr2: 0x0000000000000008
    Logical CPU: 6
    Binary Images:
           0x100000000 -        0x10186cfe7 +com.adobe.illustrator (682 - 16.0.0) <8F6F07B7-9649-7267-D555-D35E1326F0C0> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
           0x101aae000 -        0x1027f3ff7 +libicudata.40.0.dylib (40) <6211D655-ECF8-7378-CF68-3B07300D5A29> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/ICUData.framework/Versions/4.0/libicudata.40.0.dylib
           0x102806000 -        0x102874fef +com.adobe.headlights.LogSessionFramework (2.1.2.1652) <25E6F475-1522-419C-2169-547FCF2FD97F> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
           0x1028c8000 -        0x1028ccff7 +com.adobe.AdobeCrashReporter (6.0 - 6.0.20120201) <A6B1F3BD-5DB0-FEE5-708A-B54E5CA80481> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashRep orter
           0x1028d2000 -        0x10292fff7 +com.adobe.aiport (aiport version 16.0.0 - 16.0.0.682) <013A7667-AC54-C394-36EC-DE3E058EBBB8> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/aiport.framework/Versions/A/aiport
           0x102956000 -        0x1029bbff7 +com.adobe.filterport (filterport version 16.0.0 - 16.0.0.682) <4D4BAF9C-D816-167D-C653-3E61955725A9> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/filterport.framework/Versions/A/filterport
           0x1029e9000 -        0x1029e9ff7 +com.adobe.SPBasic (SPBasic version 16.0.0 - 16.0.0.682) <6344CAA3-C943-9DF3-CCCB-AB443149DF6A> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/SPBasic.framework/Versions/A/SPBasic
           0x1029ed000 -        0x102b66fff +com.adobe.ACE (AdobeACE 2.19.18.19822 - 2.19.18.19822) <01A168B2-A4AA-71B3-D8F1-2F4A367485BB> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x102b79000 -        0x103181fff +com.adobe.AGM (AdobeAGM 4.26.20.19822 - 4.26.20.19822) <4AB2E56F-811A-C769-4F3C-CBE1530C8A56> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x10321d000 -        0x10325fff7 +com.adobe.ARE (AdobeARE 1.5.02.19822 - 1.5.02.19822) <FB3356DF-DBCD-CE4C-DC16-63540BC96C5C> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
           0x103267000 -        0x103361fe7 +com.adobe.AXEDOMCore (AdobeAXEDOMCore 3.7.101.18636 - 3.7.101.18636) <C7652AF2-56D7-8AF8-A207-0BDEDDFF0BEC> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore
           0x103405000 -        0x103424fff +com.adobe.BIB (AdobeBIB 1.2.02.19822 - 1.2.02.19822) <7EC75BFC-1A1C-8FD3-56BB-D6B6EB5CA9A1> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x10342b000 -        0x103453ff7 +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <4886F3FC-D31A-6149-1E03-EBA15E262086> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x10345a000 -        0x1037bbfef +com.adobe.CoolType (AdobeCoolType 5.10.31.19822 - 5.10.31.19822) <14E82AD0-5994-21FA-D963-D3FB2A113349> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x103808000 -        0x103c4eff7 +com.adobe.MPS (AdobeMPS 5.8.0.19673 - 5.8.0.19673) <E63AFCA8-3E74-1745-8C74-8B0A78073BE5> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x103cca000 -        0x104dc8fef +com.adobe.psl (AdobePSL 13.0.0.19655 - 13.0.0.19655) <8029DA17-402C-301F-02E9-D0EC8DF48BE8> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL
           0x104f88000 -        0x104fe8ff7 +com.adobe.AdobeXMPCore (Adobe XMP Core 5.3 -c 11 - 66.145661) <B475CD07-1024-560D-5BFE-2A6FCE63925C> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x104ff2000 -        0x1050aafe7 +com.adobe.AdobeXMPFiles (Adobe XMP Files 5.4 -f 49 - 66.145661) <9F30F410-B84E-EB85-7F2C-C72BCD50CB77> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXMPFiles
           0x1050dd000 -        0x105187fe7 +libicucnv.40.0.dylib (40) <768D99C5-46B9-B849-2834-B5BF541856D1> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/ICUConverter.framework/Versions/4.0/libicucnv.40.0.dy lib
           0x1051ae000 -        0x1052eefe7 +libicui18n.40.0.dylib (40) <B0341318-FB92-A0CF-2CA5-7FA100624DBD> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/ICUInternationalization.framework/Versions/4.0/libicu i18n.40.0.dylib
           0x10536d000 -        0x10546ffef +libicuuc.40.0.dylib (40) <76F12DCE-F356-D48D-4239-FC103706EF76> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/ICUUnicode.framework/Versions/4.0/libicuuc.40.0.dylib
           0x1054b7000 -        0x105604ff7 +com.winsoft.wrservices (WRServices 5.0.0 - 5.0.0) <FFA48E0A-A17C-A04F-AE20-6815EB944DEA> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x105678000 -        0x1058c1fe7 +com.adobe.linguistic.LinguisticManager (6.0.0 - 17206) <301AAE8E-BA78-230E-9500-FCCA204B49CB> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
           0x105944000 -        0x10594bfef +com.adobe.coretech.adobesplashkit (AdobeSplashKit version 1.0 - 1.0) <E678CE59-3C6E-386B-92F1-48B49B1727E0> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeSplashKit.framework/Versions/A/AdobeSplashKit
           0x105955000 -        0x105981fff +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.7.101.18636 - 3.7.101.18636) <488DF1F7-A643-5168-706A-498A0322A87E> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8Sh aredExpat
           0x1059a4000 -        0x105a61fff +com.adobe.AdobeExtendScript (ExtendScript 4.2.12 - 4.2.12.18602) <0957DFA6-0593-CE4B-8638-00F32113B07B> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScr ipt
           0x105aab000 -        0x105b70fff +com.adobe.JP2K (2.0.0 - 2.0.0.18562) <B14B096C-AA23-BA8F-E3AE-8DB102F9D161> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
           0x105bbd000 -        0x105dcbfff +com.adobe.owl (AdobeOwl version 4.0.93 - 4.0.93) <CB035C4D-044D-4004-C887-814F944E62ED> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x105e0d000 -        0x1065e0ff7 +com.adobe.PDFL (PROD_MAJOR.PROD_MINOR.PROD_STEP - 10.0.1.18562) <8DC49EE4-5700-97A1-EBFE-68024AE1980C> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobePDFL.framework/Versions/A/AdobePDFL
           0x106698000 -        0x106798ff7 +com.adobe.PDFPort (AdobePDFPort 2.1.0.19734 - 2.1.0.19734) <8C850D5F-FCF1-8620-6DAE-240667C80F9A> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFPort
           0x1067ac000 -        0x1067d1ffe +adobepdfsettings (1) <56E7F033-6032-2EC2-250E-43F1EBD123B1> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/adobepdfsettings.framework/Versions/A/adobepdfsetting s
           0x10680d000 -        0x106853fe7 +com.adobe.pip (6.0.0.1654) <3576D8F9-E2F9-6EB8-6684-C2FE6B0A3731> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobePIP.framework/Versions/A/AdobePIP
           0x106860000 -        0x10690efef +com.adobe.AdobeScCore (ScCore 4.2.12 - 4.2.12.18602) <9CEE95E5-2FC6-5E58-02A4-138EA6F8D894> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
           0x10694b000 -        0x106a07fef +com.adobe.SVGExport (AdobeSVGExport 6.0 - 6.0) <9C3A0810-22F9-5C20-C5A9-44C552076054> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGExport.framework/Versions/A/AdobeSVGExport
           0x106a29000 -        0x106d3ffff +com.adobe.SVGRE (AdobeSVGRE 6.0 - 6.0) <041B948F-2768-2FC9-712A-43AE264510DB> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGRE.framework/Versions/A/AdobeSVGRE
           0x106e0b000 -        0x106e25ff7 +com.adobe.ahclientframework (1.7.0.56 - 1.7.0.56) <C1C5DE5C-39AB-0871-49A6-FA3449D39B8A> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
           0x106e2e000 -        0x106e47fff  com.apple.carbonframeworktemplate (1.0 - 1.0) <0EDFCF84-BC82-4466-D878-69327B1722AF> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/Alcid.framework/Versions/A/Alcid
           0x106e4e000 -        0x106f32fe7 +com.adobe.amtlib (amtlib 6.0.0.75 - 6.0.0.75) <07A3E1E1-55C3-BA5B-A0B0-60250809ED61> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x106f43000 -        0x106f4bfef +com.adobe.boost_date_time.framework (6.0.0 - 6.0.0.0) <C4819F09-AB6C-1282-F489-48671509CE71> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/boost_date_time.framework/Versions/A/boost_date_time
           0x106f65000 -        0x106f7eff7 +com.adobe.boost_filesystem.framework (6.0.0 - 6.0.0.0) <CD4FF487-E0AA-0D76-A87D-9252F242C314> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/boost_filesystem.framework/Versions/A/boost_filesyste m
           0x106fa0000 -        0x107054fef +com.adobe.boost_regex.framework (6.0.0 - 6.0.0.0) <FD24C4C8-AA95-3FB1-6350-639D50D7ACEF> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/boost_regex.framework/Versions/A/boost_regex
           0x1070e0000 -        0x10714dfef +com.adobe.boost_serialization.framework (6.0.0 - 6.0.0.0) <4BD779CA-98D8-9DC5-4B79-2E30E102EE31> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/boost_serialization.framework/Versions/A/boost_serial ization
           0x107250000 -        0x10725dfff +com.adobe.boost_signals.framework (6.0.0 - 6.0.0.0) <B0761444-05C8-F8AC-B3F3-CBA2C83129AC> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/boost_signals.framework/Versions/A/boost_signals
           0x107272000 -        0x107274ff7 +com.adobe.boost_system.framework (6.0.0 - 6.0.0.0) <5A598FE6-82A6-D73A-B509-9A2902097AFE> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/boost_system.framework/Versions/A/boost_system
           0x10727b000 -        0x107287fff +com.adobe.boost_threads.framework (6.0.0 - 6.0.0.0) <92B1610F-451D-3684-8882-599DB6B00C23> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
           0x1072a5000 -        0x1076efff7 +com.adobe.dvaadameve.framework (6.0.0 - 6.0.0.0) <3921F600-9022-192D-BC1B-D5D2A3A96CBD> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
           0x107d4a000 -        0x107e35fe7 +com.adobe.dvaai.framework (6.0.0 - 6.0.0.0) <E9ECB4F4-B4C8-8D8F-1362-255FC8986938> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/dvaai.framework/Versions/A/dvaai
           0x107ee1000 -        0x1080d5fff +com.adobe.dvacore.framework (6.0.0 - 6.0.0.0) <E0CC2892-B8B1-7439-494E-0FFB4D07E7F9> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
           0x10829d000 -        0x1087bdfff +com.adobe.dvaui.framework (6.0.0 - 6.0.0.0) <86B829A9-FF1A-DEDA-26F7-D3BA4EF7AF35> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
           0x108ccb000 -        0x108d98ff7 +com.adobe.dvaworkspace.framework (6.0.0 - 6.0.0.0) <92204BF4-539F-C35E-8F5C-DA4AD4B48568> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/dvaworkspace.framework/Versions/A/dvaworkspace
           0x108e8c000 -        0x108f78ff7 +com.adobe.exo.framework (6.0.0 - 6.0.0.0) <D136ACCA-E1C5-6D39-16DE-411471D06AED> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/exo.framework/Versions/A/exo
           0x1090c2000 -        0x109140fff +com.adobe.FileInfo.framework (Adobe XMP FileInfo 5 . 3 . 0 . 0 -i 3 - 66.145433) <5C63613F-6BDE-1C29-D3FD-9D292F9ADB12> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
           0x109151000 -        0x10917dff7 +libtbb.dylib (0) <57655978-A378-BE1E-7905-7D7F951AD6F7> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/libtbb.dylib
           0x109196000 -        0x1091a4ff3 +libtbbmalloc.dylib (0) <CB038B96-2999-5EB1-E26A-7720A7A8F8CD> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/libtbbmalloc.dylib
           0x1091ba000 -        0x1091bffff  com.apple.agl (3.2.1 - AGL-3.2.1) <1A57AE22-37F6-3A2E-8098-183B280EEEA9> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x1091c6000 -        0x1091cffff +com.adobe.dvaflashview.framework (6.0.0 - 6.0.0.0) <841D0780-EF72-47D9-1D87-73F4528EB337> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/dvaflashview.framework/Versions/A/dvaflashview
           0x1091dd000 -        0x1091e1ff7 +com.adobe.ape.shim (3.3.8.19346 - 3.3.8.19346) <13D5CEF7-6090-CD66-8DA0-190771950F76> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
           0x109278000 -        0x10927aff7  com.apple.textencoding.unicode (2.5 - 2.5) <0518078E-C652-3CFC-A3FB-903C600CE831> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x10a7f6000 -        0x10a7f6fff +com.adobe.illustrator.plugins.PlugInRes (Localizer version 16.0.0 - 16.0.0) <432D5AA2-CBB3-C291-F72C-24C96E089AEB> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Required/Resources/en_US/PluginRes.aip/Contents/MacOS/PlugInRes
           0x10d2ea000 -        0x10d2f4fff +com.adobe.illustrator.plugins.Action (Action version 16.0.0 - 16.0.0) <4ECED593-19C4-5487-B0C6-FC0419A85C9C> /Applications/Adobe Illustrator CS6/*/Action
           0x10d421000 -        0x10d426fff +com.adobe.illustrator.plugins.FlattenTransparency ( Flatten Transparency version 16.0.0 - 16.0.0) <7BB920D3-6B17-BBC0-D697-9C035A4F1174> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Required/Plug-ins/Flatten Transparency.aip/Contents/MacOS/FlattenTransparency
           0x10f1e1000 -        0x10f1ecfff +com.adobe.illustrator.plugins.FrameworkS (Framework Server version 16.0.0 - 16.0.0) <A0C06245-F4C1-073A-39F6-A5CE19504271> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Required/Plug-ins/FrameworkServer.aip/Contents/MacOS/FrameworkS
           0x10f1f1000 -        0x10f1fafe7 +com.adobe.illustrator.plugins.ArtConverters ( ArtConverters version 16.0.0 - 16.0.0) <6F8F36CF-5D64-0711-B04F-29A716ACB303> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Required/Plug-ins/ArtConverters.aip/Contents/MacOS/ArtConverters
           0x10fc2b000 -        0x10fce4ff7  ColorSyncDeprecated.dylib (400) <7CE58F6E-D2C8-39FB-8EE0-28CC6EC6D04F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/Resources/ColorSyncDeprecated.dylib
           0x10fdbf000 -        0x10fdefff7 +com.adobe.illustrator.plugins.BRSPencilTool ( Pencil Tool version 16.0.0 - 16.0.0) <A3E354F5-DFCE-1CC1-3246-495639338CBD> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Required/Plug-ins/BRSPencilTool.aip/Contents/MacOS/BRSPencilTool
           0x10fdf5000 -        0x10fdfafff  com.apple.audio.AppleHDAHALPlugIn (2.3.1 - 2.3.1f2) <E807EE74-4241-36B2-87A6-92AFAE41D68F> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Conten ts/MacOS/AppleHDAHALPlugIn
           0x11008e000 -        0x1100a9fe7 +com.adobe.illustrator.plugins.FOConversionSuite (FOConversionSuite version 16.0.0 - 16.0.0) <A559C8DF-ECFD-90FA-50D5-C2EC43611DE4> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Required/Plug-ins/FOConversionSuite.aip/Contents/MacOS/FOConversionSuite
           0x1100b6000 -        0x1100d9fef +com.adobe.illustrator.plugins.Rasterize (Rasterize version 16.0.0 - 16.0.0) <11334147-4CAA-EB04-CE8D-1971C3624896> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Required/Plug-ins/Rasterize.aip/Contents/MacOS/Rasterize
           0x1100e1000 -        0x1100f9fff +com.adobe.illustrator.plugins.BrushManager (Brush Manager version 16.0.0 - 16.0.0) <D5A47E68-502F-D194-88CA-20397F945D0F> /Applications/Adobe Illustrator CS6/*/BrushManager
           0x1113c7000 -        0x111436ff7 +com.adobe.illustrator.plugins.PhotoshopAdapter (Photoshop Adapter version 16.0.0 - 16.0.0) <62D16574-674D-99C0-9E58-CF5A7B97C87F> /Applications/Adobe Illustrator CS6/*/PhotoshopAdapter
           0x111445000 -        0x1114b4fef +com.adobe.illustrator.plugins.UserInterface (User Interface version 16.0.0 - 16.0.0) <03D3CBDC-B773-1382-6FAA-533C93CF95A9> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Required/Plug-ins/UserInterface.aip/Contents/MacOS/UserInterface
           0x11155f000 -        0x11157cff7 +com.adobe.illustrator.plugins.ControlPanel (ControlPalette version 16.0.0 - 16.0.0) <2C742D8A-9F05-E9FA-A8B1-949583EF2B59> /Applications/Adobe Illustrator CS6/*/ControlPanel
           0x111584000 -        0x1115c2fe7 +com.adobe.illustrator.plugins.KinsokuDlg ( KinsokuDlg version 16.0.0 - 16.0.0) <3D8AF518-4B60-8BAE-6448-011334D1BF97> /Applications/Adobe Illustrator CS6/*/KinsokuDlg
           0x1115ea000 -        0x1115f9ff7  libSimplifiedChineseConverter.dylib (61) <A2B475FF-667F-3B7B-A6E9-8768347F2BD6> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
           0x111700000 -        0x11182bfff +com.adobe.illustrator.plugins.ColorHarmony (ColorHarmony version 16.0.0 - 16.0.0) <E4BD81A9-61FC-1EF1-B568-DB50964B8518> /Applications/Adobe Illustrator CS6/*/ColorHarmony
           0x111860000 -        0x111953ff7 +com.adobe.illustrator.plugins.PaintStyle (Paint Style Palettes version 16.0.0 - 16.0.0) <9ED937F6-A136-2DE4-CA82-82C52087EBA7> /Applications/Adobe Illustrator CS6/*/PaintStyle
           0x111982000 -        0x111c23fef +com.adobe.illustrator.plugins.ScriptingSupport (Scripting Support version 16.0.0 - 16.0.0) <752836AF-2036-C3CD-E060-9204A88B9953> /Applications/Adobe Illustrator CS6/*/ScriptingSupport
           0x111cfd000 -        0x111ddcfef +com.adobe.AXEXSLT (AdobeAXSLE 3.7.101.18636 - 3.7.101.18636) <F0116E90-5C45-DFA3-9C17-9B5D1BF0FD1F> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeAXSLE.framework/Versions/A/AdobeAXSLE
           0x111e6e000 -        0x111ee8fef +com.adobe.adobe_caps (adobe_caps 6.0.29.0 - 6.0.29.0) <C0AD101D-E452-4B4B-5B31-F467133EC20C> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
           0x111ef7000 -        0x111f1dff7 +com.adobe.ape (3.3.8.19346 - 3.3.8.19346) <79E11A18-8AF4-2515-59F7-4CBE161BF020> /Library/Application Support/Adobe/*/adbeapecore.framework/adbeapecore
           0x111f2f000 -        0x111f57ff7  com.apple.cmio.DAL.VDC_4 (301.0 - 4147) <52F61616-1034-3699-BD49-7860000A2671> /System/Library/Frameworks/CoreMediaIO.framework/Resources/VDC.plugin/Contents/MacOS/VDC
           0x111f62000 -        0x111f74ff7  libTraditionalChineseConverter.dylib (61) <DDAFF75C-0714-34F4-818F-8B439AC7BBCA> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
           0x111f78000 -        0x111f7bff7 +com.adobe.illustrator.plugins.Geometry ( Geometry Suite version 16.0.0 - 16.0.0) <D6B27686-EA36-7158-33DC-89D152E3F9DD> /Applications/Adobe Illustrator CS6/*/Geometry
           0x118391000 -        0x118482fff +com.adobe.AdbeScriptUIFlex (ScriptUIFlex 6.2.29 - 6.2.29.18602) <2BD3388F-976E-0B1C-55DB-B97A5AF95724> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdbeScriptUIFlex.framework/Versions/A/AdbeScriptUIFle x
           0x118589000 -        0x1185a5ff7  libJapaneseConverter.dylib (61) <D0F762C2-5372-3AA2-BBA4-066B8E4B1F8E> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
           0x1185aa000 -        0x1185cbfff  libKoreanConverter.dylib (61) <7A601BB8-19DF-3DDC-9C50-3A798290F377> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
           0x1185cf000 -        0x1185d5fe7 +com.adobe.illustrator.plugins.ToolSelector (Tool Selector version 16.0.0 - 16.0.0) <DC333FC0-E5F1-693A-1CE0-BF584154C5E3> /Applications/Adobe Illustrator CS6/*/ToolSelector
           0x1185da000 -        0x1185f8fe7 +com.adobe.illustrator.plugins.VariablesPalette (Variables Palette version 16.0.0 - 16.0.0) <C396F193-6B6C-C946-61E4-83EBDB55ABDB> /Applications/Adobe Illustrator CS6/*/VariablesPalette
           0x119000000 -        0x119f85fd7 +com.adobe.ape.engine (3.3.8.19346 - 3.3.8.19346) <5E188E32-37F7-4E0B-0674-E8D16B60074F> /Library/Application Support/Adobe/*/adbeapecore.framework/Libraries/adbeapeengine.bundle/Contents/MacOS/adbea peengine
           0x11a1d2000 -        0x11a2abff7  libcrypto.0.9.7.dylib (106) <3E1B14DE-342B-318C-8F22-7B9CD88EE760> /usr/lib/libcrypto.0.9.7.dylib
           0x11bac0000 -        0x11bc0bff7 +com.adobe.illustrator.plugins.SwatchLibs (Swatch Libraries version 16.0.0 - 16.0.0) <8E8BCE2E-9051-04A6-CCAC-8D5F7424D716> /Applications/Adobe Illustrator CS6/*/SwatchLibs
           0x11bc3e000 -        0x11bcc5fe7 +com.adobe.illustrator.plugins.SymbolPalette (Symbol Palette version 16.0.0 - 16.0.0) <221130E5-082F-18F7-61B1-AA6E11FD4A97> /Applications/Adobe Illustrator CS6/*/SymbolPalette
           0x11bce5000 -        0x11bd1dfff +com.adobe.illustrator.plugins.Mojikumi ( MojiKumiUI version 16.0.0 - 16.0.0) <CE12B42F-0E0E-0138-3C0D-67B50E8F8C99> /Applications/Adobe Illustrator CS6/*/Mojikumi
           0x11bd36000 -        0x11be51fe7 +com.adobe.illustrator.plugins.svgFileFormat ( SVG Format version 16.0.0 - 16.0.0) <7E1F2008-93E1-ECF2-49C9-D85BF2CB79DF> /Applications/Adobe Illustrator CS6/*/svgFileFormat
           0x11be73000 -        0x11bea8fff +com.adobe.illustrator.plugins.slicingAttributes (Slicing version 16.0.0 - 16.0.0) <2E6FFCDF-676F-126B-4071-F95937B85AFE> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Required/Plug-ins/sliceAttributes.aip/Contents/MacOS/slicingAttributes
           0x11bebb000 -        0x11bec1fff +com.adobe.illustrator.plugins.ShapeSuite (Shape Construction Suite version 16.0.0 - 16.0.0) <F404EF55-D9B3-DC23-67B1-7FD6629838C0> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Required/Plug-ins/ShapeS.aip/Contents/MacOS/ShapeSuite
           0x11bec5000 -        0x11beffff7 +com.adobe.illustrator.plugins.PathfinderS (Pathfinder Suite version 16.0.0 - 16.0.0) <53D2A31E-74AB-C5D0-5A0A-58F1E102227E> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Required/Plug-ins/PathFinderS.aip/Contents/MacOS/PathfinderS
           0x11bf08000 -        0x11bf10fff +com.adobe.illustrator.plugins.ExpandS (Expand Suite version 16.0.0 - 16.0.0) <7831D239-5D12-9652-91AF-C9ACEB5E7B77> /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Required/Plug-ins/ExpandS.aip/Contents/MacOS/ExpandS
           0x11bf15000 -        0x11bf37ff7 +com.adobe.illustrator.plugins.DocInfo (Document Info version 16.0.0 - 16.0.0) <27FC54EB-3F7A-2604-D2D1-B1E5E7DA3FDD> /Applications/Adobe Illustrator CS6/*/DocInfo
           0x11bf42000 -        0x11bf8cfe7 +com.adobe.illustrator.plugins.LinkPalette (Links Palette version 16.0.0 - 16.0.0) <00086DF0-EB5D-0D9F-605B-AD72F6817ACC> /Applications/Adobe Illustrator CS6/*/LinkPalette
           0x11bfa8000 -        0x11c000fff +com.adobe.illustrator.plugins.Snapomatic (Snap version 16.0.0 - 16.0.0) <BFB48EDA-0C29-B6FA-CF1C-330CE683230D> /Applications/Adobe Illustrator CS6/*/Snapomatic
           0x11c00e000 -        0x11c016fff +com.adobe.illustrator.plugins.Colors (Colors version 16.0.0 - 16.0.0) <189D38EB-0C11-D380-F2FB-2DB0AE5E301C> /Applications/Adobe Illustrator CS6/*/Colors
           0x11c01c000 -        0x11c02bff7 +com.adobe.illustrator.plugins.DropShadow (Drop Shadow version 16.0.0 - 16.0.0) <3AE0FCDD-507D-DAFF-2868-08C4DF8FC9B6> /Applications/Adobe Illustrator CS6/*/DropShadow
           0x11c032000 -        0x11c05ffff +com.adobe.illustrator.plugins.SimpleTools (Segment Tools version 16.0.0 - 16.0.0) <F2E38DA5-27F0-91AB-0D3D-1B97D645AA83> /Applications/Adobe Illustrator CS6/*/SimpleTools
           0x11c074000 -        0x11c094fff +com.adobe.illustrator.plugins.ScatterBrushTool (Adobe Scatter Brush Tool version 16.0.0 - 16.0.0) <95AC109F-40FB-6F65-490A-B516BF98ABB9> /Applications/Adobe Illustrator CS6/*/ScatterBrushTool
           0x11c09c000 -        0x11c0b9ff7 +com.adobe.illustrator.plugins.GlobAdjTool (Reshape Tool version 16.0.0 - 16.0.0) <44A4EF2B-9C92-5B4C-9AA0-A8EB35A4EAF5> /Applications/Adobe Illustrator CS6/*/GlobAdjTool
           0x11c0bf000 -        0x11c0e7fef +com.adobe.illustrator.plugins.ParticleSystem (Symbolism version 16.0.0 - 16.0.0) <ECA3A7A3-9258-4AA7-F930-7E78C28B3455> /Applications/Adobe Illustrator CS6/*/ParticleSystem
           0x11c0f8000 -        0x11c114ff7 +com.adobe.illustrator.plugins.MagicWand (Magic Wand version 16.0.0 - 16.0.0) <D6CB6CF3-E823-65E6-BDE4-056656595EAB> /Applications/Adobe Illustrator CS6/*/MagicWand
           0x11c124000 -        0x11c13efff +com.adobe.illustrator.plugins.LiquifyTool (Liquify version 16.0.0 - 16.0.0) <150983BB-B6C7-4E89-7814-0C14A7C1BCA0> /Applications/Adobe Illustrator CS6/*/LiquifyTool
           0x11c143000 -        0x11c14fff7 +com.adobe.illustrator.plugins.Lasso (Lasso version 16.0.0 - 16.0.0) <7257BF10-8085-9640-48A8-39387FDAE8F3> /Applications/Adobe Illustrator CS6/*/Lasso
           0x11c15d000 -        0x11c164ff7 +com.adobe.illustrator.plugins.KnifeTool (Knife Tool version 16.0.0 - 16.0.0) <2CC37E82-1C82-79CF-2323-412B2EEAD6B0> /Applications/Adobe Illustrator CS6/*/KnifeTool
           0x11c16a000 -        0x11c1bbfef +com.adobe.illustrator.plugins.EraserTool (EraserTool version 16.0.0 - 16.0.0) <2AFAA4ED-CE77-9E71-D57A-C4C39EF18ADD> /Applications/Adobe Illustrator CS6/*/EraserTool
           0x11c1d3000 -        0x11c260fe7 +com.adobe.illustrator.plugins.dBrushTool (Bristle Brush Tool version 16.0.0 - 16.0.0) <C8ACE46D-AC4B-9BAE-1B4E-F2B6A405EDFF> /Applications/Adobe Illustrator CS6/*/dBrushTool
           0x11c278000 -        0x11c2cefff +com.adobe.illustrator.plugins.CropAreaTool (CropAreaTool version 16.0.0 - 16.0.0) <667076C9-E5B7-F554-CE18-A3B7071B2216> /Applications/Adobe Illustrator CS6/*/CropAreaTool
           0x11c2e8000 -        0x11c325fff +com.adobe.illustrator.plugins.CalligraphicBrushTool (Calligraphic Brush Tool version 16.0.0 - 16.0.0) <B787FB6C-39DA-ADB6-8932-6C40D7015FAF> /Applications/Adobe Illustrator CS6/*/CalligraphicBrushTool
           0x11c33b000 -        0x11c356ff7 +com.adobe.illustrator.plugins.BoundingBox (BoundingBox version 16.0.0 - 16.0.0) <A6E7E18C-4B89-99F3-4ED0-37EFB11077E6> /Applications/Adobe Illustrator CS6/*/BoundingBox
           0x11c36c000 -        0x11c38dfef +com.adobe.illustrator.plugins.ArtOnPathBrushTool (Art Brush Tool version 16.0.0 - 16.0.0) <69484EA9-036C-FBEB-9878-09A2232CD9A0> /Applications/Adobe Illustrator CS6/*/ArtOnPathBrushTool
           0x11c394000 -        0x11c3eafe7 +com.adobe.illustrator.plugins.VectorizeUI (VectorizeUI version 16.0.0 - 16.0.0) <84B13AD7-F785-8270-C54D-D5F83B8E49C1> /Applications/Adobe Illustrator CS6/*/VectorizeUI
           0x11c403000 -        0x11c44cfe7 +com.adobe.illustrator.plugins.VariablesPaletteUI (PlanetXUI version 16.0.0 - 16.0.0) <99ECF2C9-6074-5438-FBD5-4EB09062DE07> /Applications/Adobe Illustrator CS6/*/VariablesPaletteUI
           0x11c465000 -        0x11c477fe7 +com.adobe.illustrator.plugins.TransformUI (TransformUI version 16.0.0 - 16.0.0) <C89EABC6-F8D2-ECE8-2905-C7615C7A9B6C> /Applications/Adobe Illustrator CS6/*/TransformUI
           0x11c488000 -        0x11c4d1ff7 +com.adobe.illustrator.plugins.svgFileFormatUI (svgFileFormatUI version 16.0.0 - 16.0.0) <F1C90721-3229-3D0F-FCF2-46CE49BA2917> /Applications/Adobe Illustrator CS6/*/svgFileFormatUI
           0x11c4f0000 -        0x11c506ff7 +com.adobe.illustrator.plugins.PreferenceUI (PreferenceUI version 16.0.0 - 16.0.0) <6D90CDCF-98B5-F646-7D87-E837630E08BE> /Applications/Adobe Illustrator CS6/*/PreferenceUI
           0x11c518000 -        0x11c547fe7 +com.adobe.illustrator.plugins.PathfinderUI (PathfinderUI version 16.0.0 - 16.0.0) <427FBEC9-0A75-459E-2F81-006E93081073> /Applications/Adobe Illustrator CS6/*/PathfinderUI
           0x11c55d000 -        0x11c721fe7 +com.adobe.illustrator.plugins.IllustratorUI (IllustratorUI version 16.0.0 - 16.0.0) <8DA53C49-333D-C0E6-D301-058A25263B98> /Applications/Adobe Illustrator CS6/*/IllustratorUI
           0x11c77a000 -        0x11c7acfe7 +com.adobe.illustrator.plugins.FlattenTransparencyUI ( Flatten Transparency version 16.0.0 - 16.0.0) <1C3F3D66-9070-8833-3816-2EA3A73A4229> /Applications/Adobe Illustrator CS6/*/FlattenTransparencyUI
           0x11c7c3000 -        0x11c84dff7 +com.adobe.illustrator.plugins.BrushManagerUI (ShapeToolUI version 16.0.0 - 16.0.0) <B34A05F5-CD84-BFF0-A393-0D965AB9B268> /Applications/Adobe Illustrator CS6/*/BrushManagerUI
           0x11c86e000 -        0x11c8a7fe7 +com.adobe.illustrator.plugins.AIToolBoxUI (AIToolBoxUI version 16.0.0 - 16.0.0) <3EFFDCFF-F661-7E2B-03B6-829D174D9AFE> /Applications/Adobe Illustrator CS6/*/AIToolBoxUI
           0x11c8bc000 -        0x11c8bdfff +com.adobe.illustrator.plugins.MPSCommon (MPSCommon version 16.0.0 - 16.0.0) <7CE4FC8A-FE54-9ECC-7510-2B7C9A5C8388> /Applications/Adobe Illustrator CS6/*/MPSCommon
           0x11c8c1000 -        0x11c8cfff7 +com.adobe.illustrator.plugins.Pathfinder (Pathfinder Plugin version 16.0.0 - 16.0.0) <B7E2D341-20BC-C75D-AD6F-654333A54018> /Applications/Adobe Illustrator CS6/*/Pathfinder
           0x11c8d4000 -        0x11c8daff7 +com.adobe.illustrator.plugins.PathSuite (PathConstruction Suite version 16.0.0 - 16.0.0) <5A1AE733-F5FD-CFFD-C56C-BC70F62EBFAA> /Applications/Adobe Illustrator CS6/*/PathSuite
           0x11c8e6000 -        0x11c8e7ff7 +com.adobe.illustrator.plugins.FlattenS (Flatten Suite version 16.0.0 - 16.0.0) <6BBC192F-BCB1-0E61-F843-BC33D5B60F21> /Applications/Adobe Illustrator CS6/*/FlattenS
           0x11c8eb000 -        0x11c8f2fff +com.adobe.illustrator.plugins.fileclipboardpref (FileClipboardPref version 16.0.0 - 16.0.0) <8A7FC7EE-8B19-6F67-BE4D-91ACEA380A9B> /Applications/Adobe Illustrator CS6/*/fileclipboardpref
           0x11ca00000 -        0x11ca7bfff +com.adobe.illustrator.plugins.IdeaFileFormat (IdeaFileFormat version 15 . 0 . 0 . 0 - 15 . 0 . 0 . 0) <965B3247-33FD-925A-48E0-237F83D1CC7A> /Applications/Adobe Illustrator CS6/*/IdeaFileFormat
           0x11caee000 -        0x11cb22fef +com.adobe.illustrator.plugins.Workspaces (Workspaces version 16.0.0 - 16.0.0) <D15082E8-8C3A-6E9B-7305-917B95174834> /Applications/Adobe Illustrator CS6/*/Workspaces
           0x11cb37000 -        0x11cb77fef +com.adobe.illustrator.plugins.TransparencyPalette (Transparency Palette version 16.0.0 - 16.0.0) <C1016A50-2D07-B238-571A-399B99766707> /Applications/Adobe Illustrator CS6/*/TransparencyPalette
           0x11cb8e000 -        0x11cbcdfff +com.adobe.illustrator.plugins.TransformPalett (Transform Palette version 16.0.0 - 16.0.0) <AA7FE831-C953-B179-1733-736205A0CEF6> /Applications/Adobe Illustrator CS6/*/TransformPalett
           0x11cbe3000 -        0x11cc27fe7 +com.adobe.illustrator.plugi

  • Getting a side by side configuration error after installing obiee 10.1.3.4.

    Hi, I have installed obiee 10.1.3.4.2 version over my windows 7 desktop. After installation, when tried with opening the admin tool, i'm getting a side by side configuration error. Please help what to do to overcome this

    Go through the Doc id 1067138.1 at Metalink below is the extract.
    The following procedure must be done by a UNIX administrator or by an Oracle BI Administrator with sufficient privileges.
    To download Oracle BI installation files under UNIX:
       1. Log in as the user who is to run the Oracle BI processes.
       2. Insert the Oracle Business Intelligence infrastructure installation DVD.
       3. Change to the directory where the installation DVD is mounted (or change directory to the downloaded software).
       4. Download the Oracle BI files by using FTP to copy them to the desired server and directory.
          Note: Make sure to FTP all the files in binary mode, including license.xml.
       5. After the files are downloaded, check that the files in the top level directory, such as setup.sh, have execute permissions.
          execute the command: ls -la or ls -ltr
          Confirm that the files have permissions resembling these:
          -rwxr-xr-x 1 oracle dba 6395 Aug 9 22:11 license.xml
          -rwxr-xr-x 1 oracle dba 657328 Aug 9 22:10 Solaris.bin
          -rw-r--r-- 1 oracle dba 12 Aug 9 22:04 media.inf
          drwxr-xr-x 3 oracle dba 4096 Aug 9 22:11 script
          -rw-r--r-- 1 oracle dba 501194022 Aug 9 22:10 setup.jar
          -r-xr-xr-x 1 oracle dba 1311 Aug 9 22:11 setup.sh
          -rw-r--r-- 1 oracle dba 104 Aug 9 22:04 version.txt(Mark the asnwer as helpful of Correct if it is )
    Cheers

  • InDesign CS5: Configuration Error (Error 5)

    I've installed CS5 Premium. When I try to start InDesign CS5, I get this error: "Configuration error. Please uninstall and reinstall the product. If this problem still occurs, please contact Adobe technical support for help, and mention the error code shown at the bottom of the screen. Error: 5. http://www.adobe.com/support/". It looks like this:
    I've uninstalled and reinstalled. It did not help; I got this same error again. I went to the Adobe support page and found nothing useful. I see it says "contact Adobe technical support," but I am trying my best to sort this out on my own before getting in the support queue.
    Has anyone else had this trouble?
    Perhaps related, perhaps not, when I try to start Photoshop CS5, it brings me to the 30-day trial activation screen. This, despite the fact that I entered my serial number for the suite when installing it. If I put the serial number into the activation screen, it rejects it as invalid for the product (from what I read, it should be accepted ... a document here on Adobe's website said any application in the suite should accept the suite serial number). I know the serial number is good, because it works on my other machine (it installed fine and works on my desktop, and this is the laptop I am trying to get to work). InDesign, Photoshop, and Bridge are the only products in the suite installed on this machine. Bridge works fine.
    Any help would be most appreciated!

    Hi Swapnil,
    What do you mean by system configuration and how to run CS3 Clean Script on level 4?
    Thanks!
    Date: Tue, 27 Jul 2010 12:21:33 -0600
    From: [email protected]
    To: [email protected]
    Subject: InDesign CS5: Configuration Error (Error 5)
    Hi,
    Can you please provide information about system configuration.
    If you don't have any other version of Adobe on your system then you can run CS3 Clean Script on level 4 on your machine. This will actually remove all Adobe componentes from your machine and then try the installation..
    Cheers,
    Swapnil
    >

  • Distributed Destinations and Error Queues

              I have a distributed queue - distqueue which is configured with two queue members
              - srvr1q
              and srvr2q. srvr1q is a physical queue destination that is running on JMSServer1
              on one instance in a cluster. srvr2q is a physical queue destination that is running
              on JMSServer2 on another instance in the cluster. I have two errorqueues - srvr1errq
              and srvr2errq - deployed on JMSServer1 and JMSServer2 respectively. I have configured
              the srvr1q to the following:
              Redelivery Delay Override: 10000
              Redelivery Limit: 3
              Error Destination: srvr1errq
              Also the srvr2q is configured to the following:
              Redelivery Delay Override: 10000
              Redelivery Limit: 3
              Error Destination: srvr2errq
              There is an MDB listening to each one of these local queues. The MDB is programmed
              to throw a null pointer exception (to simulate business logic processing failures)
              My expectations are : the message goes to one of the local queues. Null Pointer
              exception is thrown. After 10 seconds the message is resent to the same queue
              with a similar fate. After the third attempt, the message is moved to the error
              queue of the corresponding local queue.
              What I see is the following:
              When I send a message I do see a Null Pointer Exception, but it occurs only once
              and I dont see the message going to the error queue. Since my Load Balancing policy
              is Round-Robin on the distqueue, the local queues receive the message every other
              time with the same result - Null Pointer Exception thrown only once.
              I also have JMSStores configured so the messages are persistent.
              Can someone explain to me what I am doing wrong?
              Thanks.
              

              "Prakash Muthukrishnan" <[email protected]> wrote:
              >
              >Hi Tom
              > Thanks again for the reply. I do use a tx MDB. I have set the transaction-type
              >to Container in the message-driven stanza in ejb-jar.xml. And also the
              >trans-attribute
              >for that EJB in the container-transaction stanza, I have used Required.
              >Do I need
              >to setup anything else ?
              I don't think so.
              > The transaction descriptor element in the weblogic-enterprise-bean
              >stanza in weblogic-ejb-jar.xml for that MDB is empty.
              Not sure what you mean?
              > Am I missing anything
              >else?
              Container & Required is all that is needed
              If you like, post your ejb descriptor xml file, and I'll take a quick
              look to double-check.
              >-Prakash
              >
              >Tom Barnes <[email protected]> wrote:
              >>Hi Prakash,
              >>
              >>A runtime exception should force a rollback for tx MDBs, and
              >>a recover for non-tx MDBs. If you are seeing different
              >>behavior there may be a bug in WL.
              >>
              >>Since MDBs do not log an exception when the app throws
              >>a Runtime exception, I often recommend wrapping the
              >>application code in a try catch anyhow
              >> try {
              >> } catch (Throwable t) {
              >> log
              >> force rollback
              >> }
              >>I think there are plans to provide a configurable that
              >>optionally does something similar in the next release (no guarantees).
              >>(The problem is that some apps throw a runtime on purpose, and
              >>could quickly flood the log if such runtimes were logged per message.)
              >>
              >>Tom
              >>
              >>Prakash Muthukrishnan wrote:
              >>> Tom
              >>> Thanks for the suggestion. Using the setRollbackOnly method did the
              >>trick. This
              >>> brings up
              >>> a related question: What if a run time exception was thrown during
              >>the processing
              >>> in an MDB?
              >>> Is it not retried and ultimately shoved into the error queue?
              >>> Thanks again.
              >>> -Prakash
              >>>
              >>>
              >>> Tom Barnes <[email protected]> wrote:
              >>>
              >>>>Hi Prakash,
              >>>>
              >>>>At first glance, it doesn't seem like your doing anything wrong.
              >>>>Could you post your release and SP level, as well as your config.xml?
              >>>>
              >>>>How many messages did you send through?
              >>>>
              >>>>Note that for transactional MDBs it is best to call "setRollbackOnly"
              >>>>on the EJB context rather than throwing an NPE. This is because
              >>>>throwing a runtime exception forces the MDB to destroy itself and
              >>>>get re-initialized (pretty high overhead). For non-transactional
              >>>>MDBs, throwing a runtime exception is your only option.
              >>>>
              >>>>Tom, BEA
              >>>>
              >>>>Prakash Muthukrishnan wrote:
              >>>>
              >>>>
              >>>>>I have a distributed queue - distqueue which is configured with two
              >>>>
              >>>>queue members
              >>>>
              >>>>>- srvr1q
              >>>>>and srvr2q. srvr1q is a physical queue destination that is running
              >>>>
              >>>>on JMSServer1
              >>>>
              >>>>>on one instance in a cluster. srvr2q is a physical queue destination
              >>>>
              >>>>that is running
              >>>>
              >>>>>on JMSServer2 on another instance in the cluster. I have two errorqueues
              >>>>
              >>>>- srvr1errq
              >>>>
              >>>>>and srvr2errq - deployed on JMSServer1 and JMSServer2 respectively.
              >>>>
              >>>>I have configured
              >>>>
              >>>>>the srvr1q to the following:
              >>>>>
              >>>>>Redelivery Delay Override: 10000
              >>>>>Redelivery Limit: 3
              >>>>>Error Destination: srvr1errq
              >>>>>
              >>>>>Also the srvr2q is configured to the following:
              >>>>>Redelivery Delay Override: 10000
              >>>>>Redelivery Limit: 3
              >>>>>Error Destination: srvr2errq
              >>>>>
              >>>>>There is an MDB listening to each one of these local queues. The
              >MDB
              >>>>
              >>>>is programmed
              >>>>
              >>>>>to throw a null pointer exception (to simulate business logic processing
              >>>>
              >>>>failures)
              >>>>
              >>>>>My expectations are : the message goes to one of the local queues.
              >>>>
              >>>>Null Pointer
              >>>>
              >>>>>exception is thrown. After 10 seconds the message is resent to the
              >>>>
              >>>>same queue
              >>>>
              >>>>>with a similar fate. After the third attempt, the message is moved
              >>>>
              >>>>to the error
              >>>>
              >>>>>queue of the corresponding local queue.
              >>>>>
              >>>>>What I see is the following:
              >>>>>When I send a message I do see a Null Pointer Exception, but it occurs
              >>>>
              >>>>only once
              >>>>
              >>>>>and I dont see the message going to the error queue. Since my Load
              >>>>
              >>>>Balancing policy
              >>>>
              >>>>>is Round-Robin on the distqueue, the local queues receive the message
              >>>>
              >>>>every other
              >>>>
              >>>>>time with the same result - Null Pointer Exception thrown only once.
              >>>>>
              >>>>>I also have JMSStores configured so the messages are persistent.
              >>>>>
              >>>>>Can someone explain to me what I am doing wrong?
              >>>>>Thanks.
              >>>>
              >>>
              >>
              >
              

  • OEM takes Lot of time to show Error Queue

    I have configured Multi-Master Advanced Replication for 3 master sites (Using Oracle Enterprise Edition 9.2.0.1.0 on MS Windows2K). But I have observed a problem during this week that the size of SYSTEM tablespace has been growing rapidly. After further analysis it was observed that a major portion of the tablespace is covered by DEF$_AQCALL. It has nearly 21,763,626 rows on master definition site and increasing day by day while there are just less that 6650,400 rows in participating other master sites. Due to this larger size when I try to observe the Error Queue using OEM, It takes more than 45 minutes to just show the Errors transactions list. Please have a look on the following script, I have run:-
    SQL> select count(*) from def$_aqcall;
    COUNT(*)
    21763626
    SQL> select count(*) from deferror;
    COUNT(*)
    3
    SQL> select count(*) from deftrandest;
    COUNT(*)
    1466
    Transactions are being propagated normally. But If I have to see the Error Queue to check the error transactions for possible data conflicts, it takes a long time. I have moved this table to USERS tablespace and then move again to SYSTEM tablespace but alas its size doesn't vary. Can I truncate this table i.e. DEF$_AQCALL. As its size is going to be bigger and bigger due to increasing number of rows in it. what should I do ?
    Thanks
    Masood

    You should read the documentation for multimaster replication because mulitimater replication between two databases is easy but the replication between more then two databases required complete knowledge and strong understanding of oracle server working as well as replication concept. If you not create replication between more then two database with proper considration then it will create a very big overhead on the server and situation which you already mention.
    Moreover create Replication with API rather then GUI tools. it will includes more option to create replication environment.

  • HFM 933, error executing vb script %0 (for rules file)

    i have a HFM rules file that is error-free, but sometimes, when i run a consolidation via SmartView, it is aborted and the error is "Error Executing VB Script %0".
    Does anyone know why this occurs?
    Thanks in advance.

    The error message you shared may not have anything to do with HFM rules. There are a number of things that can generate a VBScript error: HFM rules, HFM custom member lists, or permissions problems/configuration problems with IIS. Smart View uses IIS, so maybe this is a configuration issue there. If you log out and log back in again, perform the very same activity successfully, it could mean you have load balance problem, or some other network related error. If it's a permission problem on the server, it will affect all users in the same way. An HFM member list problem would reveal itself any time the member list is called: whether through HFM's forms, grids, smart view, or Reports.
    --Chris                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Server Configuration Error

    I'm setting up 10.4.5 Server for the first time, and I've managed to get all of my services running correctly except the mail server. I've searched the discussions and tried some of the suggestions without success.
    Briefly, I cannot receive mail from outside of my network. I can send mail out, I can send and receive mail within the network, the email client authenticates and checks the accounts, and I can access everything via WebMail (thanks to the suggestions here). Multiple tests from DNStuff haven't been helpful to me.
    I'm adding the postconf -n results as well as a rejected email and some log entries.
    powermacg4:/ erick$ postconf -n
    command_directory = /usr/sbin
    config_directory = /etc/postfix
    content_filter = smtp-amavis:[127.0.0.1]:10024
    daemon_directory = /usr/libexec/postfix
    debugpeerlevel = 2
    enableserveroptions = yes
    html_directory = no
    inet_interfaces = all
    localrecipientmaps =
    luser_relay = postmaster
    mail_owner = postfix
    mailboxsizelimit = 0
    mailbox_transport = cyrus
    mailq_path = /usr/bin/mailq
    manpage_directory = /usr/share/man
    mapsrbldomains =
    messagesizelimit = 10485760
    mydestination = $myhostname,localhost.$mydomain,localhost,kaisernetwork.us
    mydomain = kaisernetwork.us
    mydomain_fallback = localhost
    myhostname = mail.kaisernetwork.us
    mynetworks = 127.0.0.1/32,66.93.12.106,192.168.225.192/26,17.250.248.44
    mynetworks_style = host
    newaliases_path = /usr/bin/newaliases
    queue_directory = /private/var/spool/postfix
    readme_directory = /usr/share/doc/postfix
    sample_directory = /usr/share/doc/postfix/examples
    sendmail_path = /usr/sbin/sendmail
    setgid_group = postdrop
    smtpdclientrestrictions = permit_mynetworks sbl-xbl.spamhaus.org rejectrblclient dnsbl.sorbs.net rejectrblclient sbl-xbl.spamhaus.org permit
    smtpdpw_server_securityoptions = cram-md5,login
    smtpdrecipientrestrictions = permitsasl_authenticated,permit_mynetworks,reject_unauthdestination,permit
    smtpdsasl_authenable = yes
    smtpdtls_certfile = /etc/certificates/Server.crt
    smtpdtls_keyfile = /etc/certificates/Server.key
    smtpduse_pwserver = yes
    smtpdusetls = yes
    unknownlocal_recipient_rejectcode = 550
    Return-path:
    Received: from mac.com (smtpin09-en2 [10.13.10.79])
    by ms22.mac.com (iPlanet Messaging Server 5.2 HotFix 2.08 (built Sep 22 2005))
    with ESMTP id <[email protected]> for [email protected]; Sun,
    26 Mar 2006 14:05:40 -0800 (PST)
    Received: from smtpout.mac.com (smtpout05-en1.mac.com [17.250.248.87])
    by mac.com (Xserve/smtpin09/MantshX 4.0) with ESMTP id k2QM5cEd014984 for
    <[email protected]>; Sun, 26 Mar 2006 14:05:40 -0800 (PST)
    Received: from localhost (localhost)
    by smtpout.mac.com (Xserve/8.12.11/smtpout05/MantshX 4.0)
    id k2QM40Ya000383; Sun, 26 Mar 2006 14:05:40 -0800 (PST)
    Date: Sun, 26 Mar 2006 14:05:40 -0800 (PST)
    From: Mail Delivery Subsystem <[email protected]>
    Subject: Warning: could not send message for past 4 hours
    To: [email protected]
    Message-id: <[email protected]>
    Auto-submitted: auto-generated (warning-timeout)
    MIME-version: 1.0
    Content-type: multipart/report;
    boundary="k2QM40Ya000383.1143410740/smtpout.mac.com";
    report-type=delivery-status
    Original-recipient: rfc822;[email protected]
    This is a MIME-encapsulated message
    --k2QM40Ya000383.1143410740/smtpout.mac.com
    ** THIS IS A WARNING MESSAGE ONLY **
    ** YOU DO NOT NEED TO RESEND YOUR MESSAGE **
    The original message was received at Sun, 26 Mar 2006 09:34:26 -0800 (PST)
    from smtpin03-en2 [10.13.10.148]
    ----- Transcript of session follows -----
    ... while talking to mail.kaisernetwork.us.:
    DATA
    <<< 451 Server configuration error
    <[email protected]>... Deferred: 451 Server configuration error
    <<< 554 Error: no valid recipients
    Warning: message still undelivered after 4 hours
    Will keep trying until message is 4 days old
    --k2QM40Ya000383.1143410740/smtpout.mac.com
    Content-Type: message/delivery-status
    Reporting-MTA: dns; smtpout.mac.com
    Arrival-Date: Sun, 26 Mar 2006 09:34:26 -0800 (PST)
    Final-Recipient: RFC822; [email protected]
    Action: delayed
    Status: 4.3.0
    Remote-MTA: DNS; mail.kaisernetwork.us
    Diagnostic-Code: SMTP; 451 Server configuration error
    Last-Attempt-Date: Sun, 26 Mar 2006 14:05:40 -0800 (PST)
    --k2QM40Ya000383.1143410740/smtpout.mac.com
    Content-Type: message/rfc822
    Return-Path: <[email protected]>
    Received: from mac.com (smtpin03-en2 [10.13.10.148])
    by smtpout.mac.com (Xserve/8.12.11/smtpout05/MantshX 4.0) with ESMTP id k2QHYQq5016724
    for <[email protected]>; Sun, 26 Mar 2006 09:34:26 -0800 (PST)
    Received: from [192.168.225.195] (dsl093-012-143.cle1.dsl.speakeasy.net [66.93.12.143])
    (authenticated bits=0)
    by mac.com (Xserve/smtpin03/MantshX 4.0) with ESMTP id k2QHYM4o005075
    (version=TLSv1/SSLv3 cipher=DES-CBC3-SHA bits=168 verify=NO)
    for <[email protected]>; Sun, 26 Mar 2006 09:34:25 -0800 (PST)
    User-Agent: Microsoft-Entourage/11.2.3.060209
    Date: Sun, 26 Mar 2006 12:34:22 -0500
    Subject: Test
    From: Eric Kaiser <[email protected]>
    To: <[email protected]>
    Message-ID: <C04C3ACE.746D%[email protected]>
    Thread-Topic: Test
    Thread-Index: AcZQ+4Szwz53xLzuEdqN/QAKlbRzag==
    Mime-version: 1.0
    Content-type: multipart/alternative;
    boundary="B32262212662452496"
    This message is in MIME format. Since your mail reader does not understand
    this format, some or all of this message may not be legible.
    --B32262212662452496
    Content-type: text/plain;
    charset="US-ASCII"
    Content-transfer-encoding: 7bit
    Test
    --k2QM40Ya000383.1143410740/smtpout.mac.com--
    Mar 26 18:36:12 powermacg4 postfix/smtpd[9633]: NOQUEUE: reject: RCPT from test.dnsstuff.com[66.36.241.109]: 451 Server configuration error; from= to=<postmaster@[66.93.12.106]> proto=SMTP helo=<test.DNSreport.com>
    Mar 26 18:36:12 powermacg4 postfix/smtpd[9633]: warning: unknown smtpd restriction: "sbl-xbl.spamhaus.org"
    Mar 26 18:36:12 powermacg4 postfix/smtpd[9633]: NOQUEUE: reject: RCPT from test.dnsstuff.com[66.36.241.109]: 451 Server configuration error; from= to=<[email protected]m> proto=SMTP helo=<test.DNSreport.com>
    Mar 26 18:36:12 powermacg4 postfix/cleanup[9635]: B8AD84507A: message-id=<[email protected]>
    Mar 26 18:36:12 powermacg4 postfix/smtpd[9633]: disconnect from test.dnsstuff.com[66.36.241.109]
    Mar 26 18:36:12 powermacg4 postfix/qmgr[8260]: B8AD84507A: from=<[email protected]>, size=982, nrcpt=1 (queue active)
    Mar 26 18:36:12 powermacg4 postfix/local[9636]: B8AD84507A: to=<[email protected]>, orig_to=<postmaster>, relay=local, delay=0, status=sent (delivered to file: /dev/null)
    Mar 26 18:36:12 powermacg4 postfix/qmgr[8260]: B8AD84507A: removed
    Mar 26 18:44:50 powermacg4 postfix/smtpd[9746]: connect from smtpout.mac.com[17.250.248.97]
    Mar 26 18:44:50 powermacg4 postfix/smtpd[9746]: warning: unknown smtpd restriction: "sbl-xbl.spamhaus.org"
    Mar 26 18:44:50 powermacg4 postfix/smtpd[9746]: NOQUEUE: reject: RCPT from smtpout.mac.com[17.250.248.97]: 451 Server configuration error; from=<[email protected]> to=<[email protected]> proto=ESMTP helo=<smtpout.mac.com>
    Mar 26 18:45:08 powermacg4 postfix/cleanup[9751]: 0ADFF45096: message-id=<[email protected]>
    Mar 26 18:45:08 powermacg4 postfix/smtpd[9746]: disconnect from smtpout.mac.com[17.250.248.97]
    Mar 26 18:45:08 powermacg4 postfix/qmgr[8260]: 0ADFF45096: from=<[email protected]>, size=935, nrcpt=1 (queue active)
    Mar 26 18:45:08 powermacg4 postfix/local[9752]: 0ADFF45096: to=<[email protected]>, orig_to=<postmaster>, relay=local, delay=0, status=sent (delivered to file: /dev/null)
    Mar 26 18:45:08 powermacg4 postfix/qmgr[8260]: 0ADFF45096: removed
    Mar 26 18:50:44 powermacg4 postfix/smtpd[9828]: connect from mail2.sea5.speakeasy.net[69.17.117.4]
    Mar 26 18:50:45 powermacg4 postfix/smtpd[9828]: warning: unknown smtpd restriction: "sbl-xbl.spamhaus.org"
    Mar 26 18:50:45 powermacg4 postfix/smtpd[9828]: NOQUEUE: reject: RCPT from mail2.sea5.speakeasy.net[69.17.117.4]: 451 Server configuration error; from=<[email protected]> to=<[email protected]> proto=ESMTP helo=<mail2.sea5.speakeasy.net>
    Mar 26 18:50:45 powermacg4 postfix/cleanup[9830]: 32EC9450A8: message-id=<[email protected]>
    Mar 26 18:50:45 powermacg4 postfix/smtpd[9828]: disconnect from mail2.sea5.speakeasy.net[69.17.117.4]
    Mar 26 18:50:45 powermacg4 postfix/qmgr[8260]: 32EC9450A8: from=<[email protected]>, size=1127, nrcpt=1 (queue active)
    Mar 26 18:50:45 powermacg4 postfix/local[9831]: 32EC9450A8: to=<[email protected]>, orig_to=<postmaster>, relay=local, delay=0, status=sent (delivered to file: /dev/null)
    Mar 26 18:50:45 powermacg4 postfix/qmgr[8260]: 32EC9450A8: removed
    Mar 26 19:01:40 powermacg4 postfix/postfix-script: refreshing the Postfix mail system
    Mar 26 19:01:40 powermacg4 postfix/master[8258]: reload configuration
    Mar 26 19:02:01 powermacg4 postfix/smtpd[9970]: connect from test.dnsstuff.com[66.36.241.109]
    Mar 26 19:02:02 powermacg4 postfix/smtpd[9970]: warning: unknown smtpd restriction: "sbl-xbl.spamhaus.org"
    Mar 26 19:02:02 powermacg4 postfix/smtpd[9970]: NOQUEUE: reject: RCPT from test.dnsstuff.com[66.36.241.109]: 451 Server configuration error; from=<[email protected]> to=<[email protected]> proto=SMTP helo=<test.DNSreport.com>
    Mar 26 19:02:02 powermacg4 postfix/smtpd[9970]: lost connection after RCPT from test.dnsstuff.com[66.36.241.109]
    Mar 26 19:02:02 powermacg4 postfix/cleanup[9972]: 4E106450DE: message-id=<[email protected]>
    Mar 26 19:02:02 powermacg4 postfix/smtpd[9970]: disconnect from test.dnsstuff.com[66.36.241.109]
    Mar 26 19:02:02 powermacg4 postfix/qmgr[9956]: 4E106450DE: from=<[email protected]>, size=741, nrcpt=1 (queue active)
    Mar 26 19:02:02 powermacg4 postfix/local[9973]: 4E106450DE: to=<[email protected]>, orig_to=<postmaster>, relay=local, delay=0, status=sent (delivered to file: /dev/null)
    Mar 26 19:02:02 powermacg4 postfix/qmgr[9956]: 4E106450DE: removed
    Mar 26 19:04:48 powermacg4 postfix/smtpd[10003]: connect from smtpout.mac.com[17.250.248.97]
    Mar 26 19:04:48 powermacg4 postfix/smtpd[10003]: warning: unknown smtpd restriction: "sbl-xbl.spamhaus.org"
    Mar 26 19:04:48 powermacg4 postfix/smtpd[10003]: NOQUEUE: reject: RCPT from smtpout.mac.com[17.250.248.97]: 451 Server configuration error; from=<[email protected]> to=<[email protected]> proto=ESMTP helo=<smtpout.mac.com>
    Mar 26 19:04:54 powermacg4 postfix/cleanup[10007]: 1868B450E6: message-id=<[email protected]>
    Mar 26 19:04:54 powermacg4 postfix/smtpd[10003]: disconnect from smtpout.mac.com[17.250.248.97]
    Mar 26 19:04:54 powermacg4 postfix/qmgr[9956]: 1868B450E6: from=<[email protected]>, size=935, nrcpt=1 (queue active)
    Mar 26 19:04:54 powermacg4 postfix/local[10008]: 1868B450E6: to=<[email protected]>, orig_to=<postmaster>, relay=local, delay=0, status=sent (delivered to file: /dev/null)
    Mar 26 19:04:54 powermacg4 postfix/qmgr[9956]: 1868B450E6: removed
    I know there is a lot of info, and I greatly appreciate the time and effort of anybody willing to look at this. I'm trying to be complete with my first post.
    Thanks in advance.
    Eric
    PowerMac G5 2GHz DP   Mac OS X (10.4.5)  

    Well, spamhaus is listed twice, the first time incorrectly as noted.
    You can use the "mapsrbldomains = " syntax, but your Postfix logs themselves will tell you this is now deprecated.
    Agreed though: a good idea to separate the rbl options on their own line.
    smtpdclientrestrictions = permit_mynetworks
    rejectrblclient sbl-xbl.spamhaus.org rejectrblclient dnsbl.sorbs.net
    If you indent with whitespace then the line will not be interpreted as a new restriction but part of the prior one.
    So you could even format it as:
    smtpdclientrestrictions = permit_mynetworks
    rejectrblclient sbl-xbl.spamhaus.org
    rejectrblclient dnsbl.sorbs.net
    If you're serious about taking full advantage of the anti-UCE abilities of Postfix, I suggest reading at http://www.postfix.org/docs.html
    starting at UCE/Virus. Ignore linux and other OS-specific tips, or proceed with caution.
    http://jimsun.linxnet.com/misc/postfix-anti-UCE.txt
    http://www.mengwong.com/misc/postfix-uce-guide.txt
    http://www.mengwong.com/misc/postfix-uce-guide.txt
    http://sbserv.stahl.bau.tu-bs.de/~hildeb/postfix/
    Of course, use at your own risk. But if used judiciously, also your benefit. Backup all config files before editing.

  • 10.6.8 -- 10.9 Upgrade = 451 4.3.5 Helo command rejected: Server configuration error

    Full backup and upgraded my properly working Xserver 10.6.8 to Mavericks 10.9.1.
    Web service running fine, File Service running fine.
    Mail service: I can't send mail through my Mavericks Server.
    (i think my mail.lukedesign.com is "offline")
    What am I missing ?  I can no longer send mail after the upgrade !
    Helo command rejected: Server configuration
       error (in reply to RCPT TO command)
    Reporting-MTA: dns
    X-Outbound-Mail-Relay-Queue-ID: 930307000008E
    X-Outbound-Mail-Relay-Sender: rfc822;
    Arrival-Date: Sat, 28 Dec 2013 17:48:36 -0500 (EST)
    Action: failed
    Status: 4.3.5
    Remote-MTA: dns
    Diagnostic-Code: smtp; 451 4.3.5 >: Helo command rejected:
       Server configuration error
              bh=LIrD+hJmwz+5MZLs4vaxCpbJMUJarfXJSIlQFwtzPV4=;
              h=From:To:Subject:Message-Id:Date:MIME-Version:Content-Type;
              b=aqJBFaESW7MinKgXTlokj6WU0UxrmNYjYsXhcedpJr1io9uJ82XuN+FjKF0SLtebQ
              DhEIuYEEVU6sKsyh/y9+jKUtK2GCHexaXhWouA++9+FvT2NdqczDTdMEd/Q8kHdUOO
              Vre27uIG4VlMMlFW9CScIt9ZL3qsH+xR3oKlT7JM=
    x-aol-sid: 3039ac1af95452bf554450bb
    <Email Edited by Host>

    Postfix Debugging Howto

  • Configuration error when open admin tool in BIEE 11g client

    Hi All,
    I have installed BIEE 11g client in my laptop,the version is 11.1.6.2 ,it has show one error in the installation log :
    <action name="Custom Action" target="oracle.bi.CustomIAActionGetInstanceNumber" status="error">
    - <AdditionalNotes>
    <error>class oracle.bi.CustomIAActionGetInstanceNumber.install() runtime exception:</error>
    </AdditionalNotes>
    After installation,when I try to open the admin tool in start menu,it show configuration error , but I can open the admin tool through installation directory.
    And when I try to import metadata,it also shows connection has failed.
    Can any body give some helps on this,thanks a lot.
    Ryan.
    Edited by: 997662 on Apr 5, 2013 1:39 AM

    Hi,
    Let me know which version you are using (OBIEE) ?
    you are trying to install Client (Admin Tool) and OBIEE server in same machine ?
    Thx,

  • Laptop crashed, moved HDD to another PC to use CS5 but it gives me a Configuration Error. Error:6

    Hi, My laptop containing Adobe CS5 recently crashed. I do not have the serial as this was activated at my school and they only do it once for everyone. What I did was to take the HDD out and put it onto my PC and try to use the application from there, a method which worked before on other applications, but when I wanted to load up dreamweaver and any other applications in the suite it failed to load and popped out the following message:
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Configuration Error
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Please uninstall and reinstall the product.
    If this problem still occurs, please contact Adobe technical support for help, and mention the error code shown at the bottom of the screen.
    Error:6
    http://www.adobe.com/support/
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Can anyone help me out? I don't have the serials nor the CD to reinstall so I'm practically stuck and I cant afford to buy the thing again.

    Adobe applications simply don't work that way. Installation puts software and configuration information not only in application-specific directories under \program files\, but also in system directories. As such, Adobe application installations are not portable.
    Unfortunately, in order to re-install your software, you will need to go back to your “school” for installation media and serial number information since the software was licensed through them and not directly via Adobe.
              - Dov

  • FJS-00012 ERROR while executing script in start SAP system

    Hi experts,
    I am getting error in the Oracle preload actions while installing the SAP 4.7 using the ORacle 9.2.0.1..
    FJS-00012  Error when executing script in start SAP system(post processing)
    My comp configuration is as follows:
    160 gb hard disk
    RAM 1GB
    OS: win 2003 server enterprise edition
    oracle 8.1.7
    During the Database Load (post processing) section of the
    installation, i get an error and the installation fails.
    I am giving all the logs here including the trace log and the
    Sapview.log file ans sapinst.
    D:\usr\sap\ESA\SYS\exe\run/R3load.exe: START OF LOG: 20070511002459
    D:\usr\sap\ESA\SYS\exe\run/R3load.exe: sccsid @(#) $Id: //bas/620/src/R3ld/R3load/R3ldmain.c#5 $ SAP
    D:\usr\sap\ESA\SYS\exe\run/R3load.exe: version R6.20/V1.2
    D:\usr\sap\ESA\SYS\exe\run/R3load.exe -ctf I E:\db3\EXPORT3/DATA/SAPVIEW.STR C:\SAPinst ORACLE KERNEL/DDLORA.TPL C:\SAPinst ORACLE KERNEL/SAPVIEW.TSK ORA -l C:\SAPinst ORACLE KERNEL/SAPVIEW.log -o D
    D:\usr\sap\ESA\SYS\exe\run/R3load.exe: job completed
    D:\usr\sap\ESA\SYS\exe\run/R3load.exe: END OF LOG: 20070511002500
    D:\usr\sap\ESA\SYS\exe\run/R3load.exe: START OF LOG: 20070511070423
    D:\usr\sap\ESA\SYS\exe\run/R3load.exe: sccsid @(#) $Id: //bas/620/src/R3ld/R3load/R3ldmain.c#5 $ SAP
    D:\usr\sap\ESA\SYS\exe\run/R3load.exe: version R6.20/V1.2
    D:\usr\sap\ESA\SYS\exe\run/R3load.exe -dbcodepage 1100 -i C:\SAPinst ORACLE KERNEL/SAPVIEW.cmd -l C:\SAPinst ORACLE KERNEL/SAPVIEW.log -stop_on_error
    DbSl Trace: Got ORACLE_HOME=D:\oracle\ora81 from environment
    DbSl Trace: Client NLS settings: AMERICAN_AMERICA.WE8DEC
    DbSl Trace: Logon as OPS$-user to get SAPESA's password
    DbSl Trace: Connecting as /@ESA on connection 0 ...
    DbSl Trace: Attaching to DB Server ESA (con_hdl=0,svchp=002BD418,svrhp=002BD224)
    DbSl Trace: Starting user session (con_hdl=0,svchp=002BD418,srvhp=002BD224,usrhp=00304E94)
    DbSl Trace: Now I'm connected to ORACLE
    DbSl Trace: ORA-1403 when accessing table SAPUSER
    DbSl Trace: Disconnecting from connection 0 ...
    DbSl Trace: Closing user session (con_hdl=0,svchp=002BD418,usrhp=00304E94)
    DbSl Trace: Now I'm disconnected from ORACLE
    DbSl Trace: Try to connect with default password
    DbSl Trace: Connecting as SAPESA/<pwd>@ESA on connection 0 ...
    DbSl Trace: Starting user session (con_hdl=0,svchp=002BD418,srvhp=002BD224,usrhp=00304E94)
    DbSl Trace: Now I'm connected to ORACLE
    DbSl Trace: Database NLS settings: AMERICAN_AMERICA.WE8DEC
    DbSl Trace: Database instance esa is running on MALTI with ORACLE version 8.1.7.4.1 since 20070511
    (DB) INFO: connected to DB
    (DB) INFO: /SAPTRX/A_CONDF4 created
    (DB) INFO: /SAPTRX/VDASFEV created
    (DB) INFO: /SAPTRX/VDASFPAR created
    (DB) INFO: /SAPTRX/VD_AOMIL created
    (DB) INFO: /SAPTRX/VD_AOPAC created
    (DB) INFO: /SAPTRX/VD_AOPAE created
    (DB) INFO: /SAPTRX/VD_AOPAI created
    (DB) INFO: /SAPTRX/VD_AOPAR created
    (DB) INFO: /SAPTRX/VD_AOTD1 created
    (DB) INFO: /SAPTRX/VD_AOTD2 created
    (DB) INFO: /SAPTRX/VD_AOTDD created
    (DB) INFO: /SAPTRX/VD_AOTYP created
    (DB) INFO: /SAPTRX/VD_ASPAR created
    (DB) INFO: /SAPTRX/VD_CONDL created
    (DB) INFO: /SAPTRX/V_AODD02 created
    (DB) INFO: /SAPTRX/V_DD03 created
    (DB) INFO: /SAPTRX/V_DD03X created
    (DB) INFO: /SDF/SMODICOMP created
    (DB) INFO: /SDF/SMODIDEVC created
    (DB) INFO: /SDF/UMOD_COMP created
    (DB) INFO: ACEPSOIT_UPD created
    (DB) INFO: ADJV_TRANS_DIF created
    (DB) INFO: AFFWV0 created
    (DB) INFO: AFKO_LAUFN created
    (DB) INFO: AFSPLIT created
    (DB) INFO: AFVCP created
    (DB) INFO: ALM_ME_T003O_IS created
    (DB) INFO: ALM_ME_T350I created
    (DB) INFO: ALM_ME_TQ80_T created
    (DB) INFO: ANEKPV created
    (DB) INFO: APOUPD created
    (DB) INFO: APPL_DEVC created
    (DB) INFO: APPL_DIAL created
    (DB) INFO: APPL_DOMA created
    (DB) INFO: APPL_DTEL created
    (DB) INFO: APPL_ENQU created
    (DB) INFO: APPL_FUGR created
    (DB) INFO: APPL_FUGRG created
    (DB) INFO: APPL_FUNC created
    (DB) INFO: APPL_INDX created
    (DB) INFO: APPL_MCOB created
    (DB) INFO: APPL_MENU created
    (DB) ERROR: DDL statement failed
    (CREATE VIEW "APPL_MODS" ( "NAME" , "TYP" , "MEMBER" , "DEVCLASS"  ) AS SELECT T0001."NAME", T0001."TYP", T0001."MEMBER", T0002."DEVCLASS" FROM "MODSAP" T0001, "MODSAPA" T0002 WHERE T0001."NAME" = T0002."NAME" AND T0002."MIGRATED" <> 'X')
    DbSlExecute: rc = 103
      (SQL error 942)
      error message returned by DbSl:
    ORA-00942: table or view does not exist
    DbSl Trace: Disconnecting from connection 0 ...
    DbSl Trace: Closing user session (con_hdl=0,svchp=002BD418,usrhp=00304E94)
    DbSl Trace: Detaching from DB Server (con_hdl=0,svchp=002BD418,srvhp=002BD224)
    DbSl Trace: Now I'm disconnected from ORACLE
    (DB) INFO: disconnected from DB
    D:\usr\sap\ESA\SYS\exe\run/R3load.exe: job finished with 1 error(s)
    D:\usr\sap\ESA\SYS\exe\run/R3load.exe: END OF LOG: 20070511070433
    SAPINST
    INFO 2007-05-10 23:59:05
    Processing of host operation t_HostInfo_SHARED succeeded.
    INFO 2007-05-10 23:59:16
    The 'saploc' share exists at directory 'D:\usr\sap'. Choosing drive D: as SAP System drive.
    INFO 2007-05-10 23:59:21
    Copying file E:/KERNEL/NT/COMMON/OraVolatileDatabaseParameters.xml to: OraVolatileDatabaseParameters.xml.
    INFO 2007-05-10 23:59:21
    Creating file C:\SAPinst ORACLE KERNEL\OraVolatileDatabaseParameters.xml.
    INFO 2007-05-11 00:01:52
    Copying file E:/db1/EXPORT1/DB/ORA/DBSIZE.XML to: DBSIZE.XML.
    INFO 2007-05-11 00:01:52
    Creating file C:\SAPinst ORACLE KERNEL\DBSIZE.XML.
    INFO 2007-05-11 00:01:52
    Copying file system node E:\db1\EXPORT1/DB/ORA/DBSIZE.XML with type NODE to DBSIZE.XML succeeded.
    INFO 2007-05-11 00:01:52
    Processing of all file system node operations of table tORA_filecopy succeeded.
    INFO 2007-05-11 00:01:52
    Copying file E:/db1/EXPORT1/DB/DDLORA.TPL to: DDLORA.TPL.
    INFO 2007-05-11 00:01:52
    Creating file C:\SAPinst ORACLE KERNEL\DDLORA.TPL.
    INFO 2007-05-11 00:01:52
    Copying file system node E:\db1\EXPORT1/DB/DDLORA.TPL with type NODE to DDLORA.TPL succeeded.
    INFO 2007-05-11 00:01:52
    Processing of all file system node operations of table tORA_filecopy succeeded.
    INFO 2007-05-11 00:01:57
    Moving file C:/SAPinst ORACLE KERNEL/DDLORA.TPL to: orig_ddl_ora_tmp.tpl.
    INFO 2007-05-11 00:01:57
    Moving file C:/SAPinst ORACLE KERNEL/changed_ddl_ora_tmp.tpl to: DDLORA.TPL.
    INFO 2007-05-11 00:01:57
    Removing file C:/SAPinst ORACLE KERNEL/orig_ddl_ora_tmp.tpl.
    INFO 2007-05-11 00:03:00
    Package table created
    PHASE 2007-05-11 00:04:15
    SAP R/3 Enterprise 4.70 for Oracle
    PHASE 2007-05-11 00:04:15
    SAP Web Application Server
    PHASE 2007-05-11 00:04:15
    Request common parameters of SAP System
    PHASE 2007-05-11 00:04:15
    Create operating system accounts
    INFO 2007-05-11 00:04:15
    Copying file C:/SAPinst ORACLE KERNEL/keydb.xml to: C:/SAPinst ORACLE KERNEL/keydb.1.xml.
    INFO 2007-05-11 00:04:15
    Creating file C:\SAPinst ORACLE KERNEL\keydb.1.xml.
    INFO 2007-05-11 00:04:15
    Copying file C:/SAPinst ORACLE KERNEL/OraVolatileDatabaseParameters.xml to: C:/SAPinst ORACLE KERNEL/OraVolatileDatabaseParameters.1.xml.
    INFO 2007-05-11 00:04:15
    Creating file C:\SAPinst ORACLE KERNEL\OraVolatileDatabaseParameters.1.xml.
    INFO 2007-05-11 00:04:15
    Copying file C:/SAPinst ORACLE KERNEL/DBSIZE.XML to: C:/SAPinst ORACLE KERNEL/DBSIZE.1.XML.
    INFO 2007-05-11 00:04:15
    Creating file C:\SAPinst ORACLE KERNEL\DBSIZE.1.XML.
    INFO 2007-05-11 00:04:15
    Changing account ACCOUNTID=S-1-5-21-1488183395-3813774055-1856681103-1004 ACCOUNTNAME=malti\SAP_LocalAdmin ACCOUNTTYPE=GROUP DESCRIPTION=SAP Local Administration Group MEMBERSHIPSEPARATOR=, OPMODE=CREATE  succeeded.
    INFO 2007-05-11 00:04:15
    Changing account ACCOUNTID=S-1-5-21-1488183395-3813774055-1856681103-1005 ACCOUNTNAME=malti\SAP_ESA_LocalAdmin ACCOUNTTYPE=GROUP DESCRIPTION=SAP Local Administration Group MEMBERSHIPSEPARATOR=, OPMODE=CREATE  succeeded.
    INFO 2007-05-11 00:04:15
    Changing account ACCOUNTID=S-1-5-21-1488183395-3813774055-1856681103-1006 ACCOUNTNAME=malti\SAP_ESA_GlobalAdmin ACCOUNTTYPE=GROUP DESCRIPTION=SAP Global Administration Group MEMBERSHIPSEPARATOR=, OPMODE=CREATE  succeeded.
    INFO 2007-05-11 00:04:15
    Changing account ACCOUNTID=S-1-5-21-1488183395-3813774055-1856681103-1007 ACCOUNTNAME=ORA_ESA_DBA ACCOUNTTYPE=GROUP CONDITION=YES DESCRIPTION=Database Operator Group MEMBERSHIPSEPARATOR=, OPMODE=CREATE  succeeded.
    INFO 2007-05-11 00:04:15
    Changing account ACCOUNTID=S-1-5-21-1488183395-3813774055-1856681103-1008 ACCOUNTNAME=ORA_ESA_OPER ACCOUNTTYPE=GROUP CONDITION=YES DESCRIPTION=Database Administration Group MEMBERSHIPSEPARATOR=, OPMODE=CREATE  succeeded.
    INFO 2007-05-11 00:04:15
    Processing of all account operations of table t_SAPComponent_Accounts_Accounts_SHARED succeeded (operation CREATE).
    INFO 2007-05-11 00:04:18
    Changing account ACCOUNTID=S-1-5-21-1488183395-3813774055-1856681103-1009 ACCOUNTNAME=malti\esaadm ACCOUNTTYPE=USER DESCRIPTION=SAP System Administrator MEMBERSHIP=malti\SAP_ESA_GlobalAdmin,malti\Users,Administrators,ORA_ESA_DBA,ORA_ESA_OPER,malti\SAP_LocalAdmin,malti\SAP_ESA_LocalAdmin MEMBERSHIPSEPARATOR=, OPMODE=CREATE USERPASSWORD=*...  succeeded.
    INFO 2007-05-11 00:04:18
    Changing account ACCOUNTID=S-1-5-21-1488183395-3813774055-1856681103-1010 ACCOUNTNAME=malti\SAPServiceESA ACCOUNTTYPE=USER CONDITION=YES DESCRIPTION=SAP System Service Administrator MEMBERSHIP=malti\SAP_ESA_GlobalAdmin,Administrators,ORA_ESA_DBA,ORA_ESA_OPER,malti\SAP_LocalAdmin,malti\SAP_ESA_LocalAdmin MEMBERSHIPSEPARATOR=, OPMODE=CREATE USERPASSWORD=*...  succeeded.
    INFO 2007-05-11 00:04:18
    Processing of all account operations of table t_SAPComponent_Accounts_Accounts_SHARED succeeded (operation CREATE).
    PHASE 2007-05-11 00:04:18
    Request operating system user information
    PHASE 2007-05-11 00:04:18
    Request operating system user information
    PHASE 2007-05-11 00:04:18
    Request operating system user information
    PHASE 2007-05-11 00:04:19
    Request operating system user information
    PHASE 2007-05-11 00:04:19
    Request operating system user information
    PHASE 2007-05-11 00:04:19
    Request operating system user information
    PHASE 2007-05-11 00:04:19
    Request operating system user information
    PHASE 2007-05-11 00:04:19
    Request operating system user information
    PHASE 2007-05-11 00:04:19
    Request operating system user information
    PHASE 2007-05-11 00:04:19
    Request operating system user information
    PHASE 2007-05-11 00:04:19
    Request operating system user information
    PHASE 2007-05-11 00:04:19
    Request operating system user information
    PHASE 2007-05-11 00:04:19
    Request operating system user information
    PHASE 2007-05-11 00:04:19
    Request operating system user information
    PHASE 2007-05-11 00:04:19
    Request operating system user information
    PHASE 2007-05-11 00:04:19
    Request operating system user information
    PHASE 2007-05-11 00:04:19
    Request operating system user information
    PHASE 2007-05-11 00:04:19
    Request operating system user information
    INFO 2007-05-11 00:04:20
    Successfully added privileges 'SeTcbPrivilege SeAssignPrimaryTokenPrivilege SeIncreaseQuotaPrivilege' to account 'S-1-5-21-1488183395-3813774055-1856681103-500' on host 'malti'!
    INFO 2007-05-11 00:04:20
    Successfully added privileges 'SeTcbPrivilege SeAssignPrimaryTokenPrivilege SeIncreaseQuotaPrivilege' to account 'S-1-5-21-1488183395-3813774055-1856681103-500' on host 'malti'!
    INFO 2007-05-11 00:04:20
    Successfully added privileges 'SeTcbPrivilege SeAssignPrimaryTokenPrivilege SeIncreaseQuotaPrivilege' to account 'S-1-5-21-1488183395-3813774055-1856681103-500' on host 'malti'!
    INFO 2007-05-11 00:04:20
    Evaluating all 'tNT_RegistryEntries' table rows succeeded.
    INFO 2007-05-11 00:04:21
    Creating or updating all NT registry entries from the tNT_RegistryEntries table succeeded.
    INFO 2007-05-11 00:04:22
    Creating or updating all NT registry entries from the tNT_RegistryEntries table succeeded.
    INFO 2007-05-11 00:05:39
    Creating file system node D:\oracle\ESA/sapdata6\esa_16 with type DIRECTORY succeeded.
    INFO 2007-05-11 00:05:39
    Creating directory D:\oracle\ESA\sapdata1\esa620_1.
    INFO 2007-05-11 00:05:39
    Creating file system node D:\oracle\ESA/sapdata1\esa620_1 with type DIRECTORY succeeded.
    INFO 2007-05-11 00:05:39
    Creating directory D:\oracle\ESA\sapdata2\esa620_2.
    INFO 2007-05-11 00:05:39
    Creating file system node D:\oracle\ESA/sapdata2\esa620_2 with type DIRECTORY succeeded.
    INFO 2007-05-11 00:05:39
    Creating directory D:\oracle\ESA\sapdata3\esa620_3.
    INFO 2007-05-11 00:05:39
    Creating file system node D:\oracle\ESA/sapdata3\esa620_3 with type DIRECTORY succeeded.
    INFO 2007-05-11 00:05:39
    Creating directory D:\oracle\ESA\sapdata4\esa620_4.
    INFO 2007-05-11 00:05:39
    Creating file system node D:\oracle\ESA/sapdata4\esa620_4 with type DIRECTORY succeeded.
    INFO 2007-05-11 00:05:39
    Creating directory D:\oracle\ESA\sapdata4\esa620_5.
    INFO 2007-05-11 00:05:39
    Creating file system node D:\oracle\ESA/sapdata4\esa620_5 with type DIRECTORY succeeded.
    INFO 2007-05-11 00:05:39
    Creating directory D:\oracle\ESA\sapdata5\esa620_6.
    INFO 2007-05-11 00:05:39
    Creating file system node D:\oracle\ESA/sapdata5\esa620_6 with type DIRECTORY succeeded.
    INFO 2007-05-11 00:05:39
    Creating directory D:\oracle\ESA\sapdata5\esa620_7.
    INFO 2007-05-11 00:05:39
    Creating file system node D:\oracle\ESA/sapdata5\esa620_7 with type DIRECTORY succeeded.
    INFO 2007-05-11 00:05:39
    Creating directory D:\oracle\ESA\sapdata6\esa620_8.
    INFO 2007-05-11 00:05:39
    Creating file system node D:\oracle\ESA/sapdata6\esa620_8 with type DIRECTORY succeeded.
    INFO 2007-05-11 00:05:39
    Creating directory D:\oracle\ESA\sapdata6\esa620_9.
    INFO 2007-05-11 00:05:39
    Creating file system node D:\oracle\ESA/sapdata6\esa620_9 with type DIRECTORY succeeded.
    INFO 2007-05-11 00:05:39
    Creating directory D:\oracle\ESA\sapdata6\esausr_1.
    INFO 2007-05-11 00:05:39
    Creating file system node D:\oracle\ESA/sapdata6\esausr_1 with type DIRECTORY succeeded.
    INFO 2007-05-11 00:05:39
    Creating directory D:\oracle\ESA\sapdata2\roll_1.
    INFO 2007-05-11 00:05:39
    Creating file system node D:\oracle\ESA/sapdata2\roll_1 with type DIRECTORY succeeded.
    INFO 2007-05-11 00:05:39
    Creating directory D:\oracle\ESA\sapdata3\temp_1.
    INFO 2007-05-11 00:05:39
    Creating file system node D:\oracle\ESA/sapdata3\temp_1 with type DIRECTORY succeeded.
    INFO 2007-05-11 00:05:39
    Creating directory D:\oracle\ESA\sapdata1\system_1.
    INFO 2007-05-11 00:05:39
    Creating file system node D:\oracle\ESA/sapdata1\system_1 with type DIRECTORY succeeded.
    INFO 2007-05-11 00:05:39
    Processing of all file system node operations of table tORA_SapdataNodes succeeded.
    INFO 2007-05-11 00:05:40
    Processing of all file system node operations of table tORA_DatabaseServerNodes succeeded.
    INFO 2007-05-11 00:05:40
    Processing of all file system node operations of table tORA_SapdataNodes succeeded.
    INFO 2007-05-11 00:05:41
    Creating file D:\oracle\ora81\database\initESA.ora.
    INFO 2007-05-11 00:05:42
    Creating file D:\oracle\ora81\database\initESA.sap.
    INFO 2007-05-11 00:05:43
    Copying file E:/KERNEL/NT/COMMON/INSTALL/INITSID.DBA to: D:\oracle\ora81/database/initESA.dba.
    INFO 2007-05-11 00:05:43
    Creating file D:\oracle\ora81\database\initESA.dba.
    INFO 2007-05-11 00:05:44
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:05:45
    Moving file D:/oracle/ora81/database/initESA.ora to: orig_init_ora_tmp.txt.
    INFO 2007-05-11 00:05:45
    Moving file C:/SAPinst ORACLE KERNEL/changed_init_ora_tmp.txt to: D:\oracle\ora81\database\initESA.ora.
    INFO 2007-05-11 00:05:45
    Removing file C:/SAPinst ORACLE KERNEL/orig_init_ora_tmp.txt.
    INFO 2007-05-11 00:05:46
    Creating file C:\SAPinst ORACLE KERNEL\oradim.log.
    INFO 2007-05-11 00:05:51
    See 'D:\oracle\ora81/bin/oradim -new -sid ESA -STARTMODE auto' output in 'C:\SAPinst ORACLE KERNEL\oradim.log'.
    INFO 2007-05-11 00:05:51
    'D:\oracle\ora81/bin/oradim -new -sid ESA -STARTMODE auto' returned with '0'.
    INFO 2007-05-11 00:05:52
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:05:57
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:06:02
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:06:27
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:06:29
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:06:51
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:06:54
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:07:21
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:07:24
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:07:27
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:07:29
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:07:31
    Moving file D:/oracle/ora81/database/initESA.ora to: orig_init_ora_tmp.txt.
    INFO 2007-05-11 00:07:31
    Moving file C:/SAPinst ORACLE KERNEL/changed_init_ora_tmp.txt to: D:\oracle\ora81\database\initESA.ora.
    INFO 2007-05-11 00:07:31
    Removing file C:/SAPinst ORACLE KERNEL/orig_init_ora_tmp.txt.
    INFO 2007-05-11 00:07:32
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:07:34
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:08:09
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:08:12
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:08:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:08:50
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:09:26
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:09:29
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:10:04
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:10:06
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:10:42
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:10:44
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:11:20
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:11:22
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:11:57
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:12:00
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:12:35
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:12:37
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:13:13
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:13:15
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:13:51
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:13:53
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:14:29
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:14:31
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:15:09
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:15:11
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:15:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:15:50
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:16:26
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:16:28
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:17:04
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:17:07
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:17:43
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:17:45
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:18:22
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:18:24
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:19:01
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:19:03
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:19:39
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:19:42
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:20:21
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:20:24
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:21:02
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:21:05
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:21:43
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:21:45
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:22:24
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:22:27
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:23:06
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:23:08
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:23:47
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:23:50
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:23:54
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:23:56
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:24:12
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:24:15
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:24:41
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:24:43
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:24:46
    Moving file D:/oracle/ora81/database/initESA.ora to: orig_init_ora_tmp.txt.
    INFO 2007-05-11 00:24:46
    Moving file C:/SAPinst ORACLE KERNEL/changed_init_ora_tmp.txt to: D:\oracle\ora81\database\initESA.ora.
    INFO 2007-05-11 00:24:46
    Removing file C:/SAPinst ORACLE KERNEL/orig_init_ora_tmp.txt.
    INFO 2007-05-11 00:24:46
    Creating file C:\SAPinst ORACLE KERNEL\lsnrctl.log.
    INFO 2007-05-11 00:24:47
    See 'D:\oracle\ora81/bin/lsnrctl stat' output in 'C:\SAPinst ORACLE KERNEL\lsnrctl.log'.
    INFO 2007-05-11 00:24:47
    'D:\oracle\ora81/bin/lsnrctl stat' returned with '3'.
    INFO 2007-05-11 00:24:47
    Creating file C:\SAPinst ORACLE KERNEL\lsnrctl.log.
    INFO 2007-05-11 00:24:48
    See 'D:\oracle\ora81/bin/lsnrctl start' output in 'C:\SAPinst ORACLE KERNEL\lsnrctl.log'.
    INFO 2007-05-11 00:24:48
    'D:\oracle\ora81/bin/lsnrctl start' returned with '0'.
    INFO 2007-05-11 00:24:49
    Copying file E:/KERNEL/NT/COMMON/INSTALL/ORADBUSR.SQL to: ./oradbusr.sql.
    INFO 2007-05-11 00:24:49
    Creating file C:\SAPinst ORACLE KERNEL\oradbusr.sql.
    INFO 2007-05-11 00:24:49
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:24:52
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    PHASE 2007-05-11 00:24:54
    Database Load
    INFO 2007-05-11 00:24:56
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:24:57
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:24:57
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:24:58
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:24:58
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:24:59
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:24:59
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:24:59
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:24:59
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:24:59
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:24:59
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:24:59
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:24:59
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:24:59
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:24:59
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:24:59
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:25:00
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:25:00
    Task files created
    INFO 2007-05-11 00:25:00
    Command files created
    INFO 2007-05-11 00:25:01
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:25:01
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:25:01
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    ERROR 2007-05-11 02:18:03
    MSC-01015  Process finished with error(s), check log file C:\SAPinst ORACLE KERNEL/SAPAPPL1.log
    INFO 2007-05-11 02:18:03
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    ERROR 2007-05-11 02:44:07
    MSC-01015  Process finished with error(s), check log file C:\SAPinst ORACLE KERNEL/SAPSSEX2.log
    INFO 2007-05-11 02:44:07
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 03:55:07
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 04:25:07
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 04:42:08
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 04:47:08
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 04:55:22
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 04:57:22
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 04:59:22
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 05:01:22
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 05:03:22
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 05:04:23
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 05:05:23
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 07:04:33
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    ERROR 2007-05-11 07:04:33
    MSC-01015  Process finished with error(s), check log file C:\SAPinst ORACLE KERNEL/SAPVIEW.log
    ERROR 2007-05-11 07:04:33
    FJS-00012  Error when executing script.
    THANKS ALLL IN ADVANCE,
    Regards,
    Malti

    no space left on devices...
    ==> "<b>MOS-01109 Needed space on mountpoint F:/ is 5.248e07 KB, but got only 4.26433e07 KB.</b>"
    and others...
    -> provide more space and restart
    GreetZ, AH

Maybe you are looking for

  • White Outline Around Placed Transparent .PNG

    I have put together an ad for my small company but am having a problem after printing to a high-res pdf with there being a thin white border where the edge of the actual file (its a square) is.  This placed file is a transparent PSD file. Can anyone

  • How does preparedstatement work?

    In jb9 online book, it said "An object that represents a precompiled SQL statement. A SQL statement is precompiled and stored in a PreparedStatement object. This object can then be used to efficiently execute this statement multiple times. ". But in

  • How do I get the Liorah BT font back?

    How do I get the Liorah BT font back?

  • Editing sidebar in Finder

    I need to delete some titles in the left hand sidebar in finder

  • Making group by

    hi, how can i make group by with interface? my sql is select ddate, sum(toplam) from (select TO_DATE(ACD.DOCUMENTDATE, 'DD/MM/YYYY') DDATE, acd.id, sum(nvl(ADET.UNITPRICE, 0) * ADET.AMOUNT - ADET.DISCOUNT) - nvl(acd.discount, 0) toplam from ACTDOCUME