Ppoe work with error.

HELP!!
airport express N firmware 7.4.2
modem adsl speedtouch st 510 v6
macbook white MB881LL with snow leopard and last updates..
when connect direct to mac work perfect but with airport express random disconnect
Jan 25 11:07:01 Gravedad:5 Connection established 201.236.158.244 -> 10.52.10.3.
Jan 25 11:14:12 Gravedad:5 Clock synchronized to network time server time.apple.com (adjusted +0 seconds).
Jan 25 11:16:22 Gravedad:5 Associated with station 00:26:b0:c2:07:55
Jan 25 11:16:23 Gravedad:5 Installed unicast CCMP key for supplicant 00:26:b0:c2:07:55
Jan 25 11:17:34 Gravedad:5 Disassociated with station 00:26:b0:c2:07:55
Jan 25 11:17:34 Gravedad:5 Rotated CCMP group key.
Jan 25 11:32:02 Gravedad:5 Disconnected.
Jan 25 11:32:09 Gravedad:5 Connection established 201.236.186.3 -> 10.52.10.3.
Jan 25 11:44:22 Gravedad:5 Disconnected.
Jan 25 11:44:46 Gravedad:5 Connection established 201.236.139.238 -> 10.52.10.3.
Jan 25 11:48:28 Gravedad:5 Disconnected.
Jan 25 11:48:56 Gravedad:5 Connection established 201.236.144.153 -> 10.52.10.3.
Jan 25 11:51:48 Gravedad:5 Disconnected.
Jan 25 11:52:05 Gravedad:5 Connection established 201.236.148.173 -> 10.52.10.3.
Jan 25 11:53:54 Gravedad:5 Associated with station 00:26:b0:c2:07:55
Jan 25 11:53:54 Gravedad:5 Installed unicast CCMP key for supplicant 00:26:b0:c2:07:55
Jan 25 11:55:45 Gravedad:5 Disassociated with station 00:26:b0:c2:07:55
Jan 25 11:55:45 Gravedad:5 Rotated CCMP group key.
Jan 25 11:56:11 Gravedad:5 Associated with station 00:26:b0:c2:07:55
Jan 25 11:56:11 Gravedad:5 Installed unicast CCMP key for supplicant 00:26:b0:c2:07:55
Jan 25 11:57:34 Gravedad:5 Disassociated with station 00:26:b0:c2:07:55
Jan 25 11:57:35 Gravedad:5 Rotated CCMP group key.
Jan 25 12:14:14 Gravedad:5 Clock synchronized to network time server time.apple.com (adjusted -1 seconds).
Jan 25 12:18:53 Gravedad:5 Disconnected.
Jan 25 12:19:25 Gravedad:5 Connection established 201.236.128.73 -> 10.52.10.3.
Jan 25 12:19:27 Gravedad:5 Connection established 0.0.0.1 -> 0.0.0.2.
Jan 25 12:19:27 Gravedad:5 Connection established 0.0.0.1 -> 10.52.10.3.
Jan 25 12:19:55 Gravedad:5 Disconnected.
Jan 25 12:20:02 Gravedad:5 Connection established 201.236.129.94 -> 10.52.10.3.
Jan 25 12:36:29 Gravedad:5 Disconnected.
Jan 25 12:36:36 Gravedad:5 Connection established 201.236.153.102 -> 10.52.10.3.
Jan 25 12:51:13 Gravedad:5 Disconnected.
Jan 25 12:51:15 Gravedad:5 Connection established 201.236.181.95 -> 10.52.10.3.
Jan 25 12:51:37 Gravedad:5 Disconnected.
Jan 25 12:53:52 Gravedad:5 Connection established 201.236.186.109 -> 10.52.10.3.
Jan 25 12:57:35 Gravedad:5 Rotated CCMP group key.
Jan 25 13:00:25 Gravedad:5 Disconnected.
Jan 25 13:00:29 Gravedad:5 Connection established 201.236.137.2 -> 10.52.10.3.
Jan 25 13:11:03 Gravedad:5 Disconnected.
Jan 25 13:11:11 Gravedad:5 Connection established 201.236.157.210 -> 10.52.10.3.

As a first step in the investigation into the outOfMemoryErrors perhaps check that the memory settings currently configured for the server0 VM are as recommended by SAP in note 723909  and the notes referenced there for different JDKs and platforms.
You can see the currently configured memory parameters in the 'instance.properties' file located in the directory,
             usr/sap/<SID>/<instanceID>/j2ee/cluster
the line of interest is
              ID<clusterID>50.JavaParameters
or in the configtool - instance_ID### - server_ID###- Java Settings - Java Parameters.
If the parameters recommended are not present or are present with different values to those recommended, adjust them in accordance with the note specific to your JDK using the configtool, save the changes and restart the instance
Then see if the outOfMemoryError can still be reproduced. If so, a deeper analysis of the memory consumption is probably required

