D810 images not displaying properly in preview app

So when I open an image like something I took from Photo Booth from Finder in Preview app, it loads fine. However, when I open a high res image JPG from my Nikon D810, the image loads initially, then quickly blanks out to all white. If I use the magnifier tool, it does show me magnified portions of the image, but the whole image won't show. Is there a maximum size limitation with preview app?
BTW, I don't think this repro'd before I updated to 10.10.3 (was 10.10.2). Is this an issue with Apple decommissioning iPhoto?

You could try some of these options here.
Mac OS X: How to troubleshoot a software issue - Apple Support
OR Follow these steps as a general software issue troubleshoot
finder > go > ( alt key ) > library
caches (delete all files not folder)
cookies (delete all files not folder)
launch agents (delete all files not folder)
saved aplication state (delete all files not folder)
finder > go > computer > mac hd > library
caches (delete all files not folder)
launch agents (delete all files not folder)
launch deamons (delete all files not folder)
then > restart
If neither of these help then contact apple support directly, unless anyone else can help on here.

Similar Messages

  • Images not displayed properly

    [Migrated from the Syclo Resource Center]
    prashanthi_vangala   01/03/2012 06:44,
    Hi,I am working on Agentry 5.4.0I have a list screen where for one of the columns I have a rule to display images ( I use checked and unchecked images ). Earlier the images were getting displayed properly on the ATE but  it is not working now and I did not make any changes to the image properties then.But after this, I tried couple of things with the image properties to make it work, like when I do not use any mask colour the image does not get displayed but when i use any maks colour the image gets displayed but its completely blacked out ( and thus for checked image, cannot see the check mark and its completely blacked out ).I face same issue with the login image as well. I added a new Image ( Logo ) to my App for the login Screen, but even this image does not appear on the login screen.
    I also tried deleting the Dev folder and re-publishing, but even this does not work.
      -Prashanthi
    Jason Latko   01/03/2012 11:42
    Try deleting the Application directory under your development server where the images reside and publish again.
      Completely clear your ATE and transmit again from scratch.
      Also, what mask color are you using?
      Try using a green hugh and not black or white for the mask.
    Jason Latko - Senior Product Developer at Syclo
    prashanthi_vangala   01/03/2012 12:38
    Hi Jason,Thank you for the reply.I already tried all the  things you have mentioned, but the same issue exits still.
    Prashanthi
    Jason Latko   01/03/2012 12:40
    Is it just the ATE, or do you have the same problems using the WIn32 or PPC clients?
    Jason Latko - Senior Product Developer at Syclo
    prashanthi_vangala   01/04/2012 06:21
    Hi Jason,Behaviour in ATE:I have changed the image now and tested with the new image . Now, its behaving strangely:When I do a sync after publishing or a reset of ATE; I see the new image properly displayed on the screen but when I leave the screen and come back to the same screen again, the new image is getting replaced by the old image ( atleast the old image is not displayed properly, it appears like a black square box..and because of the same issue I had with this image I switched to the new image ). Behaviour in Win32 Client:When I tested with the client, I see  the new image properly for the first time and when i leave the screen and come back the image disappears..This is the behaviour in client.
    Please suggest.
    -Prashanthi
    Jason Latko   01/09/2012 11:35
    Prashanthi,What did you use to create these images?
      They are simple bitmaps I assume?
      Try creating some very simple images using Microsoft Paint, then set a mask of green in Agentry.
      Your problem sounds familiar, but I can't find a matching bug in our database.
      Maybe someone else has experienced this?
      You could also try upgrading to a newer version of Agentry to see if the problem goes away.
      We are currently on version 6.0.4.Jason Latko - Senior Product Developer at Syclo
    prashanthi_vangala   01/11/2012 10:02
    Hi Jason,
    Thank you for the reply.
    But strangely, from past few days I see that the image is working fine again.
    But kept this topic open because it was wierd, that the image is working correctly again without making any major change. What I did was to just write the rule again which calls the image ( though i did this before and did not work then but worked now ) and to observe the image behaviour for few days.But it seems like it is fine now.
    Thanks and Regards,Prashanthi

    We am using "jv:imageButton" tag for displaying the image and below is the tag code,
    <jv:imageButton styleClass="buttonStyle"
    selected="true"
    onclick="networkCanvas.setInteractor(clientSelect)"
    image="../oracle/communications/inventory/ui/images/arrow.png" buttonGroupId="interactors"
    rolloverImage="../oracle/communications/inventory/ui/images/arrowh.png"
    selectedImage="../oracle/communications/inventory/ui/images/arrowd.png"
    title="#{inventoryUIBundle.SELECT}"
    message="#{inventoryUIBundle.SELECT}" />
    The able code is present in the below path,
    ..\public_html\oracle\communications\inventory\ui\network\page\NetworkView.jsff
    The images are present in the following path,
    ..\public_html\oracle\communications\inventory\ui\images\zoomrecth.png
    I am not thinking this is a Platform Beta 3 uptake issue. And I am suspecting an issue with integration of ilog with ADF. Any help in this regard would be helpful.
    regards,
    Chandra
    Edited by: user638992 on Feb 25, 2010 3:40 AM

  • Images not displayed properly.Any advice on that?

    Hi,
    I found the following code inside the forum and i'm trying to understand it.
    It appears to be a problem though. In particular the images(chess-pieces) are not displayed properly. The background of the gif images should be transparent but is not. Any advice?
    Thanks
    Here is the code:
    import java.awt.*;
    import javax.swing.*;
    public class ChessBoard10 {
    static final int PAWN = 0;
    JFrame frame;
    JComponent[][] checker;
    public ChessBoard10() {
    frame = new JFrame("CHESS GAME");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    Container con = frame.getContentPane();
    con.setLayout(new GridLayout(8, 8));
    checker = new JComponent[8][8];
    for (int row = 0; row < 8; ++row) {
    for (int col = 0; col < 8; ++col) {
    JComponent p = new JPanel();
    p.setBackground(setColor(row, col));
    checker[row][col] = p;
    con.add(p);
    frame.setSize(500, 550);
    frame.setVisible(true);
    Color setColor(int y, int x) {
    Color c;
    if (y % 2 == 1) {
    if (x % 2 == 1) {
    c = Color.white;
    } else {
    c = Color.black;
    } else {
    if (x % 2 == 1) {
    c = Color.black;
    } else {
    c = Color.white;
    return c;
    public void setPiece(Piece pc, int row, int col) {
    JComponent p = checker[row - 1][col - 1];
    //one base -> zero base conversion
    if (p.getComponentCount() > 0) {
    p.remove(0);
    p.add(pc);
    p.revalidate();
    /*test*/
    public static void main(String[] args) {
    int Bpawn = 0,
    Bbishop = 1,
    Bking = 2,
    Bknight = 3,
    Bqueen = 4,
    Brock = 5,
    Wpawn = 6,
    Wbishop = 7,
    Wking = 8,
    Wknight = 9,
    Wqueen = 10,
    Wrock = 11;
    ChessBoard10 cb = new ChessBoard10();
    for (int i = 1; i < 9; i++) {
    cb.setPiece(new Piece(Bpawn), 2, i);
    cb.setPiece(new Piece(Wpawn), 7, i);
    cb.setPiece(new Piece(Bking), 1, 4);
    cb.setPiece(new Piece(Bqueen), 1, 5);
    cb.setPiece(new Piece(Bbishop), 1, 3);
    cb.setPiece(new Piece(Bbishop), 1, 6);
    cb.setPiece(new Piece(Bknight), 1, 2);
    cb.setPiece(new Piece(Bknight), 1, 7);
    cb.setPiece(new Piece(Brock), 1, 1);
    cb.setPiece(new Piece(Brock), 1, 8);
    cb.setPiece(new Piece(Wking), 8, 4);
    cb.setPiece(new Piece(Wqueen), 8, 5);
    cb.setPiece(new Piece(Wbishop), 8, 3);
    cb.setPiece(new Piece(Wbishop), 8, 6);
    cb.setPiece(new Piece(Wknight), 8, 2);
    cb.setPiece(new Piece(Wknight), 8, 7);
    cb.setPiece(new Piece(Wrock), 8, 1);
    cb.setPiece(new Piece(Wrock), 8, 8);
    class Piece extends JPanel {
    String[] imgfile =
    "Bpawn.gif",
    "Bbishop.gif",
    "Bking.gif",
    "Bknight.gif",
    "Bqueen.gif",
    "Brock.gif",
    "Wpawn.gif",
    "Wbishop.gif",
    "Wking.gif",
    "Wknight.gif",
    "Wqueen.gif",
    "Wrock.gif" };
    public Piece(int type) {
    add(new JLabel(new ImageIcon(imgfile[type])));
    }

    Well, without actually testing the code which I most unfortunately can't do since my real computer is chrashed at the moment, try checking the
    boolean Component.isOpaque();otherwise try using .png's instead altough it shouldn't matter.
    This is just some general advices =(

  • Crystal Report Toolbar images not displaying properly in IE?

    Hi,
    I am using VisualStudio 2012 ,crystal report version 13.0.2000.0 and sp5.
    My problem is that after loading crystal report, toolbar image icons (such as print,export etc) are not showing properly in internet explorer(version ie10). But it is displaying correctly in chrome and firefox.
    What could be problem ?? Any help will be appreciated ..

    See this re. images:
    Visual Studio 2012 Crystal Report not working on Windows Server 2012/ 0x800a1391 &amp;#8211; JavaScript runtime error: &…
    Also, don't forget to do your own searches - search box is in top right corner and simple search strings are best. E.g.; 'Crystal net red x'.
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
      Follow us on
    Twitter

  • Master slide images not loading properly when previewing or when published

    I have created a master slide (including image) to be the background for my piece.  The image looks fine when I am in Captivate but when I preview the project the image does not display fully and only shows up bright bright white.  I tried publishing to see if this would make a difference but nothing.  I am using  a jpg image.
    Has anyone encountered this problem or does anyone have any ideas how I can make the image display?
    Thanks
    Jodie

    What is the slide quality? Default setting is Low (8-bit), depending on your JPEG-image quality this may be too low. Try to change to High or Optimized and see if this is better.
    Lilybiri

  • Logo image not displayed in PDF preview in HFR Studio reports

    Hello All
    I need to display a logo image on every page of an hfr report. The logo is visible in web-preview and print preview. But when the report is run in PDF preview, logo is not visible.
    A header text box is also used which visible in all formats but not the logo.
    Any pointers will be greatly appreciated.
    Thanks
    Neha

    The image is a jpg image. I have also tried using and image already saved in hfr's repository.
    But still I'm not able get the image in pdf format of report*
    The same image is visible in web-preview and print preview*
    I don't think issue is because of position of image because I tried including the image in an empty report as well.
    The problem is still there with the pdf preview*
    Is there something else that could be done to display the image in pdf preview of report????
    Thanks in advance..
    Neha

  • Images not displayed properly jv:imageButton tag

    Images are not displayed jv:imageButton tag. I am able to see the images sometimes, but not consistently. I have followed the steps mentioned from the Platform RI. I was able to see the images without any problem before Beta 3/JDev R1 uptake. I had migrated my code base from D7B7/Beta 2 to JDev R1/Beta 3 env. Images were displayed correctly in the iLog, in D7B7/Beta 2 environment properly without any issue.
    Any thoughts as to why this is happening.
    regards,
    Chandra

    We am using "jv:imageButton" tag for displaying the image and below is the tag code,
    <jv:imageButton styleClass="buttonStyle"
    selected="true"
    onclick="networkCanvas.setInteractor(clientSelect)"
    image="../oracle/communications/inventory/ui/images/arrow.png" buttonGroupId="interactors"
    rolloverImage="../oracle/communications/inventory/ui/images/arrowh.png"
    selectedImage="../oracle/communications/inventory/ui/images/arrowd.png"
    title="#{inventoryUIBundle.SELECT}"
    message="#{inventoryUIBundle.SELECT}" />
    The able code is present in the below path,
    ..\public_html\oracle\communications\inventory\ui\network\page\NetworkView.jsff
    The images are present in the following path,
    ..\public_html\oracle\communications\inventory\ui\images\zoomrecth.png
    I am not thinking this is a Platform Beta 3 uptake issue. And I am suspecting an issue with integration of ilog with ADF. Any help in this regard would be helpful.
    regards,
    Chandra
    Edited by: user638992 on Feb 25, 2010 3:40 AM

  • Png button image not display properly

    i have create two png image
    one for default
    and one for selected
    i assing both image to button view...
    but when run it to simulator as well as on iphone
    it will not display clear png image

    Also go through
    Look and Feel for "Button"Thanks
    --Anil                                                                                                                                                                                                                       

  • My programming? JRE 1.4 bug? Images not displayed properly!

    I made this simple card game which you can checkout at http://www.koutbo6.com I used AWT components and used Panels for drawing the cards and the main game panel has a null Layout. It runs perfectly on all java enabled browsers ... except for IE on windows XP.
    I came across a problem where the card images are not displayed at all. some images that are drawn disrectly on the backround are partially drawn or not drawn correctly. The IExplorere had microsft virtual machine donloaded for windows XP. I managed to correct the problem by disabling JIT compiling from IE advanced setting.
    Then I installed XP on another PC and was surprized that Microsoft stopped distributing the Java Virtual Machine for XP, so I opted for sun java plugin V1.4 and the same problems occur. There is no way to turn off JIT compiling and i read in oone of the bug postings that the option has been taken off in versio 1.4.
    when the problem occurs I noticed that g.drawString works perfectly and all the AWT components are displayed even in the main panel with the null layout. the problem occurs with displaying the images. It could be with the way im doing things.
    this is how I draw my images using the paint method:
         public void paint(Graphics g){
              super.paint(g);
              if(cardImage != null){
                   g.drawImage(cardImage,0,0,this);
           }this is how I draw cards images on card panels, if i wana clear the image I would set cardImage to null and repaint. This is how i draw all the images in the client.
    Is there a problem with my way of doing things? or is there a problem with the java plug in? I'v yet to try installing older java plug-ins on this PC, I will try it and post if it solves the problem.
    Thanks in advance

    Well I tried other versions of the plug in and they seem to have the same problem. But I have noticed that images loaded using Applet.getImage() were displayed without problems. And when I ran the server/client locally "without" JARing the files, the images displayed perfectly.
    I am using a load image method that I picked up from the forums to enable the loading of images from jars when using netscape. This is the code I use to load the images from JAR:
         /** get an image from anyt sorce.*/
         public Image getImageFromJAR(String fileName){
              if (fileName == null) {
                   return null;
              Image image = null;
              byte[] thanksToNetscape = null;
              Toolkit toolkit = Toolkit.getDefaultToolkit();
              java.io.InputStream in = getClass().getResourceAsStream(fileName);
              int x = 0;
              try{
                   int length = in.available();
                        thanksToNetscape = new byte[length];
                        in.read( thanksToNetscape );
                        image = toolkit.createImage( thanksToNetscape );
              }catch(Exception exc){
                   System.out.println( exc +" getting resource " +fileName );
              return image;

  • Background image not displaying properly

    My site is not displaying correctly on mobiles and ipads.  I want my background image to span the width of most widescreen monitors but it's not displaying correctly.  I am sure I am doing something wrong.  Also have some problems with the map not spanning the width on some devices.  Any help greatly appreciated.
    Website:  cdic.us
    Thanks in advanced.

    Does it help if you change this:
    html, body {
        margin: 0;
        padding: 0;
        background-color: #F0F0E3;
        background-repeat: no-repeat;
    to this:
    html, body {
        margin: 0;
        padding: 0;
        background-color: #F0F0E3;
        background-repeat: repeat-y;
    Martin

  • Image not displaying properly for SAP GUI for HTML transaction iview

    Hi,
    We have a sap gui for HTML iview for transaction REORRR in portal. After giving enough inputs this leads to Business Document Navigator screen(part of Document management) where i need to display a document(.jpg image in this scenario). When i double click on the image it is opening on the right side of the screen but in a compressed format where in we need to scroll down to see the image. But i would require the image to display with out scroll bar or in a new window.
    When i change the format of the iview as SAP GUI for Windows the image is opening in a new window.
    I would like to know whether there is any configaration settings either in portal or in Document management side. or is this any limitation of the SAP GUI for HTML scenario.
    regards
    Bharat.

    Hi,
    You can open this iview in a new window make the setting in the iview properties that will allow the iview to be opend in a new window.
    Regards,
    Vamshi.

  • Tiff images not display properly

    After installing iPhoto 6, none of the 1600 files in .tiff format imported via a Lexmark scanner are showing up correctly. (They worked perfectly well in iPhoto 5)
    I get a blurred scribbled squashed image a little like a TV channel that hasn't been set correctly.
    If I go back and click on the files in the Finder, they open beautifully in Preview.
    This lead me to believe there was an issue with the tiff-format and I promptly converted a copy of the files to jpegs.
    Unfortunately this left me with a new problem as three white lines now appear thru all the pictures in jpeg format.
    Luckily I never deleted or moved the .tiff files, so I am still hoping to use those.
    Will there be an Apple update which fixes this or will I have to re-scan and date/title- another (sigh) 1600 pictures? (please, someone tell me no)
    Best wishes,
    N

    I think I found the fix.
    As I mentioned in my previous post, I have also been having trouble with TIFF images and iPhoto 6.
    Today I downloaded the new iPhoto 6.01 update. But, that didn't fix the problem either. So much for Apple fixing it.
    Anyway, I have been experimenting, and finally found a difference between images that worked and those that didn't.
    The images that worked, have an ICC profile embedded in them from the device that created the image (in my case my scanner).
    So, I set out to find out if simply removing the ICC profile would fix the problem.
    And, through my experimenting, I found that if I opened the image in another program, and then exported it as either a TIFF (the same format) or a JPEG that the resulting image would open in iPhoto 6 just fine.
    Further examination demonstrated that the ICC information was removed from the exported file.
    As I understand it, ICC is basically an image color correction / calibration tag. It enables different devices to properly display and print the image with the proper colors.
    Basically, each device has a color profile (scanner, monitor, printer, camera, etc.). This is to make sure that when you see something on the screen that it looks the same as when you print it out. Likewise, you want the image on the screen to match what the scanner and digital camera saw.
    So, these are essentially conversion tables to make sure that each device properly displays or prints the image as the original source "saw" it.
    Anyway, not wanting to manually strip this information from each file, I looked on the Internet for an automated solution. And, fortunately I found one.
    http://www.colormanagement.com/technicalresources/files_targets_and_utilities/mac_os_xscripts/
    The file you are looking for is "Mac Os X ColorSync Toolbar Script: Remove ICC profile". Click on the title just mentioned to download the script.
    It is a Macintosh Script that you simply download to your desktop (or anywhere else you would prefer). It is in a Stuffit Archive, so you'll need Stuffit Expander to decompress it (basically the Mac equivalent of a ZIP file).
    Once decompressed, you should see a "script" icon that is labeled "Remove Profile".
    Simply "drag" your original files and drop them onto this icon / script. The script will then remove the embedded ICC information from the image file.
    Once you have removed the ICC information from your image's file, try importing it into iPhoto 6 again. Then, see if it works
    It is important that you perform this on a backup / duplicate copy of your original files. You don't want to damage your only copy if something goes wrong.
    Now, one further note: If you do this, you may see the image looks different. In my case, the image is truer to the way it really looked when I scanned it in. The paper texture looks right now.
    If you want to do this while keeping the image's appearance the same as it looks now, then here's another way:
    Open the file in Apple's "Preview" program. This is usually the default image view.
    Then, do a "Save As" or "Export" to create a new copy of the image. If you perform an Export, be sure to set the image quality high or you may inadvertently reduce your pictures detail (especially if you export to JPEG).
    This essentially does the same thing. But, it will take more work if you have multiple images.
    Using the previously mentioned script, you should be able to drag and drop multiple files in a group.
    Anyway, I hope this helps the rest of you out.
    Let me know if it fixes the problem for you as well.

  • Image not displaying properly in pdf report

    Hi,
    I have imported a jpg image on the layout using Reports builder 6i folowing File-Import-Image. Its just a static image. Once i move this report to the server in binary mode and open it from apps(Quote pdf report), the report pdf has the image displayed with half side pitch blank color and the other half side with the actual picture. Can you guide what should i do to display the mage properly.
    Thanks.

    Hi,
    Resolved this problem.
    I had 2 more images in the same report, one jpeg & another one in gif format. I removed the image in gif format, converted it into jpeg format & imported back in report layout. Thus, making all three images in the report in the same format(Jpeg).
    Once I have all images of the same format in a report. It works fine.
    Regards.

  • Large images not displaying properly in Acrobat Pro 9

    When creating PDF documents from any software (Illustrator, Corel, InDesign, etc), color objects over 50% of the page size have white fill. If object has an outline, the outline will appear normally, but the fill will be white. I've searched forums everywhere and have found no answer. Most forum topics on this are issue focus on settings in the program that exported the PDF. I am 99% sure this is not an export problem, but is something in Acrobat itself (a missed setting? Corrupt program file?)  
    To provide the best information, I've done a little scientific research. Here is what I know:
    Currently running Acrobat Pro 9.5.5
    This is only happening on ONE install of Acrobat 9. Documents display correctly in Reader X and in Acrobat 9 on other machines.
    Started happening a few weeks ago, I have no idea what changed.
    "Show Large Images" in preferences dialog is checked. Unchecking it and rechecking it does nothing.
    Have installed all available updates to the software
    I experimented with different object sizes. At 50% of page size, objects appeared normal, at 51% filled object disappears.
    Does not affect photos, only affects vector objects.
    I welcome all ideas to fix this.
    ALSO - Am running this on Windows Vista 64 Bit

    Hello? Is there nobody in the Adobe universe that has an actual solution to my problem?
    Other things I've tried to solve this:
    repair the install.
    uninstall and reinstall
    cuss at the computer
    throw a tantrum.
    I will pay someone a whole dollar for a solution that works.

  • Greyscale image not displaying properly.

    This is my first post here, so greetings!
    I am working in LabView 11, and all updates are current.
    I am trying to display a greyscale image with five shades varying from black to white. (The shade corresponds to a voltage, this is used to control a piece of optical equipment.)
    The image is incorrectly displaying only the black shade and the next shade up (on an 8-bit color scale, it is showing only 0 and 63). I am using "draw unflattened pixmap", and I'm passing to it a 2D array of 8-bit numbers (0, 63, 127, 191, 255) and a Greyscal color table that I created. Each value in the 2-D array that is 63 or greater is drawn on the picture as a shade of 63. I've checked to make sure that the input array does have values that range up to 255.
    The mysterious part is that I am using the exact same process in another step of my VI, and it is working perfectly. Same color table, same type of array, and I'm doing it several hundred times in a loop. It has never failed even once to produce the correct image.
    I've attached my code, and two of the sub-VI's that I call from it. The main code is "Adaptive Optics Experiment". You won't be able to run it, as it requires a software development kit for a company called Andor for some of the sub-VI's, but maybe just by looking you can detect an issue. I've noted on the block diagram where the problem occurs, and where the same process seems to work fine. It's in the large stacked sequence structure; the working part is in frame 1, non-working in frame 2.
    I've also attached an image of the final picture that shows only two shades.
    Any suggestions would be greatly appreciated!
    Attachments:
    Adaptive Optics Experiment.vi ‏88 KB
    OptimumPhase.vi ‏14 KB
    BuildPhaseMap.vi ‏18 KB

    Hi mjpur,
    Suggestion: Please check this link for better coding in LabVIEW
    http://www.ni.com/newsletter/51735/en/
    -Coming to problem:you said in sequence:1 it is working and it's not in 2nd sequence and you mentioned the color tables are also same.
    -Now the only terminal looks connected is with data terminal which is coming from BuildPhaseMap.vi
    -Please check if the data coming from Build Phase Map is proper or not.
    Thanks
    uday,
    Please Mark the solution as accepted if your problem is solved and help author by clicking on kudoes
    Certified LabVIEW Associate Developer (CLAD) Using LV13

Maybe you are looking for

  • [SOLVED] Create local repository

    Hello everyone! First of all, I'd like to apologize for the terminology. I'm still not sure about what are the names I should use. That said, here's my problem: I want to set up a local repository to place all the packages I've ever built with makepk

  • Unable to upload photos to facebook or emails

    Recently after I installed new internal hard disk I copied iphoto library from my external hard disk ( where it was stored as a backup). When I go to upload from photos then all the photos are coming greyed out and cannot be selected for upload. OS i

  • Problem extracion BW7.0 from PI 7.1

    The systems: SAP NetWeaver 7.1 (PI) - Source SAP NetWeaver 2004s (BW) On the RSA1 the DS connection it's OK. When we try to launch an infopackg, we encountered some problems: 1) Transaction Canceled IDOC_ADAPTER 151 ( SAPLBD 100 ) Now it's OK, by IDX

  • How to confirm excise register post

    hi, We are doing excise capture and post in MIGO tap. after MIGO, how to check excise register either update or not? rgs mrs

  • A problem about EntityManagerFactory

    How to create different EntityManagerFactory instances to connect different databases in different server dynamically. EntityManagerFactory must accept a ip as parameter to construct jdbc.url. dynamically. thanks.