Need help:JPanel not being displayed in the JFrame

Hello,
I have a class called ConstructRoom.java which extends JFrame and another class called DimensionsPanel.java which extends JPanel. In the ConstructRoom class I use the following theContainer.add(new DimensionsPanel());, so I can display my JPanel. Well I get the JFrame but no JPanel. When the this call is made the DimensionsPanel.java code is cycled through, Where has my JPanel gone to?
If I change the DimensionPanel.java extend JFrame and add the the JFrame code. Then I get the JFrame and the JPanel.
Whats going on here?
Thanks

I made some of the changes with no luck. Here is some of the code:
---------from ConstructRoom.java--------
//Imports
public class ConstructRoom extends JFrame
//----Member objects and varibles
private static String theTitle; //Varible for title of frame
private JFrame theFrame; //Object for the JFrame
// ----------------------------------------------------------- ConstructRoom
public ConstructRoom(String theTitle)
super(theTitle); //JFrame super class
theFrame = new JFrame("My frame");
Container theContainer = theFrame.getContentPane(); //Frame container
theContainer.setLayout(new FlowLayout());
theContainer.add(new DimensionsPanel());
theFrame.pack();
theFrame.setBounds(10,10,400, 400);
theFrame.addWindowListener(new WindowHandler());
theFrame.setVisible(true);
}//end ConstructRoom(String theTitle)
// -------------------------------------------------------------------- main
public static void main(String args[])
ConstructRoom theRoom = new ConstructRoom(theTitle);
}//end main(String args[])
//----WindowHander
}//end class ConstructRoom extends JFrame
--------from DimensionsPanel.java
//Imports
public class DimensionsPanel extends JPanel
//----Member objects and varibles
private JPanel dimensionsPanel; //The main panel to hold all info
private Box panelBox; //Box for all boxes which is added to the JPanel
private Box furnListBox; //Box for all related items of the furnList
private Box dimensionsBox; //Box for all dimensions (x, y, z)
private Box xFieldBox; //Box for all related items of the xField
private Box yFieldBox; //Box for related items of the yField
private Box zFieldBox; //Box for related items of the zField
private Box buttonsBox; //Box for all buttons
private Box clearBox; //Box for related clear button items
private Box buildBox; //Box for related build button items
private JLabel furnListLabel; //Label for the furnList comboBox
private JLabel xFieldLabel; //Label for the xField
private JLabel yFieldLabel; //Label for yField
private JLabel zFieldLabel; //Label for zField
private JTextField xField; //Text field to enter the x dimension
private JTextField yField; //Text field to enter the y dimension
private JTextField zField; //Text field to enter the z dimension
private JComboBox furnList; //List of selectable furniture objects
private JButton clearButton; //Clear button
private JButton buildButton; //Build button
// --------------------------------------------------------- DimensionsPanel
public DimensionsPanel()
//----Setting up dimensions panel
dimensionsPanel = new JPanel();
dimensionsPanel.setLayout(new BorderLayout());
dimensionsPanel.setPreferredSize(new Dimension(150,150));
dimensionsPanel.setBorder(new TitledBorder(new EtchedBorder(),
"Select Furniture and Enter Dimensions"));
//----Initializing GUI components
furnListLabel = new JLabel("Select from list ");
furnList = new JComboBox();
xFieldLabel = new JLabel("Enter Width ");
xField = new JTextField();
yFieldLabel = new JLabel("Enter Height ");
yField = new JTextField();
zFieldLabel = new JLabel("Enter Depth ");
zField = new JTextField();
buildButton = new JButton("Build Object");
clearButton = new JButton("Clear Object");
//-----Setting up the combo box and adding items
furnList.addActionListener(new ComboProcessor());
furnList.addItem(" "); //Default item
furnList.addItem("Color Cube");
furnList.setMaximumRowCount(6); //Max number of items before scrolling
furnList.setSelectedItem(" "); //Set initial to default item
//--Add the furnList to its box for placement in the JPanel
furnListBox = Box.createHorizontalBox();
furnListBox.add(Box.createHorizontalStrut(5));
furnListBox.add(furnListLabel); //Adding the combo box label
furnListBox.add(furnList); //Adding the combo box
furnListBox.add(Box.createHorizontalStrut(5)); //Spacing
//-------------------------------- Start Dimensions Components
//----Setting up the xField
xField.setEnabled(false); //Disabled at start
xField.setFocusTraversalKeysEnabled(false); //Disabling the Tab Key
//----Adding the event listeners
xField.addActionListener(new XTextProcessor()); //Enter Key
xField.addMouseListener(new ClickProcessor()); //Mouse Click
//--Add the xField to its box for placement in the dimensionsBox
xFieldBox = Box.createHorizontalBox();
xFieldBox.add(Box.createHorizontalStrut(10)); //Spacing
xFieldBox.add(Box.createGlue()); //Take up extra space
xFieldBox.add(xFieldLabel); //Adding the text field label
xFieldBox.add(xField); //Adding the text field
xFieldBox.add(Box.createHorizontalStrut(100)); //Spacing
//----Setting up the yfield
yField.setEnabled(false); //Disabled at start
yField.setFocusTraversalKeysEnabled(false); //Disabling TAB KEY
//----Adding the event listeners
yField.addActionListener(new YTextProcessor()); //Enter Key
yField.addMouseListener(new ClickProcessor()); //Mouse Click
//--Add the yField to its box for placement in the dimensionsBox
yFieldBox = Box.createHorizontalBox();
yFieldBox.add(Box.createHorizontalStrut(10)); //Spacing
yFieldBox.add(Box.createGlue()); //Take up extra space
yFieldBox.add(yFieldLabel); //Adding the text field label
yFieldBox.add(yField); //Adding the text field
yFieldBox.add(Box.createHorizontalStrut(100)); //Spacing
//----Setting up the zfield
zField.setEnabled(false); //Disabled at start
zField.setFocusTraversalKeysEnabled(false); //Disabling TAB KEY
//----Adding the event listeners
zField.addActionListener(new ZTextProcessor()); //Enter Key
zField.addMouseListener(new ClickProcessor()); //Mouse Click
//--Add the zField to its box for placement in the dimensionsBox
zFieldBox = Box.createHorizontalBox();
zFieldBox.add(Box.createHorizontalStrut(10)); //Spacing
zFieldBox.add(Box.createGlue()); //Take up extra space
zFieldBox.add(zFieldLabel); //Adding the text field label
zFieldBox.add(zField); //Adding the text field
zFieldBox.add(Box.createHorizontalStrut(100)); //Spacing
//----Adding all dimension components to the dimensionsBox
dimensionsBox = Box.createVerticalBox();
dimensionsBox.add(xFieldBox); //Adding the xFieldBox
dimensionsBox.add(Box.createVerticalStrut(10)); //Spacing
dimensionsBox.add(yFieldBox); //Adding the yFieldBox
dimensionsBox.add(Box.createVerticalStrut(10)); //Spacing
dimensionsBox.add(zFieldBox); //Adding the zFieldBox
//-------------------------------- End Dimension Components
//----Setting up the clearButton
clearButton.setEnabled(false); //Disabled at start
//----Adding the event listener
clearButton.addActionListener(new ClearProcessor());
//--Add the clear button to its box for placement
clearBox = Box.createHorizontalBox();
clearBox.add(Box.createHorizontalStrut(5)); //Spacing
clearBox.add(clearButton); //Adding the clearButton
//----Setting up the buildButton
buildButton.setEnabled(false); //Disabled at start
//--Add the action listener here
buildBox = Box.createHorizontalBox();
buildBox.add(buildButton); //Adding the buildButton
buildBox.add(Box.createHorizontalStrut(5)); //Spacing
//----Adding both buttons the buttonsBox
buttonsBox = Box.createHorizontalBox();
buttonsBox.add(clearBox); //Adding the clearBox
buttonsBox.add(Box.createHorizontalStrut(10)); //Spacing
buttonsBox.add(buildBox); //Adding the buildBox
//----Create the JPanel (dimensionsPanel)
//--Creating the main box to be added to the JPanel
panelBox = Box.createVerticalBox();
panelBox.add(furnListBox); //Adding the furnListBox components
panelBox.add(Box.createVerticalStrut(10)); //Spacing
panelBox.add(dimensionsBox); //Adding the dimensionBox components
panelBox.add(Box.createVerticalStrut(10)); //Spacing
panelBox.add(buttonsBox); //Adding the buttonsBox components
panelBox.add(Box.createVerticalStrut(10)); //Spacing
dimensionsPanel.add(panelBox); //Adding all components to the JPanel
System.out.println("end dimensionpanel");
}//end DimensionsPanel()
//------ActionListeners
}//end class DimensionsPanel extends JPanel

