Problem using parameters in dynamic image loading

Hello experts!!!
I am using Crystal Reports 2008.  I am trying to make use of a class servlet application that returns an image based on a number of parameters.  I have put a formula behind a default image that should access the servlet and change the image at runtime.
This works fine in the CR2008 designer.  However when it is published to my webapp, it doesn't work. 
The problem is that for some reason, something somewhere is removing the '?' before the parameters in the URL.
My formula
"http://localhost:8080/demoMYSQL/servlet/em.cabbench.CabBenchSrv?requestType=getStaticDrawing&imageType=2D&scale=1.6&layerscale3d=0.03&extrusionlength3d=0.4&corelabellevel=1&solid=1&topLevel=1&userid=admin&password=admin&design=" + {designHeader/header/headerAtt.design}
Image loading in designer
[http://farm4.static.flickr.com/3503/3179649422_ebd760fa61.jpg?v=0]
Web application log showing correct path name /em.cabbench.CabBenchSrv to servlet and a succesful request
/em.cabbench.CabBenchSrv
1231497711203|10:41:51:203|/demoMYSQL|null|requestType=getStaticDrawing&design=MV-120-XLPE-001&layerscale3d=0.03&scale=1.6&imageType=2D&userid=admin&topLevel=1&solid=1&extrusionlength3d=0.4&corelabellevel=1
10:41:51:218  binding session 872DB3467263966DC9D5CEBB645C8A5D
Image loading in viewer - NOT WORKED, default image displayed
[http://farm4.static.flickr.com/3126/3179649516_5df47fa7fd.jpg?v=0]
Web application showing incorrect path name to servlet because '?' is missing - result = null request!
/em.cabbench.CabBenchSrvrequestType=getStaticDrawing&design=MV-120-XLPE-001&imageType=2D&scale=1.6&layerscale3d=0.03&extrusionlength3d=0.4&corelabellevel=1&solid=1&topLevel=1&userid=admin&password=admin&design=MV-120-XLPE-001
1231498144859|10:49:4:859|/demoMYSQL|null|requestType=null
1231498144859|10:49:4:859|End of
Has anybody got any ideas of what to do with the question mark and how to get the image to change properly?????? Like it is doing in the report designer!
Best Regards
Nick Hirst

Hi Nick,
Since, the issue you have is with the web app only, I would request you to post this thread on the Dev Forum.
Please click on the appropriate link below: -
For .Net - SAP Crystal Reports, version for Visual Studio
For Java - SAP Crystal Reports, version for Eclipse
The people there would be the perfect people to help you with this.
Hope this helps.
Regards,
Jay.

Similar Messages

  • Problem with dimension of an image loaded from a database

    Hi,
    I succeed in saving image in a MSAccess database with this code:
    Image img;
    image = new ImageIcon("d:\\prova\\comore.jpg");
    img=image.getImage();
    try{
    int[] pix = new int[img.getWidth(null) * img.getHeight(null)];
    PixelGrabber pg = new PixelGrabber(img, 0, 0, img.getWidth(this), img.getHeight(this), pix, 0, img.getWidth(this));
    pg.grabPixels();
    System.out.println(pix.length);
    byte[] pixels = new byte[img.getWidth(this) * img.getHeight(this)*4];
    for(int j=0;j<pix.length;j++){
    pixels[j] = new Integer(pix[j]).byteValue();
    String sql="insert into Immagini values ('1',?)";
    PreparedStatement ps = con.prepareStatement(sql);
    ps.setBytes(1,pix);
    ps.executeUpdate();
    }catch(Exception except){
    except.printStackTrace();
    then, I've load the image with this code:
    try{
    String query = "select * from Immagini where IDprog = 1";
    Statement s = con.createStatement();
    s.executeQuery(sql);
    ResultSet rs=s.getResultSet();
    rs.next();
    Viaggio vi = new Viaggio(rs.getInt(1),rs.getBytes(2));
    byte[] b=vi.getBytesImage();
    int[] intImage = new int[b.length];
    for(int j=0;j<b.length;j++){
    intImage[j]=(int)b[j];
    Image img = createImage(new MemoryImageSource(124,100,intImage,0,124));
    ImageIcon imgic = new ImageIcon(img);
    jLabel3.setIcon(imgic);
    }catch(Exception tps){
    tps.printStackTrace();
    All works correctly;
    but I've two problems:
    How do I do to take the dimension of the image from the byte array?
    infact in the code up written I've used 124 and 100 as image dimension;
    but I can have images of different dimension.
    The other problem is:
    Why in the image that is loaded are not the same number of colors of the image saved, but only a few, so that the image seems to be out of focus?
    Thank and excuse me for my english.
    I'm Italian.

    Noone can help me?
    Thank

  • Problems using Parameters

    Hi im trying to contribute documents on UCM using parameters because my legacy applications wont support webservice and because this can be the most simple way.
    Reading services documentation i found CHECKIN_UNIVERSAL
    If i use this url:
    http://localhost/idc/idcplg?IdcService=CHECKIN_UNIVERSAL&dSecurityGroup=Public&primaryFile=C:/test.txt&dDocAuthor=AUTOR&dDocTitle=TITLE
    I get this error message:
    Content item 'DEMO_000002' was not successfully checked in. The content item must have a primary file.
    I did exactly like the documentation.
    What`s missing?

    The check in services require an actual file as a payload along with the call. Simply using parameters in the url will not work for a check in. Unless you want to do a metadata only check in?
    In which case if your server is configured for that you can add this addtional parameter to your url: createPrimaryMetaFile=true
    Read More Here:
    [http://www.corecontentonly.com/2008/09/15/MetadataOnlyCheckIn.aspx|http://www.corecontentonly.com/2008/09/15/MetadataOnlyCheckIn.aspx]

  • Problem in using animations in dynamic images

    Hi Friendz,
    I've problem in using effects or animation after calling
    images dynamically from outside the flash.
    If somebody have any solution for this, then please solve my
    problem immediately....

    Little more information about your problem would be helpfull.

  • Dynamic image loading in a JPanel

    Hi,
    I've created a JFrame which includes a JPanel and would like to dynamically add images to the JPanel (for a space invaders game). I've been getting the JPanel graphics object casting to Graphics2D and then passing it to the Actor class constructor where the sprite is loaded as a BufferedImage and then called drawImage on the Graphics object but the sprite does not display. It's been suggested that I need to use a new JPanel for every sprite that gets loaded, but this would seem to be less efficient.
    public class NewJFrame extends javax.swing.JFrame {
        public static NewJFrame root;
        public NewJFrame() {
            initComponents();
            root = this;
           Graphics2D g = (Graphics2D) jPanel1.getGraphics(); 
           new Actor(g);
    public class Actor {
        public Actor(Graphics g){
            try {
            BufferedImage sprite = ImageIO.read(new File("/Users/administrator/Desktop/image.jpg"));
            g.drawImage(sprite, 0, 0, null);
            } catch (IOException e) { System.out.println(e);}
        }Thanks

    The problem with doing it this way if I understand correctly is that if I overload the paintComponent method of the panel I'm trying to draw on this will be static i.e. you can't pass parameters (such as a the url of the graphic to load or number of graphics to load) to the paintComponent method (it only accept Graphics g as a parameter). In other words the panel can only be drawn on once.

  • Dynamic image load with MovieClipLoader

    I'm trying to load five images from five URLs. If I use the
    documentation exactly as is, it works fine. Problem is, I don't
    want to createEmptyMovieClip, I want to use an existing one that's
    tucked inside a movie instance. Also, the images coming in are of
    unknown size, but have a standard 4:3 size ratio. I'd also like to
    scale them down to 180x120 after they arrive. Any help would be
    greatly appreciated.
    The code below only loads one image (which isn't working). I
    will eventually need it to load five different images.

    Dynamic text that doesn't have embedded fonts won't respond
    to tweening, alpha, etc. So you need to embed the font(s). There
    are a couple of ways to do this depending upon what you are doing.
    But most likely you can just select the text field and click the
    font button on the properties panel and select embed. Also I would
    recommend that you use _visible=false instead of alpha for this
    effect.
    I'm not sure what the second go-round is. Can you explain
    that a bit better? You should be able to use the same loader, so
    I'm not quite sure what is going on. Again, look for some helpful
    places to put some traces and see if you can figure out what is
    going on. Remember that generally Flash does what we tell it, not
    what we want! So if you can find the places where you are telling
    it to do things you can figure out what is happening.
    Also I'm not clear on what is going on with the variables and
    text. Generally I would recommend against using the variable
    property of text fields. That is a leftover from the Flash 5 days
    when you couldn't work directly with dynamic text fields. Instead
    give the fields instance names and then assign the text with the
    text property.
    myTextField.text="some value in here";
    myTextField2.text=someStringVariable;

  • Problem using email to upload image files to Mobile Me gallery

    I will cross post this question to both Mail and Mobile Me discussion groups because I don't know where my problem lies.
    I have published a gallery page from iPhoto to my Mobile Me gallery. There are two ways to upload additional photos. I am not having trouble adding image files with the Upload feature. I cannot get the email function to work. The emails I send to the email address for the gallery bounce back to my mail inbox.
    Subject: Delivery Notification: Delivery has failed
    and in the body of the bounced email:
    Recipient address: [email protected]
    Reason: SMTP transmission failure has occurred
    Diagnostic code: smtp;521 5.2.1 Fatal failure of WOA
    Remote system: dns;post.mac.com (TCP|10.150.69.91|51195|10.13.19.27|25) (mbin002.mac.com ESMTP [2.3.3/gso-r197-19Feb2007] ready to rumble)
    Original-envelope-id: [email protected]
    Reporting-MTA: dns;asmtp028-bge351000 (tcp-daemon)
    Original-recipient: rfc822;[email protected]
    Final-recipient: rfc822;[email protected]
    Action: failed
    Status: 5.2.1 (SMTP transmission failure has occurred)
    Remote-MTA: dns;post.mac.com (TCP|10.150.69.91|51195|10.13.19.27|25)
    (mbin002.mac.com ESMTP [2.3.3/gso-r197-19Feb2007] ready to rumble)
    Diagnostic-code: smtp;521 5.2.1 Fatal failure of WOA
    One of the images I am trying to attach is a jpeg file of 61 kb.
    I have tried to drag the image from my desktop to the body of the email. I have tried using the "attach" function and selecting the file name. I am not sending any text with these files.
    When I built these albums, I checked and enabled all the options.
    I am having this same issue when I try to upload via email to any of my Mobile Me gallery pages.
    There is currently one photo displayed here:
    http://gallery.me.com/tplattenberger#100352
    If anyone wishes to try to upload to that gallery using email (Send to Album) that would be great and if successful, that might provide a clue to my problem.
    As I say, I currently have one photo there. If you find a lot more, please do not add.
    What's the problem?
    Tom

    The images I am trying are newly created and old.
    A weird hint perhaps...
    I just copied an image from Apple's home page and pasted it into the email and tried again...
    it worked.
    So I tried again, dragging from iPhoto and it did not work... the email bounced back.
    So I tried again, this time using copy and paste (like I did from Apple's page) from iPhoto... it did not work.
    Tom

  • Problem using RescaleOp to brighten image

    Hi, I'm trying to use java.awt.image.RescaleOp to brighten or darken an image. My code:
    (Using java.awt.image.BufferedImage, java.awt.RenderingHints)
         protected static Image createBrightImage(Graphics g, BufferedImage bi)
              float scaleFactor = 1.3f;
              RenderingHints hints = new RenderingHints(RenderingHints.KEY_ANTIALIASING,
              RenderingHints.VALUE_ANTIALIAS_ON);
              hints.put(RenderingHints.KEY_RENDERING,
              RenderingHints.VALUE_RENDER_QUALITY);
              RescaleOp op = new RescaleOp(scaleFactor, 0, hints);
              return op.filter(bi, null);
    There is no error, but when I try to display the image I don't see anything. The image I have (a .PNG) is a coloured circle on a square background; the background is 100% transparent (alpha transparency). I also tried setting hints to null (which is perfectly legal AFAIK) but no change.
    It also doesn't work with a .JPG.
    Any idea what I've done wrong with this filter?
    I found if I create a new BufferedImage and write the image data to it (in the context of the BufferedImage) then perform this code, then the filter DOES work (and I see an image)... unfortunately the transparent background (alpha channel) was converted to a solid black background. So this technique is flawed (regardless of the fact that it shouldn't be necessary IMO).
    BTW, the code for making this new image:
         BufferedImage bi = new BufferedImage(image.getWidth(null), image.getHeight(null), BufferedImage.TYPE_INT_RGB);
         java.awt.Graphics2D g2d = bi.createGraphics();
         g2d.drawImage(image, 0, 0, null);
         g2d.dispose();
    Any ideas how to make this work? BTW, I've had success with the ColorSpace filter to create grayscale images...
    TIA
    Phil

    import java.awt.*;
    import java.awt.geom.*;
    import java.awt.image.*;
    import java.io.*;
    import java.net.*;
    import javax.imageio.*;
    import javax.swing.*;
    public class RescaleExample {
        public static void main(String[] args) throws IOException {
            File file = new File("junk.png");
            createPNGFile(file);
            BufferedImage image = copy(ImageIO.read(file), BufferedImage.TYPE_INT_ARGB);
            BufferedImage copy = copy(image, BufferedImage.TYPE_INT_ARGB);
            brighten(copy);
            JPanel cp = new JPanel(new GridLayout(1,2));
            URL url = new URL("http://today.java.net/jag/bio/JagHeadshot.jpg");
            cp.setBorder(new CentredBackgroundBorder(ImageIO.read(url)));
            cp.add(new JLabel(new ImageIcon(image)));
            cp.add(new JLabel(new ImageIcon(copy)));
            final JFrame f = new JFrame("RescaleExample");
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.setContentPane(cp);
            f.pack();
            SwingUtilities.invokeLater(new Runnable(){
                public void run() {
                    f.setLocationRelativeTo(null);
                    f.setVisible(true);
        public static void createPNGFile(File file) throws IOException {
            file.delete();
            BufferedImage bi = new BufferedImage(250,250, BufferedImage.TYPE_INT_ARGB);
            //starts out transparent
            Graphics2D g = bi.createGraphics();
            //add some dark colors, suitable for rescaling.
            g.setColor(new Color(128,0,0));
            g.fillRect(50,50,50,150);
            g.setColor(new Color(0,128,0));
            g.fillRect(100,50,50,150);
            g.setColor(new Color(0,0,128));
            g.fillRect(150,50,50,150);
            g.dispose();
            ImageIO.write(bi, "png", file);
        public static BufferedImage copy(BufferedImage bi, int type) {
            BufferedImage result = new BufferedImage(bi.getWidth(), bi.getHeight(), type);
            Graphics2D g = result.createGraphics();
            g.drawRenderedImage(bi, null);
            g.dispose();
            return result;
        public static void brighten(BufferedImage bi) {
            float scaleFactor = 1.5f;
            RenderingHints hints = new RenderingHints(RenderingHints.KEY_COLOR_RENDERING, RenderingHints.VALUE_COLOR_RENDER_QUALITY);
            RescaleOp op = new RescaleOp(scaleFactor, 0, hints);
            op.filter(bi, bi);
    class CentredBackgroundBorder implements javax.swing.border.Border {
        private final BufferedImage image;
        public CentredBackgroundBorder(BufferedImage image) {
            this.image = image;
        public void paintBorder(Component c, Graphics g, int x, int y, int width, int height) {
            x += (width-image.getWidth())/2;
            y += (height-image.getHeight())/2;
            ((Graphics2D) g).drawRenderedImage(image, AffineTransform.getTranslateInstance(x,y));
        public Insets getBorderInsets(Component c) {
            return new Insets(0,0,0,0);
        public boolean isBorderOpaque() {
            return true;
    Notes
    1. RescaleOp seems to have problems with images that have an alpha channel. The fix I finally found
    was to pass the same bufferedimage as both args to filter:op.filter(bi, bi);As the API states:
    ... in-place operation is allowed (i.e. the source and destination can be the same object).
    Just be aware that you need to make a copy first, If you want to retain the original image.
    2. Be aware of the difference between TYPE_INT_RGB and TYPE_INT_ARGB.
    3. This is not an error, but realize only certain hints are relevant. Again, from the API:
    If a RenderingHints object is specified in the constructor, the color rendering hint and the dithering
    hint may be used when color conversion is required.

  • Problem using PJA tools Gif/Image Encoder

    hi
    can someone tell me where i am going wrong ...I am getting the following error after i ran a servlet .
    Internal error: Unexpected error condition thrown (java.lang.NoClassDefFoundError: Acme/JPM/Encoders/ImageEncoder,Acme/JPM/Encoders/ImageEncoder), stack: java.lang.NoClassDefFoundError: Acme/JPM/Encoders/ImageEncoder
    at java.lang.ClassLoader.resolveClass0(Native Method)
    at java.lang.ClassLoader.resolveClass(ClassLoader.java:597)
    at com.iplanet.server.http.servlet.NSServletLoader.loadClass(NSServletLoader.java:114)
    at com.iplanet.server.http.servlet.NSServletEntity.load(NSServletEntity.java:337)
    at com.iplanet.server.http.servlet.NSServletEntity.update(NSServletEntity.java:173)
    at com.iplanet.server.http.servlet.NSServletRunner.Service(NSServletRunner.java:427)
    I added both the GifEncoder and ImageEncoder class files to the classpath . Still the same problem ...
    I need some help ..pls..
    prabhu

    Try copying the GifEncoder and ImageEncoder files or the jar file to the app server lib directory.

  • Problem using url on local image

    Hi,
    i'm currently playing around with javaFx for a udpClient and i wanted to use Image included into my jar but doesn't work.
    ImageView {     
                        image: bind Image { url: ".//image//gradient.jpg" }
    ...it gives me:
    java.net.MalformedURLException: no protocol: image//favicon.ico
            at java.net.URL.<init>(URL.java:567)
            at java.net.URL.<init>(URL.java:464)
            at java.net.URL.<init>(URL.java:413)any idea why? is it mean to be only deployed and not forcast to run as an application with internal reference to image?
    thx you in advance

    ok forget it.
    too late over here :)
    ImageView {                    
                        image: bind Image { url: "file:./image/gradient.jpg" }will do the trick

  • Dynamic Image Location in JRC

    <p>Hi !</p><p> </p><p>We are interested in using so called dynamic image location future in JRC. So far we are unsucessful, so the question is, is it supported in JRC ? We are able to get dynamic image location future working in report designer, but when our report is exported there is no image only path to it. </p><p> </p><p>We use Crystal Reports 11 R2, Java Reporting Component in JSP version.</p><br /><p>Mac</p>

    I have a couple of reports working with dynamic images. CR4E doesn't support this (yet?!?), but you can still do it with the JRC. The big kicker is the syntax of your URL. If you're using a static image on a server somewhere, it should work with no problem. However, if you're using a generated image, it's a little trickier. I discovered this when I was creating a report with barcode labels. The barcodes were not getting generated. I turned on debugging and found that the JRC was screwing up my url. The url was as follows http://myserver/barcode?message=12345 67890&format=datamatrix.
    In the logs, the JRC said it couldn't find an image at the url
    http://myserver/barcodemessage=12345+67890&format=datamatrix. It was stripping out the ? in the url, which is kind of an important character to say the least. I messed around with it and eventually found that if I just put ?? instead of ?, the image would display correctly with the JRC. Hope this helps! If not, post what version of the JRC you're using and the URL you're using for the image location.

  • Applying filter to images loaded with movieClipLoader

    Hello,
    I am building a product gallery and have a number of rather
    large bitmap images that I am loading with movieClipLoader. I need
    to apply drop shadow filters to them when they are loaded. I have
    tried several methods of going about this without success. One
    method was putting the loaded images into a movie clip with
    createEmptyMovieClip, and then applying the filter dynamically, but
    I couldn't seem to get it to work- the filter never appeared. I
    then tried applying the filter to the bitmap itself with
    bitMapData, but because I was not loading the bitmaps using
    bitMapData itself (I think) I wasn't able to get that method to
    work either.
    Does anyone have a suggestion or a recommendation for me?
    Thanks very much for any advice.

    Were you doing it after the onLoadInit event in the
    MovieClipLoader's listener?
    Try doing it that way if you haven't. One option I use for
    dynamic image loading is to create and empty holder clip - use that
    for placement and create another empty clip inside that one that I
    use as the loading target... I think this should work if you set
    the filter at the level of the first 'empty' clip. I had to use
    this approach a number of times because I was using a tweening
    engine based on movieclip prototype extensions (old hat I know) and
    loading new images kicked out the extended functionality from the
    clip the images are loaded into. That doesn't happen to the clip's
    parent... hence I think it might work also for what you want to do.
    Another thing to watch for is that you can't do bitmapData
    copies of images from a different domain unless you have
    crossdomain policy support - you can set it up so this works. I'm
    not sure if this affects filters though.
    -GWD

  • CSS Image loading problem by dynamically loading from fxml file?

    h1. Introduction
    The application I am developing loads an FXML file from a Controller. The FXML uses CSS and images for buttons are set in the CSS.
    CSS directory structure
    <package>.fxml
    Images
    <package>.fxml.resources.<subdir>
    Example CSS Code
    .buttonImage {
        -fx-background-image: url("resources/subdir/image.png");
    }Example loading fxml from controller code
             URL location = getClass().getResource("/package/fxml/UI.fxml");
             FXMLLoader fxmlLoader = new FXMLLoader(location);
             fxmlLoader.setLocation(location);
             fxmlLoader.setBuilderFactory(new JavaFXBuilderFactory());
             Parent root = (Parent)fxmlLoader.load(location.openStream());
             Controller = (Controller) fxmlLoader.getController();
             newPane.getChildren().add(root);h1. Problem
    The fxml file does not load and causes the following error:
    javafx.fxml.LoadException: Page language not specified.Note, the fxml file loaded correctly before images were added.
    Any ideas of what might be going wrong?
    h1. Attempted
    I have attempted the following: tried changing the url of the image as an absolute path.

    No Problem: Note, this is the actual FXML, my previous examples were simplifications of package names and class names in order to directly illustrate the problem. Note, I am using SceneBuilder to develop the FXML file.
    <?xml version="1.0" encoding="UTF-8"?>
    <?import java.lang.*?>
    <?import java.net.*?>
    <?import java.util.*?>
    <?import javafx.collections.*?>
    <?import javafx.scene.*?>
    <?import javafx.scene.control.*?>
    <?import javafx.scene.layout.*?>
    <?import javafx.scene.text.*?>
    <AnchorPane id="AnchorPane" prefHeight="396.0000999999975" prefWidth="350.0" styleClass="mainFxmlClass" xmlns:fx="http://javafx.com/fxml" fx:controller="com.monkygames.kbmaster.controller.ProfileUIController">
      <children>
        <Label layoutX="14.0" layoutY="14.0" text="Profiles">
          <font>
            <Font size="18.0" />
          </font>
        </Label>
        <GridPane layoutX="15.0" layoutY="44.0" prefHeight="99.0" prefWidth="335.0">
          <children>
            <Label text="Type: " GridPane.columnIndex="0" GridPane.rowIndex="0" />
            <ComboBox fx:id="typeCB" prefWidth="249.0" GridPane.columnIndex="1" GridPane.rowIndex="0">
              <items>
                <FXCollections fx:factory="observableArrayList">
                  <String fx:value="Item 1" />
                  <String fx:value="Item 2" />
                  <String fx:value="Item 3" />
                </FXCollections>
              </items>
            </ComboBox>
            <Label text="Program: " GridPane.columnIndex="0" GridPane.rowIndex="1" />
            <ComboBox fx:id="programCB" prefWidth="249.0" GridPane.columnIndex="1" GridPane.rowIndex="1">
              <items>
                <FXCollections fx:factory="observableArrayList">
                  <String fx:value="Item 1" />
                  <String fx:value="Item 2" />
                  <String fx:value="Item 3" />
                </FXCollections>
              </items>
            </ComboBox>
            <Label text="Profile: " GridPane.columnIndex="0" GridPane.rowIndex="2" />
            <ComboBox prefWidth="249.0" GridPane.columnIndex="1" GridPane.rowIndex="2">
              <items>
                <FXCollections fx:factory="observableArrayList">
                  <String fx:value="Item 1" />
                  <String fx:value="Item 2" />
                  <String fx:value="Item 3" />
                </FXCollections>
              </items>
            </ComboBox>
          </children>
          <columnConstraints>
            <ColumnConstraints fillWidth="false" halignment="RIGHT" hgrow="NEVER" maxWidth="-Infinity" minWidth="10.0" prefWidth="80.0" />
            <ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" />
          </columnConstraints>
          <rowConstraints>
            <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
            <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
            <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
          </rowConstraints>
        </GridPane>
        <HBox layoutX="14.0" layoutY="150.0" prefHeight="159.0" prefWidth="335.0">
          <children>
            <Label text="Description: " />
            <TextArea prefHeight="172.0" prefWidth="247.0" wrapText="true" />
          </children>
        </HBox>
        <HBox alignment="CENTER" layoutX="11.0" layoutY="334.0" prefHeight="48.0" prefWidth="329.0">
          <children>
            <Button fx:id="newProfileB" contentDisplay="GRAPHIC_ONLY" minHeight="48.0" minWidth="48.0" mnemonicParsing="false" onAction="profileEventFired" prefHeight="48.0" prefWidth="48.0" styleClass="newProfile" text="New Profile" />
            <Button id="newProfileB" fx:id="cloneProfileB" contentDisplay="GRAPHIC_ONLY" minHeight="48.0" minWidth="48.0" mnemonicParsing="false" onAction="profileEventFired" prefHeight="48.0" prefWidth="48.0" styleClass="cloneProfile" text="Clone Profile" />
            <Button id="newProfileB" fx:id="importProfileB" contentDisplay="GRAPHIC_ONLY" minHeight="48.0" minWidth="48.0" mnemonicParsing="false" onAction="profileEventFired" prefHeight="48.0" prefWidth="48.0" styleClass="importProfile" text="Import Profile" />
            <Button id="newProfileB" fx:id="exportProfileB" contentDisplay="GRAPHIC_ONLY" minHeight="48.0" minWidth="48.0" mnemonicParsing="false" onAction="profileEventFired" prefHeight="48.0" prefWidth="48.0" styleClass="exportProfile" text="Export Profile" />
            <Button id="newProfileB" fx:id="printPDFB" contentDisplay="GRAPHIC_ONLY" minHeight="48.0" minWidth="48.0" mnemonicParsing="false" onAction="profileEventFired" prefHeight="48.0" prefWidth="48.0" styleClass="pdfProfile" text="Print to PDF" />
            <Button id="newProfileB" fx:id="deleteProfileB" contentDisplay="GRAPHIC_ONLY" minHeight="48.0" minWidth="48.0" mnemonicParsing="false" onAction="profileEventFired" prefHeight="48.0" prefWidth="48.0" styleClass="deleteProfile" text="Delete Profile" />
          </children>
        </HBox>
      </children>
      <stylesheets>
        <URL value="@master.css" />
        <URL value="@profile.css" />
      </stylesheets>
    </AnchorPane>Edited by: 960799 on Jan 4, 2013 8:58 PM
    Edited by: 960799 on Jan 4, 2013 8:59 PM

  • Button to load dynamic image in interactive form webdynpro for java

    Hi all
    i tried to use image field to load dynamic image as shown in the online interactive form tutorial
    and it worked for test but when try it with view appears inside viewset it doesnt....
    so i think if we could call the image after render by pressing a button inside the form it may work
    but the problem is i have no idea about how to implement such solution ,so if any one has any idea about how to implement such solution i will be thankful if he can share me the solution.
    thanks.....
    Naguib..

    use the following tutorial. it is very easy to follow and it works fine, i have tried that.
    http://www.docstoc.com/docs/2540673/How-To-Integrate-ADOBE-form-on-WebdynPro-for-ABAP-and-Deploy-it-
    in case of some more problems, ask again and point out the part of tutorial where there is a problem.

  • Dynamic Image issue using the SDK CrystalReportViewer in a Web Farm

    Hello,
    Well it's the classic dyanamic Red X image problem with a twist. We have the CrystalReportViewer control coded into an ASPX web page using the BOE XI R2 SDK.
    The problem is everything works fine (after all the usual Red X image fixes) when only one of the servers in the farm are running. It's when two are running, by using Process Monitor, I can tell NetScaler is splitting up the HTTP calls so one server may have the temp image created and of course the other one doesn't.
    Therefore, if you're lucky enough for one server to handle most of the load, image comes up fine. Otherwise, the report renders, but you get Red X for the image.
    I have seen an article about a registry key (CrystalImageDir) that allows you to enter a network share as the temp folder. The problem is, we are using Windows Integrated Authentication for the intranet site so you're faced the two hop authentication hurtle, leading to access denied on the UNC network path.
    Anyone using the SDK in a .NET application using multiple web front end servers?
    Thanks!
    Horus

    By the way, I'm hearing that NetScaler can handle sticky sessions. However, since a report with dynamic images is really a GET request for the report, then a bunch of sub-GETs to grab the images, what URL would you set the sticky session for?
    For example, if the web page containing the CrystalReportsViewer was:
    https://coolapplication.mycompany.com/Site100/ReportApp/ViewReport.aspx
    Then report the viewer would contain links to something like:
    https://coolapplication.mycompany.com/Site100/ReportApp/CrystalImageHandler.aspx?dynamicimage=cr_tmp_image_5671d67a-4f5d-4ab1-b3c8-0d2561ee64f3.png
    So which URL/page gets load balanced? Or is that not how LB works?
    Thanks!
    Horus

Maybe you are looking for

  • Calling a web service from a portal application / SOAP Action

    Hallo, Ich möchte aus einer Portal Applikation auf einen Web Service zugreifen. Dafür habe ich mit dem Wizard "Portal Service from Wsdl file - Client side" eine Portal Service erzeugt, auf den ich dann zugreife. Leider wird dabei ein Fehler ausgegebe

  • Weblogic 9.2 : Error occured while deploying due to declaration in DD

    Hi, I was deploying .EAR file in one of the instance of weblogic. But the deployment failed due to following reason : •     Errors occured while initializing a new deployment plan •     Error parsing file "META-INF/weblogic-ejb-jar.xml at line : 19 c

  • Trying to add the new year 2012 to posting periods

    I am trying to add the new 2012 months in posting periods in order to allow us to post some invoices that have terms due in 2012. First, when I go to add a new period the "category" feild is missing. Im guessing this has to be added somewhere else bu

  • Song lists in Itunes Store

    When I first went to the store I had a list of all songs in a particular genre without album covers or artwork. Now I can't find that list. How can I do that?

  • Where's the Best Source for a PB G4 15" Battery?

    I read the Apple Discussions Terms of Use and did a search for specific battery recommendations and I'm shocked to see the dearth of info! At first I wondered if it was against Apple policy to post links to third party hardware, but I didn't see that