Crash using block from mutable dictionary

What can people tell me about why this program crashes:
#import <Foundation/Foundation.h>
@interface Action : NSObject
+ (void)execute;
@end
@implementation Action
+ (void)execute
    NSLog(@"The action was executed.");
@end
@interface ActionPerformer : NSObject {
@private
    NSMutableDictionary* _namedActions;
+ (ActionPerformer*) performer;
- (void)addAction:(NSString*)action withClass:(Class)class andSelector:(SEL)selector;
- (void)performAction:(NSString*)action;
@end
@implementation ActionPerformer
typedef void(^ActionBlock)();
+ (ActionPerformer*) performer
    ActionPerformer* performer = [[ActionPerformer alloc] init];
    performer->_namedActions = [NSMutableDictionary dictionary];
    return performer;
- (void)addAction:(NSString*)actionName withClass:(Class)class andSelector:(SEL)selector
    ActionBlock block = ^(){ [class performSelector:selector]; };
    // Verify things work
    block();
    [_namedActions setObject:block forKey:actionName];
- (void)performAction:(NSString*)actionName
    ActionBlock block = [_namedActions objectForKey:actionName];
    // Crash happens here!!!
    block();
@end
int main()
    @autoreleasepool {
        ActionPerformer* performer = [ActionPerformer performer];
        [performer addAction:@"action" withClass:[Action class]
            andSelector:@selector(execute)];
        [performer performAction:@"action"];       
    return 0;
I am using Mac OS X 10.6.8 with Xcode 4.2 and Apple LLVM compiler 3.0

Thanks etersoft,
I tried exactly what you suggested and I was able to call the block from the dictionary.
I assume that if someone is using garbage collection they don't need to worry about calling release on the block held in the dictionary.
Also, if someone is using automatic reference counting, I'm wondering if that would also take care of calling the release as well.

Similar Messages

  • "uses a file type that is blocked from opening in this version" error message when opening a *.doc file with Word already running

    Several customers running different versions of Office 2011 (14.4.1-14.4.5) on OSX varying from 10.7.5 to 10.9.5, running on various kinds of hardware (iMac/MacBook Pro/MacBook Air) of various ages are having issues opening *.doc files if the Word is already open. The error message that gets displayed is, "XXXX.doc uses a file type that is blocked from opening in this version"
    When the customer tries to open the same file via File-Open, she gets "The file is locked for editing. you can open the file as read-only".
    When trying to do so, she gets "Word cannot open this document. The document might be in use, the document might not be a valid Word document, or the file name might contain invalid characters".
    If Word gets Force-quit, the same document opens without any problems.
    1. Repairing Disk permissions was ran several times. and the volume was found to be OK.
    2. I have noticed that in this scenario either deleting the normal.dotm or com.microsoft.word.plist (~/Library/Preferences) sometimes resolves the issue, sometimes it doesn’t. There is no pattern to follow. All versions of Office are affected, the fully updated and the non-updated ones.
    3. I have tried completely removing the suite using Office 2011 Uninstall.app and/or Remove Office 2011 Uninstaller.pkg, then going through customer's library and manually removing all the Office references.
    4. None of these systems had Office 2008 in the past.
    Any help will be greatly appreciated.

    Reboot both the Mac and the server. Word opens .DOC files and Excel opens .XLS files. As you have found out by copying the files to the computer. It is the connection between the 2 computer that is causing the error.

  • Everytime I use IE, first I have to click on the IE bar to allow blocked contect to display. What is the content that is being blocked from IE? viewers may not know what the problem is and see my site totally out of format.

    Everytime I use IE, first I have to click on the IE bar to allow blocked contect to display. What is the content that is being blocked from IE? viewers may not know what the problem is and see my site totally out of format.

    discoveriweb wrote:
    This is iweb development where after publishing, things look different in IE than other browsers. U r correct that this is due to IE software but is iWeb related. After all, one uses iweb not to just publish in Safari but for all browsers.
    Which means that you are only considering half of the problem, but that's your choice.
    I'm out.

  • I bought a used iphone from a friend and I am not able to use it in Ethiopia. It is carrier blocked. Can you please help how could I unlock my iphone 4?.

    I bought a used iphone from a friend and I am not able to use it in Ethiopia. It is carrier blocked. Can you please help how could I unlock my iphone 4?.

    Unlikely as you do not meet there requirements for unlocking.
    Have your friend the provided the phone contact them.  Based on your statements I am concluding he was or still is an AT&T customer, that is one of the requirements of getting the device unlocked.

  • Exception pad block corrupted using AESLight from BouncyCastle

    Hi all!
    I�m trying to encrypt and decrypt using AESLight from Bouncy Castle to provide cryptographi to my mobile application. I encrypt the text with no problems, and sometimes i decrypted with no problems to!
    But, with some messages i got the follow exception:
    org.bouncycastle.crypto.InvalidCipherTextException: pad block corrupted
         at org.bouncycastle.crypto.paddings.PKCS7Padding.padCount(Unknown Source)
         at org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.doFinal(Unknown Source)
         at softcomex.sfw2go.server.seguranca.TranslatorAESLight.processMsg(TranslatorAESLight.java:40)
         at softcomex.sfw2go.server.Waiter.sendMessageToClient(Waiter.java:251)
         at softcomex.sfw2go.server.Waiter.run(Waiter.java:211)My class that uses AESLight:
    public TranslatorAESLight (byte[] key, boolean cripto)
              this.keyAES = new byte[16];
              System.arraycopy(key, 0, this.keyAES, 0, key.length>16?16:key.length);
              this.cripto = cripto;
         }And, when I have to encrypt/decrypt i call the method processMsg:
    public byte[] processMsg (String msg)
              byte[] msgReturn = null;
              int length = 0;
              BlockCipher engine = new AESLightEngine();
              BufferedBlockCipher cipher = new PaddedBufferedBlockCipher(new CBCBlockCipher(engine));
              KeyParameter key = new KeyParameter(keyAES);
              cipher.init(cripto, key);
              msgReturn = new byte[cipher.getOutputSize(msg.getBytes().length)];
              length = cipher.processBytes(msg.getBytes(), 0, msg.getBytes().length, msgReturn, 0);
              try {
                   cipher.doFinal(msgReturn, length);
              } catch ( Exception e) {
                   e.printStackTrace();
              return msgReturn;
         }Please, there is something wrong with this code?
    Thanks.