Similar Messages

  • All day calendar events not being displayed in the notification centre for iphone 5 post ios 7 upgrade. Please help. Is it a bug?

    All day calendar events not being displayed in the notification centre for iphone 5 post ios 7 upgrade. Please help. Is it a bug?
    With iOS 6, the all day events showed up in the notification centre but it lacks in the upgrade iOS 7.

    Same problem here. Some people pointed out that all-day events do show up in their notification center, but that seems only to be the case for birthdays (and only as text like the weather). I've tried it myself on my iPhone and iPad and it did work for birthdays but not for any other all-day events. I already sent this to Apple as a product feedback as well, as should everyone of you. The more people mention it, the faster Apple's going to fix this issue. In its current state, notification center is not a very helpful feature in my opinion. There's absolutely no point in not showing all-day events in the 'today' calendar overview.
    Here's a link to the product feedback page: http://www.apple.com/feedback/
    I posted my message in the iPhone section since I couldn't find a page specifically dedicated to iOS 7.
    I really love the look & feel of iOS 7 but it's kinda sad to see notification center not tapping its full potential.
    Cheers!

  • Fieldname in not being displayed in the table maintenance

    Hi Experts,
                     I have created a table maintenance for a custom table.The table contains 10 fields out of which first 3 are key fields.
    on the 3rd key field i have supplied F4 help so as to populate the 4th field automatically based on the selection of 3rd field.
    everything is working fine but last 6 'fieldname' is not being displayed on the column bar.instead of fieldname there is '+' sign on the column. And i have checked in layout(screen) also only first four fields being displayed.
    plz help.
    Thanks n Regards,
    Mukesh

    Hello Mukesh,
    As you know, data element or pre-defined data type will be assigned as field type to the fields in a table. If you are assigning the data element, then the data element has the option to give the field label.
    If you are assigning the data element and the field label is empty, then + sign will come. In other case -  if you assigning the pre-defined data type also, the screeen column header will be shown as + sign.
    In both the above cases, you can change the column header manually in the layout.
    Regards,
    Selva K.

  • Date not being displayed in the custom format

    Hi ,
      I have a problem wherein i am unable to change the format of the date.
    I need the date to be in the format 'January 10,2010.' however the date is being displayed as '1/10/10'. I have tried all options for the date formatting. I specified the custom format as 'MMMM D,YYYY' as mentioned in the SAP Library. I am trying to use the std custom options like YYYY-MM-DD, the date is not being dispalyed in the custom format provided by SAP either.
    I have binded date from the context, used the Current Date field provided by SAP.  Nothing works.
    Its not working on the new form. However the old forms have the same kind of formatting and are being displayed as desired.
    Please suggest as to what the issue could be.
    Thanks,
    Soumya.

    Hi All,
    Even I'm encountering the same issue. I'm trying to control the outputted date format programmatically.Please have a look.
    data: v_int_date like sy-datum,
            v_ext_date(10).
    v_int_date = '20110201'
    write v_int_date to v_ext_date MM/DD/YYYY.
    Here I've tried to convert the date to external format using a fixed format(MM/DD/YYYY). But still it's getting outputted in the format DD/MM/YYYY only as that's the way its defined in the User Master!
    Is there any solution for this? How can I 'override' defaults in the SAP User Master?
    Thanks,
    Mahesh

  • Inspection Characteristic is not being displayed in the inspection lot

    I have created a Calibration order by first creating method, then a MIC, same is attached to a task list and then a Plan.
    But when i trigger a order for that task list the inspection characteristics as mentioned in the task list does not appear in the order.
    Please let me know how to get the inspection characteristics in the order.
    I have checked the task list, in that the Inspection characteristics is visible.
    Please help
    Praneet

    I have noted one thing, in inspection lot the sample size is shown as zero for the equipment where the inspection characteristic is not being displayed and it is shown as one for the lot where the inspection characteristic is displayed.
    Both the Inspection lot the task list is same
    Please reply

  • Excelicon is not being displayed in the alv output

    Hi,
         iam using the standard tool bar, yet the excel icon is not being displayed in alv ouput.and also in the menubar list export the spreadsheet option is gr

    OSS# 1140542?
    or  you may search other.
    Edited by: Amit Gujargoud on Nov 3, 2008 3:10 AM

  • Run data not being displayed in the data view tab following a run

    Recently I had some engineerings troubleshooting an issue with our test setup and since then, they run data is not automatically displayed in the dataview tab.  I am now having to drag it over from the project documentation tab.  I am sure there is a quick fix.  What is it?  Also, how can I password protect to prevent this type of issue in the future?

    Benbrax wrote:
    Recently I had some engineerings troubleshooting an issue with our test setup and since then, they run data is not automatically displayed in the dataview tab.  I am now having to drag it over from the project documentation tab.  I am sure there is a quick fix.  What is it?  Also, how can I password protect to prevent this type of issue in the future?
    So they changed something?  You don't have a backup of the software, nor any kind of software control?  Where I work, you can't even run modified code on a production unit, else you just created an expensive "engineering unit."  Could be they deleted just one data wire and it may take you hours to find it.
    Bill
    (Mid-Level minion.)
    My support system ensures that I don't look totally incompetent.
    Proud to say that I've progressed beyond knowing just enough to be dangerous. I now know enough to know that I have no clue about anything at all.

  • Withholding tax Amount not being displayed in the Invoice while posting a Parked Document

    Hi,
    I have created a parked document for the Vendor who has the Witholding tax code w9 - 15% . I created Parked Document using FBV1 and then tried posting the same using FBV0.Somehow I am not getting the Withholding tax Amount in the FI Document created. However the W/Tax Base Amount and the W/ Base LC are being displayed correctly.
    Say if the Line item Amount is 1,000$ then both the amounts mentioned above in the Additional tab "Withholding tax Data" are being displayed as 1,000 usd but the W/Tax Amount is 0,00 USD.
    2. Also We have the PI and the Interface is written to post the Parked document while the xml file. There is a Method Execute_Asynchronous which has two BDCs one  for FBV2 ( Change Parked Document ) followed by the Post Parked Document FBV0. Hence When I try to post the Parked Document using the SPROXY Interface which has two BDCs Viz FBV2 & FBV0 I still get the Invoice with the Same Amounts and at times with additional 2 zeros added to it in the Additionsal Tax Data Screen.
    I am not sure what is the reason for this. Can anybody help  me sort out this Issue.
    Can there be any Config issues. Please let me know what all config Settings we need to do to sort out this Issue.
    Also let me know why the 2 Zeros are getting added to the Base Amount e.g if the Vendor Line item is 12,000 USD it shows as 12,00000.00 in the Withholding tax Data  Tab in the Invoice.
    Regards,
    Deepak.

    Dear Praveen,
    please check into IMG if You defined the WT type You are using for Your Comapny code:
    IMG --> Assign Withholding Tax Types to Company Codes
    I hope this helps.
    Mauri

  • The expression is not being displayed in the alert inbox

    Hi,
    I have created an expression in 'Long and Short Text' tab present in the ALRTCATDEF transaction screen.
    The expression is "test Error in message &SXMS_MSG_GUID&". However if i goto alert inbox, this expression is not getting displayed. I tried putting this expression under Message title, Short text and Long text tabs. But no change in the result.
    In the above expression, SXMS_MSG_GUID is a container variable declared in ALRTCATDEF transaction screen.
    Same is the situation irrespective of the container variable being used - SXMS_ERROR_CAT etc.,
    I appreciate your early response.
    Regards
    Ganesh

    Hi Venkat,
    Without using BPM, you can think/try out with triggering an alert from UDF:
    /people/bhavesh.kantilal/blog/2006/07/25/triggering-xi-alerts-from-a-user-defined-function
    Otherwise, you can use email functionality to notify the error message rather an alert....so that you can customize your output format/or error message required.
    Also check out this Michal's blog on ALERT Configuration..
    /people/michal.krawczyk2/blog/2005/03/13/alerts-with-variables-from-the-messages-payload-xi--updated
    Hope this wull help.
    Nilesh

  • JLabel components not being displayed on the content Panel in Applet

    Hi everyone!!
    Plz give a solution to the following problem:
    I have an applet in which i have JPanel component and on that component i am adding a lot of JLabel components but the problem is that the JLabel components are not displayed on the applet unless i minimize or maximize the applet.
    kindly give solution to the problem.
    Thanks

    Howdy,
    code would be helpful. Here is a very simple JApplet that displays labels okay here in appletviewer. You talk of applets and JLabels. I assume you are using JApplets.
    import javax.swing.*;
    import java.applet.*;
    import java.awt.*;
    public class AppletPie extends JApplet {
         public void init() {
              Container cp = getContentPane();
              cp.setLayout(new FlowLayout());
              cp.add(new JLabel("Show"));
              cp.add(new JLabel("up"));
              cp.add(new JLabel("you"));
              cp.add(new JLabel("dumb"));
              cp.add(new JLabel("labels"));
    }Perhaps something in this code will help you to solve your problem.
    regards
    sjl

  • Text Variables are not being Displayed in the Output of the Query

    Hi All ,
    We have some column headings , which are populated through the Text Vaiables , But in the Query Ouptput only the tech names of the Text variables are being displayed . can anyone tell me why its happening like this . I want to debug the Query , please guide me in this regard
    Thanks in Advance.. Pls reply me as soon as possible

    Hi Nagarjuna reddy,
    Click on the properties of the infoobject enter the name of the description and next to that you can see the X/? buttion click on the this button and select the field/if the proper field is not there then create a field descriton and select. i hope this is works and correct me if i am wrong. for debuggin the query use a transaction code- RSRT.
    regs,
    Vachan

  • JLable components not being displayed in the panel of the applet

    I am having the problem with the display of the JLabel components in the Panel component of the Applet.
    The JLabel components do not appear in the Panel of the applet unless i minimize or maximize the applet.

    hello...
    i just had the same problem... it was solved by using the .updateUI() method.
    in my case several textFields were dynamically added to a jpanel, there we called the method on that panel.
    ptf.updateUI();     
    hope it works.
    ----------++-----+
    ...algun dia todos seremos luz...
    -zoe

  • Telnet not working i need help : Could not open connection to the host !!

    hello all im back today with big problem with telnet i dont know why !!
    i have to computers one of them in my home and the other one in my office both of them use windows 7 so 
    home PC internet IP : 82.205.100.161
    office PC internet IP : 82.102.237.175
    so i go to control panel and then to windows features and i check Telnet Client and Telnet server 
    then i turn off my firewall 
    then i start telnet service 
    then i execute netstat -ab to know telnet port : 
    [tlntsvr.exe]
     TCP    [::]:135               Hacker-HP:0            LISTENING
    is there anythink i need to do to get that damn connection over internet NOT LAN !! pleaze help me i still get this sucks error : Could not open connection to the host
    peace 
    Dr.BL@CKDeaTH

    Hi,
    Telnet server use TCP port 23 by default.
    Here is a screenshot of my lab server,
    To verify if the TCP port 23 has been opened, we can use the portqry tool.
    Here is the download link,
    http://www.microsoft.com/en-us/download/details.aspx?id=17148
    Best Regards.
    Steven Lee
    TechNet Community Support

  • Udf Data is not being displayed in the report

    Hi all,
    i have designed one report in which i am displaying some udf fields along with other system fields.
    i have not used any selection criteria.
    when i run report it doesn't display udf data of some random rows in the report even if data is peresent in that udf field.
    If i open sales order and press 'Shift-F2'  and update the document and now if i run report then i get that udf value in the report.
    why this happening. data is there in the udf field only its not displayed in the report with out updating the that udf.
    pls suggest some solution.
    regsrds,
    Chetan.

    Hi Ashish,
    I ran the "ZPS/!ZPS" in RSRT where ZPS is the infoset name. In Dev, it displayed the values. In QA, it displayed the below messages:
    ECharacteristic 0TCAKYFNM does not exist. Check authorizations
    WThere are calculated elements. These results are bracketed [  ]
    and below that, it displayed the values for Number of records. But, it has not displayed the values for the other figures.
    Does this has any impact in QA.
    Thanks & Regards,
    AVN Rao.

  • Flash contents not being displayed on the published Apex application URL

    I've had to publish one of my apex application through an bluecoat proxy to reach my Oracle HTTP server. It works fantastic for everything - except my flash charts. Flash contents are not getting loaded.Issue is only in the published application URL,the same application is working fine internally without proxy.
    Does anyone have any idea why this is failing and how I might fix this?.The bluecoat support enginner is having the following findings
    I am seeing some strange behavior when the browser goes through the
    proxy vs when it does not.
    When the browser uses the proxy the last thing it requests is the
    following(packet 354):
    GET /i/themes/theme_20/btn-bg.gif HTTP/1.1 Via: 1.1 GITS6ISA Cookie:
    WWV_CUSTOM-F_941005998277888_193=7DE31ABFD8D9E680 User-Agent:
    Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.19)
    Gecko/2010031422 Firefox/3.0.19 GTB7.1 (.NET CLR 3.5.30729) Host:
    ithelpdesk.anupcomp.ae Accept: image/png,image/*;q=0.8,*/*;q=0.5
    Accept-Language: en-us,en;q=0.5 Accept-Charset:
    ISO-8859-1,utf-8;q=0.7,*;q=0.7 Referer:
    http://ithelpdesk.anupcomp.ae/i/themes/theme_20/theme_3_1.css
    X-Forwarded-For: 86.98.85.117 Cache-Control: max-stale=0 Connection:
    Keep-Alive X-BlueCoat-Via: E2DE37912594ECAA
    HTTP/1.1 200 OK ETag: "1a887e1-92-4c2c5105" Content-Type: image/gif
    Last-Modified: Thu, 01 Jul 2010 08:25:41 GMT Server:
    Oracle-Application-Server-10g/10.1.2.0.2 Oracle-HTTP-Server
    OracleAS-Web-Cache-10g/10.1.2.0.2
    (G;max-age=3600+360;age=0;ecid=121853469393,0) Date: Tue, 25 Jan 2011
    07:52:55 GMT Accept-Ranges: bytes Content-Length: 146 Connection:
    Keep-Alive Age: 0
    That is the browser requests
    http://ithelpdesk.anupcomp.ae/i/themes/theme_20/btn-bg.gif and gets a
    200 ok from the proxy/server.
    When the browser does not use the proxy I see the following
    behavior(packet 2783):
    The browser requests
    http://anupserver:7777/i/themes/theme_20/btn-bg.gif 2 times, each time
    the server responds with a 304 not modified status, this means the
    browser has the most recent copy of the .gif file. The browser finally
    does a post to http://anupserver:7777/pls/apex/wwv_flow.accept. Given
    that the browser gets a 200 ok response from the proxy when requesting
    http://ithelpdesk.anupcomp.ae/i/themes/theme_20/btn-bg.gif and then
    stops requesting data, we need to understand why the browser is behaving
    differently without the proxy(i.e. why does it request the content 2
    times and why is it doing the post). The interaction between the
    browser and the proxy appears normal, a 200 ok response with content is
    normal, why does the browser stop requesting content?
    GET /i/themes/theme_20/btn-bg.gif HTTP/1.1 Accept: */* Referer:
    http://anupserver:7777/pls/apex/f?p=193:1 Accept-Language:
    en-us,ar-ae;q=0.5 Accept-Encoding: gzip, deflate If-Modified-Since: Thu,
    01 Jul 2010 08:25:41 GMT If-None-Match: "1a887e1-92-4c2c5105"
    User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET
    CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152;
    .NET CLR 3.5.30729) Host: anupserver:7777 Connection: Keep-Alive
    HTTP/1.1 304 Not Modified Date: Sun, 13 Feb 2011 12:42:01 GMT Server:
    OracleAS-Web-Cache-10g/10.1.2.0.2 Content-Type: text/html Connection:
    Keep-Alive Keep-Alive: timeout=5, max=999 Content-Length: 0
    GET /i/themes/theme_20/btn-bg.gif HTTP/1.1 Accept: */* Referer:
    http://anupserver:7777/pls/apex/f?p=193:1 Accept-Language:
    en-us,ar-ae;q=0.5 Accept-Encoding: gzip, deflate If-Modified-Since: Thu,
    01 Jul 2010 08:25:41 GMT If-None-Match: "1a887e1-92-4c2c5105"
    User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET
    CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152;
    .NET CLR 3.5.30729) Host: anupserver:7777 Connection: Keep-Alive
    HTTP/1.1 304 Not Modified Date: Sun, 13 Feb 2011 12:42:02 GMT Server:
    OracleAS-Web-Cache-10g/10.1.2.0.2 Content-Type: text/html Connection:
    Keep-Alive Keep-Alive: timeout=5, max=999 Content-Length: 0
    POST /pls/apex/wwv_flow.accept HTTP/1.1 Accept: image/gif,
    image/x-xbitmap, image/jpeg, image/pjpeg, application/x-shockwave-flash,
    application/vnd.ms-excel, application/vnd.ms-powerpoint,
    application/msword, application/x-ms-application, application/x-ms-xbap,
    application/vnd.ms-xpsdocument, application/xaml+xml, */* Referer:
    http://anupserver:7777/pls/apex/f?p=193:1 Accept-Language:
    en-us,ar-ae;q=0.5 Content-Type: application/x-www-form-urlencoded
    Accept-Encoding: gzip, deflate User-Agent: Mozilla/4.0 (compatible; MSIE
    6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR
    2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) Host:
    anupserver:7777 Content-Length: 262 Connection: Keep-Alive
    Cache-Control: no-cache

    Hello Orton,
    I think this has something to do with network access, may be a firewall restricting access to the server.
    Thanks,
    Machaan

Maybe you are looking for

  • How can I connect one picture to another picture?

    How can I connect three pictures?

  • Landing Page for Users in OBIEE

    Hi, I am new to the OBIEE Tool and working on OBIEE 10g. I have got a requirment where , when the Client Logs in, they will see a Landing Page which will contain summary(it can be a Snap Shot) of different Dashboards, some User Documents along with I

  • Reg:pojo datacontrol not functioning wehn exposed as proxy for webservice.

    Hi , I have a class which sets the request and header part and for this data control is created and hence works fine when worked by dragging to page. Sample : Class1{ function setheader (){  ....  } function setrequest() { .... } function invokeservi

  • Seeking a LabVIEW Development Job in South India

    Looking forward to work for a reputed organization. Over 2 + years of experience in design and development of customized PC based Embedded software's, automation tool for audio and vision validation, Audio and Telematics Validation Test Cases design

  • Slow startup- new pavilion with windows 8

    Hi there, I have only recently purchased a hp pavilion with the product key being: F5B53EA#ABU The first few times I turned it on it was incredibly fast and I was impressed. I have moved my document from my old laptop onto it (not very many, just mai