Strange issue when scaling text

Hi,
I'm using inDesign CS6 and there's a strange issue when rescaling a text with overflow to 200%:
As you can see, the fourth paragraph doesn't change its font size, even if it has exactly the same configuration. This happens apparently randomly to some paragraphs, or even lines of a paragraph in some cases.
The weirdest thing is that I have tried the same action with the same .indd file in other computers (another Mac and a Windows one, both CS6) and it scales properly all paragraphs. So I checked all the preferences from one computer to the other, and even if they are the same, the scaling issue still happens.
Any hints?

See Replace Your Preferences

Similar Messages

  • Strange issue when pausing LONG audiobook--pressing play again changes the

    Strange issue when pausing LONG audiobook--pressing play again changes the position within the book--it doesn't start back exactly where it left off.
    The audiobook of "Harry Potter and the Half Blood Prince" is between 18 and 19 HOURS long--all as one long track/file.
    I've noticed that when I pause while listening and then press play again, it "rewinds" and starts playing portions of the audiobook from about 10 minutes prior--but the time stamp doesn't change. At least this is the time frame from the first "test". Other pauses/plays may result in different time differences.
    The first time this happened, I didn't realize what it was doing. I pressed play (from the pause) and I heard a portion that I had already played. I thought that the bookmark just didn't "remember" as it should have, so I scrubbed forward trying to find where I remembered leaving off. If you end up pausing/playing even a couple of times with this happening each time, the portion of the audiobook that you're playing and the time stamp becomes COMPLETELY off! For example, almost an hour into the time stamp was really only about 10-15 minutes into the actual book.
    I'm not sure if this makes any sense, but hopefully it does to someone. It's very frustrating to have this happen simply because you had to pause while listening. You have to scrub backwards or forwards each time to find out where you REALLY left off at and the time stamp becomes of no help value since it doesn't change as the playback position moves itself.
    I'm sure that this is something happening due to the extreme length of the audio file. That maybe it can't track as precisely as it could with shorter lengths. ???
    Any ideas? Has anyone else seen this happen? Any ideas on whether or not there is anything that can be done to prevent this?

    I'm glad that I'm not the only one having this
    problem. It's ironic that we're both having issues
    with the SAME audiobook. I haven't had a chance to
    listen to Books 1-5 much to see if they have the same
    issue or not--I don't remember any on the few parts
    that I've played for my nephews.
    Yeah, I know! I was shocked to see that. I recently finished HP5 (twice), and NEVER had this issue, but it is a much smaller file size.
    I'm thinking that I may try to convert to AAC before
    I try the splitting program--in theory, it's easier
    to start right back in again when you only have 1
    track to find, than when you have dozens/hundreds of
    smaller tracks. It's sometimes hard to remember
    which track you left off with--even if it's
    "bookmarked" within that track.
    I dunno anything about AAC, to be honest. Never used it. My plan is to split the MP3 into smaller MP3s by chapter and load them on a playlist. Of course, I will have to label them all nice and pretty. It is a long book, but you could always just load a couple of chapter files at a time. The only thing that I can see that would be kind of a pain about splitting it with the Cool MP3 is searching thru the file for each chapter and setting break points.
    My only concern is how much quality I'm losing by
    converting from one compressed format--MP3--to
    another compressed format AAC.
    Yeah. Ew. No clue. Sounds unpleasant to me. Again, I really do not do anything with AAC.
    I suppose, since it's
    spoken word instead of music, the change shouldn't be
    too noticable. I'm not sure what kind of time frame
    it'll require to convert. I'll probably try it with
    book 1 first--since it's the smallest.
    May depend on the program. The one I got boasts no quality loss. You may wanna scrounge around the download sites and see which one sounds like it has the best features, even if you do just get a free trial version of something. I would definitely read the editor's ratings. I tend to trust that more than the typical end user's. They show how many stars the editor gives a product, and you can click that for the review, or sometimes they have labeled tabs where you can access the review.
    As for how long it takes me to rip that particular file and if that actually fixes the scrubbing problem, I will have to let you know tomorrow. WAAAAY past my bedtime!
    Keep me updated on your end. I sure which that there
    was an explanation for why it happens.
    Will do! I am thinking you hit the nail on the head with the length. That was exactly what popped into my mind when I figured out what the goofy thing was doing.
    Talk to you later!
    HP dv5117d, iTunes 7.0.2.16   Windows XP Pro   1st gen 4GB nano, sw ver 1.3

  • Strange behaviour when scaling GREP styled text.

    In the quest for the perfect scaling script I am running into another problem. I tried to scale my GREP styled text, and it came out like this:
    Notice the "$" and "cents" are too small - whereas it should look like this:
    Sorry I used a slightly larger image and different value, but I don't that is an issue with respect to this problem.
    So on the desktop, I decide to check preference>general tab> when scaling> "apply to content" was checked.
    I changed it to "adjust scaling percentage" and my $249.99 came out perfectly proportional to the original set text, (let pretend there is a 2 in front of the $49.99)
    So I upload the template to the server and proceed to scale it and I get this:
    In this example, the decimal has not scaled and thus allowing the "cents" to jam into the dolllar value. I am also unable to reproduce this error on the desktop.
    Can anyone explain what is happening or how to compensate for these errors? Thanks for your help! My script is below:
    function myTransform(myPage, myRectangle, myScaleMatrix)
         app.transformPreferences.whenScaling = WhenScalingOptions.APPLY_TO_CONTENT;
        var everything;
        var origin;
        if ( ssize > 1.0 )
           //origin = myPage.resolve(AnchorPoint.CENTER_ANCHOR,CoordinateSpaces.PASTEBOARD_COORDINATES)[0];
           origin = myPage.resolve(AnchorPoint.CENTER_ANCHOR,CoordinateSpaces.PASTEBOARD_COORDINATES);
            myPage.transform(CoordinateSpaces.PASTEBOARD_COORDINATES,origin,myScaleMatrix);
            everything = myRectangle.everyItem();
            //origin = myPage.resolve(AnchorPoint.CENTER_ANCHOR,CoordinateSpaces.PASTEBOARD_COORDINATES)[0];
            everything.transform(CoordinateSpaces.PASTEBOARD_COORDINATES,origin,myScaleMatrix);
        else
            everything = myRectangle.everyItem();
            origin = myPage.resolve(AnchorPoint.CENTER_ANCHOR,CoordinateSpaces.PASTEBOARD_COORDINATES)[0];
            everything.transform(CoordinateSpaces.PASTEBOARD_COORDINATES,origin,myScaleMatrix);
            myPage.transform(CoordinateSpaces.PASTEBOARD_COORDINATES,origin,myScaleMatrix);

    var myDocument = app.documents.item(0);
    var myPages = myDocument.pages;
    var myRectangle = myDocument.pages.item(0).pageItems;
    var ssize = 2;
    //Scale a page around its center point.
    var myScaleMatrix = app.transformationMatrices.add({horizontalScaleFactor:ssize,  verticalScaleFactor:ssize});
    var idx;
    for(idx = 0; idx < app.documents.item(0).pages.length; idx++)
        myTransform(myPages.item(idx), myDocument.pages.item(idx).pageItems, myScaleMatrix);
    // if you want to export a pdf, uncomment
    //myPDFExport ();
    function myTransform(myPage, myRectangle, myScaleMatrix)
         app.transformPreferences.whenScaling = WhenScalingOptions.APPLY_TO_CONTENT;
        var everything;
        var origin;
        if ( ssize > 1.0 )
           //origin = myPage.resolve(AnchorPoint.CENTER_ANCHOR,CoordinateSpaces.PASTEBOARD_COORDINATES)[0];
           origin = myPage.resolve(AnchorPoint.CENTER_ANCHOR,CoordinateSpaces.PASTEBOARD_COORDINATES);
            myPage.transform(CoordinateSpaces.PASTEBOARD_COORDINATES,origin,myScaleMatrix);
            everything = myRectangle.everyItem();
            //origin = myPage.resolve(AnchorPoint.CENTER_ANCHOR,CoordinateSpaces.PASTEBOARD_COORDINATES)[0];
            everything.transform(CoordinateSpaces.PASTEBOARD_COORDINATES,origin,myScaleMatrix);
        else
            everything = myRectangle.everyItem();
            origin = myPage.resolve(AnchorPoint.CENTER_ANCHOR,CoordinateSpaces.PASTEBOARD_COORDINATES)[0];
            everything.transform(CoordinateSpaces.PASTEBOARD_COORDINATES,origin,myScaleMatrix);
            myPage.transform(CoordinateSpaces.PASTEBOARD_COORDINATES,origin,myScaleMatrix);
    function myPDFExport()
            //Basic PDF output options.
            pageRange = PageRange.allPages;
            acrobatCompatibility = AcrobatCompatibility.acrobat8;
            exportGuidesAndGrids = false;
            exportLayers = false;
            exportNonPrintingObjects = false;
            exportReaderSpreads = false;
            generateThumbnails = false;
            try
                ignoreSpreadOverrides = false;
            catch(e) {}
            includeBookmarks = false;
            includeHyperlinks = false;
            includeICCProfiles = true;
            includeSlugWithPDF = true;
            includeStructure = false;
            interactiveElementsOption = InteractiveElementsOptions.doNotInclude;
            //Setting subsetFontsBelow to zero disallows font subsetting;
            //set subsetFontsBelow to some other value to use font subsetting.
            subsetFontsBelow = 0;
            //Bitmap compression/sampling/quality options.
            colorBitmapCompression = BitmapCompression.none;
            //colorBitmapQuality = CompressionQuality.eightBit;
            colorBitmapSampling = Sampling.none;
            //thresholdToCompressColor is not needed in this example.
            //colorBitmapSamplingDPI is not needed when colorBitmapSampling
            //is set to none.
            grayscaleBitmapCompression = BitmapCompression.none;
            //grayscaleBitmapQuality = CompressionQuality.eightBit;
            grayscaleBitmapSampling = Sampling.none;
            //thresholdToCompressGray is not needed in this example.
            //grayscaleBitmapSamplingDPI is not needed when grayscaleBitmapSampling
            //is set to none.
            monochromeBitmapCompression = BitmapCompression.none;
            monochromeBitmapSampling = Sampling.none;
            //thresholdToCompressMonochrome is not needed in this example.
            //monochromeBitmapSamplingDPI is not needed when
            //monochromeBitmapSampling is set to none.
            //Other compression options.
            compressionType = PDFCompressionType.compressNone;
            compressTextAndLineArt = true;
            cropImagesToFrames = true;
            optimizePDF = true;
            //Printers marks and prepress options.
            //Get the bleed amounts from the document's bleed.
    //~         bleedBottom = myDocument.documentPreferences.documentBleedBottomOffset;
    //~         bleedTop = myDocument.documentPreferences.documentBleedTopOffset;
    //~         bleedInside = myDocument.documentPreferences.documentBleedInsideOrLeftOffset;
    //~         bleedOutside = myDocument.documentPreferences.documentBleedOutsideOrRightOffset;
    //~         //If any bleed area is greater than zero, then export the bleed marks.
    //~         if(bleedBottom == 0 && bleedTop == 0 && bleedInside == 0 && bleedOutside == 0)
    //~         {
    //~             bleedMarks = true;
    //~         }
    //~         else
    //~        {
    //~             bleedMarks = false;
    //~        }
    //~        colorBars = false;
            colorTileSize = 128;
            grayTileSize = 128;
            cropMarks = false;
            omitBitmaps = false;
            omitEPS = false;
            omitPDF = false;
            pageInformationMarks = false;
            pdfColorSpace = PDFColorSpace.unchangedColorSpace;
            //Default mark type.
            pdfMarkType = 1147563124;
            printerMarkWeight = PDFMarkWeight.p125pt;
            registrationMarks = false;
            try
                simulateOverprint = false;
            catch(e) {}
            useDocumentBleedWithPDF = false;
            viewPDF = false;
        //Now export the document.
        var thisDocument = app.documents.item(app.documents.length-1);
        var fullname = app.scriptArgs.getValue("OutputFileName");
        var idx = fullname.indexOf("_");
        var shortname = fullname.substring(0, idx);
        //thisDocument.exportFile(ExportFormat.pdfType, app.scriptArgs.getValue("OutputFolder") + shortname + ".pdf");
        thisDocument.exportFile(ExportFormat.pdfType, "c:\boosttest.pdf");

  • Strange issue when synching Iphone

    Hi,
    Had a strange issue and wondered if anyone could explain what could possibly have happened?
    I purchased an album from iTunes on Saturday on my MacBook Pro. My iTunes library is actually stored on my time capsule, but everything was fine.
    However today at work (so separated from my Time Capsule) I plugged in my iPhone to recharge. As standard it tried to synch - and this is when the issue occurred:
    A message appeared stating that there were purchased items on my iPhone that were not in my iTunes library, that I must authorise the machine else the items would be removed. When clicking on the authorise button, the authorisation / iTunes store login screen appeared - containing the username [email protected] - which is completely unknown to me. I have absolutely no idea who this person is and I have never seen that email address before.
    I changed the login to my details and signed in - where the system said that my machine was already authorised for my account - so the synch continued normally (apart from the usual messages when disconnected from my time capsule).
    How the **** did my machine think it was attached to wesley patt's account? Has this happened to anybody else?
    Cheers for any help
    Darren

    I just tried to sync my wife's iphone and the same name [email protected] came up. This can not be a coincidence. This has to be a virus of some sort. My wife is unable to make purchases from her computer right now even though the account detail works. Did this happen to either of you? I'm reporting this to apple and referencing this board.

  • Strange issue when switching between spaces

    This morning my laptop (MBP) started doing strange things when I switch space. For starters, it takes a lot longer to actually make the transition. Then, when the desktop has moved, it takes a second or so for the primary application window on that desktop to be activated, and the menu bar does a strange swipe animation. I've noticed in Console that there are errors such as this each time I switch space:
    11/04/2013 12:50:03.425 Dock[363]: CGSGetWindowTags: Invalid window 0x214f
    11/04/2013 12:50:03.426 Dock[363]: CGSGetWindowTags: Invalid window 0x214e
    11/04/2013 12:50:03.427 Dock[363]: CGSGetWindowTags: Invalid window 0x214d
    11/04/2013 12:50:03.427 Dock[363]: CGSGetWindowTags: Invalid window 0x214c
    11/04/2013 12:50:03.427 Dock[363]: CGSGetWindowTags: Invalid window 0x214b
    11/04/2013 12:50:03.428 Dock[363]: CGSGetWindowTags: Invalid window 0x214a
    11/04/2013 12:53:54.281 Dock[363]: CGSGetWindowTags: Invalid window 0x21df
    11/04/2013 12:53:54.283 Dock[363]: CGSGetWindowTags: Invalid window 0x21de
    11/04/2013 12:53:54.298 Dock[363]: CGSGetWindowTags: Invalid window 0x21dd
    11/04/2013 12:53:54.299 Dock[363]: CGSGetWindowTags: Invalid window 0x21dc
    11/04/2013 12:53:54.299 Dock[363]: CGSGetWindowTags: Invalid window 0x21db
    11/04/2013 12:53:54.299 Dock[363]: CGSGetWindowTags: Invalid window 0x21da
    11/04/2013 12:53:54.300 Dock[363]: CGSGetWindowTags: Invalid window 0x21d9
    Any ideas?

    Consider the possibility of third party software incompatibility. 
    Does this behavior persist for a different user, e.g., Guest User?  Does this behavior persist when starting up in Safe Mode?
    charlie

  • Strange issue when typing a number in Lion

    Hi,
    I have a very rare issue when I type a number now and since I updated my system to Lion, no matter which program am I using, Safari, textedit, mail, etc. Every time I type a number (just one), it suddently erase itself, doesn't happen when I type more than one, it's very annoying and this didn't happen when I had Snow Leopard.
    Any ideas?

    …and so on = 58376163294144?
    Could you please answer the questions, this is like drawing hens teeth.
    I have entered the numbers but since I don't know how your sequence is input I can't do the preceeding numbers to the one that changes.
    …which doesn't when I do it in Pages '09 v4.05:
    Peter

  • Strange issue when printing PDF's

    This problem started the other day. Whenever I scan to a pdf file or Save as from Illustrator the PDF looks fine (using the High Quality Setting) but prints out like a rastered high contrast jpeg image (with artifacting around all the edges of text and images). I thought this was a Distiller issue and checked all my settings. No Luck.
    This morning I opened and tried to print a clients file and same thing happened. The problem occurs to both black & White laser printer as well as Epson R2400
    I am using CS3  Updated to version 8.1.4 this morning on a windows vista machine.I would reinstall acrobat but when I had to do that a previous time, Vista and Acrobat would not play nice and I could never get Acrobat to install completely until I reformatted my whole drive and started from scratch. I do not have the time or want to try that again.
    Could the preference file be bad? And where is that located?
    Thanks,

    This is not a scanning resolution factor and I have been scanning this way for years. These scans are not photos but documents. This problem just started.  And as I said before, the problem also occurs when doing a save as from Illustrator, as well as supplied files from clients, so the scanning process has nothing to do with it. I just can't get them to print right.

  • Strange behaviour when placing text frame on top of image

    Hi,
    Win XP, FM 8.04
    I have a front cover that consists of a TIF image that bleeds off the page. On top of that image I want to put a text frame with the book title.
    The strange thing is that when I create the text frame and use the toolbar buttons to nudge it down on the page, the text (but not the frame) suddenly jumps to a totally different place way down on the page, despite only nudging it, say, 10 mm.
    Any ideas why this is happening?
    /Mats

    Hi,
    Partly solved:
    After some tests, it seems FM does not like when you try to move a text frame over a transparent area in an image. The image in question was made by importing a PDF into Photoshop, then saving as TIF. Since the PDF contained an area that was had full transparency in InDesign (i.e. "Paper"), that area was also in the TIF image.
    The strange behaviour starts exactly at the border where the transparency starts. In non-transparent areas, there is no problem.
    Seems like a bug.
    /Mats

  • Strange Issue when Exporting Artboards as PNGs (Won't Include Layer)

    As a part of my usual workflow in Illustrator CS6, I export a series of artboards as PNGs. The two layers I export are called "Content" and "Callouts." Neither is locked, and nothing is hidden. I've never had issues before, but today when I tried to export, Illustrator would only export the "Callouts" layer no matter what I tried. I made sure all layers were unlocked, I saved as a new document, combining the layers, I restarted my machine, I copy and pasted all the content onto a new layer—still nothing, that layer simply won't export though there appears to be nothing strange about it and it's worked in the past. 
    However, when saving as a PDF or saving for web, the "Content" layer does show up. Because I'm exporting a lot of PNGs, it's not convenient for me to save for web one by one, so this isn't a viable long-term fix. I'm at my wits' end here. Any insights?
    Thanks in advance.
    Edit: One thing to note, is that when I tried to merge these layers through the panel's dropdown, it said "cannot merge because the destination is locked or hidden." However, when clicking on options for that layer it doesn't show that it's locked OR hidden.

    He meant to doubleclick on a layer and make sure a checkmark is in front of print.
    Do a view >> overprint preview, if the graphics dispaear thatn menas you have for example somehting white set to overprint. That can be fixed with the attributes panel, by selcting the offending objecy and removing overprint.

  • Strange behavior when deleting text in an email.

    When composing emails I have noticed that if I make a mistake and delete some text it behaves strangely.  This only happens if the text deleted is at the end of the message.  On deleting the text I am then left with a small highlighted area (like when you have used your cursor to select an area).  If I then try to continue typing it types a few letters and then stops and the new letters typed just go over and over in the same cursor spot.  This is difficult to describe so i hope I have made sense but it is extremely frustrating and I was wondering if anyone else was having the same problem of if it is a known bug???  If anyone knows, please could they let me know :-)
    Thanks
    P.S. I'm on an iMac using 10.7.3

    Thanks for the info sanjapet.
    1) I just trashed the Preferences
    com.apple.mail.plist
    com.apple.mail.plist.lockfile
    2) then reboot. It is still misbehaving in texts in Apple Mail. For example i select a whole paragraph but only some words are highlighted. Here is a sample
    http://www.pixentral.com/show.php?pi...rYnikzXiYS5Ir0
    very annoying indeed.
    3) Now i go to Preferences and
    com.apple.mail.plist
    com.apple.mail.plist.lockfile
    are not there any more. I thought Apple Mail will restored them automatically. Isn't that right?
    Best,

  • Double spacing issue when pasting text from Pages

    I have a Pages document with text that frequently paste into a message that is generated by the Dropbox iOS app when I choose the e-mail option within Dropbox iOS app.
    I'm trying to figure out why when I paste the Pages text above the defaut Dropbox message the spacing between paragraphs is fine, but when I paste it below the default text generated by the Dropbox iOS app when e-mailing a link to a file, the spaces between paragraphs is doubled.
    It seem to be some phantom formatting in my Page document beause I tested by pasting a long e-mail below the Dropbox text and it's still single spaced. For some reason my Pages text goes from single spaced to double spaced when I paste it below that default message that Dropbox iOS generates when you attempt to e-mail a file link.

    Thanks, but this feature doesn't seem to work in iOS.
    The Pages document was created in Pages for OSX, but stored in iCloud. I usually e-mail links using the Dropbox iOS app and copy text from Pages iOS and want to paste into the e-mail created by Dropbox iOS. When I paste the text below the Dropbox link, the paragraphs are double spaced.

  • Please help, Very strange issue when generate different template

    Hello, Can someone help for below Strange Problem.
    1. The PDF template files are defined in BI Publisher Layout as a.pdf, b.pdf
    2. the parameters are defines in BI too
    4. logic as below, generated PDF based on a.pdf. generated PDF based on b.pdf,
    then merger a.pdf and b.pdf together.
    5. Codes for generated PDF as below
    this.reportDefinitionResp = bIPublisher.getReportDefinition(this.reportAbsolutePath, this.userID, this.password);
    this.reportRequest = new ReportRequest();
    this.reportRequest.parameterNameValues = this.reportDefinitionResp.reportParameterNameValues;
    this.reportResponse = bIPublisher.runReport(this.reportRequest, this.userID, this.password);
    6. the PDF generated by the a.pdf is correct, but generated by the b.pdf is not correct, instead it is same as a.pdf?
    so after merger, we get the duplicate pages.
    7. Not all templates has same issue, sometime we get this issue, how to fix it?

    Hi
    Click your HD to go to Finder,
    Go to Your User/Library/Caches,
    Drag com.apple.preferencepanes.cache to trash
    Restart your macbook.
    Good Luck.

  • Very strange issue when displaying the Account PDF Factsheet.

    We have a very odd situation.
    We have one users (user1) who has the same business role as everyone else in the office. They can enter the UI (CRM 7), display an account and then click on the PDF Factsheet option. It seems to process and then simple says 'Done', but there's no PDF document displayed. At first I thought it was an Adobe issue, but, if someone in the office (user2) logs into SAP on user1's  PC (in the same Windows session), they can perform the same process in the UI and the PDF is displayed, so it can't be a PC related issue, and must somehow be related to user1's SAP profile or role in some way.
    Comparing User1 and User2's roles displays no differences, and their SU01 entries are also the same.
    Can anyone come up any recommendations as to what it could be?.
    I've more or less exhausted all my options.
    Jason

    I think we have discoverd what is causing the problem.
    In CRM 7, when you view an Account (BP) the first assignment block to be show is the account details block. If you have this block collapsed (not expanded) or not on the screen at all then PDF fact sheet does not work. If I then expand the Account details block and review the PDF Fact Sheet, it then displays perfectly.
    I guess there must be some dependancy of the PDF Fact sheet on the Account details block. I placed a breakpoint (normal and external) in the method of the class CL_UIU_PRN_ACCOUNT, but this code never gets called when the Account details block is collapsed. I'll have to find out what code is executed before this class/method is called.
    Jason

  • ENS for Calendar Server strange issue when handling special characters

    The problem is basically that the ENS message isn't fully flushed to the stream when the generated event (an appointment creation for example) has special characters such as "ñ", "á","é". Maybe are encoded in more than one byte but it flushes the buffer using characters * character_size and character_size is not always 1.
    If I make a second appointment the buffer is flushed and I get the rest of the first notification and the new one.
    Perhaps it is a configuration case and I should configure ENS to support more languages.
    Could you help me?
    Thank you,
    Best regards.

    Thank you Shane.
    I've run the sample and it works fine.
    Perhaps it's not a bug but it's very strange the behaviour ens has with events with special characters. This is what I do step by step:
    1. I subscribe for all events and all the users
    2. I create and appointment with special characters
    3. I receive the event notification
    GAP/1.0 1b 3 1915 enp:///ics/caleventcreate?calid=[email protected]&uid=000000000000000000000000000000000b2c934cc04e0000140000001f130000&rid=0|ntfy|00000000
    The number 1915 should be the message length so I try to read 1915 bytes. However I can only read 1903 bytes. In this 1903 I have the full xml with the vcalendar.
    4. I create a second appointment
    5. The message I received is something like "\0\0\0\0\0\0\0\0\0\0\0\0" which is 1915-1903
    6. I have to discard this message because it's invalid
    7. I receive the event notification
    I can fix my custom client and discard this "\0\0\0..." messages but It's a strange behaviour. Perhaps the protocol is as is but I thought it was a bug.
    Thank you Shane.

  • Very strange issue when using initial context to lookup for beans...

    hi, friends,
    I am currently try to call a bean from a remote ejbclient.
    I set the initialcontext like this with the url suppose to be:
    Properties p = new Properties();
    p.put(Context.INITIAL_CONTEXT_FACTORY,
    "weblogic.jndi.WLInitialContextFactory");
    p.put(Context.PROVIDER_URL, url);
    ctx = new InitialContext(p);
    and look up home like this with the Name suppose to be:
    Object h = null;
    h = ctx.lookup(Name);
    but the strange thing is, the programme just stops when it is doing ctx.lookup(Name); However I try to log it, but it is just stopping there, without throwing any exceptions and errors.
    But, when I gave it a wrong name to like at, it could go through ctx.lookup(Name), and throw some exceptions like "unnable to look up beans.." which I put in the catch part...
    I try to echo the "ctx", and it is not null. and I try to echo "h", but it just stop before the "h" getting anything...
    the ejbclient is compile with jdk 1.4, because it is on a server with jdk 1.4, and deployed on weblogic 8.1. and the bean.java is compiled with jdk 1.5, and deployed on weblogic 10.
    Does anyone knows what is really going on here, when doing the lookup, what happened?
    How could I know whether there are the ejbs I need to call are existing in the pool?
    Thanks..
    Looking forward helps. such an problem has bothered me for a couple of days, and my boss is pushing me on this. but I haven't get any idea on it...:(

    And now the stranger things here... I didn't do much change to both the remote bean side and the client side, what I did is most like change it to something, and tried with failure, and change back.
    But today 's morning, when I just change everything back to suppose to be, and it can find the homebean:
    [2008-11-14 11:21:18,436] [ INFO] [Thread-85] - {} getRemoteBean(Unknown Source) Looking up RepairEJB with JNDIName: RepairGatewayEJB_slsb
    [2008-11-14 11:21:18,531] [ INFO] [Thread-85] - {} getRemoteBean(Unknown Source) h is not null!!
    [2008-11-14 11:21:18,532] [ INFO] [Thread-85] - {} getRemoteBean(Unknown Source) got h: weblogic.rmi.internal.BasicRemoteRef@121 - hostID: '-891706141070674357S:113.128.134.59:[40010,40010,-1,-1,-1,-1,-1]:VPFSCTech:AdminServer', oid: '289'
    [2008-11-14 11:21:18,533] [ INFO] [Thread-85] - {} getRemoteBean(Unknown Source) After ctx.lookup();
    [2008-11-14 11:21:18,535] [ INFO] [Thread-85] - {} getRemoteBean(Unknown Source) homeBean is weblogic.rmi.internal.BasicRemoteRef@121 - hostID: '-891706141070674357S:113.128.134.59:[40010,40010,-1,-1,-1,-1,-1]:VPFSCTech:AdminServer', oid: '289'
    [2008-11-14 11:21:18,537] [ INFO] [Thread-85] - {} getRemoteBean(Unknown Source) After home bean;
    [2008-11-14 11:21:18,589] [ INFO] [Thread-85] - Waiting for a request ...
    but unfortunately again it just stopped at
    remoteBean = homeBean.create();
    with no errors and exceptions...
    Does any experienced friends ever have this problem before?

Maybe you are looking for

  • Computer is super slow x201

      I don't know what's wrong with my computer but it goes really slow sometimes. I'm not even referring when it's on battery or anything like that. In fact, the power plan is Maximum Performance. My system is i7 640LM, win x64, 3gb pc 8500 1067MHz, 25

  • Is it possible to display GPS info from a COOLPIX S800c in Aperture 3?

    Is it possible to display GPS info from a COOLPIX S800c in Aperture 3?

  • Database notifications

    Is there any database notification functionality in XI JDBC adapter? What I means by notification is, as soon as record got inserted, updated and deleted, that record should be sent to XI immediately. Is there a configuration for that?

  • Use an imported RFC's type as type in the custom data object

    Hello, I've imported an RFC function in my process. There were created automatically some RFC types describing RFC's input\output parameters. Now I want to create my custom data object type and want to use previously created type in my data object, b

  • Add Datestamp in Task Notes ?

    Is there already a key combination (shortcut) that allows for adding a datestamp to Tasks>Notes ? I use Outlook to sync my tasks to the BB.  I already have a datestamp app that allows adding datestamps in Outlook, so now I am looking for the same thi