    I believe sabre150 has posted a good link in this
    forum explaining why this doesn't work, but the
    bottom line is that you cannot create a String from
    an arbitrary byte array.I can't remember a single definitive reference (my memory is suspect these days) but I do have an example that shows why one should not try to convert bytes to a string using new String(bytes).
    I got the basics of the Levenshtein algorithm on this forum somewhere but I can't find it. If anyone can give me the reference I will acknowledge it in the code.
    import java.util.*;
    import java.text.*;
    import java.nio.charset.*;
    public class BytesToStringErrorsDemonstration
        public static int levenshteinDistance( byte[] s, byte[] t)
            int n = s.length;
            int m = t.length;
            if (n == 0) return m;
            if (m == 0) return n;
            int[][] d = new int[n + 1][m + 1];
            for ( int i = 0; i <= n; d[0] = i++ );
    for ( int j = 1; j <= m; d[0][j] = j++ );
    for ( int i = 1; i <= n; i++ )
    byte sc = s[ i-1 ];
    for (int j = 1; j <= m;j++)
    int v = d[i-1][j-1];
    if ( t[ j-1 ] != sc ) v++;
    d[i][j] = Math.min( Math.min( d[i-1][ j] + 1, d[i][j-1] + 1 ), v );
    return d[n][m];
    public static void main(String[] args)
    // Create a set of random bytes
    Random random = new Random();
    byte[] originalBytes = new byte[2048];
    random.nextBytes(originalBytes);
    // Go through each supported character set
    SortedMap<String,Charset> availableCharsets = Charset.availableCharsets();
    for (String encoding : availableCharsets.keySet())
    System.out.print(encoding);
    // Turn the bytes into a String
    String string;
    try
    string = new String(originalBytes, encoding);
    catch (Exception e)
    System.out.println(" - unable to convert bytes to String");
    continue;
    // Get back the bytes from the string
    byte[] recoveredBytes;
    try
    recoveredBytes = string.getBytes(encoding);
    catch (Exception e)
    System.out.println(" - unable to convert String back to bytes");
    continue;
    // Test the original against the recovered
    boolean areSame = Arrays.equals(originalBytes, recoveredBytes);
    if (areSame)
    System.out.println(" - no differences");
    else
    final DecimalFormat percentFormatter = new DecimalFormat("0.0");
    int levenshteinCount = levenshteinDistance(originalBytes, recoveredBytes);
    System.out.println(" - differences - Levenshtein count = " + levenshteinCount + " (" + percentFormatter.format(100.0 * levenshteinCount / originalBytes.length) + " %)");

  • I was recently blocked from using app Jack'D. Message I receive says "Your device has been blocked". How can I get around this?

    I was recently blocked from using app Jack'D. Message I receive says "Your device has been blocked". How can I get around this?

