LR5.3 Export issue with Sequence Renumbering

I just discovered an issue with the LR5.3 Export module on my Windows 7 system when exporting JPEG image files with 'Sequence' File renaming and 'Original' File Settings to a subfolder. When exporting approximately 100 JPEG image files LR shows a file count in the subfolder of ~1/2 the actual file count and the ability to 'Synchronize Folder' disappears. The correct number of files appear in the subfolder using Windows Explorer, so they all were successfully exported and renamed properly. LR must be closed and reopened to restore the ability to 'Synchronize Folders' and/or 'Import' images using the Import module. I've never encountered this problem before since I normally process raw image files, which do not exhibit this issue.
Here are screenshots:

Posted to the Photoshop Family site as a problem:
http://feedback.photoshop.com/photoshop_family/topics/lr5_3_export_sequence_numbering_issu e

Similar Messages

  • Issue with sequence.currval in INSERT ALL...

    Hi Gurus,
    I am having an issue with using sequence.currval in INSERT ALL with WHEN clause.Please check following example
    Let say I have 4 tables
    1) SOURCE_PARENT
    PARENT_ID
    ========
    10
    20
    2) SOURCE_CHILD
    PARENT_ID CHILD_ID
    ========= ========
    10     1
    10     2
    20     1
    20     2
    Now i have another 2 tables same as above definition(DEST_PARENT, DEST_CHILD),which i want to populate with above source data with new parent_id's from a sequence.
    So I have used INSERT ALL as follows.
    =====================================================
    INSERT ALL
    WHEN (prev_parent_id = 0)THEN
    INTO dest_parent
    values(test_s.nextval)
    when 1 = 1 then
    INTO dest_child
    values(test_s.currval,child_id)
    select
    p.parent_id
    ,c.child_id
    ,LAG(c.parent_id, 1, 0) OVER (PARTITION BY c.parent_id ORDER BY c.child_id) prev_parent_id
    from
    source_parent p
    ,source_child c
    where
    p.parent_id = c.parent_id
    order by p.parent_id
    ========================================================
    Above INSERT ALL created following rows in DEST tables
    1) DEST_PARENT
    PARENT_ID
    =========
    75
    77
    2)DEST_CHILD
    PARENT_ID CHILD_ID
    ========= =======
    75     1
    76     2 --- this should be same as above record
    77     1
    78     2 --this should be same as above record
    As you can see test_s.nextval is executed 4 times even we do have WHEN Clause in INSERT ALL
    Can you please check what's wrong in this INSERT ALL statement?
    (or)
    Any otherway of doing these INSERTS in a single SQL statement?
    Any help would be appreciated!!
    Thanks
    srinivas.L

    Sorry, but this solution does not work. I had to remove the constraints on the two tables dest_parent and dest_child just to show you, how bad your solution is
    SQL> select * from source_parent;
    PARENT_ID
            10
            20
    2 rows selected.
    SQL> select * from source_child;
    PARENT_ID   CHILD_ID
            10          1
            10          2
            20          1
            20          2
            20          3
    5 rows selected.
    SQL> select * from dest_parent;
    no rows selected
    SQL> select * from dest_child;
    no rows selected
    SQL> insert all when
      2       (PREV_PARENT_ID = 0) then into DEST_PARENT
      3  values
      4       (TEST_S.nextval) when 1 = 1 then into DEST_CHILD
      5  values
      6       (case when PREV_PARENT_ID != 0 then TEST_S.currval - 1 else TEST_S.currval end,
      7        CHILD_ID)
      8       select P.PARENT_ID,
      9              C.CHILD_ID,
    10              LAG(C.PARENT_ID, 1, 0) OVER(partition by C.PARENT_ID order by C.CHILD_ID) PREV_PARENT_ID
    11       from SOURCE_PARENT P, SOURCE_CHILD C
    12       where P.PARENT_ID = C.PARENT_ID
    13       order by P.PARENT_ID
    14  /
    7 rows created.
    SQL> select * from dest_parent;
    PARENT_ID
            23
            26
    2 rows selected.
    SQL> select * from dest_child;
    PARENT_ID   CHILD_ID
            21          2   -- ??? !!!
            23          1
            23          2
            24          3   -- !!!
            26          1
    5 rows selected.
    SQL>

  • Video export issues with 5D mk II video

    Using a trial version I keep running into issues with video slideshow export.
    I have some 1080p '24fps' video clips from the 5D II, added them to a new Slideshow, did a Custom Export to h264 with height 720 (which from memory took the width to 1152) and 24fps - I want this to play on AppleTV, but the resulting video starts ok, but has multiple sections of blank video - in QT the frame rate has also been upped to 36fps!
    It also takes a ridiculous amount of time to export a short clip, but that's seems par for the course for many of Apple's apps. This is on a 2008 8x3GHz Mac Pro with plenty of RAM, though running Leopard.
    Anyone done any A/Bs of performance in Leopard vs Snow Leopard - does it make better usage of multiple cores? (They all have a little activity but it's 10% or so, perhaps 1 core at 70-80%, I can't understand even if it's not using all fully why one isn't getting maxed out with the conversion process).
    The slideshow export function seems incredibly buggy - it used to output using AppleTv preset with incompatible frame rates, though they may have fixed that.
    Message was edited by: Alley_Cat

    DLScreative wrote:
    Just a thought, but 24p was just added to the markII through a firmware update.
    Yes, which is why I thought it would be great for AppleTV which can only officially support 720p at 24fps (though 25fps will often work).
    If I use an AppleTv preset it will now rescale to 960x540, but I want to use 1280x720.
    Previously in 3.0 the AppleTV preset output 720p but at 30fps which is too high for AppleTV.
    Are you sure it's not the footage? Have you tried it in FCP? Also, it maybe that 24p isn't supported in A3, but this all just conjecture on my part.
    Good thought, but I would imagine QT is the engine supporting the Aperture exports, and if parameters are set correctly it should give the appropriate output.
    I'll try using QT Pro and see what that does with a clip.

  • Export Issues with Compressed Partition Tables?

    We recently partitioned and compressed some large tables. It appears, but I'm not sure yet, that this is causing the export to run extremely slow. The database is at 10.2.0.2 and we are using the exp utility, not datapump. Does anyone know of any known issues with using exp to export compressed, partitioned tables?

    can you give more details of the table structure with dbms_metadata if possible, and how you are taking the export please?
    did you try to take an sql*trace of the export process to see what is going on behind, this is an introduction if you may need;
    http://tonguc.wordpress.com/2006/12/30/introduction-to-oracle-trace-utulity-and-understanding-the-fundamental-performance-equation/

  • Issues with Sequence Generator

    I'm having trouble with Sequence generator not generating continuous numbers starting from 1, each time I run the mapping.
    I want the Sequence to start from 1, each time the mapping is run. For this to happen, I'm using a pre-mapping operator which uses an oracle procedure to reset the sequence.
    But, the sequence generates the numbers from some weird number, say 3508 and then jumps to 5006 and so on. I'm not able to track what's wrong with the sequence. I have stopped the caching in Sequence but still it hasn't helped. I'm sure and have verified that the procedure being used to reset the sequence is running fine.
    Please suggest some additional parameters/properties at OWB level to be checked for the sequence, if any OR any thoughts on why the sequence is not starting from 1. Thanks in advance.
    Thanks,
    Sachin
    Edited by: 850549 on Apr 23, 2011 11:43 AM
    Edited by: 850549 on Apr 23, 2011 11:44 AM

    Could you check whether the sequence you use has a cache value greater than 1 defined in the database. This way if your database regularly should be stoped, e.g for offline backup, you'll loose the sequence values that were unused in memory at that time. That way the gaps in your surrogate ids would be explainable.

  • Action batch export issue with image trace

    So, currently I'm working on batch processing jpeg sequences using illustrator's image trace and distortion effects. I have batch exported the image traces of the sequences via Adobe bridge.  Now I'm trying to create an action which opens the .ai files containing those image traces, apply a graphic style to the trace, and export a png from that.  I'm banging my head against the wall trying to get this to work right now. If I do the steps (step by step... not using a recorded action) I want on a single file, it works great, but the moment I batch export using the action I've created, it puts the original .png image that the image trace was linked to, on top of the image. The result is a bunch of .png exports that look exactly like my original image sequence.  If I add a "save" function to the action and open the resulting .ai files, I can see that the image trace vectors are in the file. The "linked png" however visible on the layer above those vectors.  Anyone have any idea what I'm doing wrong? How do I get rid of that pesky linked image.
    Also, for anyone who might be thinking that it has something to do with expanding the image trace before applying effects, this issue I'm running into, I've determined, is happening higher up in the hierarchy of the actions... If I simply make an action to open the image trace illustrator file and save it back out, the same issue occurs... placing the .png "linked file" on top of the vector image.
    While I'm at it, I might as well ask if anyone knows how to change the illustrator default image trace preset.... Without being able to change it, or much less specify in the action sequence that I'd like to use a user created image trace preset rather than the default setting, it's greatly overcomplicating my workflow. Makes what could easily be one-step batch processing into two. Seems pretty silly if you ask me.
    Please, if you guys have any insights on this, let me know. It's super frustrating... By the way, if you're wondering what type of effect I'm going for, the idea (as well as some explanation into their own process) starts at 12:44 of this video (http://vimeo.com/77427470).
    THANKS!

    Just wanted to let you guys know, for anyone who might be having my same issue... My home computer, even after a fresh install of Illustrator, was still placing the linked jpeg over the traced vector shapes when batch exporting... I did however find a workaround.  Rather than using Bridge CS6 for the batch image tracing, I used Bridge CS5 to trace in Illustrator CS5. Then, I used Illustrator CS6 to batch export an action that imported and applied an effect to those image traced sequences.  When you do this, it forces you to expand the tracing on import (because of the difference in Illustrator versions I'm assuming).  This way, when you batch run the action, it's already working with expanded vector shapes.  Not sure why this works, but it does.
    Also, I was having some issues getting Illustrator to apply the graphic style when batch exporting. I got it to work by copying an object with that particular graphic style to the clipboard, then adding in the action I was running a "paste" command, followed by a "clear" command.  I can only assume that Illustrator was having issues loading custom graphics styles while batch exporting. The paste/delete technique is annoying, but gets it done.
    Anyways. Just wanted to check in on this one. I'm happy I was able to muscle my way through it all.

  • French guy have exportation issue with AE CS5

    Hello,
    First, I'm French. My English is bad. I'm sorry.
    So I am currently editing a documentary on Final Cut Pro 7.0.3
    I work on Mac OS X Version 10.6.7
    Processor: 2.8 GHz Quad-Core Intel Xeon
    Memory: 16GB DDR3 1066 MHz
    I shot with a Canon XF105.
    I exported some shots that I wanted to edit or where I wanted to add animation (type banner presentation)
    I have exported quicktime sequence for later import to After Effects CS5.
    And when I have finished and I have exported  those shots from After Effects, I find myself quite often with images that bug, much like when you re-record on a videotape at the time of VCRs.
    http://imageshack.us/photo/my-images/849/capturedcran20120507120.png/
    I export in optimal rendering parameters, with the Quicktime Animation codec.
    I really do not understand what the problem is due, I've never met before.
    If you could help me, it would be great, because my deadline is approaching and I'm running out of ideas ...
    Thank you in advance for your help!

    The regularity of the patterns would suggest that these are decode errors in the MPEG stream, possibly a timecode issue. Can you open your footage natively in AE? Do you see the same artifacts then? Also what if you try other CoDecs like PNG or ProRes? In any case, double-check your framerate and export settings.
    Mylenium

  • LR5 exporting issues

    I am currently running Windows 8.1 on a brand new computer with a 2GB ASUS NVIDIA GEFORCE GT 640 video/graphics card 4GB ram memory and 1 TB of HDD space and LR5 wont allow me to export more than 1 image at a time.  I just upgraded to the Photoshop cc and LR5 promo last week and have had nothing but issues exporting files.  Keeps telling me not enough memory and when I check the Task Manager LR5 is the only thing running.  Am I the only one this is happening to???  I am considering going to 64 bit to add more memory but not sure that is the issue being that I am meeting and exceeding all requirements for LR5.

    I am exporting from RAW to jpg.  Raw files are 20-25mb each and the final jpg after exporting is 9-11mb.   I have 8gb of memory but since I am running 32bit it only sees 3.48gb  How come we can't change LR settings like below??  It is showing on my system that LR maxs out at 716mb of the 3480mb that I have and runs at approx 540mb and exceeds it quite often
    If you use Photoshop with Lightroom, check Photoshop's RAM setting
    See the Max Out on RAM and Memory Usage sections in this TechNote to determine the best RAM settings for your computer. To change your memory settings in Photoshop, choose Apple > Preferences > Performance (Mac OS) or Edit > Preferences > Performance (Windows).

  • Crystal XI R2 exporting issues with double-byte character sets

    NOTE: I have also posted this in the Business Objects General section with no resolution, so I figured I would try this forum as well.
    We are using Crystal Reports XI Release 2 (version 11.5.0.313).
    We have an application that can be run using multiple cultures/languages, chosen at login time. We have discovered an issue when exporting a Crystal report from our application while using a double-byte character set (Korean, Japanese).
    The original text when viewed through our application in the Crystal preview window looks correct:
    性能 著概要
    When exported to Microsoft Word, it also looks correct. However, when we export to PDF or even RPT, the characters are not being converted. The double-byte characters are rendered as boxes instead. It seems that the PDF and RPT exports are somehow not making use of the linked fonts Windows provides for double-byte character sets. This same behavior is exhibited when exporting a PDF from the Crystal report designer environment. We are using Tahoma, a TrueType font, in our report.
    I did discover some new behavior that may or may not have any bearing on this issue. When a text field containing double-byte characters is just sitting on the report in the report designer, the box characters are displayed where the Korean characters should be. However, when I double click on the text field to edit the text, the Korean characters suddenly appear, replacing the boxes. And when I exit edit mode of the text field, the boxes are back. And they remain this way when exported, whether from inside the design environment or outside it.
    Has anyone seen this behavior? Is SAP/Business Objects/Crystal aware of this? Is there a fix available? Any insights would be welcomed.
    Thanks,
    Jeff

    Hi Jef
    I searched on the forums and got the following information:
    1) If font linking is enabled on your device, you can examine the registry by enumerating the subkeys of the registry key at HKEY_LOCAL_MACHINEu2013\SOFTWARE\Microsoft\Windows NT\CurrentVersion\FontLink\SystemLink to determine the mappings of linked fonts to base fonts. You can add links by using Regedit to create additional subkeys. Once you have located the registry key that has just been mentioned, from the Edit menu, Highlight the font face name of the font you want to link to and then from the Edit menu, click Modify. On a new line in the dialog field "Value data" of the Edit Multi-String dialog box, enter "path and file to link to," "face name of the font to link".u201D
    2) "Fonts in general, especially TrueType and OpenType, are u201CUnicodeu201D.
    Since you are using a 'true type' font, it may be an Unicode type already.However,if Bud's suggestion works then nothing better than that.
    Also, could you please check the output from crystal designer with different version of pdf than the current one?
    Meanwhile, I will look out for any additional/suitable information on this issue.

  • Pages from iPad - Export issues with pdf, word

    issues when exporting documents out of Pages from iPad using pdf, and getting... "Cannot extract the embedded font 'VZEENN+Georgia-Bold'. Some characters may not display or print correctly". I have 10.5.8 and Adobe latest version 9.4... I have also tried different and more universal fonts on Pages like Arial or Helvetica with no success... Really frustrating to have so critical bugs. Any work arounds from anyone? Thanks!

    Yes, you can send the file as an email attachment to yourself and open it on a computer and print.
    You can use DropBox to place the files on the computer to print
    These are easiest if the file is saved (exported) as a PDF file so it is portable.
    You can also use an AirPrint enabled printer and print directly from the iPad without going through the computer.  But buying another printer is much more expensive than the cost ($20) of Pages for the MBP.
    If you already have a wireless printer, you can try the website for the manufacturer and see if there is an upgrade for the printer to enable it for AirPrint.

  • Please help with export issue with HD.

    I have a current project set at 1920x1080 HDTV 1080i (16x9) and my customer has decided to change his mind and not go HD 16x9 which I had shot in specifically for this reason. What settings could I use to export for 720x480 DVD 4:3? Please help.
    Thanks
    Joe

    +Do I copy and past the Sequence file from the HD into a DV NTSC new project? Yes or no?+
    Yes. Once you are done export it to Compressor to encode your video into an m2v and the audio into an ac3 dolby stereo. Then import those as assets in DVDstudio4, create your menu, if you need one and burn your DVD.
    +Can you give me a more step by step?+
    As I asked before...are you not familiar with using Compressor and/or DVD Studio Pro?
    If not (and if the links I sent to you are not helpful enough) then follow these two approaches:
    (Hope Shane Ross doesn't mind if I report one of his stock answers about a basic way to make a DVD followed by my basic "step by step" use of Compressor in order to give the OP a quick and easy support).
    Shane Ross wrote:
    +The absolute simplest way to make a DVD using FCP and DVDSP is as follows:+
    +1. Export a QT movie, either a reference file or self contained using current settings.+
    +2. Open DVDSP, select the "graphical" tab and you will see two little monitors, one blue, one green.+
    +3. Select the left blue one and hit delete.+
    +4. Now, select the green one, right click on it amd select the top option "first play".+
    +5. Now drag your QT from the broswer and drop it on top of the green monitor.+
    +6. Now, for a DVD from an HD source, look to the right side and select the "general tab" in the track editor, and see the Display Mode, and select "16:9 pan-scan."+
    +7. Hit the little black and yellow burn icon at the top of the page and put a a DVD in when prompted. DVDSP will encode and burn your new DVD.+
    +THATS ALL!!!+
    +NOW...if you want a GOOD LOOKING DVD, instead of taking your REF movie into DVD SP, instead take it into Compressor and choose the BEST QUALITY ENCODE (2 pass VBR) that matches your show timing. Then take THAT result into DVD SP and follow the rest of the steps. Except you can choose "16:9 LETTERBOX" instead of PAN & SCAN if you want to see the entire image.+
    Gogiangigo wrote:
    Creating your MPEG2 and AC3 files with Compressor:
    Compressor will create an Mpeg2 of your edited video and an ac3 (dolby stereo) for the audio (You can't create ac3audio with DVDstudio).
    (Use google for any farther information about any word or definition that remains slightly unclear to you).
    After that is done burning your DVD with DVDStudio will be quicker and easier.
    Step 1
    Once you are done with the edit you can:
    either export it straight from the timeline to Compressor (File>Export>Using Compressor)
    or create a QT movie (check self-contained in the export window) and import into Compressor after you open it.
    If you export it straight from the timeline Compressor will open automatically,
    if you wish to use the self-contained QT movie you can still export it from an open FCP project or open Compressor independently. If the the latter is your case once you open Compressor click on Add File in the toolbar (top left corner ).
    In both cases your video will appear in an untitled project right below the toolbar. You can see the movie (or FCP) icon and the title of your project.
    Now, the simplest way to proceed is as follow:
    you see the text next to the icon of your movie (in the blue rectangle) saying "drag here settings and destinations"? Now go to the settings window below, you can see the settings and destinations tabs. Go to Settings>Apple 4 groups>DVD 10 groups>DVD best quality 90 minutes two settings. This is the most common setting to use.
    In a nutshell drag the DVD best quality 90 minutes folder over the "drag settings and destinations here" text. Choose your destination. If you click each setting the inspector window activates. Now before we go ahead I suggest you to read the manual and understand the importance of the inspector window and its functions. In particular read about Avarege bit rate, maximum bit rate and in general Variable frame rate (VBR) and constant frame rate. With regard to audio read about ac3.
    This time we leave default settings and proceed by clicking the Submit button.
    In the preview window, right below the player commands you can see a little arrow and a date, click on the arrow and you can see that Compressor is encoding your video.
    Step 2
    When the encoding process is over open DVDstudio.
    See the first button of the toolbar , top left? Click on Import Asset, find your encoded audio and video files and open them.
    Now since your movie has been already compressed video(Mpeg2) and audio (ac3) they will show in the assets tab below the graphical tab followed by two green lights.
    From now follow Shane Ross's steps from point 3 if you don't want a menu.
    If you need a menu there's a simple video tutorial that came with FCP studio 2 discs . Take a look at that.
    Best,
    G.

  • Yet another export issue with Aperture 3

    Judging by a search of topics, there seem to be a myriad of problems associated with getting files out of Aperture, some of which represent occult setting issues, others which seem to be actual bugs.  I've run into an issue which seems to defy categorization, and I'm not sure if it's me doing something wrong, or if it is actually yet another bug with this software.  I've been an Aperture user since 1.0 and I have to say the current version I'm running (3.4.3) is by far the worst yet.  Anyway, enough whining.  Here are the issues:
    I'm running Aperture on a 6 core Mac Pro with Lion 10.7.5.  There are two thing happening. 
    1.  Exporting JPEGs is INCREDIBLY slow - perhaps as long as 4 or 5 minutes for a 3MB file. 
    2.  This is the one driving me batty right now.  Tried exporting a batch of images as JPEGs at the 50% original size setting.  The master files are large 16 bit TIFF images from Nikon D800 RAW files, post-processed in Nik HDR Efex Pro 2.  They are 80-100MB in size.  When I export the images to a file on my Desktop, it consistently exports 6- 10 KB thumbnails.  I've checked and rechecked my export settings and can find nothing amiss there.  Has anyone else had a similar experience?  Could the view I'm working in have anything to do with this?  I work 95% of the time in split view.
    Thanks,
    Russ

    I agree that there re a lot of posts about exporting, but a very large number of them refer to the same thing, and it's not a bug, but rather a misunderstanding.
    For instance:
    Tried exporting a batch of images as JPEGs at the 50% original size setting.
    Okay.
    The master files are large 16 bit TIFF images from Nikon D800 RAW files, post-processed in Nik HDR Efex Pro 2
    Not relevant.
    They are 80-100MB in size. 
    Not relevant either.
    Why?
    Because size refers to the dimensions of the image. So a 1,000 x 1,000 pixel image exported at 50% will turn out as 500 x 500 pixels.
    Were you expecting a jpeg between 40 and 50 MB? That's Jpeg quality or the amount of compression applied to the image. And as you're compressing a lossless format (tiff) to a lossy one, and one with an aggressive compression algorithm, he resulting Jpeg, even at high quality, will be much, much smaller, more likely in the 6 - 8 MB range.
    That's the nature - and indeed the point - of Jpegs.
    So, if you're getting 6 - 10 kb images, you're exporting at a very low Jepg Quality.
    This may also explain why it's taking so long to export. Getting rid on 99.99% of the data and compressing into 10kb is always going to take time.

  • Export issue with avi and mp4

    With cs6 I had no problem exporting a avi and mp4 project but now with CC i cannot mix the two and avi will not export on their own?  I also always get this message.
    Error compiling movie.
    Unknown error.

    -http://helpx.adobe.com/premiere-pro/kb/error-compiling-movie-rendering-or.html
    -and nested sequences http://forums.adobe.com/thread/955172

  • 9.2 issue with  Sequence Numbers

    We are using OWB 9.2 and RDBMS 9.2 on windows NT.
    When using set based functionality i.e. Merge Statement, or Row Based, we have noticed that our sequence object gets incremented during updates even though it is only associated with the insert and not the update.
    Is this normal behaviour or an issue ???

    Jagadish,
    You will not get updates because you by default match on the keys on the table. In other words you emp_id and the seq.nextval are matched to what you have in the table and they will never match (because of the nextval).
    Two things you can do:
    - Change the composite key (e.g. change the design)
    - Change the configuration in OWB
    Let's look at the second one, what you must do is the following:
    1) On the target table, select operator properties and find "Match by Constraint". Highlight that and change this setting to No Constraints.
    You now are not using the constraint, so you must tell OWB what to match on. You do this by:
    2) Highlight the EMPID column and select attribute properties
    3) In the loading properties node set the following for EMPID:
    Load column when inserting row => Yes
    Load column when updating row => No
    Match column when updating row => Yes
    4) Highlight the other columns, for example ATTEMPT_COUNT and select attribute properties
    5) In the loading properties node set the following for ATTEMTP_COUNT:
    Load column when inserting row => Yes
    Load column when updating row => Yes
    Match column when updating row => No
    This should allow you to update based on the EMPID alone.
    Hope this helps,
    Jean-Pierre

  • JBoss Clustering | Issue with sequence generator

    Hi all,
    I am facing a strange issue. I have 2 instances of jboss on the same machine and we have a number of stateless session beans used in our application. Now, I have written a Stateless session bean for sequence generator. I am able to run it on one instance but it is failing on another instance (even if I am only this running this one instance).
    It gives the following error:
    com.proximities.common.utils.SequenceIdGeneratorUtil: Method: getSequence(): Message: TableKey : VENUE
    2005-08-02 11:19:58,406 DEBUG [com.proximities] Class: utils.SequenceIdGeneratorUtil: Method: getSequence(): Message: Fetching from sequence proxy factory: VENUE
    2005-08-02 11:19:58,406 DEBUG [com.proximities] Class: ejb.EJBLookupUtil: Method: getInitialContext: Message: Using JNDI initial context: org.jnp.interfaces.NamingContextFactory
    2005-08-02 11:19:58,406 DEBUG [com.proximities] Class: ejb.EJBLookupUtil: Method: getInitialContext: Message: Using JNDI URL: jnp://localhost:11099
    2005-08-02 11:19:58,406 DEBUG [com.proximities] Class: ejb.EJBLookupUtil: Method: getInitialContext: Message: Using JNDI initial context prefix: org.jboss.naming:org.jnp.interfaces
    2005-08-02 11:19:58,421 DEBUG [com.proximities] Class: ejb.EJBLookupUtil: Method: getSequenceFacade: Message: SequenceStoreFacadeHome - Sequence store facade home returned from ejbHomeFactory isnull
    2005-08-02 11:19:58,421 FATAL [com.proximities] Class: ejb.EJBLookupUtil: Method: getSequenceFacade: Message: Exception during the invoking the remote interface
    2005-08-02 11:19:58,421 INFO [STDOUT] java.lang.NullPointerException
    2005-08-02 11:19:58,421 INFO [STDOUT] ejb.EJBLookupUtil.getSequenceFacade(Unknown Source)
    2005-08-02 11:19:58,421 INFO [STDOUT] sequence.SequenceProxyFactory.getSequenceStore(Unknown Source)
    2005-08-02 11:19:58,421 INFO [STDOUT] sequence.SequenceProxyFactory.reserveBlock(Unknown Source)
    2005-08-02 11:19:58,421 INFO [STDOUT] sequence.SequenceProxyFactory.<init>(Unknown Source)
    2005-08-02 11:19:58,421 INFO [STDOUT] sequence.SequenceProxyFactory.getSequence(Unknown Source)
    2005-08-02 11:19:58,421 INFO [STDOUT] at common.utils.SequenceIdGeneratorUtil.getSequence(Unknown Source)
    2005-08-02 11:19:58,421 INFO [STDOUT] at dataaccess.VenueDAO.add(Unknown Source)
    2005-08-02 11:19:58,421 INFO [STDOUT] at dataaccess.VenueDAO.update(Unknown Source)
    2005-08-02 11:19:58,421 INFO [STDOUT] at dataaccess.common.GenericDataAccessManager.executeModify(Unknown Source)
    2005-08-02 11:19:58,421 INFO [STDOUT] at business.mediator.ManageVenueMediator.insertIntoVenues(Unknown Source)
    2005-08-02 11:19:58,421 INFO [STDOUT] at business.sessionfacade.VenueManagementFacadeEJBean.insertIntoVenues(Unknown Source)
    2005-08-02 11:19:58,421 INFO [STDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    2005-08-02 11:19:58,421 INFO [STDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    2005-08-02 11:19:58,421 INFO [STDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    2005-08-02 11:19:58,421 INFO [STDOUT] at java.lang.reflect.Method.invoke(Method.java:585)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.invocation.Invocation.performCall(Invocation.java:345)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionContainer.java:214)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionInterceptor.java:185)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstanceInterceptor.java:130)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.webservice.server.ServiceEndpointInterceptor.invoke(ServiceEndpointInterceptor.java:51)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.ejb.plugins.CallValidationInterceptor.invoke(CallValidationInterceptor.java:48)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:105)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:335)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:166)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:139)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.ejb.plugins.CleanShutdownInterceptor.invoke(CleanShutdownInterceptor.java:264)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor.java:122)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.ejb.SessionContainer.internalInvoke(SessionContainer.java:624)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.ejb.Container.invoke(Container.java:873)
    2005-08-02 11:19:58,421 INFO [STDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    2005-08-02 11:19:58,421 INFO [STDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    2005-08-02 11:19:58,421 INFO [STDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    2005-08-02 11:19:58,421 INFO [STDOUT] at java.lang.reflect.Method.invoke(Method.java:585)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:141)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:644)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.invocation.local.LocalInvoker$MBeanServerAction.invoke(LocalInvoker.java:155)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.invocation.local.LocalInvoker.invoke(LocalInvoker.java:104)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.invocation.InvokerInterceptor.invokeLocal(InvokerInterceptor.java:179)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.invocation.InvokerInterceptor.invoke(InvokerInterceptor.java:165)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.proxy.TransactionInterceptor.invoke(TransactionInterceptor.java:46)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.proxy.SecurityInterceptor.invoke(SecurityInterceptor.java:55)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.proxy.ejb.StatelessSessionInterceptor.invoke(StatelessSessionInterceptor.java:97)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.proxy.ClientContainer.invoke(ClientContainer.java:86)
    2005-08-02 11:19:58,421 INFO [STDOUT] at $Proxy92.insertIntoVenues(Unknown Source)
    Now within the server logs, I can see that it has loaded and cached the home interface of that bean, but dont know why its not picking it up.
    Here are the logs for the same:
    [org.jboss.ejb.EjbModule] startService, starting container: SequenceStoreFacade
    [org.jboss.system.ServiceController] starting service jboss.j2ee:jndiName=ejb.SequenceStoreFacadeHome,service=EJB
    [org.jboss.ejb.StatelessSessionContainer] Starting jboss.j2ee:jndiName=ejb.SequenceStoreFacadeHome,service=EJB
    [org.jboss.ejb.StatelessSessionContainer] Begin java:comp/env for EJB: SequenceStoreFacade
    [org.jboss.ejb.StatelessSessionContainer] TCL: org.jboss.util.loading.DelegatingClassLoader@188d92e
    [org.jboss.ejb.StatelessSessionContainer] Bound java:comp/ORB for EJB: SequenceStoreFacade
    [org.jboss.ejb.StatelessSessionContainer] Bound java:comp:/HandleDelegate for EJB: SequenceStoreFacade
    [org.jboss.ejb.StatelessSessionContainer] End java:comp/env for EJB: SequenceStoreFacade
    [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] SequenceStoreFacade cannot be Bound, doesn't have local and local home interfaces
    [org.jboss.proxy.ejb.ProxyFactory] (re-)Binding Home ejb.SequenceStoreFacadeHome
    [org.jboss.proxy.ejb.ProxyFactory] Bound SequenceStoreFacade to ejb.SequenceStoreFacadeHome
    [org.jboss.system.ServiceController] starting service jboss.j2ee:service=EJB,plugin=pool,jndiName=ejb.SequenceStoreFacadeHome
    [org.jboss.ejb.plugins.StatelessSessionInstancePool] Starting jboss.j2ee:service=EJB,plugin=pool,jndiName=ejb.SequenceStoreFacadeHome
    [org.jboss.ejb.plugins.StatelessSessionInstancePool] Started jboss.j2ee:service=EJB,plugin=pool,jndiName=ejb.SequenceStoreFacadeHome
    [org.jboss.system.ServiceController] Starting dependent components for: jboss.j2ee:service=EJB,plugin=pool,jndiName=ejb.SequenceStoreFacadeHome dependent components: []
    [org.jboss.resource.connectionmanager.CachedConnectionInterceptor] start called in CachedConnectionInterceptor
    [org.jboss.ejb.StatelessSessionContainer] Started jboss.j2ee:jndiName=ejb.SequenceStoreFacadeHome,service=EJB
    [org.jboss.system.ServiceController] Starting dependent components for: jboss.j2ee:jndiName=ejb.SequenceStoreFacadeHome,service=EJB dependent components: []
    BTW, I am using JCS for caching and JBoss 4.0. Any pointers will be most appreciated?
    Thanks,
    Vikrant Verma

    You'll get a lot more help with this by posting this to the JBoss forums. This forum is about the J2EE SDK which uses the Sun Java System Application Server.
    -Ian Evans

Maybe you are looking for