Ds-console like application !

Hi Flexers,
I'm currently working on a ds-console like application and i got some problems with data management and variable handling. I started reading the ds-console code, concentrated on the ConsoleManager class, but i think i don't hava that much time to do so ...
Is it possible to get the ds-console spec and conception?
My aim after this work is to monitor clients using the FlexSessionId, who's still connected, pending sessions, ...
The application i want to monitor is made of blazeds (+ java).
thanks in advance.

I figured it out. Just change the <display-name> in the web.xml
Bruce
On Mon, Mar 24, 2008 at 4:09 PM, Bruce Hopkins <
[email protected]> wrote:
A new discussion was started by Bruce Hopkins in
General Discussion --
  DS Console Application - detecting new BlazeDS apps
Hi,
I copied the "samples" application and renamed it, but the DS Console application is won't recognize that another application has been deployed to Tomcat. The Application ComboBox only shows "BlazeDS" and "Samples". What magic do I need to do in order to enable this?
Thanks,
Bruce
View/reply at
DS Console Application - detecting new BlazeDS apps
Replies by email are OK.
Use the
unsubscribe form to cancel your email subscription.

Similar Messages

  • Report builder error after applying sql server 2008R2 SP3 when click on report builder gives error like 'Application validation did not succeed. Unable to continue.

    Hi All,
    I applied SQL server 2008 R2 SP3 recently but report builder doesn't work since then
    When click on report builder gives error like 'Application validation did not succeed. Unable to continue.
    and when I try to see details the error summary like following:
    +File, Microsfot.ReportingServices.ComponentLibrary.Controls.dll, has a different computed hash than specified in manifest.
    this is urgent.
    Please reply me asap.
    thanks a lot in advance.
    Regards,
    Nik
    Regards, Naman

    Hi nikp11,
    According to your description, you recently updated SQL Server 2008 R2 to SP3, Report Builder doesn’t work since then the error occurs: "Application validation did not succeed. Unable to continue".
    This is an known issue in SSRS 2008 R2 SP3 that Microsoft has published an article addressing this issue. It is not planning to release a fix for this issue. But we could implement one of the following workarounds:
    Install and run Report Builder 3.0 of SQL Server 2008 R2 RTM.
    Install and run Report Builder of SQL Server 2014.
    Uninstall Service Pack 3 then uninstall Service Pack 2 and then reinstall Service Pack 3.
    Reference:
    Report Builder of SQL Server 2008 R2 Service Pack 3 does not launch
    Thank you for your understanding.
    Best Regards,
    Wendy Fu

  • JScrollPane, JPanel used to make a paint-like application

    I am new to swing. I need help with implementing a paint-like application using JScrollPane and JPanel.
    I have put a JPanel inside a JScrollPane.
    The size of JPanel exceeds preferred size of JScrollPane, and i can see the scrollbars, and can go up and down.
    Problem is, when i draw on the JPanel, i can see what i've drawn very clearly. Now if I scroll down, and then scroll back up, whatever i had previously drawn has been erased.
    let me put it in a simpler manner. suppose i have drawn a filled circle whose diameter is equal to the viewport size of the JScrollPane. Now i am scrolling down till i can see only the bottom half of the circle. When i scroll back up, the upper half of the circle has been erased.
    i think this is a newbie error, and i guess it'll have a textbook response, so i have not bothered to paste my entire code here. however, if it is required, please let me know.

    Sounds very much like you're painting outside the paint cycle. Read this,
    http://java.sun.com/products/jfc/tsc/articles/painting/
    When the user draws on the screen, you want to do one of two things (these being just the most obvious and easiest implementations). For raster operations you want to manipulate an Image; for vector operations you want to manipulate a collection of Shapes.
    Your paintComponent() method of the panel should simply draw the stored images and shapes to the supplied Graphics object as appropriate.
    If you paint to a Graphics object outside the paint cycle then it will all be erased when the paint cycle is next invoked.

  • A "Paint like" application

    Hi,
    I'm currently programming an application for my sister and I would like to finish before Christmas, but I'm really late. So to complete a part of it, I'm looking for the source of a paint like application. Just something you use to draw line, circle, rectangle, filling it or not, choosing the color... So If you can give me a link to this kind of source, or post some source It would be great.
    Thank you.
    S�bastien

    With a fill option.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.util.*;
    import java.awt.image.*;
    import javax.swing.border.*;
    public class PaintLike extends JFrame  implements ActionListener
         PPanel  panel  = new PPanel();
         JPanel  contr  = new JPanel();
         PButton whatt;
         JLabel  whatc;
    public PaintLike()
         addWindowListener(new WindowAdapter()
         {     public void windowClosing(WindowEvent ev)
              {     dispose();
                   System.exit(0);
         setResizable(false);
         setBounds(10,10,780,500);
         getContentPane().add("Center",panel);
         getContentPane().add("West",contr);
         contr.setLayout(new BorderLayout());
         Border       br = BorderFactory.createEtchedBorder(EtchedBorder.LOWERED,Color.white,Color.gray);
         contr.setBorder(br);
         contr.add("North",addButtons());
         contr.add("Center",new JPanel());
         contr.add("South",addColors());
         setVisible(true);
         panel.requestFocus();
    private JPanel addButtons()
         JPanel panel = new JPanel();
         panel.setPreferredSize(new Dimension(70,175));
         panel.setLayout(new GridLayout(5,2,1,1));
         for (int i=0; i < 10; i++)
              PButton jb = new PButton(i);
              jb.addActionListener(this);
              panel.add(jb);
         return(panel);
    private JPanel addColors()
         JPanel panel = new JPanel();
         panel.setLayout(new BorderLayout());
         JPanel canel = new JPanel();
         panel.add("North",canel);
         canel.setLayout(new GridLayout(5,4,0,0));
         canel.setPreferredSize(new Dimension(70,90));
         Color[] colors = {Color.black,Color.blue,
                               new Color(152,0,0),new Color(132,66,0),
                               Color.cyan, new Color(219,219,112),
                               Color.gray,Color.green,
                               new Color(200,200,200),
                               Color.magenta,new Color(0,0,108),
                               Color.orange,Color.pink,
                               Color.red,new Color(155,192,210),
                               new Color(230,230,230),new Color(64,224,208),
                               Color.white,Color.yellow};
         for (int i=0; i < colors.length; i++)
              JButton jb = new JButton("");
              jb.setBackground(colors);
              jb.addActionListener(this);
              jb.setRequestFocusEnabled(false);
              canel.add(jb);
         whatc = new JLabel(" ");
         whatc.setOpaque(true);
         whatc.setBackground(Color.blue);
         whatc.setBorder(new MatteBorder(1,1,1,1,Color.black));
         panel.add("Center",whatc);
         return(panel);
    public void actionPerformed(ActionEvent ae)
         if (ae.getSource() instanceof PButton) whatt = (PButton)ae.getSource();
         else if (ae.getSource() instanceof JButton)
              whatc.setBackground(((JComponent)ae.getSource()).getBackground());
    public class PPanel extends JPanel implements MouseMotionListener, MouseListener
         Point mp,fp,tp;
         Vector objects = new Vector();
         BufferedImage image;
         Graphics2D graph;
    public PPanel()
         setBackground(Color.white);
         addMouseMotionListener(this);
         addMouseListener(this);
    public void paintComponent(Graphics g)
         super.paintComponent(g);
         if (image == null || image.getWidth(null) != getWidth() ||
                             image.getHeight(null) != getHeight())
              image = (BufferedImage)createImage(getWidth(),getHeight());
              graph = (Graphics2D)image.getGraphics();
              graph.setColor(Color.white);
              graph.fillRect(0,0,getWidth(),getHeight());
              for (int i=0; i < objects.size(); i++)
                   PObject po = (PObject)objects.get(i);
                   po.draw(graph);
         g.drawImage(image,0,0,null);
         g.setColor(whatc.getBackground());
         if (whatt != null && fp != null)
              if (whatt.type == 0) g.drawLine(fp.x,fp.y,tp.x,tp.y);
              if (whatt.type == 1) g.drawOval(fp.x,fp.y,tp.x-fp.x,tp.y-fp.y);
              if (whatt.type == 2) g.drawRect(fp.x,fp.y,tp.x-fp.x,tp.y-fp.y);
    public void mouseDragged(MouseEvent m)
         if (whatt == null) return;
         if (whatt.type > 2) return;
         if (fp == null)
              fp = new Point();
              tp = new Point();
         if (whatt.type == 0)
              fp.setLocation(mp.getLocation());
              tp.setLocation(m.getPoint().getLocation());
         else
              fp.x = Math.min(mp.x,m.getX());
              fp.y = Math.min(mp.y,m.getY());
              tp.x = Math.max(mp.x,m.getX());
              tp.y = Math.max(mp.y,m.getY());
         repaint();
    public void mouseMoved(MouseEvent m){}
    public void mouseClicked(MouseEvent m)
    //     if (whatt.type == 6)
    //          fillIt(mp.x,mp.y,image.getRGB(mp.x,mp.y));
    //          changeMx(image.getRGB(mp.x,mp.y),mp.x,mp.y);
    //          repaint();
    public void mouseEntered(MouseEvent m){}
    public void mouseExited(MouseEvent m) {}
    public void mouseReleased(MouseEvent m)
         if (whatt == null) return;
         if (whatt.type == 6)
              fillIt(mp.x,mp.y,image.getRGB(mp.x,mp.y));
              repaint();
              return;
         if (fp != null)
              PObject po = new PObject(whatt.type,fp,tp,whatc.getBackground());
              objects.add(po);
              po.draw(graph);
              fp = null;
    public void mousePressed(MouseEvent m)
         mp = m.getPoint();
    public void fillIt(int x, int y, int ogb)
         int ng = whatc.getBackground().getRGB();
         if (ng == ogb) return;
         int[] xv = new int[getWidth()*getHeight()];
         int[] yv = new int[getWidth()*getHeight()];
         int ii = 1;
         image.setRGB(x,y,ng);     
         xv[0] = x;
         yv[0] = y;
         for (int i=0; i < ii; i++)
              int xx = xv[i];
              int yy = yv[i];
              if (xx > 0 && image.getRGB(xx-1,yy) == ogb)
                   xv[ii] = xx-1;
                   yv[ii] = yy;
                   image.setRGB(xx-1,yy,ng);
                   ii++;
              if (yy > 0 && image.getRGB(xx,yy-1) == ogb)
                   xv[ii] = xx;
                   yv[ii] = yy-1;
                   image.setRGB(xx,yy-1,ng);
                   ii++;
              if (xx < getWidth()-1 && image.getRGB(xx+1,yy) == ogb)
                   xv[ii] = xx+1;
                   yv[ii] = yy;
                   image.setRGB(xx+1,yy,ng);
                   ii++;
              if (yy < getHeight()-1 && image.getRGB(xx,yy+1) == ogb)
                   xv[ii] = xx;
                   yv[ii] = yy+1;
                   image.setRGB(xx,yy+1,ng);
                   ii++;
    public class PButton extends JButton
         int type;
    public PButton(int type)
         this.type = type;
    public void paintComponent(Graphics g)
         super.paintComponent(g);
         Graphics2D g2 = (Graphics2D)g;
         g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
         g2.setStroke(new BasicStroke(1.2f));
         if (type == 0) g.drawLine(8,8,getWidth()-10,getHeight()-11);     
         if (type == 1) g.drawOval(6,10,getWidth()-13,getHeight()-20);
         if (type == 2) g.drawRect(7,7,getWidth()-15,getHeight()-14);
         if (type == 6) g.drawString("Fill",7,20);
         if (hasFocus())
              g.setColor(Color.gray);
              g.drawRect(4,3,getWidth()-9,getHeight()-7);     
    public class PObject extends JComponent
         int type;
         Point fp,tp;
         Color color;
         boolean fill;
    public PObject(int type, Point fp, Point tp, Color color)
         this.type = type;
         this.fp = fp;
         this.tp = tp;
         this.color = color;
    public void setFill(boolean fill)
         this.fill = fill;
    public void draw(Graphics g)
         g.setColor(color);
         if (type == 0) g.drawLine(fp.x,fp.y,tp.x,tp.y);
         if (type == 1) g.drawOval(fp.x,fp.y,tp.x-fp.x,tp.y-fp.y);
         if (type == 2) g.drawRect(fp.x,fp.y,tp.x-fp.x,tp.y-fp.y);
    public static void main (String[] args)
         new PaintLike();
    Noah

  • Use of uiext.Inbox control in a Fiori-like application

    Hi all,
    I'm investigating Fiori-like custom application development, underlying platform is HCP.
    I need to provide an inbox for BPM tasks and the uiext.Inbox control look pretty cool to me.
    However, I understand it does not belong to the sap.m package where Fiori controls belong.
    Thus, I expect interoperability problems when embedding the uiext.Inbox in a Fiori-like application.
    So I'd be grateful if anyone could clarify
    can uiext.Inbox integrate in a Fiori-like app?
    in case it can't, how could one implement a task inbox on Fiori-like applications?
    Thanks, regards
    Vincenzo

    You can use the # format specifier after the seconds to specify milliseconds.
    For example, you might be using the format string "hh:nn:ss" to currently specify hour, minute, and second. You could add a "." and a "#" for every digit to the right of the decimal to specify milliseconds. For example, if you wanted to specify hour, minute, second, and 2 decimals for the milliseconds, the format string would be "hh:nn:ss.##".
    - Elton

  • Browser Like Application

    Hi Everyone,
    I am going to create a browser-like application in Java. This application can read and render html file. Links provided in the html file is an information to any application and if click, it launches the specified application.
    At first, I created an Active-X control and a sample html file that uses this active-X control. Specified in the PARAM of the OBJECT tag is the application path as well as the application exe file. So when the Active-X control is clicked,
    it launches the specified application (set in the PARAM). But my manager told me not to use any browser but to create my own browser in Java.
    Does anyone has any idea how to implement a browser like application? I may be using DTD to create a set of properties like the OBJECT tag. Any help is greatly appreciated.
    Thank you very much,
    Ferdinand

    hi,
    I am just giving a code written in swings for simple web browser.This may not have much features but it is functional. Hope it would help you.
    import javax.swing.*;
    import javax.swing.event.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.net.*;
    import java.io.*;
    /** Very simplistic "Web browser" using Swing. Supply a URL on the
    * command line to see it initially, and to set the destination
    * of the "home" button.
    public class Browser extends JFrame implements HyperlinkListener,
    ActionListener {
    public static void main(String[] args) {
    if (args.length == 0)
    new Browser("http://www.yahoo.com");
    else
    new Browser(args[0]);
    private JIconButton homeButton;
    private JTextField urlField;
    private JEditorPane htmlPane;
    private String initialURL;
    public Browser(String initialURL) {
    super("Simple Swing Browser");
    this.initialURL = initialURL;
    // addWindowListener(new ExitListener());
    // WindowUtilities.setNativeLookAndFeel();
    JPanel topPanel = new JPanel();
    topPanel.setBackground(Color.lightGray);
    homeButton = new JIconButton("home.gif");
    homeButton.addActionListener(this);
    JLabel urlLabel = new JLabel("URL:");
    urlField = new JTextField(30);
    urlField.setText(initialURL);
    urlField.addActionListener(this);
    topPanel.add(homeButton);
    topPanel.add(urlLabel);
    topPanel.add(urlField);
    getContentPane().add(topPanel, BorderLayout.NORTH);
    try {
    htmlPane = new JEditorPane(initialURL);
    htmlPane.setEditable(false);
    htmlPane.addHyperlinkListener(this);
    JScrollPane scrollPane = new JScrollPane(htmlPane);
    getContentPane().add(scrollPane, BorderLayout.CENTER);
    } catch(IOException ioe) {
    warnUser("Can't build HTML pane for " + initialURL
    + ": " + ioe);
    Dimension screenSize = getToolkit().getScreenSize();
    int width = screenSize.width * 8 / 10;
    int height = screenSize.height * 8 / 10;
    setBounds(width/8, height/8, width, height);
    setVisible(true);
    public void actionPerformed(ActionEvent event) {
    String url;
    if (event.getSource() == urlField)
    url = urlField.getText();
    else // Clicked "home" button instead of entering URL
    url = initialURL;
    try {
    htmlPane.setPage(new URL(url));
    urlField.setText(url);
    } catch(IOException ioe) {
    warnUser("Can't follow link to " + url + ": " + ioe);
    public void hyperlinkUpdate(HyperlinkEvent event) {
    if (event.getEventType() == HyperlinkEvent.EventType.ACTIVATED) {
    try {
    htmlPane.setPage(event.getURL());
    urlField.setText(event.getURL().toExternalForm());
    } catch(IOException ioe) {
    warnUser("Can't follow link to "
    + event.getURL().toExternalForm() + ": " + ioe);
    private void warnUser(String message) {
    JOptionPane.showMessageDialog(this, message, "Error",
    JOptionPane.ERROR_MESSAGE);
    import javax.swing.*;
    public class JIconButton extends JButton {
    public JIconButton(String file) {
    super(new ImageIcon(file));
    setContentAreaFilled(false);
    setBorderPainted(false);
    setFocusPainted(false);
    Bye.
    -Dani

  • WebStart with console based applications

    Hi:
    I've been struggling all day to get WebStart to work with a console based application (i.e., an application with no user interface that's launched from a shell window). When I launch the application with WebStart, the shell window is not visible. I've tried turning on the advanced option to show the console window, but only System.out and System.err go to there -- you cannot enter user input. Is there a way to run a console based application for a console based application? Thanks.
    -- Greg

    Hi,
    WebStart cannot get input from the console window.
    You may have to use some dialog boxes to get your input.
    zamir

  • How to debug weblogic console extension application ?

    Hi,
    I am developing a weblogic console extension application with web logic portal framework, I got some error, but no idea how to debug,
    I can see some error on buildApplication.jsp file, but can't find __buildapplication.java file which is compiled from buildApplication.jsp,
    so I can't know the error is in which line in buildApplication.jsp file. and I dont' even know which tag is tag1 tag2 tag3 in that jsp file.
    at jsp_servlet._ext_jsp.__buildapplication._jsp__tag3(__buildapplication.java:292)
    at jsp_servlet._ext_jsp.__buildapplication._jsp__tag2(__buildapplication.java:260)
    at jsp_servlet._ext_jsp.__buildapplication._jsp__tag1(__buildapplication.java:211)
    at jsp_servlet._ext_jsp.__buildapplication._jspService(__buildapplication.java:138)
    Code of buildApplication.jsp:
         <fmt:setBundle basename="detwds" var="current_bundle" scope="page"/>
         <beehive-template:template templatePage="/layouts/configBaseLayoutNoTransact.jsp">
              <beehive-template:section name="configAreaIntroduction">
              <fmt:message key="buildApplication.jsp.page.introduction" bundle="detwds"/>
              </beehive-template:section>
              <beehive-template:section name="form">
              <html:xhtml/>
              <wl-extension:template name="/templates/jmxform.xml">
              <wl-extension:form name="ExtensionForm" type="com.det.consoleext.form.ExtensionForm" action="/BuildApplication" bundle="detwds">
              <wl-extension:select
              property="contents"                                                   labelId="buildApplication.jsp.page.repositoryList.label"                                                   inlineHelpId="buildApplication.jsp.page.repositoryList.inlinehelp"
              singlechange="false">
                   <wl-extension:optionsCollection                                                                  property="repositoryName"
                        label="label"
                        value="value"/>
              </wl-extension:select>
              </wl-extension:form>
         </wl-extension:template>
         </beehive-template:section>
         </beehive-template:template>
    Error message:
    2755> <BEA-423405> <An exception [java.lang.String] was thrown while rendering the content at [ext_jsp/buildApplication.jsp].
    java.lang.ClassCastException: java.lang.String
    at jsp_servlet._ext_jsp.__buildapplication._jsp__tag3(__buildapplication.java:292)
    at jsp_servlet._ext_jsp.__buildapplication._jsp__tag2(__buildapplication.java:260)
    at jsp_servlet._ext_jsp.__buildapplication._jsp__tag1(__buildapplication.java:211)
    at jsp_servlet._ext_jsp.__buildapplication._jspService(__buildapplication.java:138)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:226)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:124)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
    at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:528)
    at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:454)
    at org.apache.beehive.netui.pageflow.scoping.internal.ScopedRequestDispatcher.include(ScopedRequestDispatcher.java:119)
    at com.bea.netuix.servlets.controls.content.JspContent.beginRender(JspContent.java:551)
    at com.bea.netuix.servlets.controls.content.NetuiContent.beginRender(NetuiContent.java:363)
    at com.bea.netuix.nf.ControlLifecycle$7.visit(ControlLifecycle.java:483)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:518)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:220)
    at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:375)
    at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:341)
    at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:332)
    at com.bea.netuix.nf.Lifecycle.run(Lifecycle.java:306)
    at com.bea.netuix.nf.UIControl.render(UIControl.java:578)
    at com.bea.netuix.servlets.controls.PresentationContext.render(PresentationContext.java:482)
    at com.bea.netuix.servlets.util.RenderToolkit.renderChild(RenderToolkit.java:146)
    at com.bea.netuix.servlets.jsp.taglib.RenderChild.doStartTag(RenderChild.java:62)
    at jsp_servlet._framework._skeletons._default.__gridlayout._jspService(__gridlayout.java:285)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:226)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:124)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
    at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:528)
    at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:454)
    at com.bea.netuix.servlets.controls.application.laf.JspTools.renderJsp(JspTools.java:123)
    at com.bea.netuix.servlets.controls.application.laf.JspControlRenderer.beginRender(JspControlRenderer.java:72)
    at com.bea.netuix.servlets.controls.application.laf.PresentationControlRenderer.beginRender(PresentationControlRenderer.java:65)
    at com.bea.netuix.nf.ControlLifecycle$7.visit(ControlLifecycle.java:479)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:518)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:220)
    at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:375)
    at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:341)
    at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:332)
    at com.bea.netuix.nf.Lifecycle.run(Lifecycle.java:306)
    at com.bea.netuix.nf.UIControl.render(UIControl.java:578)
    at com.bea.netuix.servlets.controls.PresentationContext.render(PresentationContext.java:482)
    at com.bea.netuix.servlets.util.RenderToolkit.renderChild(RenderToolkit.java:146)
    at com.bea.netuix.servlets.jsp.taglib.RenderChild.doStartTag(RenderChild.java:62)
    at jsp_servlet._framework._skeletons._default.__gridlayout._jspService(__gridlayout.java:285)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:226)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:124)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
    at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:528)
    at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:454)
    at com.bea.netuix.servlets.controls.application.laf.JspTools.renderJsp(JspTools.java:123)
    at com.bea.netuix.servlets.controls.application.laf.JspControlRenderer.beginRender(JspControlRenderer.java:72)
    at com.bea.netuix.servlets.controls.application.laf.PresentationControlRenderer.beginRender(PresentationControlRenderer.java:65)
    at com.bea.netuix.nf.ControlLifecycle$7.visit(ControlLifecycle.java:479)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:518)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:220)
    at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:375)
    at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:341)
    at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:332)
    at com.bea.netuix.nf.Lifecycle.run(Lifecycle.java:306)
    at com.bea.netuix.nf.UIControl.render(UIControl.java:578)
    at com.bea.netuix.servlets.controls.PresentationContext.render(PresentationContext.java:482)
    at com.bea.netuix.servlets.util.RenderToolkit.renderChild(RenderToolkit.java:146)
    at com.bea.netuix.servlets.jsp.taglib.RenderChild.doStartTag(RenderChild.java:62)
    at jsp_servlet._framework._skeletons._default.__flowlayout._jspService(__flowlayout.java:281)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:226)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:124)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
    at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:528)
    at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:454)
    at com.bea.netuix.servlets.controls.application.laf.JspTools.renderJsp(JspTools.java:123)
    at com.bea.netuix.servlets.controls.application.laf.JspControlRenderer.beginRender(JspControlRenderer.java:72)
    at com.bea.netuix.servlets.controls.application.laf.PresentationControlRenderer.beginRender(PresentationControlRenderer.java:65)
    at com.bea.netuix.nf.ControlLifecycle$7.visit(ControlLifecycle.java:479)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:518)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:220)
    at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:375)
    at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:341)
    at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:332)
    at com.bea.netuix.nf.Lifecycle.run(Lifecycle.java:306)
    at com.bea.netuix.nf.UIControl.render(UIControl.java:578)
    at com.bea.netuix.servlets.controls.PresentationContext.render(PresentationContext.java:482)
    at com.bea.netuix.servlets.util.RenderToolkit.renderChild(RenderToolkit.java:146)
    at com.bea.netuix.servlets.jsp.taglib.RenderChild.doStartTag(RenderChild.java:62)
    at jsp_servlet._framework._skeletons._default.__gridlayout._jspService(__gridlayout.java:285)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:226)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:124)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
    at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:528)
    at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:454)
    at com.bea.netuix.servlets.controls.application.laf.JspTools.renderJsp(JspTools.java:123)
    at com.bea.netuix.servlets.controls.application.laf.JspControlRenderer.beginRender(JspControlRenderer.java:72)
    at com.bea.netuix.servlets.controls.application.laf.PresentationControlRenderer.beginRender(PresentationControlRenderer.java:65)
    at com.bea.netuix.nf.ControlLifecycle$7.visit(ControlLifecycle.java:479)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:518)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:529)
    at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:220)
    at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:375)
    at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:341)
    at com.bea.netuix.nf.Lifecycle.runOutbound(Lifecycle.java:188)
    at com.bea.netuix.nf.Lifecycle.run(Lifecycle.java:142)
    at com.bea.netuix.servlets.manager.UIServlet.runLifecycle(UIServlet.java:377)
    at com.bea.netuix.servlets.manager.UIServlet.doPost(UIServlet.java:253)
    at com.bea.netuix.servlets.manager.UIServlet.doGet(UIServlet.java:206)
    at com.bea.netuix.servlets.manager.UIServlet.service(UIServlet.java:191)
    at com.bea.netuix.servlets.manager.SingleFileServlet.service(SingleFileServlet.java:266)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at weblogic.servlet.AsyncInitServlet.service(AsyncInitServlet.java:124)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:226)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:124)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
    at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3393)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(Unknown Source)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2140)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2046)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1366)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:200)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:172)

    It is quite easy to rewrite the plugin to work with 8.1
    We have done so - please contact me if you want the plugin.
    Sincerely,
    Paul Nyheim
    "HOs" <[email protected]> wrote in message
    news:3f72ce93$[email protected]..
    >
    Hi,
    how can I debug my weblogic 8.1 application ?
    I`m using eclipse, but the plugin I´ve got, is only for versions 6.x and7.0 .
    So I tried remote debugging but eclipse could not connect to the VM, I donot
    know why.
    Any ideas ??
    Thanks
    Holger

  • Wizard-like application using ADF

    I am trying to develop a wizard-like application that goes through multiple screens, storing data of each screen into a session and finally saving it to the database at the end of the wizard. Is there a built-in taskflow or component that can do this ? Otherwise, any example code that I can refer to.?

    Hi,
    have a look at sample #40 on ADF Code Corner - http://www.oracle.com/technetwork/developer-tools/adf/learnmore/index-101235.html
    It explains how to defer ADF binding validation for until the end of a wizard action, or in the sample using partial af:subform submits. Seems easier to me to create a wizard flow based on an ADF binding than to juggle a managed bean from start to end
    Frank

  • Weblogic Console or applications not responding and non responsive

    Hi!
    We are using Bea Weblogic 10 app server which is deployed on an AIX(6.1) machine.
    Everything was working fine until 2 days ago.
    What happens is, periodically ( like once every hour) none of the applications work and even the Admin console is not coming up. If we restart the app server it seems to be working but in 50 min or 1 hour nothing responds.
    It is tough to restart the svr so many times. I am trying to find out more about this. The server log seems to be fine and i do not see any specific errors.
    We don't know if changing the port will be the right thing to do.
    If anyone came across a similar issue please do provide your inputs. Thanks in advance!

    Are you working with a Sun (HotSpot) related JVM?
    The JVM ships with a number of tools that can be used, such jconsole, jstat and jmap. Newer versions also have jvisualvm.
    The tools can be found in the ${JDK_HOME}/bin directory.
    Examples of there usage can be found here: http://middlewaremagic.com/weblogic/?p=7340

  • How to control the error messages (like Application..) in visual composer?

    hi
    is it possible to control the error message?
    After creating the delivery using a BAPI function,
    the return message is displayed in the table list if the transaction is succeeded.
    But the error occurred, dialog box is showed (Application Message).
    I just want to show the error message like being succeed in.
    Regards,
    Wooho.

    Hi
    You can try and use guard conditions or check the table for data, if there is no data in the table the application will return an error message.
    Jarrod Williams

  • "Paint" like Application?

    I looked under Downloads and I couldn't find anything that I was looking for.
    I am looking for an Application something like Paint in Microsoft. Where I can add a text box, etc. Things of that nature.
    Any suggestions on what Applications would fulfill this?
    Thanks

    It depends on the complexity. While "Paint" will allow you to use editing tools such as the pencil, which change the individual pixels on the image, Apple's "Preview" application does allow you to add markup and annotations to certain files. You will have to first save pictures as a PDF, and then open them in preview again to add ovals, rectangles, text, and whatnot using the "Tools" menu. Then you can export the results in an image format such as JPG or PNG. It's a little more involved in this sense, but can be done without third-party software if a simple text box or oval-like markup is all you want to do.

  • How to make a HyperCard-like application

    I've written several japplets that do useful things, but they have been "single-screen" applications. This time I have to program a japplet that has multiple screens. On the 1st screen, the user makes a selection. Upon hitting "Next", the 2nd screen appears, where he does something else, etc. etc. Much like a HyperCard or Macromedia Director kind of program. Could somebody help me get started? I thought of making a JPanel for each "screen". But how do I switch from one JPanel to the next? Any help would be much appreciated!

    CardLayout

  • DataSource Unavailable ..on console but application is fine....

    Last week one of our Data bases was down for a while when some servers which use this DB in their Data sources were bouncing......so the servers would go into ADMIN mode ...i just pushed them to RUNNING mode and after a while the DB was back up ....when i checked the console there was no indication that the DS was running on that server now....but when i checked the front end application ..it was all working...that is the functionality which uses the DS was working......
    Doesn't the console automatically update when the DB is back up and the DS is working???.........After bouncing the servers again ...the console indicated the DS was running.....Is this a console problem or is this how its supposed to work.....

    Appreciate your response....how ever my question was .....when the DB is back up and DS is functioning (verified from front end) still the console didn't reflect the availability of the DS....but after a few hours(12-13 hrs) when the servers bounced the console was updated....(our servers cron bounce daily in the night --due to some application specific reasons)....So again my question is "Is the console supposed to be updated with the state of the DS when it becomes available...."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Console independent application (very urgent)

    When I run my application with GUI from DOS window or any other console, I don't need that DOS window anymore, since any input and output is implemented through GUI. The problem is that I can't use that DOS window until my application exits. And if I want to run several of them, I need to have as many DOS windows as well. How can I make it so when I run my application, it becomes independent, the promt in the DOS window returns and I can execute my program second time, and third and so on...
    Fast reply would be GREATLY appreciated
    thanks in advance

    use the "start" dos command. Do a "start /?" to see how it works. Or you can use javaw to run your app instead of java.

Maybe you are looking for

  • Fingerprint windows 7-64 login problem

     I have new installation of windows 7 64. After applying the exchange profile the fingerprint stop working for windows login. It works for power on and for entering the software control panel. I remove it and re install without success. Appreciates

  • My macbook pro is crashing several times a day

    my macbook pro is crashing several times a day. i took it to be repaired and the logic board has been replaced. if anything it is now worse. it has crashed when previewing video, in keynote, linking to an external monitor, in photoshop, scrolling dow

  • CM upgrade from 6.1.1 to 7.0(2)

    Hello, I am going to be upgrading our CM this weekend and I would like to know if it is possible to run the upgrade today on the Pub and Sub and wait to reload both of them on Saturday or Sunday. When the reload happens, the Pub will be done first, t

  • LSH error on installation server: Could not install DS as a service

    Hi we set up an installation server some time ago. In the past all users had administrative privileges therefore no LSH was necessary. Currently we are upgrading from Windows XP to Windows 7 and the users won't be admins anymore. That's why LSH is ne

  • Regarding Updation of data in the detail tab of Monitor screen

    hai I got error in loading the data. I modified it in the PSA level. I will update that datapackage 'manually' in the detail tab of the monitor screen. Like that , i have 15-error datapackage and i modified them . Then how can i update all 15-datapac