    Quoted from their FAQ's:
    I got an error message saying my device is blocked. Why did this happen?
    There are two reasons this could happen: You have deleted your account or you have been banned due to violation of terms of service.
    - You have deleted your account.
    When you delete your account, you agree that your device would be blocked for at least one month. This policy is enforced in order to protect users from stalkers. (If the system allowed users to create and delete their accounts any time they wanted, the Block feature would be compromised and wouldn't be able to protect users effectively.) Please understand this is not a punishment but a security measure intended to keep all of our users safe.
    - You have been banned due to violation of terms of service.
    Users of this mobile application are required to comply with our terms of service and instructions provided by our service team. The most common violations include, but are not limited to: Creating multiple accounts, uploading pictures not complying with our terms, and abusing the Report feature. In most situations, you will get a warning before you are banned from the app. If you receive a warning from our service team, please read it carefully and take it seriously. If anything is not clear, please contact user support for clarification.

  • Blocked email. Why is email blocked from my client that didn't used to be?

    My client and I used to be able to email but all of a sudden her emails are blocked from coming in. The response she receives is: "email from {edited for privacy} is blocked by Verizon and the email "SENDER" or email service provider needs to request removal of the block". How do we resolve this? She said she has never experienced this problem before. I had to ask her to send to my gmail account for now. I hope to not have to do that again. Please give me feedback on this.

    Dawn59 wrote:
    My client and I used to be able to email but all of a sudden her emails are blocked from coming in. The response she receives is: "email from {edited for privacy} is blocked by Verizon and the email "SENDER" or email service provider needs to request removal of the block". How do we resolve this? She said she has never experienced this problem before. I had to ask her to send to my gmail account for now. I hope to not have to do that again. Please give me feedback on this.
    1. For this type of block, the sender (your client) needs to visit the WhiteList site provided in the bounceback message and fill out the WhiteList form. Verizon will then review the block, and remove it if they determine the block is not valid.
    2. The IP address that was listed appears to belong to WebsiteWelcome.com - Which does not go to an actual site anymore (just a message about abuse), and may or may not be a scam site according to this page. I wouldn't count on it getting unblocked, as it appears the block may be valid.
    If a forum member gives an answer you like, give them the Kudos they deserve. If a member gives you the answer to your question, mark the answer as Accepted Solution so others can see the solution to the problem.
    "All knowledge is worth having."

  • Using Shading Dictionary to perform shading in pdf,before that the shading dictionary call from Pattern Dictionary.In the Pattern Dictionary there is an Matrix based on the matrix value  location the shading operatihow the axial shading is preserve in pdf

    using Shading Dictionary to perform shading in pdf,before that the shading dictionary call from Pattern Dictionary.In the Pattern Dictionary there is an Matrix based on the matrix value  location the shading operation is perform,So i dont know how to calculate value of pattern Dictionary matrix value.
    10 0 obj
    << /Type /Pattern
    /PatternType 2
    /Shading 11 0 R
    /Matrix [1.00 .00 .00 1.00 54.00 53.00]  // the matrix value how to calculate
    >>
    11 0 obj
    <<
    /ColorSpace /DeviceRGB
    /Function 12 0 R
    /ShadingType 2
    /Coords [109.2726 69.00 109.2726 .00]
    /Extend [true true]
    >>
    12 0 obj
    <<
    /FunctionType 0
    /Domain [.00 1.00]
    /Range [.00 1.00 .00 1.00 .00 1.00]
    /Size [1002]
    /BitsPerSample 8
    /Length 3006
    >>
    stream
    here is an stream of colors
    endstream
    endobj
    Can anybody help me please.
    Regards, Sasi kumar sekar.

    Hi, Sasi -
    The Matrix maps coordinates in your shading dictionary into User Space. That is, the Matrix entry in the Pattern dictionary specifies a coordinate transformation that will be applied to coordinates specified in the shading dictionary.
    To take your example, you have an axial shading extending from (rounding off) 109,69 to 109,0.  Your Pattern dictionary specifies the Matrix
    [ 1  0  0  1  54  53 ]
    This transformation matrix corresponds to a scale of 1,1 (that is, no change in scale) and a translation of 54,53. Thus, the actual endpoints for the axial shading will be the User Space positions 163,122 and 163,53 (assuming I’ve added correctly).
    As to what values to use for your Matrix, it depends on how you’ve set up your Shading dictionary. If the coordinates you’ve specified are actually where you want the gradient to go, then just use an identity matrix
    [ 1  0  0  1  0  0 ]
    By the way, are you sure that the Pattern dictionary includes a Matrix entry? I seem to remember (it's been a while since I've looked at Patterns) that the matrix is supplied as an argument to the makepattern operator:
    <<patternDict>> [ 1 0 0 1 0 0 ] makepattern
    Hope that helps.
    - John Deubert
      Acumen Training
      PostScript and PDF
      Training & Consulting

  • CS4 Crash when pasting text block from Pages

    I copied a text block from iWork Pages into a text block in Photoshop CS4 and it crashed.
    Process: Adobe Photoshop CS4 [623]
    Path: /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/MacOS/Adobe Photoshop CS4
    Identifier: com.adobe.Photoshop
    Version: 11.0 (11.0x20080919 [20080919.r.488 2008/09/19:02:00:00 cutoff; r branch]) (11.0)
    Code Type: X86 (Native)
    Parent Process: launchd [77]
    Date/Time: 2008-11-06 11:24:48.845 -0600
    OS Version: Mac OS X 10.5.5 (9F33)
    Report Version: 6
    Exception Type: EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x000000000000001c
    Crashed Thread: 0
    Thread 0 Crashed:
    0 com.adobe.Photoshop 0x00d34e58 0x1000 + 13844056
    1 com.adobe.Photoshop 0x00d3bb7f 0x1000 + 13871999
    2 com.adobe.Photoshop 0x00f29c06 0x1000 + 15895558
    3 com.adobe.Photoshop 0x00fc2c5c 0x1000 + 16522332
    4 com.adobe.Photoshop 0x00f1eca0 0x1000 + 15850656
    5 com.adobe.Photoshop 0x00ea3bf5 0x1000 + 15346677
    6 com.adobe.Photoshop 0x00ea4b94 0x1000 + 15350676
    7 com.adobe.Photoshop 0x00ea6678 0x1000 + 15357560
    8 com.adobe.Photoshop 0x00ea7f17 0x1000 + 15363863
    9 com.adobe.Photoshop 0x00eaff58 0x1000 + 15396696
    10 com.adobe.Photoshop 0x00eb0c65 0x1000 + 15400037
    11 com.adobe.Photoshop 0x00e1d7c8 0x1000 + 14796744
    12 com.adobe.Photoshop 0x00e1db82 0x1000 + 14797698
    13 com.adobe.Photoshop 0x00d84013 0x1000 + 14168083
    14 com.adobe.Photoshop 0x008b6a26 0x1000 + 9132582
    15 com.adobe.Photoshop 0x0089afa0 0x1000 + 9019296
    16 com.adobe.Photoshop 0x0006bdcd 0x1000 + 437709
    17 com.adobe.Photoshop 0x00069ce6 0x1000 + 429286
    18 com.adobe.Photoshop 0x00064145 0x1000 + 405829
    19 com.adobe.Photoshop 0x005e572f 0x1000 + 6178607
    20 com.adobe.Photoshop 0x0090b8f6 0x1000 + 9480438
    21 com.adobe.Photoshop 0x005e6d20 0x1000 + 6184224
    22 com.adobe.Photoshop 0x0090ffef 0x1000 + 9498607
    23 com.adobe.Photoshop 0x0091080d 0x1000 + 9500685
    24 com.adobe.Photoshop 0x008961ea 0x1000 + 8999402
    25 com.adobe.Photoshop 0x0082766e 0x1000 + 8545902
    26 com.adobe.Photoshop 0x00827901 0x1000 + 8546561
    27 com.adobe.Photoshop 0x005aaf6d 0x1000 + 5939053
    28 com.adobe.Photoshop 0x0056abc2 0x1000 + 5675970
    29 com.adobe.Photoshop 0x0057ca8b 0x1000 + 5749387
    30 com.adobe.Photoshop 0x0034c642 0x1000 + 3454530
    31 com.adobe.Photoshop 0x000d3c3e 0x1000 + 863294
    32 com.adobe.Photoshop 0x000d3a9e 0x1000 + 862878
    33 com.adobe.Photoshop 0x000d3a9e 0x1000 + 862878
    34 com.adobe.Photoshop 0x000d3a9e 0x1000 + 862878
    35 com.adobe.Photoshop 0x000d3a9e 0x1000 + 862878
    36 com.adobe.Photoshop 0x000d3a9e 0x1000 + 862878
    37 com.adobe.Photoshop 0x000d3a9e 0x1000 + 862878
    38 com.adobe.Photoshop 0x000d3a9e 0x1000 + 862878
    39 com.adobe.Photoshop 0x000d3a9e 0x1000 + 862878
    40 com.adobe.Photoshop 0x000d3a9e 0x1000 + 862878
    41 com.adobe.Photoshop 0x000d6928 0x1000 + 874792
    42 com.adobe.Photoshop 0x00b525c1 0x1000 + 11867585
    43 com.adobe.Photoshop 0x00064fdf 0x1000 + 409567
    44 com.adobe.Photoshop 0x00675e58 0x1000 + 6770264
    45 com.adobe.Photoshop 0x00064cc3 0x1000 + 408771
    46 com.adobe.Photoshop 0x0007be75 0x1000 + 503413
    47 com.adobe.Photoshop 0x00064145 0x1000 + 405829
    48 com.adobe.Photoshop 0x000642b3 0x1000 + 406195
    49 com.adobe.Photoshop 0x0006260f 0x1000 + 398863
    50 com.adobe.Photoshop 0x00220a8a 0x1000 + 2226826
    51 com.adobe.Photoshop

    i presume this is the Mac site??
    PS CS 4 crashes all of the time for no apparent reason and i have no clue where to start to fix this problem.
    I would like to know if I'm just lucky or other people have had this problem too and how they fixed it. i already downloaded and installed something relating to the graphics card issue.
    also, i'd like to hear from someone that has had this problem and found a fix for it because with the amount of crashing PS CS 4 does, it is less than useless to me as it is now.
    Thank you,
    RMMS

  • I am using XP-SP3 & Firfox.  When installing Flash Player Software i get a message: "This Publisher has been blocked from running software on this machine". How do i unblock it - HELP.

    I am using XP-SP3 & Firefox.  When installing Flash Player Software i get a message: "This Publisher has been blocked from running software on this machine". How do i unblock it - HELP.

    Hi,
    This is a security setting on your system that is resulting in this behaviour, not Flash Player installer itself, or anything with the installer.  There are many Google search results on this.  The first hit I got, was the following from the Microsoft forums:
    To unblock a software publisher:
    1. In Internet Explorer, click the Tools button, and then click Internet Options.
    2. Go to the Content tab, Look under the Certificates section.
    3. Click on Publishers button.
    4. Select the Untrusted Publishers tab.
    5. Select the Publisher you wish to unblock and click the Remove button.
    Maria

  • Hi, I got iMac and I can not open file "doc" when I have downloaded from distance learning internet page. I have office program, but when I try to open file it shows: u1-assesment.doc uses a file type that is  blocked from opening in this version.?

    Hi, I got iMac and I can not open file "doc" when I have downloaded from distance learning internet page. I have office program, but when I try to open file it shows: u1-assesment.doc uses a file type that is  blocked from opening in this version.?
    I have tryed to change just extension from doc to docx, but it doesn't work. I am new user, please help

    Consider the Mcrosoft Office:Mac forums as well:
    Office for Mac forums
    Here is an MS page that deals with that error message:
    http://answers.microsoft.com/en-us/mac/forum/macoffice2011-macword/bs0811doc-use s-a-file-type-that-is-blocked-from/548ce159-8157-419e-9552-1789594fafe9

  • GT70 Application has been blocked from accessing Graphics hardware

    I have a GT70 with a NVIDIA GeForce GTX 675m, have Windows 8.1 on it. Last month I had an issue where the video card freaked out and started to throw blue screens at me, had it taken in they fixed it and reinstalled the drivers and cleaned out the inside of the laptop which had dust inside, I would love to do it quite frankly I have no idea what the insides of a laptop like this look like.
    So after I got my laptop back I had drivers 344.75 installed on it, then went to watch a video on YouTube and all of a sudden the video freezes while the sound still played. Then in the lower right hand corner it said Display driver stopped responding and has recovered under it said, Display driver NVIDIA Windows Kernel Mode Driver, Version 344.75 stopped responding and has successfully recovered after that the small thing popped up saying Application FlashPlayerPlu has been blocked from accessing Graphics hardware over and over again I got so tired that I went to the customize option to make that thing disappear from popping up, but the error kept coming and coming so much that it created hundreds of warning errors in the Event Viewer. So the only thing I could do was restart my computer.
    Figured that updating my graphics card to the latest driver would help, which is 347.52. But whenever I watched YouTube on Firefox it would do the same thing, it wasn't just the Flash Player plugin either it was other programs like VidCoder I haven't seen what other programs did it. It just feels so frustrating because I don't want to take this laptop into get repaired again to the local computer place. I think it might be a software issue since the computer seems to work fine when it's not using the NVIDIA GPU, I started watching YouTube using Google Chrome and not Firefox. I haven't really gamed on it in a while but now afraid to play games on it that it might break the video card or crash. Has anyone out there seen such a problem?
    I've looked all over the Internet and people say that maybe the GPU is being overclocked but I don't even know what or how to search to see if it is. How can it be overclocked when using simple programs or websites like YouTube? I have also heard that most of these problems are cause of Windows 8.1 but can I even down grab back to regular Windows 8? I wish I had Windows 7 on this laptop but it came with Windows 8 and kept hearing that it's dangerous to downgrade the laptop to Windows 7.
    Thanks if anyone can help out with this issue.

    I am really hating Windows 8 & 8.1 all together. But I took it into the shop this past Monday to figure out maybe they can fix it. Since I still have the two month warranty with the shop I can take it in and won't have to continue paying more money. When I got it back they said something about the files or drivers were corrupt and they reinstalled them. Went home played Unturned on Steam for like 15 to 20 minutes, game froze like it did with No More Room in Hell. Giving me that same error Application unturned.exe has been blocked from accessing graphics hardware, over and over every three seconds. I shut down the laptop for the night and turned it on about an hour ago and the error message kept popping up like twice then finally stopped.
    I went over to NVIDIA's forum a couple of days ago and someone with a GT70 and GTX 675m card is having almost the same issue as me which is crazy, then saw another person with a 675m saying that it's unstable that the GPU usage exceeds 2000% and freezes. Do you think that it might be some sort of update that is causing the cards to just mess up? It's strange that within a few weeks three people including myself have issues with the card acting strange. I haven't gone with factory restoring my laptop yet, been trying not to go down that road unless it's needed. Also I hear Windows 10 is coming out in the summer and I'm iffy about just upgrading hoping the problem will go away or is Windows 10 is just as dangerous as Windows 8.
    I am also wondering if I was to downgrade to Windows 7 will it also erase my MSI factory recovery partition for Windows 8 on the drive?

  • Select schemas from relational model on import from data dictionary option

    Hi All,
    I have one relational model with 3 diferent schemas,
    I want to compare one of my schemas with the data dictionary I have in a database,
    I select the import option in the general file menu, select from data dictionary option,
    select the connection from my database,swap target model checked,select a physical model and select the objects i want to compare from the database,
    My problem is that the result is the comparison between all the objects in my model and the objects in the database that I have selected,
    what I really want is to compare a list of objects in my model to a list of objects in my database,
    this could be possible? or always need to compare all the objects of the model?
    Thanks in advance

    Hi jbellver,
    there is no any development in DM 3.1.0.691 on that problem. In production release you'll be able to compare objects in subview with database or just to select several objects and compare them with database. And of course "generate in DDl" filtering still can be used - it works at "Compare dialog" level.
    Philip

  • Crash when returning from terminal services

    I have an applet running on my XP system under 1.5.0_08. I remotely terminal service into the machine and things work fine with interacting with the applet. When I return to the local machine and login to display my existing session and start to interact with the applet window, the JVM crashes. I'm not sure if I have enough information to submit it yet. See log below:
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6d0afc8d, pid=2264, tid=1052
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_08-b03 mixed mode, sharing)
    # Problematic frame:
    # C [awt.dll+0xafc8d]
    --------------- T H R E A D ---------------
    Current thread (0x03d7bb00): JavaThread "Java2D Disposer" daemon [_thread_in_native, id=1052]
    siginfo: ExceptionCode=0xc0000005, reading address 0x00000005
    Registers:
    EAX=0x00000005, EBX=0x2b3f4e48, ECX=0x03c81434, EDX=0x0533e668
    ESP=0x0ffdf894, EBP=0x0ffdf8c8, ESI=0x03c81430, EDI=0x03c81434
    EIP=0x6d0afc8d, EFLAGS=0x00010216
    Top of Stack: (sp=0x0ffdf894)
    0x0ffdf894: 03d7bbc0 05a3b710 6d0b3d55 05a3b710
    0x0ffdf8a4: 6d03499c 03d7bbc0 05a3b710 03d7bb00
    0x0ffdf8b4: 2ab5f1d0 6d035437 03d7bbc0 05a3b710
    0x0ffdf8c4: 00000000 0ffdf904 063e832f 03d7bbc0
    0x0ffdf8d4: 0ffdf90c 6d03497f 00000000 05a3b710
    0x0ffdf8e4: 00000000 0ffdf8e8 00000000 0ffdf920
    0x0ffdf8f4: 2b3f5020 00000000 2b3f4e48 0ffdf914
    0x0ffdf904: 0ffdf940 063e29e3 2b3f4fc0 063e6509
    Instructions: (pc=0x6d0afc8d)
    0x6d0afc7d: 5e c2 04 00 56 8b f1 57 8b 46 04 8d 7e 04 8b cf
    0x6d0afc8d: ff 10 ff 4e 20 8b 46 20 85 c0 7f 42 53 33 db 39
    Stack: [0x0fee0000,0x0ffe0000), sp=0x0ffdf894, free space=1022k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [awt.dll+0xafc8d]
    j sun.java2d.DefaultDisposerRecord.invokeNativeDispose(JJ)V+0
    j sun.java2d.DefaultDisposerRecord.dispose()V+8
    j sun.java2d.Disposer.run()V+19
    j java.lang.Thread.run()V+11
    v ~StubRoutines::call_stub
    V [jvm.dll+0x86e84]
    V [jvm.dll+0xddead]
    V [jvm.dll+0x86d55]
    V [jvm.dll+0x86ab2]
    V [jvm.dll+0xa16b2]
    V [jvm.dll+0x10f4ac]
    V [jvm.dll+0x10f47a]
    C [msvcrt.dll+0x2a3b0]
    C [kernel32.dll+0xb683]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j sun.java2d.DefaultDisposerRecord.invokeNativeDispose(JJ)V+0
    j sun.java2d.DefaultDisposerRecord.dispose()V+8
    j sun.java2d.Disposer.run()V+19
    j java.lang.Thread.run()V+11
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x05b082b8 JavaThread "MessageAlerter-14" [_thread_blocked, id=2948]
    0x03014488 JavaThread "Thread-40" [_thread_blocked, id=5976]
    0x03c95618 JavaThread "Thread-29" [_thread_blocked, id=7628]
    0x04d6e8f8 JavaThread "Thread-28" [_thread_blocked, id=6888]
    0x188dfc18 JavaThread "Thread-27" [_thread_blocked, id=3204]
    0x028b2f70 JavaThread "Thread-26" [_thread_blocked, id=6088]
    0x0474b748 JavaThread "Thread-25" [_thread_blocked, id=6084]
    0x05c6be30 JavaThread "Thread-24" [_thread_blocked, id=1468]
    0x047354c0 JavaThread "VoiceController.QueueServiceRunnable" [_thread_blocked, id=2688]
    0x039e4468 JavaThread "Thread-23" [_thread_blocked, id=1976]
    0x04977e78 JavaThread "Messenger" [_thread_blocked, id=3868]
    0x021c6bb8 JavaThread "Preferences" [_thread_blocked, id=272]
    0x0282db58 JavaThread "StatusChangeIndicatorThread" [_thread_blocked, id=528]
    0x02f2e220 JavaThread "CommManager" [_thread_blocked, id=2364]
    0x044019d0 JavaThread "SocketReader" [_thread_in_native, id=2164]
    0x04d72858 JavaThread "SocketWriter" [_thread_blocked, id=756]
    0x047568e8 JavaThread "AWT-EventQueue-4" [_thread_blocked, id=3668]
    0x024feb08 JavaThread "IdleThread" [_thread_blocked, id=548]
    0x030f0e10 JavaThread "thread applet-com.bantu.banter.client.ChatApplet" [_thread_blocked, id=1588]
    0x0338e4d8 JavaThread "Java Sound Event Dispatcher" daemon [_thread_blocked, id=3400]
    0x03a66e10 JavaThread "TimerQueue" daemon [_thread_blocked, id=2796]
    0x04623978 JavaThread "AWT-EventQueue-1" [_thread_blocked, id=2464]
    0x03c85e68 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=3196]
    0x03972a50 JavaThread "traceMsgQueueThread" daemon [_thread_blocked, id=3172]
    0x03018528 JavaThread "AWT-Windows" daemon [_thread_in_native, id=2712]
    0x03d38be0 JavaThread "AWT-Shutdown" [_thread_blocked, id=3592]
    =>0x03d7bb00 JavaThread "Java2D Disposer" daemon [_thread_in_native, id=1052]
    0x03b2a240 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=2800]
    0x03ca41e0 JavaThread "CompilerThread0" daemon [_thread_blocked, id=3568]
    0x03bc36e8 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=320]
    0x03ae4e58 JavaThread "Finalizer" daemon [_thread_blocked, id=3596]
    0x03cad150 JavaThread "Reference Handler" daemon [_thread_blocked, id=3276]
    0x03a684a0 JavaThread "main" [_thread_in_native, id=3776]
    Other Threads:
    0x03c8c330 VMThread [id=3708]
    0x03c95d00 WatcherThread [id=1000]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 2304K, used 874K [0x20a70000, 0x20ce0000, 0x211d0000)
    eden space 2112K, 41% used [0x20a70000, 0x20b4aa40, 0x20c80000)
    from space 192K, 0% used [0x20c80000, 0x20c80000, 0x20cb0000)
    to space 192K, 0% used [0x20cb0000, 0x20cb0000, 0x20ce0000)
    tenured generation total 28728K, used 16209K [0x211d0000, 0x22dde000, 0x26a70000)
    the space 28728K, 56% used [0x211d0000, 0x221a45a0, 0x221a4600, 0x22dde000)
    compacting perm gen total 8192K, used 3805K [0x26a70000, 0x27270000, 0x2aa70000)
    the space 8192K, 46% used [0x26a70000, 0x26e27408, 0x26e27600, 0x27270000)
    ro space 8192K, 63% used [0x2aa70000, 0x2af7d608, 0x2af7d800, 0x2b270000)
    rw space 12288K, 46% used [0x2b270000, 0x2b810608, 0x2b810800, 0x2be70000)
    Dynamic libraries:
    0x00400000 - 0x00b53000      C:\Program Files\Bon Echo\firefox.exe
    0x7c900000 - 0x7c9b0000      C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c8f4000      C:\WINDOWS\system32\kernel32.dll
    0x60110000 - 0x6017d000      C:\Program Files\Bon Echo\js3250.dll
    0x601d0000 - 0x601f7000      C:\Program Files\Bon Echo\nspr4.dll
    0x77dd0000 - 0x77e6b000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77e70000 - 0x77f01000      C:\WINDOWS\system32\RPCRT4.dll
    0x71ad0000 - 0x71ad9000      C:\WINDOWS\system32\WSOCK32.dll
    0x71ab0000 - 0x71ac7000      C:\WINDOWS\system32\WS2_32.dll
    0x77c10000 - 0x77c68000      C:\WINDOWS\system32\msvcrt.dll
    0x71aa0000 - 0x71aa8000      C:\WINDOWS\system32\WS2HELP.dll
    0x76b40000 - 0x76b6d000      C:\WINDOWS\system32\WINMM.dll
    0x77d40000 - 0x77dd0000      C:\WINDOWS\system32\USER32.dll
    0x77f10000 - 0x77f57000      C:\WINDOWS\system32\GDI32.dll
    0x60380000 - 0x603e9000      C:\Program Files\Bon Echo\xpcom_core.dll
    0x602a0000 - 0x602a7000      C:\Program Files\Bon Echo\plc4.dll
    0x602b0000 - 0x602b6000      C:\Program Files\Bon Echo\plds4.dll
    0x7c9c0000 - 0x7d1d5000      C:\WINDOWS\system32\SHELL32.dll
    0x77f60000 - 0x77fd6000      C:\WINDOWS\system32\SHLWAPI.dll
    0x774e0000 - 0x7761d000      C:\WINDOWS\system32\ole32.dll
    0x77c00000 - 0x77c08000      C:\WINDOWS\system32\VERSION.dll
    0x602d0000 - 0x602ea000      C:\Program Files\Bon Echo\smime3.dll
    0x60200000 - 0x6025a000      C:\Program Files\Bon Echo\nss3.dll
    0x602f0000 - 0x6032e000      C:\Program Files\Bon Echo\softokn3.dll
    0x60330000 - 0x6034f000      C:\Program Files\Bon Echo\ssl3.dll
    0x60360000 - 0x60374000      C:\Program Files\Bon Echo\xpcom_compat.dll
    0x763b0000 - 0x763f9000      C:\WINDOWS\system32\comdlg32.dll
    0x773d0000 - 0x774d2000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2180_x-ww_a84f1ff9\COMCTL32.dll
    0x77120000 - 0x771ac000      C:\WINDOWS\system32\OLEAUT32.dll
    0x73000000 - 0x73026000      C:\WINDOWS\system32\WINSPOOL.DRV
    0x10000000 - 0x10044000      C:\Program Files\Matrox Graphics Inc\PowerDesk HF\Matrox.PowerDesk.Hooks.dll
    0x76bf0000 - 0x76bfb000      C:\WINDOWS\system32\PSAPI.DLL
    0x76fd0000 - 0x7704f000      C:\WINDOWS\system32\CLBCATQ.DLL
    0x77050000 - 0x77115000      C:\WINDOWS\system32\COMRes.dll
    0x60010000 - 0x60022000      C:\Program Files\Bon Echo\components\jar50.dll
    0x60030000 - 0x6003f000      C:\Program Files\Bon Echo\components\jsd3250.dll
    0x60040000 - 0x6004a000      C:\Program Files\Bon Echo\components\myspell.dll
    0x60050000 - 0x6005e000      C:\Program Files\Bon Echo\components\spellchk.dll
    0x60060000 - 0x6008c000      C:\Program Files\Bon Echo\components\xpinstal.dll
    0x71a50000 - 0x71a8f000      C:\WINDOWS\system32\mswsock.dll
    0x662b0000 - 0x66308000      C:\WINDOWS\system32\hnetcfg.dll
    0x71a90000 - 0x71a98000      C:\WINDOWS\System32\wshtcpip.dll
    0x76d60000 - 0x76d79000      C:\WINDOWS\system32\iphlpapi.dll
    0x01700000 - 0x01717000      C:\Program Files\Bon Echo\extensions\[email protected]\components\BrandRes.dll
    0x01720000 - 0x01745000      C:\Program Files\Bon Echo\extensions\[email protected]\components\fullsoft.dll
    0x01770000 - 0x01776000      C:\Program Files\Bon Echo\extensions\[email protected]\components\qfaservices.dll
    0x76f20000 - 0x76f47000      C:\WINDOWS\system32\DNSAPI.dll
    0x76fb0000 - 0x76fb8000      C:\WINDOWS\System32\winrnr.dll
    0x76f60000 - 0x76f8c000      C:\WINDOWS\system32\WLDAP32.dll
    0x746f0000 - 0x7471a000      C:\WINDOWS\system32\msimtf.dll
    0x74720000 - 0x7476b000      C:\WINDOWS\system32\MSCTF.dll
    0x20000000 - 0x202c5000      C:\WINDOWS\system32\xpsp2res.dll
    0x5ad70000 - 0x5ada8000      C:\WINDOWS\system32\uxtheme.dll
    0x76fc0000 - 0x76fc6000      C:\WINDOWS\system32\rasadhlp.dll
    0x600d0000 - 0x60101000      C:\Program Files\Bon Echo\freebl3.dll
    0x60260000 - 0x6029a000      C:\Program Files\Bon Echo\nssckbi.dll
    0x76380000 - 0x76385000      C:\WINDOWS\system32\msimg32.dll
    0x77920000 - 0x77a13000      C:\WINDOWS\system32\SETUPAPI.dll
    0x602c0000 - 0x602c8000      C:\Program Files\Bon Echo\plugins\npnul32.dll
    0x76390000 - 0x763ad000      C:\WINDOWS\system32\IMM32.DLL
    0x6d4f0000 - 0x6d502000      C:\Program Files\Java\jre1.5.0_08\bin\NPJava11.dll
    0x5edd0000 - 0x5ede7000      C:\WINDOWS\system32\OLEPRO32.DLL
    0x6d440000 - 0x6d44c000      C:\Program Files\Java\jre1.5.0_08\bin\jpioji.dll
    0x6d420000 - 0x6d435000      C:\Program Files\Java\jre1.5.0_08\bin\jpinscp.dll
    0x6d450000 - 0x6d468000      C:\Program Files\Java\jre1.5.0_08\bin\jpishare.dll
    0x6d6c0000 - 0x6d85b000      C:\PROGRA~1\Java\JRE15~1.0_0\bin\client\jvm.dll
    0x6d280000 - 0x6d288000      C:\PROGRA~1\Java\JRE15~1.0_0\bin\hpi.dll
    0x6d690000 - 0x6d69c000      C:\PROGRA~1\Java\JRE15~1.0_0\bin\verify.dll
    0x6d300000 - 0x6d31d000      C:\PROGRA~1\Java\JRE15~1.0_0\bin\java.dll
    0x6d6b0000 - 0x6d6bf000      C:\PROGRA~1\Java\JRE15~1.0_0\bin\zip.dll
    0x6d000000 - 0x6d169000      C:\Program Files\Java\jre1.5.0_08\bin\awt.dll
    0x73760000 - 0x737a9000      C:\WINDOWS\system32\ddraw.dll
    0x73bc0000 - 0x73bc6000      C:\WINDOWS\system32\DCIMAN32.dll
    0x6d240000 - 0x6d27f000      C:\Program Files\Java\jre1.5.0_08\bin\fontmanager.dll
    0x6d1f0000 - 0x6d203000      C:\Program Files\Java\jre1.5.0_08\bin\deploy.dll
    0x771b0000 - 0x77256000      C:\WINDOWS\system32\WININET.dll
    0x77a80000 - 0x77b14000      C:\WINDOWS\system32\CRYPT32.dll
    0x77b20000 - 0x77b32000      C:\WINDOWS\system32\MSASN1.dll
    0x77260000 - 0x77300000      C:\WINDOWS\system32\urlmon.dll
    0x6d5d0000 - 0x6d5f3000      C:\Program Files\Java\jre1.5.0_08\bin\RegUtils.dll
    0x10450000 - 0x10716000      C:\WINDOWS\system32\msi.dll
    0x6d4c0000 - 0x6d4d3000      C:\Program Files\Java\jre1.5.0_08\bin\net.dll
    0x6d4e0000 - 0x6d4e9000      C:\Program Files\Java\jre1.5.0_08\bin\nio.dll
    0x6d1c0000 - 0x6d1e3000      C:\Program Files\Java\jre1.5.0_08\bin\dcpr.dll
    0x74e30000 - 0x74e9c000      C:\WINDOWS\system32\RICHED20.DLL
    0x77b40000 - 0x77b62000      C:\WINDOWS\system32\appHelp.dll
    0x15920000 - 0x1598d000      C:\Program Files\TortoiseSVN\bin\tortoisesvn.dll
    0x6eec0000 - 0x6eee2000      C:\Program Files\TortoiseSVN\bin\libapr.dll
    0x78130000 - 0x781cb000      C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.42_x-ww_0de06acd\MSVCR80.dll
    0x6ee60000 - 0x6ee88000      C:\Program Files\TortoiseSVN\bin\libaprutil.dll
    0x6ee50000 - 0x6ee5d000      C:\Program Files\TortoiseSVN\bin\libapriconv.dll
    0x15990000 - 0x1599c000      C:\Program Files\TortoiseSVN\bin\intl3_svn.dll
    0x7c420000 - 0x7c4a7000      C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.42_x-ww_0de06acd\MSVCP80.dll
    0x77a20000 - 0x77a74000      C:\WINDOWS\System32\cscui.dll
    0x76600000 - 0x7661d000      C:\WINDOWS\System32\CSCDLL.dll
    0x75cf0000 - 0x75d81000      C:\WINDOWS\system32\mlang.dll
    0x76c30000 - 0x76c5e000      C:\WINDOWS\system32\WINTRUST.dll
    0x76c90000 - 0x76cb8000      C:\WINDOWS\system32\IMAGEHLP.dll
    0x72d20000 - 0x72d29000      C:\WINDOWS\system32\wdmaud.drv
    0x72d10000 - 0x72d18000      C:\WINDOWS\system32\msacm32.drv
    0x77be0000 - 0x77bf5000      C:\WINDOWS\system32\MSACM32.dll
    0x77bd0000 - 0x77bd7000      C:\WINDOWS\system32\midimap.dll
    0x77fe0000 - 0x77ff1000      C:\WINDOWS\system32\Secur32.dll
    0x767f0000 - 0x76817000      C:\WINDOWS\system32\schannel.dll
    0x5b860000 - 0x5b8b4000      C:\WINDOWS\system32\NETAPI32.dll
    0x769c0000 - 0x76a73000      C:\WINDOWS\system32\USERENV.dll
    0x75f80000 - 0x7607d000      C:\WINDOWS\system32\browseui.dll
    0x76990000 - 0x769b5000      C:\WINDOWS\system32\ntshrui.dll
    0x76b20000 - 0x76b31000      C:\WINDOWS\system32\ATL.DLL
    0x76980000 - 0x76988000      C:\WINDOWS\system32\LINKINFO.dll
    0x77760000 - 0x778cf000      C:\WINDOWS\system32\SHDOCVW.dll
    0x754d0000 - 0x75550000      C:\WINDOWS\system32\CRYPTUI.dll
    0x6d470000 - 0x6d495000      C:\Program Files\Java\jre1.5.0_08\bin\jsound.dll
    0x6d4a0000 - 0x6d4a8000      C:\Program Files\Java\jre1.5.0_08\bin\jsoundds.dll
    0x73f10000 - 0x73f6c000      C:\WINDOWS\system32\DSOUND.dll
    0x028f0000 - 0x02918000      C:\WINDOWS\system32\rsaenh.dll
    0x74b30000 - 0x74b76000      C:\WINDOWS\system32\webcheck.dll
    0x7dc30000 - 0x7df20000      C:\WINDOWS\system32\mshtml.dll
    0x746c0000 - 0x746e7000      C:\WINDOWS\system32\msls31.dll
    0x6d5b0000 - 0x6d5c2000      C:\Program Files\Java\jre1.5.0_08\bin\NPOJI610.dll
    0x6d3c0000 - 0x6d3df000      C:\Program Files\Java\jre1.5.0_08\bin\jpeg.dll
    VM Arguments:
    jvm_args: -Xbootclasspath/a:C:\PROGRA~1\Java\JRE15~1.0_0\lib\deploy.jar;C:\PROGRA~1\Java\JRE15~1.0_0\lib\plugin.jar -Xmx96m -Djavaplugin.maxHeapSize=96m -Xverify:remote -Djavaplugin.version=1.5.0_08 -Djavaplugin.nodotversion=150_08 -Dbrowser=sun.plugin -DtrustProxy=true -Dapplication.home=C:\PROGRA~1\Java\JRE15~1.0_0 -Djava.protocol.handler.pkgs=sun.plugin.net.protocol -Djavaplugin.vm.options=-Djava.class.path=C:\PROGRA~1\Java\JRE15~1.0_0\classes -Xbootclasspath/a:C:\PROGRA~1\Java\JRE15~1.0_0\lib\deploy.jar;C:\PROGRA~1\Java\JRE15~1.0_0\lib\plugin.jar -Xmx96m -Djavaplugin.maxHeapSize=96m -Xverify:remote -Djavaplugin.version=1.5.0_08 -Djavaplugin.nodotversion=150_08 -Dbrowser=sun.plugin -DtrustProxy=true -Dapplication.home=C:\PROGRA~1\Java\JRE15~1.0_0 -Djava.protocol.handler.pkgs=sun.plugin.net.protocol vfprintf
    java_command: <unknown>
    Launcher Type: generic
    Environment Variables:
    PATH=C:\PROGRA~1\Java\JRE15~1.0_0\bin;C:\Program Files\Bon Echo;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\svn\BantuTrunk\lib;.
    USERNAME=steve
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 2 Stepping 7, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 2
    CPU:total 1 (cores per cpu 1, threads per core 1) family 15 model 2 stepping 7, cmov, cx8, fxsr, mmx, sse, sse2
    Memory: 4k page, physical 1047556k(370276k free), swap 2520776k(1835956k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_08-b03) for windows-x86, built on Jul 26 2006 01:10:50 by "java_re" with MS VC++ 6.0

    Ah.. I hate when they do that, if you are going to write an application then support it.... At least help figure out why it's failing other than just saying it should work....
    I would get on a call with them and get a Manager involved, someone there should be able to help you...
    In the mean time:
    First easiest way is search for crpe32.dll, there should only be one version and it should match the est of the file versions. Next step will tell you the versions being used.
    OK, download [Modules|https://smpdl.sap-ag.de/~sapidp/012002523100006252802008E/modules.zip]. what this app will do is list all of the runtime files each user has access to. You can save and then compare the list files between the  one working PC and any other user. Should help determine what is missing or the users profile doesn't have access to or not installed.
    Another option is to use ProfileMonitor from Microsoft, it will list all access issues including the registry keys that all users need to run CR.
    Can you tell me what version you are using?
    Also need to know what version of TS?
    OS it's running on?
    And work station OS?
    One more option, go to this link http://www.sdn.sap.com/irj/scn/advancedsearch?query=boj and search on "invalid tlv" and it will return a bunch of know reasons why you can get that error.
    Thanks
    Don
    Edited by: Don Williams on May 31, 2011 12:52 PM

  • Emails are Blocked from domains which are added to "BypassedSenderDomains" in Exchange 2007 Edge server

    Hi,
    We have an Exchange server 2007 and an Edge server 2007 is configured in the perimeter network. Most of our clients use Public email domains such as Yahoo and Gmail. Last few weeks it has been a  major issue for us that most of the emails from Yahoo/Gmail
    get blocked by our Edge server calming the sender IP address is in Block Lists.
    As a solution I've added yahoo.com/gmail.com/aol.com/hotmail.com to "BypassedSenderDomains" hoping if emails receive from one of these domains it will bypass the connection filtering. But still some of our customers complain that their emails are
    still not passing to us and blocked by our edge server. They have provided me the error message they receive.
    Our clients get following error message
    edgexch gave this error: Recipient not authorized, your IP has been found on a block list
    Your message wasn't delivered due to a permission or security issue. It may have been rejected by a moderator, the address may only accept e-mail from certain senders, or another restriction
    may be preventing delivery.
    550 5.7.1 Recipient not authorized, your IP has been found on a block list 
    When I check the Agent logs in Edge server  I found specific email had been blocked. Please check one of the log entry.
    Timestamp       : 1/30/2014 1:45:15 PM
    SessionId       : 08D0E865200E7CBF
    IPAddress       : 98.139.213.140
    MessageId       :
    P1FromAddress   : Sender Email Address (@yahoo.com)
    P2FromAddresses : {}
    Recipients      : {Recipient  Email address}
    Agent           : Connection Filtering Agent
    Event           : OnRcptCommand
    Action          : RejectCommand
    SmtpResponse    : 550 5.7.1 Recipient not authorized, your IP has been found on a block list
    Reason          : BlockListProvider
    ReasonData      : bl.spamcop.net
    This troubles me because I've added Yahoo.com to "BypassedSenderDomains" on 1/28/2014 and this email was blocked on 1/30/2014. I've checked whole Agent logs from 28th to-date and found most of the messages from white-listed domains  bypassed
    the content filtering but some were  still getting blocked. Most of the messages from white-listed domains were blocked from "bl.spamcop.net " IP block list provider.
    As a solution for the current situation I've disabled "bl.spamcop.net" from the "IP block List Providers". But the issue is, why the mails are getting blocked even the domains were white-listed. I though after white-listing emails domains,
    messages will bypass the content filters if the email generates from one of the white-listed email domain.
    I've also added the "Content Filter Config" for your reference.
    [PS] C:\Windows\system32>Get-ContentFilterConfig
    Name                                                              
    : ContentFilterConfig
    RejectionResponse                                         
    : Message rejected as spam by Content Filtering.
    OutlookEmailPostmarkValidationEnabled   
    : True
    BypassedRecipients                                       
    QuarantineMailbox                                        
    : [email protected]
    SCLRejectThreshold                                     
    : 7
    SCLRejectEnabled                                        
    : False
    SCLDeleteThreshold                                     
    : 9
    SCLDeleteEnabled                                        
    : False
    SCLQuarantineThreshold                              
    : 5
    SCLQuarantineEnabled                     
    : True
    BypassedSenders                                           
    BypassedSenderDomains                              
    : {yahoo.com, gmail.com, hotmail.com, aol.com}
    Enabled                                                          
    : True
    ExternalMailEnabled                  
    : True
    InternalMailEnabled                  
    : False
    AdminDisplayName                     
    ExchangeVersion                      
    : 0.1 (8.0.535.0)
    DistinguishedName                    
    : CN=ContentFilterConfig,CN=Message Hygiene,CN=Transport Settings,CN=First Organization,CN=Microsoft Exchange,CN=Services,CN=Configuration,CN={4546F49-6BC5-4F7A-848F-03E4652528A6}
    Identity                             
    : ContentFilterConfig
    Guid                                 
    : c501959c-b062-4f59-8f0c-404c53f54a34
    ObjectCategory                      
    : CN=ms-Exch-Message-Hygiene-Content-Filter-Config,CN=Schema,CN=Configuration,CN={4546F4196BC5-4F7A-848F-03E4652528A6}
    ObjectClass                          
    : {top, msExchAgent, msExchMessageHygieneContentFilterConfig}
    WhenChanged                                                           
    : 1/28/2014 8:48:49 PM
    WhenCreated                                                 
    : 1/8/2012 8:42:18 PM
    OriginatingServer                                           
    : localhost
    IsValid                                                           
    : True
    It would be great if someone could help me to resolve this issue because this is a major problem since we lost mails from our valuable customers.
    Thanks in advance.
    Tharaka

    Here is a similar issue someone with Exchange 2010 -
    http://social.technet.microsoft.com/Forums/exchange/en-US/36aec4f6-6d73-4d71-ab64-e7f3d817b39b/exchange-2010-still-blocks-mail-from-domain-on-dnsbl-even-though-its-on-bypassedsenderdomain?forum=exchange2010.  So in essence, use the exceptions tab for
    the IP Block List Providers.  See if that will work as a solution for you.
    JAUCG - Please remeber to mark replies as helpful if they were or as answered if I provided a solution.

Maybe you are looking for

  • Help with Exporting tables to ePub

    I'm looking for help exporting tables from InDesign to epub.  Is there an easy way to do this and preserve formatting?

  • Erase and install?? a few problems...

    Hello. This is going to be a long one, so you might as well get a fresh cup. A little history. I started with a G4 Powerbook (10.4.11) some number of years ago. In November of last year I got a 24" iMac. Turned it on, set it up with a new user named

  • Data is not saving

    I am using Form 9i. I have 19 blocks and 6 canvas of which 5 blocks viz. 1) :WORKORDER_MASTER - are used for master record of workorder. 2) :WORKORDER_DTLS - are used for labour working under workorder. 3) :WORKODER_MASTER_IMG - image of authorised r

  • Urgent: Form Compilation Error using frmcmp.sh on OAS 10.1.2, pls help..

    Hi All, I am upgrading from OAS 9.0.4 to 10.1.2 where Forms 10g application is deployed. When I try to recompile with frmcmp.sh : frmcmp.sh userid=system/oracle123@odb module_type=FORM module=menu1.fmb I get errors : Compiling Procedure GET_PATH... C

  • BW Objects inactive in DEV system

    Hi All, In Our BW DEV System ,All objectu2019s have become inactive and in revised mode, we cant figure out what happened, bcoz of this we are facing a lot of problem to initiate transport or to install or activate again anyhting. Is there any Functi