Probem when generating dynamic images when 2 servers is running!

I'm running 2 servers, one for the admin and the other for my applications. I
deploy my application (war and ear) on the application server. During the processs,
I generate dynamic images and save it on de hard disk (in the related DefaultWebApp
folder), so I can display it on a web page in the html. The problem is there
is no images displaying. Then! when I restart the application server, the images
will be displaying.
I guest the problem is the application server do not refresh live(probing the
relative path), so the context doesn't found any image.
Anyone have a clue how to fix it?
Tanx

The Image class itself does not have any methods for loading images from files so you must be using something more. Most methods for loading images from files have an overload that lets you use a URL, so you just need to use that method with a call to getResource like in the other thread. If you can't think of anything else, you can use ImageIcon to load an Image (the Image is returned by a call to ImageIcon.getImage). See also "how to use icons" from the swing tutorial:
http://java.sun.com/docs/books/tutorial/uiswing/misc/icon.html

Similar Messages

  • Why "Wrong Recovery Key" When Generated By Firefox When Trying To Sync "Without A Device" After Original Computer Crash

    My computer crashed and for reasons unknown to me, Mozy didn't back up my Mozilla Firefox files, which I realize are hidden but are no where to be found on Mozy's backup. All I have is my iphone that does have Firefox on it and a new computer. However, the iphone will not sync with the new computer in "discovery mode". And, when I try to perform a sync on the new computer, with a new download of Firefox, clicking "without a device", it generates a recovery key which it in turn rejects as invalid - over and over. Please advise. Also, will an iphone sync with a computer and/or generate a recovery key? My iphone Firefox app doesn't seem to have the capability - anywhere to be found - to generate such a key. Is there any way to copy the bookmarks from the phone to the computer? Lastly, still another mystery, my Firefox account has an old email address, that I need to change, but I have no earthly idea of how to do that either.

    Thanks for trying to help, but I have an iphone and not an Android. When in blue tooth mode and now discoverable, it won't discover. Other than discover, to my knowledge, there is no sync button on the iphone app.

  • Generating Dynamic Images (more than one)

    Hello everyone, I'm trying to create a jsp page that show's a group of images dynamically selected by the user. I want to be able to draw separate images separated by some text. I can get the jsp to draw one image but it then ignores everything after that. Here's my code. Any help would be greatly appreciated.
    <%@page contentType="text/html"%>
    <%@page import="com.sun.image.codec.jpeg.*, java.awt.*, java.awt.image.*, java.io.*" %>
    <html>
    <head><title>JSP Page</title></head>
    <body>
    <%
    ServletOutputStream os = response.getOutputStream();
    BufferedImage image1 = new BufferedImage(100, 100, BufferedImage.TYPE_INT_RGB);
    Graphics2D g2d1 = image1.createGraphics();
    g2d1.setColor(Color.red);
    g2d1.fillOval(10, 10, 80, 80);
    BufferedImage image2 = new BufferedImage(100, 200, BufferedImage.TYPE_INT_RGB);
    Graphics2D g2d2 = image2.createGraphics();
    g2d2.setColor(Color.blue);
    g2d2.fillOval(10, 10, 80, 180);
    JPEGImageEncoder encoder1 = JPEGCodec.createJPEGEncoder(os);
    //JPEGImageEncoder encoder2 = JPEGCodec.createJPEGEncoder(os);
    encoder1.encode(image1);
    os.flush();
    response.setContentType("text/html");
    %>
    hello?
    <%
    encoder1.encode(image2);
    os.flush();
    %>
    </body>
    </html>
    I also tried:
    <%@page contentType="text/html"%>
    <%@page import="com.sun.image.codec.jpeg.*, java.awt.*, java.awt.image.*, java.io.*" %>
    <html>
    <head><title>JSP Page</title></head>
    <body>
    <%
    ServletOutputStream os = response.getOutputStream();
    BufferedImage image1 = new BufferedImage(100, 100, BufferedImage.TYPE_INT_RGB);
    Graphics2D g2d1 = image1.createGraphics();
    g2d1.setColor(Color.red);
    g2d1.fillOval(10, 10, 80, 80);
    BufferedImage image2 = new BufferedImage(100, 200, BufferedImage.TYPE_INT_RGB);
    Graphics2D g2d2 = image2.createGraphics();
    g2d2.setColor(Color.blue);
    g2d2.fillOval(10, 10, 80, 180);
    JPEGImageEncoder encoder1 = JPEGCodec.createJPEGEncoder(os);
    //JPEGImageEncoder encoder2 = JPEGCodec.createJPEGEncoder(os);
    encoder1.encode(image1);
    encoder1.encode(image2);
    os.flush();
    %>
    </body>
    </html>
    Thanks in advance for any help.
    EB

    Hi eb,
    The solution is very easy
    Here is a servlet(ImageTester) which creates an image on the fly ....
    It can be acessed at say url http://localhost:8080/servlet/ImageTester
    wirte another HTML file test.html as under
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <HTML>
    <HEAD>
    <TITLE> New Document </TITLE>
    </HEAD>
    <BODY>
    <img src="http://89.193.88.15:8080/servlet/ImageTester">
    Text Item
    <img src="http://89.193.88.15:8080/servlet/ImageTester">
    </BODY>
    </HTML>
    /* source for ImageTester.java */
    import java.awt.*;
    import java.awt.image.*;
    import com.sun.image.codec.jpeg.*;
    import java.util.*;
    import java.io.*;
    import com.sun.image.codec.jpeg.JPEGCodec;
    import com.sun.image.codec.jpeg.JPEGImageEncoder;
    import java.awt.image.BufferedImage;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class ImageTester extends HttpServlet
    public void init()
    throws ServletException
    public void doGet(HttpServletRequest request, HttpServletResponse httpservletresponse)
    throws IOException, ServletException {
    // httpservletresponse.setContentType("image/" + s);
    // httpservletresponse.setContentType("image/jpg");
    // javax.servlet.ServletOutputStream servletoutputstream = httpservletresponse.getOutputStream();
    // httpservletresponse.setHeader("Pragma", "no-cache");
    // httpservletresponse.setHeader("Cache-Control", "no-cache");
    // httpservletresponse.setDateHeader("Expires", 0L);
    // Create image
    int width=200, height=200;
    BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
    // Get drawing context
    Graphics g = image.getGraphics();
    // Fill background
    g.setColor(Color.white);
    g.fillRect(0, 0, width, height);
    // Create random polygon
    Polygon poly = new Polygon();
    Random random = new Random();
    for (int i=0; i < 5; i++) {
    poly.addPoint(random.nextInt(width),
    random.nextInt(height));
    // Fill polygon
    g.setColor(Color.cyan);
    g.fillPolygon(poly);
    // Dispose context
    g.dispose();
    // Send image to browser
    httpservletresponse.setContentType("image/jpg");
    OutputStream outputStream = new BufferedOutputStream(httpservletresponse.getOutputStream(), 1024);
    JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(outputStream);
    encoder.encode(image);
    outputStream.close();
    public void doPost(HttpServletRequest httpservletrequest, HttpServletResponse httpservletresponse)
    throws ServletException
    try
    doGet(httpservletrequest, httpservletresponse);
    catch(Exception exception)
    exception.printStackTrace();
    Cheers!!!!!
    ezaz khan

  • Dynamic images in JSP

    Hi!
    I would like to generate dynamic images in a JSP which I would like do an "include" in other JSPs across the site. The reason for this is we show many emails/ phone numbers on various pages and with the prevalence of spiders/ robots, it would be better to not have it as HTML text. I saw a couple of sites displaying them as images but they were PHP and ASP.Net sites. Any suggestions?
    Thanks!!

    Well... You could simply create 1 image per letter/number (this is done within a few minutes) and then code a function, which seperates the given string into chars and then creates HTML-code with the pictures.
    There is an easier way, sure. But I don't know him :P. You know "Captchas"? The Codes you have to enter all over the internet to verify yourself as human and not as bot? If you google about ths code uses to create Captchas, you should be happy :)
    X--spYro--X

  • Dynamic Image Displays Blank When Using In Visual Studio Project

    I am trying to simply display a dynamic image in a report. I am using Crystal Reports XI Release 2.
    I have two different environments: Local via Progress where reports are called using Crystal Viewer ActiveX, and over the web where reports are called from Open Laszlo and Visual Studio project.
    The image is set to a blank image as default, and Graphic Location Forumla loads the image from the database (site.logo_location + site.logo_filename) which results in an image http:
    www.vetinfo3.com\a.jpg.
    When I run the reports locally using the ActiveX control, it works just fine and displays the image.
    When I run over the web using OpenLaszlo, it displays a blank.
    Troubleshooting
    We are using Visual Studio 2005, which is bundled with an older version of Crystal that doesn't support dynamic images.
    To address this, I loaded Crystal XI Release 2, which updated the version in Visual Studio and enabled the Graphic Location formula field on the dev machine.
    I verified the Graphic Location field was set correctly.
    This caused a Version error, so we loaded cr_net_2005_mm_mlb_x86.zip on server and specified the Version in web.Config.
    No errors now, but when I build and publish the code, the image still displays as blank.
                From Fiddler
                   GET http://www.vetinfo3.com/mdsol1/CrystalImageHandler.aspx?dynamicimage=cr_tmp_image_c5d6a923-293b-4f1e-8739-4e698f83b087.png
                   Creates C:\Documents and Settings\Curtis\Local Settings\Temporary Internet Files\Content.IE5\PWRUX2XW\CrystalImageHandler[1].png
                   Blank Image
    According to issues within Visual Studio, they say the fix to this is to add the <httpHandler> in web.Config, but it is already there; added when we add the viewer to the project:
    In web.Config I have some questions about this line:
        <httpHandlers>
          <add verb="GET" path="CrystalImageHandler.aspx" type="CrystalDecisions.Web.CrystalImageHandler, CrystalDecisions.Web, Version=11.5.3700.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
        </httpHandlers>
    There are more service packs for Crystal XI Release 2:
    crXIr2sp2_net_server_install.zip
    crXIr2sp3_net_server_install.zip
    crXIr2sp4_net_server_install.zip
    I have not loaded these yet, but the readme files do not indicate they fix any dynamic image issues.
    I am out of ideas on this; does anyone have any ideas?

    What about if you take OpenLaszlo out of the picture? E.g.; use one of our samples from here;
    https://wiki.sdn.sap.com/wiki/display/BOBJ/CrystalReportsfor.NETSDK+Samples
    I'd recommend vbnet_web_simplepreviewreport
    Also, see [this|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a0437ea8-97d2-2b10-2795-c202a76a5e80] article.
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup

  • CHART BUILDER ERROR WHEN TRYING TO GENERATE DYNAMIC CHARTS ON A JSP PAGE

    I'm working with J Develop 9.03 on Windows 2000 Professional Edition.
    I'm using the JSP demo files provided with Oracle Chart Builder to generate
    dynamic charts. The user specifies the query parameters, including the date
    range and the query results are returned by means of a line chart (with date on
    the x axis and values on the y axis).
    When trying to compile the project I get the following error messages:
    Error(165,2): class FileOutputStream not found in class _graph
    Error(170,5): class File not found in class _graph
    Error(176,4): exception java.io.IOException is never thrown in the
    corresponding try block
    I checked to see that the chartbuilder library (chartbuilder.jar) files are
    loaded into the project library. It's unusual that the class is not being
    found. I don't understand why. I developed my project using the following steps:
    1. Unzipped Chart Builder installation files into c:\Oraclechartbuilder
    2. Loaded chartbuilder class library
    c:\Oraclechartbuilder\chartbuilder\lib\chartbuilder.jar into J Developer class
    path (by selecting <Project Settings> <Paths> and browsing to the
    chartbuilder.jar file).
    3. Created a new JSP page in J Developer (graph.jsp)
    4. Copied JSP code syntax from the Word Pad demo file and pasted into graph.jsp
    5. Changed the DB connection parameters and static directory location on the
    JSP page.
    6. Compiled the project and received the above errors.
    I would like to know why the classes are not being found and how to fix the problem. Thanks, Jaafar

    Hi mshah101,
    This can happen if the applet is compiled using an higher version of java and the browser is pointing to an older version (even if minor version number is higher)

  • PDF Size is huge when inserting an image on every page

    Hello,
    I've got a little problem when inserting an image in a crystal report and then exporting it to PDF.
    We're using Crystal Report XI and we've designed the report with a sub-report that gets an image from a database field and put this image on every page of the report (it's just a logo for every page).
    This image is a JPEG file with 32KB size.
    The exported report is about 1000 pages and we're dealing with an issue because of that. Sometimes the report won't generate giving a OutOfMemory Exception (altough we've defined MinHeap/MaxHeap to 512M).
    We also find this curious :
    - A generated pdf report with the image on every page totals 100MB size (we would expect something like 32KB*100pages=32000KB/1024KB=31.25MB ?) : Depending on the number of pages, could give OutOfMemoryError.
    - A generated pdf report without the image on every page totals 1.8MB size. : No OutOfMemoryError problem here.
    Do you know of any way to optimize this, reducing the pdf size and ?
    Thank you very much.
    Eduardo Andrade (GEDI, S.A.)

    Hello Ted Ueda,
    Thank you for your answer, I was suspecting that...
    Since this is an obvious problem, do you know if there is another way of including an image in the report in a more efficient way ? For instance, include the image, only on the first page and on the rest of the pages just include a link to that image?
    I've searched in here : https://wiki.sdn.sap.com/wiki/x/JwBmBQ , but did not find anything close to this...
    Thank you.
    Best Regards,
    Eduardo Andrade

  • Premiere Pro 5.5.2 crashes when generating thumbnails; faults ImageRenderer.dll

    Hello all!  I'm a new Premiere user.  I've been working on a review show, and it's been going great for the last month.  A few days ago, however, Premiere Pro started acting wonky.  Part of my show involves putting in small clips from other sources, typically 3-4 seconds.  With this most recent show, Premiere Pro started crashing left and right without warning.  It took me a few days to narrow down the source.
    ImageRenderer.dll seems to be crashing when attempting to generate thumbnail images of the sourced clips.  Everything else seems to work fine.  It seemed to start when I used the Clip Speed / Duration function to slow down a 30fps clip to about 25% speed.  I realized later that the clips were at 30fps in a 24fps timeline (the rest of my material is 24fps).  Once I changed the clip's speed, Premiere started crashing, perhaps due to how the clip interacted with the timeline.  I removed the offending clip, but it seemed that the damage was done.  I discovered that if I deleted the source file from the project inventory pane Premiere wouldn't crash. 
    I just recently discovered that if I collapse the video track of the source clip, Premiere won't generate thumbnails for those clips and thus remains stable.  I stress-tested my rig all day yesterday using MemTest86 and Prime95, with no errors.  I also uninstalled Premiere Pro, rebooted, and reinstalled from scratch.  I still get the ImageRenderer.dll crash when Premiere attempts to generate thumbnails for the clips.  So far I do have a workaround (collapse the video track) but I would like to figure out a better solution for it.  I even created a new project and re-sourced the clips into a different frame rate. 
    Any help would be appreciated!
    ~Josh
    Log Name: 
    Application
    Source:   
    Application Error
    Date:     
    1/31/2014 9:39:50 AM
    Event ID: 
    1000
    Task Category: (100)
    Level:    
    Error
    Keywords: 
    Classic
    User:     
    N/A
    Computer: 
    Relic
    Description:
    Faulting application name: Adobe Premiere Pro.exe, version: 5.5.2.0, time stamp: 0x4e960e56
    Faulting module name: ImageRenderer.dll, version: 5.5.2.0, time stamp: 0x4e95f50d
    Exception code: 0xc0000005
    Fault offset: 0x00000000001756df
    Faulting process id: 0x850
    Faulting application start time: 0x01cf1e9244d9c6a7
    Faulting application path: C:\Program Files\Adobe\Adobe Premiere Pro CS5.5\Adobe Premiere Pro.exe
    Faulting module path: C:\Program Files\Adobe\Adobe Premiere Pro CS5.5\ImageRenderer.dll
    Report Id: 89880013-8a85-11e3-bef2-60a44c639d5c
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
    <Provider Name="Application Error" />
    <EventID Qualifiers="0">1000</EventID>
    <Level>2</Level>
    <Task>100</Task>
    <Keywords>0x80000000000000</Keywords>
    <TimeCreated SystemTime="2014-01-31T14:39:50.000000000Z" />
    <EventRecordID>4955</EventRecordID>
    <Channel>Application</Channel>
    <Computer>Relic</Computer>
    <Security />
      </System>
      <EventData>
    <Data>Adobe Premiere Pro.exe</Data>
    <Data>5.5.2.0</Data>
    <Data>4e960e56</Data>
    <Data>ImageRenderer.dll</Data>
    <Data>5.5.2.0</Data>
    <Data>4e95f50d</Data>
    <Data>c0000005</Data>
    <Data>00000000001756df</Data>
    <Data>850</Data>
    <Data>01cf1e9244d9c6a7</Data>
    <Data>C:\Program Files\Adobe\Adobe Premiere Pro CS5.5\Adobe Premiere Pro.exe</Data>
    <Data>C:\Program Files\Adobe\Adobe Premiere Pro CS5.5\ImageRenderer.dll</Data>
    <Data>89880013-8a85-11e3-bef2-60a44c639d5c</Data>
      </EventData>
    </Event>

    Same problem - on MBPro 13-inch, Early 2011 running OS X Lion 10.7.4 (11E53)
    Uninstalling 3ivx worked like a charm! thanks.

  • Error Message when generating PDF in RH8

    Can someone help. I am using RH 8 and I have created a project in HTML. When generating a PDF document, it throws up an error message and does not create a PDF. However I am able to create a Word file.
    Do I need to have an extra license for RoboPDF? Or does it generate automatically. I am getting the message that I do not have permission to access RoboPDF as I need a license. Doesnt it come with RH8?
    regards
    Lina

    I have moved this thread to the Printed Documentation category where it belongs. This will be of more help to anyone else with this problem.
    It might have helped to have details or an image of the error message. (If you do add images, use the camera icon above)
    If you are using RH8, why are you using RoboPDF? That came with earlier versions. RH8 ships with a lite version of Acrobat or a full version if you have the Tech Comm Suite.
    In RH7, that had a problem that could be fixed as described in Item 33 at http://www.grainge.org/pages/authoring/rh7/using_rh7.htm  I guess you could try reregistering that DLL.
    Without the error message it is difficult to tell but I am more inclined to think you have not installed the version of Acrobat that ships with RH8. In Word, if you go to File > Print, do you see RoboPDF and do you see a version of Acrobat? An image of what you see when you go to File > Print in Word might help.
    See www.grainge.org for RoboHelp and Authoring tips

  • I am using a MacPro running OS 10.6.8. When saving an image in PS CC I no longer have a thumbnail of the image in my folder , just a generic PS symbol thumbprint. What do I do to get my image thumbnail back?

    I am using a MacPro running OS 10.6.8. When saving an image in PS CC I no longer have a thumbnail of the image in my folder , just a generic PS symbol thumbprint. What do I do to get my image thumbnail back?
    Adobe Creative Cloud

    Photoshop CC needs at least OSX 10.7-10.9
    You may be able to install and run it on 10.6.8, but as I understand it the rules for generating thumbnails has changed with Apple and CC writes them to suit the required OSX.
    Photoshop CS6 will always give you image thumbnails but CC and CC 2014 have had thumbnails generated differently for the required OSX.
    You will have to upgrade to 10.7,10.8, or 10.9
    My file saving preferences are set like this:

  • Cfdocument running slow when generating PDF

    I have two servers configured the same way. They're running CF 8 Enterprise (exact version is 8,0,1,195765), Java version is 1.6.0_04. Servers are Windows 2008 Server Standard. On one of them, generating PDFs using CFDOCUMENT is very fast. On the other it's painfully slow, can take minutes for a simple PDF. I've checked everything I can think of on the two servers and they seem pretty much the same. I checked the iText jars, they appear to be the same as well. I've seen other people post with slowness issues, but many posts relate to dynamic images, which are not an issue here because I have a PDF with no images in it. I'm totally out of ideas as to what could be causing the difference in performance. Anybody else run into this and find a solution?

    Actually, I have emailed the support and they have done it for me.
    But, I believe that they went into Policies --> Desktop Protection Policy
    Then, if you go to “Browser Protection & Web Filtering” go to the “Exception” tab and add in there the URL of your excluded coldfusion server.
    Also, in Virus & Spyware protection, exclude the extension “.cfm” from the “Excluded Files and Folders” and it should work.
    If it doesn’t, just email the support and ask them to do it for you
    Stéphane Péharpré
    IT Manager
    Description: cid:[email protected]

  • How would I make it so that when "deleting" an image I can make it so that the delete key does it or a button I put on the application?

    How would I make it so that when "deleting" an image I can make it so that the delete key does it or a button I put on the application?
    I want it so that I can use either a button on the designer window or the delete key. I know how to do the or part but the trouble I'm having is coding the button in.
    if (LastImageClicked != null && (e.Key == Key.Delete || Button))
    This is the code that I have in the format I'm looking for I just don't know how to do it. Thanks for your help!

    There are a number of things which are unclear about your question.
    I'll tell you one way to approach this though.
    Handle Window.PreviewKeyDown.
    <Window
    Window.PreviewKeyDown="Mainwindow_PreviewKeyDown"
    Code behind
    private void Mainwindow_PreviewKeyDown(object sender, KeyEventArgs e)
    if (e.Key == Key.Delete)
    File.Delete("p001.jpg");
    I don't know enough about what you mean by LastImageClicked  but you need some way of knowing which path you are going to delete.
    Then you might well have a problem if it's showing in an image control.
    You will need to copy the picture off disk into a new bitmapimage object.
    If you just do
    <Image Source="p001.jpg"
    Then that image will grab the file and you won't be able to delete it - you'll  get an error.
    In my experimental code p001.jpg is set as content copy always so it ends up next to the exe in the bin when the solution compiles.
    You would probably want a full path to a file there.
    Hope that helps.
    Recent Technet articles:
    Property List Editing;  
    Dynamic XAML

  • DYNAMIC POOLS WHEN WEBLOGIC IS IN MSI MODE

    Hi All,
    Would appreciate help with this pls..
    I am just figuring out how to create dynamic pools in weblogic 8.1 when Management Servers are running in MSI mode..
    Is it feasible?
    If Yes, how? Any sample code pls?
    If not, Why?

    Hello,
    Good question!
    From the docs:
    http://e-docs.bea.com/wls/docs81/adminguide/failures.html
    MSI Mode and Managed Server Configuration Changes
    If you start a Managed Server in MSI mode, you cannot change its configuration until it restores communication with the Administration Server.
    Otherwise you can configure dynamic pools in the usual ways e.g.
    http://e-docs.bea.com/wls/docs81/jdbc/programming.html#dynamic_conn_pool
    Why? well I guess you may cause all sorts of problems if you change the server configuration (say by hacking the config.xml file) when it gets a chance to connect to the admin server. but this is just a guess, if you have time why not try it and post your result back to the forum!
    Cheers,
    Hoos
    www.orbism.com

  • I am using a Photoshop cs2, and I wonder if it is possible to keep the settings of the guidelines when closing an image, with the actual document ? It would be nice to have the guidelines locked down, I find it than when opening the same or another image,

    I am using a Photoshop cs2, and I wonder if it is possible to keep the settings of the guidelines when closing an image, with the actual document ? It would be nice to have the guidelines locked down, I find it than when opening the same or another image, the guidelines are not locked, it is annoying to have to lock them down again. and it would actually be nice, to ba able to give specific directions when placing the guidelines. Thanks

    Then why are the guides unlocked when I reopen a document that I saved with the guides locked ?
    Thanks.

  • Photoshop CC distorted image when zoomed out. Text, edges and Straight lines.

    I get this distorted image when working on a file. When I zoom in its fine. But as soon as I zoom out all the lines, text , and edges start to become distorted. I've checked that all my drivers are up to date. I've re installed photoshop and still the same thing. Any Suggestions. ( files look fine when saved or exported, this just happens while Im working )

    That looks like a Moiré pattern.  Did you scan the image?
    If not, can you tell us what operating system?
    And is your video card driver fully up to date from the maker's website?

Maybe you are looking for

  • Can not see a sbRIO in MAX running on a virtual machine

    I am trying to connect a sbRIO-9606 to a Windows 7 virtual machine (VMWare) running on a MacPro.  I can open a CMD prompt and ping the sbRIO but when I run MAX, it does not appear in Remote Systems. The virtual NIC is bridged to the pyhsical one (on

  • Excise invoice capture process

    Hi,   I want to know about excise invoice capture process for depot plant  which t. cod eis use for depot plant how to do the part1 and part2  and also reversal process for the same. also what is diff. between excis einvoice capture process for depot

  • Interactive alv report with migo miro and purchase order

    hi all to make my alv interactive i put the following code.... i dont know whether it is correct or not coz i hav not done alv before FORM display.   CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'     EXPORTING       i_callback_program = sy-cprog       is_la

  • Keeps asking for AOL Screen Name -- I use .Mac!

    This just started happening ... iChat AV 3.1.4 keeps asking me for my AOL Instant Messenger Login. I don't have an AOL account. I use a .Mac account. Under preferences, I have my .Mac account checked as "Use this account." If I select an Account Type

  • Images appearin in IE but not Mozilla

    my friends and I put a site together called www.zsstar.com.au In IE the images show but in Mozilla they dont. We used the standard master detail recordset setup and am using a MS Access database to store the image names. Any ideas as to why they woul