Similar Messages

  • Hi, my photoshop has stopped working with Error: 150:30

    Hi,
    My photoshop has stopped working with the above error message.
    Can anyone please advise as to how to rectify the problem?
    Thank you in advance.
    Simon

    Reinstall your software. You haven't provided any useful system and version info, anyway.
    Mylenium

  • Dbxml django mod_wsgi not working with error: 'finally' pops bad exception

    Dear experts
    I have a python/django application, 'mysite', which connects to bdbxml. The application works fine using the django development server but fails when run using mod_wsgi with apache - my chosen route for production. Specifically it is the parts of the application that connect to the database that fail with a very unhelpful message, 'finally' pops bad exception.
    I believe from googling that this error is a generic error that is generated by C++ applications when there is no other error message to generate, but I am not a C++ expert so don't really know what it means.
    My views.py function looks like:
    def dbquery(request):
         mgr = XmlManager()
         container = mgr.openContainer("/wsgi/mysite/mysite.bdbxml")
         results = container.getAllDocuments(0)
         for value in results:
              document = value.asDocument()
              return HttpResponse (document.getName())
    my django.wsgi file (using the suggested format from Graham Dumpleton) looks like:
    import os, sys
    sys.path.append('/wsgi')
    sys.path.append('/wsgi/mysite')
    import settings
    import django.core.management
    django.core.management.setup_environ(settings)
    utility = django.core.management.ManagementUtility()
    command = utility.fetch_command('runserver')
    command.validate()
    import django.conf
    import django.utils
    django.utils.translation.activate(django.conf.settings.LANGUAGE_CODE)
    import django.core.handlers.wsgi
    application = django.core.handlers.wsgi.WSGIHandler()
    and httpd.conf looks like:
    WSGIApplicationGroup %{GLOBAL}
    WSGIScriptAlias / /wsgi/mysite/apache/django.wsgi
    <Directory /wsgi/mysite>
    Order deny,allow
    Allow from all
    </Directory>
    Does anyone know how to solve this problem?
    thanks
    Edited by: dbxml_explorer on Aug 15, 2012 11:31 AM
    Edited by: dbxml_explorer on Aug 15, 2012 11:36 AM
    Edited by: dbxml_explorer on Aug 15, 2012 11:37 AM

    I am experiencing this exact same issue attempting to configure Oracle APEX as a partner application with SSO. I have also followed the Metalink Doc ID:353023.1 to no avail. I have checked all entries in the WWSEC_ENABLER_CONFIG_INFO$ table and they all appear to be correct. For a few moments, the application will display the following message:
    Redirecting to the Login Server for authentication...
    Then it displays the following error...
    ORA-01403: no data found
    Error ERR-1082 Error in executing authorization scheme code.
    Can anyone advise what may be causing this issue? Thanks,
    David

  • "Licensing for this product has stopped working" with error: 150:30.

    I purchased CS4 as a download in 2011. Was working fine on my new Macbook Pro with Yosemite then this appeared.

    I downloaded the software again from Adobe (I don't have the disks) and the same message appeared. It did not even provide me the opportunity to input the serial #. For the record, before all this happened I was attempting to resolve some issues with Corel's Painter 2015. I had followed the suggestions of the Corel support services in which I had to enable the Root User and change the Library/preferences permissions to 'read and write' however I had reverted back to the original settings so I'm not sure if this would be the cause of my present problem.

  • Swf works with errors but how hide them from browser?

    Hi!
    I've made an AS3 application loading and manipulating some XML data. The application works but there are some errors in the Output panel I'm unable to get rid of. But when I publish to HTML they also show up in FireFox. How can I flag them as non crusal and prevent them from popping up. Or even better correct and remove them?
    Here they are:
    TypeError: Error #1010: A term is undefined and has no properties.
         at qven_fla::MainTimeline/xmlLoaded()
         at flash.events::EventDispatcher/dispatchEventFunction()
         at flash.events::EventDispatcher/dispatchEvent()
         at flash.net::URLLoader/onComplete()
    TypeError: Error #1010: A term is undefined and has no properties.
         at qven_fla::MainTimeline/openInfo()
    The 'Error #1010' can in some cases be removed by referring to an xml object node as myXML[i] instead of myXML[i].text(), but I'm not able to remove it completely in my application.
    Anyone have a clue?
    Thanks

    I'm now embarrased to admit I actually control the XML as well. But I'll add receptionist to my resyme so I have a backup-plan in case Steve Jobs succeed his crusade.
    But it's a fair assumption, Andrei1, since I didn't even know what, where or even if it's in my XML the problem resides.
    I've never done the try/catch thing but I'll look into it. But to find the problem might be better in this case.....me...and my XML which is a 10000 line xml file I've exported from Excel. Are there any known issues? I'm looking for whitespaces or what?
    Thanks so much both of You

  • Migration Working with Errors and Taking Very Long Time: Transient error MapiExceptionNetworkError, StalledDueToMailboxLock

    So, I am migrating mailboxes to a 2013 EXC from a 2010 EXC. Both in same subnet on same domain. Firewall on WIndows disabled: 
    Setup batch move on 2013 box. But users logs are getting 
    StalledDueToMailboxLock in the status as well as 
    Transient error MapiExceptionNetworkError has occurred. The system will retry (1/60).
    also, The mailboxes eventually migrate over 2-3 days. some quicker some with out error. Error comes up with mailboxes that users do not use. I have a lot of users to migrate and cannot migrate as such a slow pace. 
    Any Ideas of the error??
    RunspaceId : 6c688e69-8ba8-4044-9807-7f56d35be440
    MailboxIdentity : bwa.local/BWA/UK/UK User Redirect/Angie Dolan
    DistinguishedName : CN=Angie Dolan,OU=UK User Redirect,OU=UK,OU=BWA,DC=bwa,DC=local
    DisplayName : Angie Dolan
    Alias : adolan
    ExchangeGuid : 4c60f493-e5f5-46bb-adf1-9bea9790f5ca
    ArchiveGuid :
    Status : InProgress
    StatusDetail : StalledDueToMailboxLock
    SyncStage : CopyingMessages
    Flags : IntraOrg, Pull
    RequestStyle : IntraOrg
    Direction : Pull
    IsOffline : False
    Protect : False
    DoNotPreserveMailboxSignature : True
    Priority : Normal
    WorkloadType : Local
    Suspend : False
    SuspendWhenReadyToComplete : False
    IgnoreRuleLimitErrors : False
    RecipientTypeDetails : UserMailbox
    SourceVersion : Version 14.3 (Build 123.0)
    SourceDatabase : Mailbox Database 1691384683
    SourceServer : CLOUD-EXC-01.bwa.local
    TargetVersion : Version 15.0 (Build 775.0)
    TargetDatabase : Mailbox Database 0192305397
    TargetServer : CLOUD-EXC-02.bwa.local
    SourceArchiveDatabase :
    SourceArchiveVersion :
    SourceArchiveServer :
    TargetArchiveDatabase :
    TargetArchiveVersion :
    TargetArchiveServer :
    RemoteHostName :
    RemoteGlobalCatalog :
    BatchName : MigrationService:b
    StartAfter :
    CompleteAfter :
    RemoteCredentialUsername :
    RemoteDatabaseName :
    RemoteDatabaseGuid :
    RemoteArchiveDatabaseName :
    RemoteArchiveDatabaseGuid :
    TargetDeliveryDomain :
    ArchiveDomain :
    BadItemLimit : 0
    BadItemsEncountered : 0
    LargeItemLimit : 0
    LargeItemsEncountered : 0
    AllowLargeItems : True
    QueuedTimestamp : 3/23/2014 1:06:19 PM
    StartTimestamp : 3/23/2014 1:06:27 PM
    LastUpdateTimestamp : 3/23/2014 1:25:13 PM
    InitialSeedingCompletedTimestamp :
    FinalSyncTimestamp :
    CompletionTimestamp :
    SuspendedTimestamp :
    OverallDuration : 00:22:38
    TotalFinalizationDuration :
    TotalDataReplicationWaitDuration :
    TotalSuspendedDuration :
    TotalFailedDuration :
    TotalQueuedDuration : 00:00:03
    TotalInProgressDuration : 00:22:34
    TotalStalledDueToCIDuration :
    TotalStalledDueToHADuration :
    TotalStalledDueToMailboxLockedDuration : 00:13:47
    TotalStalledDueToReadThrottle :
    TotalStalledDueToWriteThrottle : 00:02:14
    TotalStalledDueToReadCpu :
    TotalStalledDueToWriteCpu : 00:00:04
    TotalStalledDueToReadUnknown :
    TotalStalledDueToWriteUnknown :
    TotalTransientFailureDuration : 00:01:36
    TotalProxyBackoffDuration :
    TotalIdleDuration : 00:04:45
    MRSServerName :
    TotalMailboxSize : 3.534 GB (3,795,059,862 bytes)
    TotalMailboxItemCount : 20741
    TotalArchiveSize :
    TotalArchiveItemCount :
    BytesTransferred : 59.82 MB (62,723,648 bytes)
    BytesTransferredPerMinute :
    ItemsTransferred : 412
    PercentComplete : 25
    CompletedRequestAgeLimit : 7.00:00:00
    PositionInQueue :
    InternalFlags : SkipFolderPromotedProperties, WordBreak
    FailureCode :
    FailureType :
    FailureSide :
    Message : Informational: The request has been temporarily postponed because the mailbo
    is locked. The Microsoft Exchange Mailbox Replication service will attempt t
    continue processing the request after 3/23/2014 1:30:13 PM.
    FailureTimestamp :
    IsValid : True
    ValidationMessage :
    RequestGuid : 55c14015-1bca-48eb-bb79-25b480464bfb
    RequestQueue : Mailbox Database 0192305397
    Identity : bwa.local/BWA/UK/UK User Redirect/Angie Dolan
    DiagnosticInfo :
    Report : 3/23/2014 1:06:19 PM [CLOUD-EXC-02] '' created move request.
    3/23/2014 1:06:26 PM [CLOUD-EXC-02] The Microsoft Exchange Mailbox
    Replication service 'CLOUD-EXC-02.bwa.local' (15.0.775.35 caps:3F) is
    examining the request.
    3/23/2014 1:06:26 PM [CLOUD-EXC-02] Connected to target mailbox 'Primary
    (4c60f493-e5f5-46bb-adf1-9bea9790f5ca)', database 'Mailbox Database
    0192305397', Mailbox server 'CLOUD-EXC-02.bwa.local' Version 15.0 (Build
    775.0).
    3/23/2014 1:06:26 PM [CLOUD-EXC-02] Connected to source mailbox 'Primary
    (4c60f493-e5f5-46bb-adf1-9bea9790f5ca)', database 'Mailbox Database
    1691384683', Mailbox server 'CLOUD-EXC-01.bwa.local' Version 14.3 (Build
    123.0).
    3/23/2014 1:06:27 PM [CLOUD-EXC-02] Request processing started.
    3/23/2014 1:06:27 PM [CLOUD-EXC-02] Source mailbox information:
    Regular Items: 17941, 3.509 GB (3,767,437,011 bytes)
    Regular Deleted Items: 2435, 26.34 MB (27,622,851 bytes)
    FAI Items: 365, 0 B (0 bytes)
    FAI Deleted Items: 0, 0 B (0 bytes)
    3/23/2014 1:06:27 PM [CLOUD-EXC-02] Mailbox signature will not be preserved
    for mailbox 'Primary (4c60f493-e5f5-46bb-adf1-9bea9790f5ca)'. Outlook client
    will need to restart to access the moved mailbox.
    3/23/2014 1:06:29 PM [CLOUD-EXC-02] Stage: CreatingFolderHierarchy. Percent
    complete: 10.
    3/23/2014 1:06:36 PM [CLOUD-EXC-02] Initializing folder hierarchy from
    mailbox 'Primary (4c60f493-e5f5-46bb-adf1-9bea9790f5ca)': 370 folders total.
    3/23/2014 1:06:36 PM [CLOUD-EXC-02] Folder creation progress: 0 folders
    created in mailbox 'Primary (4c60f493-e5f5-46bb-adf1-9bea9790f5ca)'.
    3/23/2014 1:06:53 PM [CLOUD-EXC-02] Folder hierarchy initialized for mailbox
    'Primary (4c60f493-e5f5-46bb-adf1-9bea9790f5ca)': 369 folders created.
    3/23/2014 1:06:53 PM [CLOUD-EXC-02] Stage: CreatingInitialSyncCheckpoint.
    Percent complete: 15.
    3/23/2014 1:07:58 PM [CLOUD-EXC-02] Initial sync checkpoint progress: 0/370
    folders processed. Currently processing mailbox 'Primary
    (4c60f493-e5f5-46bb-adf1-9bea9790f5ca)'.
    3/23/2014 1:07:59 PM [CLOUD-EXC-02] Transient error MapiExceptionNetworkErro
    has occurred. The system will retry (1/60).
    3/23/2014 1:08:31 PM [CLOUD-EXC-02] The Microsoft Exchange Mailbox
    Replication service 'CLOUD-EXC-02.bwa.local' (15.0.775.35 caps:3F) is
    examining the request.
    3/23/2014 1:08:31 PM [CLOUD-EXC-02] Connected to target mailbox 'Primary
    (4c60f493-e5f5-46bb-adf1-9bea9790f5ca)', database 'Mailbox Database
    0192305397', Mailbox server 'CLOUD-EXC-02.bwa.local' Version 15.0 (Build
    775.0).
    3/23/2014 1:08:31 PM [CLOUD-EXC-02] Connected to source mailbox 'Primary
    (4c60f493-e5f5-46bb-adf1-9bea9790f5ca)', database 'Mailbox Database
    1691384683', Mailbox server 'CLOUD-EXC-01.bwa.local' Version 14.3 (Build
    123.0).
    3/23/2014 1:08:33 PM [CLOUD-EXC-02] Relinquishing job because the mailbox is
    locked. The job will attempt to continue again after 3/23/2014 1:13:33 PM.
    3/23/2014 1:13:36 PM [CLOUD-EXC-02] The Microsoft Exchange Mailbox
    Replication service 'CLOUD-EXC-02.bwa.local' (15.0.775.35 caps:3F) is
    examining the request.
    3/23/2014 1:13:37 PM [CLOUD-EXC-02] Connected to target mailbox 'Primary
    (4c60f493-e5f5-46bb-adf1-9bea9790f5ca)', database 'Mailbox Database
    0192305397', Mailbox server 'CLOUD-EXC-02.bwa.local' Version 15.0 (Build
    775.0).
    3/23/2014 1:13:37 PM [CLOUD-EXC-02] Connected to source mailbox 'Primary
    (4c60f493-e5f5-46bb-adf1-9bea9790f5ca)', database 'Mailbox Database
    1691384683', Mailbox server 'CLOUD-EXC-01.bwa.local' Version 14.3 (Build
    123.0).
    3/23/2014 1:13:38 PM [CLOUD-EXC-02] Request processing continued, stage
    CreatingInitialSyncCheckpoint.
    3/23/2014 1:13:39 PM [CLOUD-EXC-02] Initial sync checkpoint progress: 0/370
    folders processed. Currently processing mailbox 'Primary
    (4c60f493-e5f5-46bb-adf1-9bea9790f5ca)'.
    3/23/2014 1:13:47 PM [CLOUD-EXC-02] Initial sync checkpoint completed: 354
    folders processed.
    3/23/2014 1:13:47 PM [CLOUD-EXC-02] Stage: LoadingMessages. Percent complete
    20.
    3/23/2014 1:14:34 PM [CLOUD-EXC-02] Messages have been enumerated
    successfully. 20738 items loaded. Total size: 3.535 GB (3,795,484,545 bytes)
    3/23/2014 1:14:34 PM [CLOUD-EXC-02] Stage: CopyingMessages. Percent complete
    25.
    3/23/2014 1:14:34 PM [CLOUD-EXC-02] Copy progress: 0/20738 messages, 0 B (0
    bytes)/3.535 GB (3,795,484,545 bytes), 12/370 folders completed.
    3/23/2014 1:16:45 PM [CLOUD-EXC-02] Transient error MapiExceptionNetworkErro
    has occurred. The system will retry (1/60).
    3/23/2014 1:17:17 PM [CLOUD-EXC-02] The Microsoft Exchange Mailbox
    Replication service 'CLOUD-EXC-02.bwa.local' (15.0.775.35 caps:3F) is
    examining the request.
    3/23/2014 1:17:17 PM [CLOUD-EXC-02] Connected to target mailbox 'Primary
    (4c60f493-e5f5-46bb-adf1-9bea9790f5ca)', database 'Mailbox Database
    0192305397', Mailbox server 'CLOUD-EXC-02.bwa.local' Version 15.0 (Build
    775.0).
    3/23/2014 1:17:17 PM [CLOUD-EXC-02] Connected to source mailbox 'Primary
    (4c60f493-e5f5-46bb-adf1-9bea9790f5ca)', database 'Mailbox Database
    1691384683', Mailbox server 'CLOUD-EXC-01.bwa.local' Version 14.3 (Build
    123.0).
    3/23/2014 1:17:17 PM [CLOUD-EXC-02] Relinquishing job because the mailbox is
    locked. The job will attempt to continue again after 3/23/2014 1:22:17 PM.
    3/23/2014 1:22:39 PM [CLOUD-EXC-02] The Microsoft Exchange Mailbox
    Replication service 'CLOUD-EXC-02.bwa.local' (15.0.775.35 caps:3F) is
    examining the request.
    3/23/2014 1:22:39 PM [CLOUD-EXC-02] Connected to target mailbox 'Primary
    (4c60f493-e5f5-46bb-adf1-9bea9790f5ca)', database 'Mailbox Database
    0192305397', Mailbox server 'CLOUD-EXC-02.bwa.local' Version 15.0 (Build
    775.0).
    3/23/2014 1:22:39 PM [CLOUD-EXC-02] Connected to source mailbox 'Primary
    (4c60f493-e5f5-46bb-adf1-9bea9790f5ca)', database 'Mailbox Database
    1691384683', Mailbox server 'CLOUD-EXC-01.bwa.local' Version 14.3 (Build
    123.0).
    3/23/2014 1:22:39 PM [CLOUD-EXC-02] Request processing continued, stage
    LoadingMessages.
    3/23/2014 1:22:40 PM [CLOUD-EXC-02] Messages have been enumerated
    successfully. 20738 items loaded. Total size: 3.535 GB (3,795,484,545 bytes)
    3/23/2014 1:22:40 PM [CLOUD-EXC-02] Stage: CopyingMessages. Percent complete
    25.
    3/23/2014 1:22:40 PM [CLOUD-EXC-02] Copy progress: 0/20738 messages, 0 B (0
    bytes)/3.535 GB (3,795,484,545 bytes), 12/370 folders completed.
    3/23/2014 1:24:41 PM [CLOUD-EXC-02] Transient error MapiExceptionNetworkErro
    has occurred. The system will retry (1/60).
    3/23/2014 1:25:13 PM [CLOUD-EXC-02] The Microsoft Exchange Mailbox
    Replication service 'CLOUD-EXC-02.bwa.local' (15.0.775.35 caps:3F) is
    examining the request.
    3/23/2014 1:25:13 PM [CLOUD-EXC-02] Connected to target mailbox 'Primary
    (4c60f493-e5f5-46bb-adf1-9bea9790f5ca)', database 'Mailbox Database
    0192305397', Mailbox server 'CLOUD-EXC-02.bwa.local' Version 15.0 (Build
    775.0).
    3/23/2014 1:25:13 PM [CLOUD-EXC-02] Connected to source mailbox 'Primary
    (4c60f493-e5f5-46bb-adf1-9bea9790f5ca)', database 'Mailbox Database
    1691384683', Mailbox server 'CLOUD-EXC-01.bwa.local' Version 14.3 (Build
    123.0).
    3/23/2014 1:25:13 PM [CLOUD-EXC-02] Relinquishing job because the mailbox is
    locked. The job will attempt to continue again after 3/23/2014 1:30:13 PM.
    ObjectState : New

    How Many CAS Servers do you have?
    Did you changed the web.config file of MRS on both exchange 2010 and 2013 CAS servers?
    http://thoughtsofanidlemind.com/2010/12/03/tweaking-the-mailbox-replication-service-configuration-file/
    Question:
    How much time does it takes for 100 MB mailbox to move from 2010 to 2013?
    Cheers,
    Gulab Prasad
    Technology Consultant
    Blog:
    http://www.exchangeranger.com    Twitter:
      LinkedIn:
       Check out CodeTwo’s tools for Exchange admins
    Note: Posts are provided “AS IS” without warranty of any kind, either expressed or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.

  • Web.accButton("Xpath") does NOT work with error "failed to respond"

    web.accButton("web:dialog_unknown[@text='Do you want to open or save this file?']/web:accPushButton[@index='1' or @name='Save']").click();
    Got exception: Object "/web:dialog_unknown[@text='Do you want to open or save this file?']/web:accPushButton[@index='1' or @name='Save']" failed to respond to action: <Message name="Click"><Parameter AppType="Acc"></Parameter><Parameter Accindex="1"></Parameter><Parameter role="PushButton"></Parameter><Parameter handle=""></Parameter><Parameter WindowIndex=""></Parameter><Parameter DocumentIndex=""></Parameter><Parameter tag="accPushButton"></Parameter><Parameter index="0"></Parameter><Parameter type="element"></Parameter></Message>.
    Version Info:
    Version: 12.1.0.1 Production
    Build ID: 2.7.1.361
    32bit on Windows XP
    Edited by: 1006468 on 2013-5-16 下午8:29

    Hi Dianlong,
    Please check if SAP note 1132501 is relevant for your ECC release. If you apply the note, you may have to re-generate the web service from the function module.
    Regards, Trevor

  • Process chains problems : Working every day with error (red)

    Hi All,
    I have a next question, about process chains problem.
    When I start my process chains immediate, then working without errors,  but I want this process chains work every day and chainged properties, selected date/time and periodicaly (every day) but now it work with error.
    How to I find problems? What are yours offers?
    p.s. I see logs, but every day have diffence between errors.
    Regards,
    Mahir M. Quluzade

    HI,
    just check the time which you have given is OK or is overlappintg with some other job which is locking your table in process chain
    or is colliding with attribute change run
    or it fails because of lack of background processes.
    There could be numerious reasons and you need to analyze the log for this.
    But as you said the job is failing everday for different reasons..try to find the most common errors and try to remove it or mention that here.
    Thanks
    Ajeet

  • Archive file with errors in sender file adapter not working! please help!

    Hi Experts,
       I have a file to RFC scenario. the input is a XML file. I have setup the flag in sender file adapter channel for archiving the input files with errors. But it is not working.
    For testing I have used an invalid xML file for example without the main XML tag. I have also tested with a MSWORD file saved with.xml extension. But in both the cases the files are not getting archived.
    My archive location permissions are fine and in fact normal archive operation is happening. That is, if I select the processing mode as "Archive" and gave the Archive directory then files are getting archived. The problem is only with the "Archive faulty source files" option.
    What am I missing? DO I need to do some more configurations?
    What are the prerequisites if any for this option?
    How to test this?
    Please help me! I will be greatfull to you all!
    Thanks & Regards
    Gopal

    and go thru this links
    Creating a Single Archive of the Version Files
    http://help.sap.com/saphelp_nw04/helpdata/en/79/1e7aecc315004fb4966d1548447675/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/31/8aed3ea86d3d67e10000000a114084/frameset.htm
    Note: reward points if solution found helpfull
    Regards
    Chandrakanth.k

  • Photoshop CC: program error occures when working with videos

    Whenever I'm trying to trim a video in Photoshop CC I'm running into this error:
    "Could not complete your request because of a program error"
    I can't close it by clicking "okay", so I have to close photoshop via task manager.
    - I also came across this error when I was trying to duplicate a text layer while working with a video.
    - When I was using Photoshop CS6 several months ago trimming videos worked fine.
    - I've tested if the problem appears on my laptop (Win7, i5, on board intel hd graphics) in Photoshop CC, and it does not!
    - I've deinstalled all Adobe Products (and their plugins) and ran Adobe Creative Cloud Cleaner without any errors, then reinstalled Photoshop CC.
    - I restored my preferences.
    - My graphic board drivers are up to date.
    - My computer is a Windows 7 (64 bit) Home Premium, Intel Core i7-2600 CPU @ 3.40 GHz,  16 GB RAM with a NVIDIA GeForce GT 520 graphic board.
    I honestly don't know what's the matter. Unfortunately I couldn't find any other thread with the same problem.
    Hope you'll be able to help
    Thanks in advance!

    OK.  I suspect you might have run into one of the Mavericks bugs then.  I would certainly expect your system to handle 720 without complaining.
    Apparently Adobe have made Apple aware of these bugs, and have no more control over rectifying them.
    Try Google with 'Photoshop cc video Mavericks'
    http://forums.adobe.com/message/5826052
    I am not aware of any workarounds, but I use a PC and use PremPro for video anyway, but that's not to say there isn't one.  If this thread doesn't bring you an answer, start a new one with a subject line something like:
    Video Editing Problems with CC and Mavericks

  • Lightroom 3 Error Working With Photos That Work With Other Apps

    My Setup:
    Lightroom 3.3 for Mac
    iMac OS X 10.6.6
    The problem:
    Lightroom is unable to work with photos it used to be able to work with. In the Library Module I get the error message "There was an error working with the photo." In the Develop Module I get the message "The file appears to be unsupported or damaged."
    Now I know the photos are ok because I can view them in other apps including Photoshop CS5
    And these photos used to work in Lightroom.
    I am suspicious it has something to do with Picasa, which I use to catalog faces. I have compared the exif data and the photos that don't work have an extra value called "Image Unique Id" and it appears to be a long hexadecimal number.  Also, the software version has been modified to indicate "Picasa".
    It bothers me that a world class product like LIghtroom is not robust enough to work on these files when everything else I have tried does work.  The problem is LIghtroom is the primary tool in my workflow.
    So has anybody seen this and know of a way to fix it?

    @Pete -
    Thanks for the feedback, but my I think my concern is valid.  Whatever Picasa is doing to the photo other apps like Apple Preview and CS5 can deal with it.  Lightroom cannot.  I am not explicitly modifying the files in Picasa just using Picasa to catalogue the faces.  So yes, I will quit using Picasa, but I still have hundreds (if not thousands) of photos that can no longer be processed by Lightroom and I need guidance on how to best recover these photos.
    I didn't know whether the Image Unique Id is standard or not, but I do know it does not show up in the files that work, only in the files that do not work.  I just assumed that it was non-standard because I did not see it on functioning files.
    Also, I would argue that Lightroom should be better able to handle this kind of situation instead of just not working.  Thanks again.

  • Sharepoint list dataheet view error "Cannot connect to the server at this time. You can continue working with this list, but some data may not be available"

    I have a List which is having around 14000 items in it.while opening that list in datasheet view it is giving error .
    Below is a summary of the issue:
    After selecting datasheet view beow error occurs:
        "Cannot connect to the server at this time.  You can continue working with this list, but some data may not be available."
        "Unable to retrieve all data."
        The item counts displays say 100 out of 14000 items.
    Exporting List to excel is giving only 2000 records out of 14000 records.
    Other Observations   -  
    This is happening to only one list on the site .There are other lists in the site whose no. of records is equal to 8000 to 9000.They are working absolutely fine without any error.
    Also, If I am saving this list as a template and creating another list with it ,then it is working absolutely fine with 14000 records,so the issue does not seem to be related with no. of records as the template list is working fine.
    I have checked the Alternate access mapping setting ,its fine.
    It should not be related to lookup,datefield or any other column as the list created from it template is working fine with all these columns.
    I checked below links also ,but doesn't seem to work in my case.
    http://social.technet.microsoft.com/forums/en-US/sharepointadminprevious/thread/974b9168-f548-409b-a7f9-a79b9fdd4c50/
    http://social.technet.microsoft.com/Forums/en-US/smallbusinessserver/thread/87077dd8-a329-48e8-b42d-d0a8bf87b082
    http://social.msdn.microsoft.com/Forums/en-US/sharepointgeneral/thread/dc757598-f670-4229-9f8a-07656346b9b0

    I have spent two days to resolve this issue. Microsoft has released two KBs with reference to this issue...but are not appearing in search results at the top.
    I am sharing my finding.
    1. First install the
    KB2552989 (Hopefully you might have already installed it. The KB detetcts it and informs the user.)
    2. Then update registry by adding new key for data fetch timeout as mentioned inKB2553007
    These two steps resolved the issue in our environment. Hope it might help others as well.
    Pradip T. ------------- MCTS(SharePoint 2010/Web)|MCPD(Web Development) https://www.mcpvirtualbusinesscard.com/VBCServer/paddytakate/profile

  • Just got new air and trying to set up. When I put in my Apple ID and password it comes up with error message 'can't sign in because of server error. Try again signing on.' Trying again does not fix. I know my ID and PW are right as work on other devices.

    Just got new air and trying to set up. When I put in my Apple ID and password it comes up with error message 'can't sign in because of server error. Try again signing on.' Trying again does not fix. I know my ID and PW are right as work on other apple devices I have.

    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime: Set-up, Use, and Troubleshooting Problems
    http://tinyurl.com/32drz3d
     Cheers, Tom

  • When trying to work with Agilent 34401A multimeter (serial RS-232 connection), HP34401A Getting Started.vi gives always the message: "Error 1073807369 occurred at Old VISA Open ".

    Baud rate and parity are set correctly, RS-232 cable is also connected correctly. My QuickBasic program has no problems to read and write to the Multimeter. It is obviously a software problem: the same error is persistent if I disconnect RS-232 cable.
    I downloaded NI-VISA 2.6 for Windows 95/98/NT/ME/2000/XP frorm digital.ni.com and installed it. But it did not help.
    Thank you in advance
    Best regards
    Alexei Soloviev

    Hi Steve
    I have problems with the 34401A and serial communication. Do you remember
    where the error was in the code ?
    Thanks
    Klaus
    wrote in message
    news:[email protected]..
    > Alexei,
    > This may or may not help, I was tasked to do something similar
    > recently and found an error in their driver. The GPIB VISA worked
    > fine, but when I tried it on serial it played up. There was an errant
    > carriage return (or CR/LF I can't remember). GPIB liked one and Serial
    > liked the other. It always amuses me that we never have problems with
    > Quickbasic!.
    > If you want me to dig deeper give me a shout.
    >
    > Steve Watts
    >
    > On Thu, 24 Jan 2002 06:16:55 -0800 (PST), "Alexei V. Soloviev"
    > wrote:
    >
    > >When trying
    to work with Agilent 34401A multimeter (serial RS-232
    > >connection), HP34401A Getting Started.vi gives always the message:
    > >"Error 1073807369 occurred at Old VISA Open ".
    > >
    > >Baud rate and parity are set correctly, RS-232 cable is also connected
    > >correctly. My QuickBasic program has no problems to read and write to
    > >the Multimeter. It is obviously a software problem: the same error is
    > >persistent if I disconnect RS-232 cable.
    > > I downloaded NI-VISA 2.6 for Windows 95/98/NT/ME/2000/XP frorm
    > > digital.ni.com and installed it. But it did not help.
    > >Thank you in advance
    > >Best regards
    > >Alexei Soloviev
    >

  • I bought the Keynote app for my MacBook, but when I open the application and try to install it, I get an error message saying that the application will not work with my MacBook. What gives? And, can I please request a refund? ($19.99 = a week's groceries)

    I bought the Keynote app for my MacBook, but when I open the application and try to install it, I get an error message saying that the application will not work with my MacBook. What gives? And, can I please request a refund? ($19.99 = a week's groceries).
    Thank you for your help! - I did try looking for all available specs about Keynote on the Apple iTunes website, and found nothing that could help me. HELP!

    1
    Close all iWork applications
    2
    Uninstall Keynote; this must be done with an application remover tool to delete the installation properly. Appcleaner is known to work correctly for this purpose, it is free and can be downloaded from here: Appcleaner Download
    3
    empty the trash
    4
    shutdown the Mac and restart. After the start up chime, hold down the shift key until the apple logo appears
    let the Mac complete the start up procedure completely, it will take longer than usual as the hard drive is being repaired
    5
    Reinstall Keynote by logging into the Mac App Store using download / install

Maybe you are looking for

  • QuickTime Plugins have problems on Windows 7 (64-bit)

    Uninstalling/reinstalling QuickTime did not fix the problem. Still get a script error and no QuickTime ActiveX plugin installed when accessing a web page with the embedded player on Windows 7 Pro 64-bit with Internet Explorer 8 (64-bit). I did more e

  • [solved] Black screen after upgrade

    Hi, I upgraded arch on my old laptop about a week ago and after reboot all I got was a black screen. The problem is ctrl+alt+backspace doesn't do anything, nor does ctrl+alt+f*. So I tried to boot using "arch fallback" and my own arch runlevel 3 grub

  • Spry menu problem

    I'm using DW SpryMenubarHorizontal.css. Because my drop-down menu didn't work correctly with IE I made some changes and it works on all browsers. But when I'm in Split or Design view the drop-down menu covers my text and it is quite difficult to work

  • Will I lose texts when I restore my phone?

    I have backed up my iPhone into my iTunes. If I now go to restore my phone and then restore my settings afterwards, will I still have all of my old texts?

  • DB2 V9.1.5 compatiblilty to Business Object V5.1.2

    We are currently using Business Object v5.1.2 and DB2 v8.2. As support of DB2 v8.2 is ending by March2009, we need to upgrade to DB2 v9.1.5. Can DB2 v9.1.5 compatible with Business Object v5.1.2?