JSP client not Working

Hi all
I have made a simple webservice which retrives some fileds of a remote pointbase
database.i have published this webservice in the uddiexplorer and generated the
wsdl file for this webservice.
now i made the proxies need by the client from the test browser's overview page
to invoke this webservice,and also wrote the following JSP code to invoke the
service.
<!--Generated by WebLogic Workshop-->
<%@ page language="java" contentType="text/html;charset=UTF-8"%>
<%@ taglib uri="netui-tags-databinding.tld" prefix="netui-data"%>
<%@ taglib uri="netui-tags-html.tld" prefix="netui"%>
<%@ taglib uri="netui-tags-template.tld" prefix="netui-template"%>
<%@ page import="weblogic.jws.proxies.*"%>
<%@ page import="WebServices.Users"%>
<netui:html>
<head>
<title>
Hello World Client Accessing HelloWorld Service
</title>
</head>
<body>
<p>
<h2 align="center">Username's and associated Passwords stored in the Remote
Database, at 10.3.8.254</h2>
<br>
<table align="center" border=1>
<tr>
<td>USERNAME</td>
<td>PASSWORD</td>
</tr>
<%
HelloWorld_Impl proxy = new
HelloWorld_Impl("http://10.3.8.227:7001/SOAPappWeb/WebServices
/HelloWorldContract.wsdl");
HelloWorldSoap soapProxy = proxy.getHelloWorldSoap();
org.openuri.www.Users[] result;
result=soapProxy.uselect();
for (int i=0; i< soapProxy.uselect().length; i++)
%>
<tr>
<td align="center"><B><%out.print(
result.getUSERNAME());%></B></td>
<td align="center"><I><%out.println(
result[i].getPASSWORD());%></I></td>
</tr>
<%}%>
</p>
</body>
</netui:html>
now when i run this code on the machine where server is running i get the correct
result.but when i put the associated proxies and this JSP code on different machine
and try t orun this JSP i m not able to run it.it sometimes keeps on loading the
page or sometimes it shows me an error saying wsdl
weblogic.webservice.tools.wsdlp.WSDLParseException: Failed to retrieve WSDL from
D:/bea/user_projects/Webservice4/Webservice4Web/WebServices/HelloworldContract.
wsdl. Please check the URL and make sure that it is a valid XML file [java.io.IOE
xception: unable to find resource:D:/bea/user_projects/Webservice4/Webservice4We
b/WebServices/HelloworldContract.xml]
the path D:/bea/user_projects/Webservice4/Webservice4Web/WebServices/HelloworldContract.wsdl
is the path where i have downloaded the wsdl in to my local machine i.e the machine
where the client is.
hope u get wat i m trying to say
waiting for response..thanks for sparing time on my doubt
kirtan

Hello,
Just a shot in the dark, but the _Impl needs a URL to the WSDL.  In the
JSP, did you try something like (note the ?WSDL at the end):
     http://10.3.8.227:7001/SOAPappWeb/WebServices/HelloWorldContract?WSDL
Can you point your browser at this location and get the WSDL? If you
are doing a local WSDL file, you might try something like:
blabla_Impl(new File("whatever.wsdl").toURL().toString());
Some thoughts,
Bruce
kirtan patel wrote:
>
Hi all
I have made a simple webservice which retrives some fileds of a remote pointbase
database.i have published this webservice in the uddiexplorer and generated the
wsdl file for this webservice.
now i made the proxies need by the client from the test browser's overview page
to invoke this webservice,and also wrote the following JSP code to invoke the
service.
<!--Generated by WebLogic Workshop-->
<%@ page language="java" contentType="text/html;charset=UTF-8"%>
<%@ taglib uri="netui-tags-databinding.tld" prefix="netui-data"%>
<%@ taglib uri="netui-tags-html.tld" prefix="netui"%>
<%@ taglib uri="netui-tags-template.tld" prefix="netui-template"%>
<%@ page import="weblogic.jws.proxies.*"%>
<%@ page import="WebServices.Users"%>
<netui:html>
<head>
<title>
Hello World Client Accessing HelloWorld Service
</title>
</head>
<body>
<p>
<h2 align="center">Username's and associated Passwords stored in the Remote
Database, at 10.3.8.254</h2>
<br>
<table align="center" border=1>
<tr>
<td>USERNAME</td>
<td>PASSWORD</td>
</tr>
<%
HelloWorld_Impl proxy = new
HelloWorld_Impl("http://10.3.8.227:7001/SOAPappWeb/WebServices
/HelloWorldContract.wsdl");
HelloWorldSoap soapProxy = proxy.getHelloWorldSoap();
org.openuri.www.Users[] result;
result=soapProxy.uselect();
for (int i=0; i< soapProxy.uselect().length; i++)
%>
<tr>
<td align="center"><B><%out.print(
result.getUSERNAME());%></B></td>
<td align="center"><I><%out.println(
result[i].getPASSWORD());%></I></td>
</tr>
<%}%>
</p>
</body>
</netui:html>
now when i run this code on the machine where server is running i get the correct
result.but when i put the associated proxies and this JSP code on different machine
and try t orun this JSP i m not able to run it.it sometimes keeps on loading the
page or sometimes it shows me an error saying wsdl
weblogic.webservice.tools.wsdlp.WSDLParseException: Failed to retrieve WSDL from
D:/bea/user_projects/Webservice4/Webservice4Web/WebServices/HelloworldContract.
wsdl. Please check the URL and make sure that it is a valid XML file [java.io.IOE
xception: unable to find resource:D:/bea/user_projects/Webservice4/Webservice4We
b/WebServices/HelloworldContract.xml]
the path D:/bea/user_projects/Webservice4/Webservice4Web/WebServices/HelloworldContract.wsdl
is the path where i have downloaded the wsdl in to my local machine i.e the machine
where the client is.
hope u get wat i m trying to say
waiting for response..thanks for sparing time on my doubt
kirtan

Similar Messages

  • OC4J JSP Debugging not working for all the jsps

    Hi,
    Initially I was not able to debug jsps using Eclipse and OC4J. The jsp debugging started working once I made the below changes:
    1) global-web-application.xml is modified
    Changed the attribute development="true" in orion-web-app
    Added the below init param for the JspServlet
    <init-param>
    <param-name>debug</param-name>
    <param-value>class</param-value>
    </init-param>
    If the jsps are present in a sub directory under the webcontent none of the breakpoints are working. I am still be able to view the jsp pages on the browser.
    Tools: Oracle 10g Application Server Standalone version(10.1.3.5.0), JDK5, Windows XP, Eclipse Indigo
    Project Structure:
    Test (Eclipse Dynamic Web Project)
    -WebContent
    Sample.jsp ( Breakpoints are working)
    -subF (Folder)
    SubSample.jsp (Breakpoints are not working)
    -WEB-INF
    web.xml
    Debugging worked for http://localhost:8888/Test/Sample.jsp
    Debugging not working for http://localhost:8888/Test/subF/SubSample.jsp
    Any help is highly appreciated.
    Regards
    Danny

    This tells there is not enough main memory (not disk space) for the program to run.
    - You can look the dump in ST22, it will have suggestions on increasing the ROLLAREA??, you can forward that to Basis.
    - Most likely you will not have any more memory to assign so the above may not be feasible. Try to rework your query so it works with less data.

  • Response.sendRedirect("abc.jsp") is not  working

    Hello,
    I deployed my web application(jsp with business components) on AS 902.
    Web cache is running on port 80.
    Apache is running on 7778.
    To pass request i use,
    mod_proxy.c in http.conf. and
    <virtual host> for my application, to get required url.
    It is running fine, But response.sendRedirect("abc.jsp") is not working properly. It redirects the request to apache directly and skips web-cache. Also it changes url for the page given in method.
    While the same application was running ok on v 10222a. That version handle this method properly.
    how to remove this error ???
    Plz hurry up. Our product is ready for launching on 9iAS. It is final testing.
    Thnx.

    Tahir,
    What is the exact error message you are hitting.
    Are you able to use web-cache with other examples.
    Can you try testing it the the webcache demos that are part of ojspdemos.ear under /j2ee/home/demo.
    -Prasad

  • Jsp:useBean  not work when I install aplication!!

    Hi
    I developing an application with UIX JSP on Jdeveloper 9.0.2 and i using something like this:
    <jsp:useBean id="cbean" class="oracle.jsp.dbutil.ConnBean" scope="session" />
    <jsp:setProperty name="cbean" property="dataSource" value="jdbc/BiblosConnectionCoreDS" />
    </jsp:useBean>
    <%
    try{
    cbean.connect();
    This code work fine in standalone mode, but when i install this application on 9IAS, with an archive War, the code <jsp:useBean, not work.
    What is missing for? o What is the reason for this situation
    Thanks for some help?

    many thanks for your reply, and I have download new updates driver from your website (http://consumersupport.lenovo.com/en/DriversDownloads/drivers_show_890.html) and Installer it on my Y410 but it still does not work!!!
    the firstly: when I star up with win7, I can see a speaker icon right down near the clock, when I click mouse on it, I can see: Volume Mixer - Speaker with Device(Speaker Hight definition Audio Device, Digital Audio(S/PDIF) ( Hight definition Audio Device) ).
    Look in devicemanger I can see "Sound , video and game controll " has already installer with 'Hight definition Audio Device ' & 'Unimodem Hafl-Duplex Audio Device' below... but I cannot hear the sound when I play music, video, games...etc...
    the second: when laptop wakeup after 'sleep' mode, I can hear sound on speaker! but headphone jack does not work when I plug my headphone jack into it (I cannot hear sound with headphone), however I still hear sound from speaker, in this case!  
    Can you help me or tell me how I can do ?!
    Thanks and Best Regards,
    jupitervn

  • Client not working after upgrade

    Hi,
    I am upgrading my SAP 8.8 SP:00 Pl 10 to PL 16. with the help of upgrade wizard all the SAP items are upgraded from PL 10 to Pl 16.
    When i was login in through SAP client it asked for upgrade i clicked yes after some time the upgrade stop and the SAP client logo on the server disappear. Now i am not able to login since there is no client to login.
    I tried to install client from set up file but it gives following error
    Error Number: 0x80040702
    Description: Failed to load Dll: creator Dll
    I have refered SAP Note: 1408662 and also refered other thread but its not working
    I tried to uninstall client from add/ remove program but i am not able to do so
    Pls provide solution since i am not able to login.

    Hi,
    I have already installed the recommended c++ version as per SAP note, still it is not working. I tried to uninstall the client from
    B1SHR folder but it gives me error.
    The server is properly upgraded and problem exists on 3 of client machines.
    I have to any how remove this client file or make it working to acces SAP else i wil have to format system which i dont want to do.

  • JSP-Editor not working properly

    Hi everybody,
    I am working with ISA5.0 and NWDI. I have checked out the Web-Module Project crm/isa/web/b2b.
    Now I would like to modify JSP-Files. Unfortonately the JSP-Editor is not working properly.
    The JSP-Editor cannot resolve references to Tag-Libraries like
    <%@ taglib uri="/isa" prefix="isa" %>
    Furthermore I get Errors with JSP-Includes
    <%@ include file="checksession.inc" %>
    The JSP-Editor does not show any other compile errors until the above mentioned errors are resolved.
    So the JSP-Editor does not help with compile errors.
    I have tried to use Lomboz instead, but due to the modularization in ISA5.0 and NWDI (ie the Taglibraries are defined in a separate module) I did not get it to work either.
    Does anybody have experience on how to get the JSP editor to work properly?
    Thanks for your help,
    Andreas

    Highlite the clip in the timeline, control click on it and choose "send to soundtrack as an audio file project" in the pop up menu. Don't do an "open with editor". This should work.
    If it doesn't and it's just the one clip, you could launch Soundtrack and then open that clip as an audio project . . . don't do a open with editor, just open it directly. Make your adjustment and save over writing the file with the new audio. You may want to copy the clip first as a backup. When you open your FCP project, you'll have to re-link the clip. Once you do it will show up with the new sound.

  • Bean in JSP is NOT WORKING. Please help

    Hi,
              Anyone who got java-beans working with WL JSP? I could not get even the
              hello bean to work. I am getting a error message saying somthing like
              "foo.bar.HelloBean.class is not a bean" .
              Is there any perticular reason for the abuse of not including java bean
              example in JSP examples?
              I will greatly appreciate any help in this direction.
              Thank you in advance
              -Harit
              

    If I had to guess based on the error message I would say you have incorrectly
              defined the class file.
              Remove the .class from the definition within the JSP.
              For instance,
              <jsp:useBean
              id="myHelloBean"
              scope="session"
              class="foo.bar.HelloBean">
              </jsp:useBean>
              Not class="foo.bar.HelloBean.class"
              Hope this helps.
              Harit Nanavati wrote:
              > Hi,
              > Anyone who got java-beans working with WL JSP? I could not get even the
              > hello bean to work. I am getting a error message saying somthing like
              > "foo.bar.HelloBean.class is not a bean" .
              > Is there any perticular reason for the abuse of not including java bean
              > example in JSP examples?
              > I will greatly appreciate any help in this direction.
              > Thank you in advance
              > -Harit
              

  • DCNM LAN JAVA Client Not working

    Hi , 
    Recently i installed the DCNM server , we are using nexus 7k in dc environment . I  purchased the DCNM server license and assigned it to  switches thourgh web dcnm client . Login in Java DCNM LAN is  not working , It says check your username/password . Only with SAN its working Fine , Authetication to the dcnm is configured to check the TACACS server  . Can you help on this. 
    Thanks , Vedagiri Gopinath

    Duplicate posts.  :P
    Go here:  http://supportforums.cisco.com/discussion/12164196/dcnm-lan-java-client-not-working

  • Oracle 10g Client not working from Vista Business

    Hi,
    I have installed Oracle 10g Rel2 DB on my desktop (OS Vista Ultimate X64 bit) and try to connect from my new laptop (OS Vista business) after installing the client software which does not work, whereas I am able to connect to same database from my other laptop using Windows XP. The tnsnames.ora files on both laptops have the same contents. Moreover, the SQL Plus is also not working on the vista laptop, I mean when I try to login the window closes down itself it doesn't stay open even to give any error message. . . Any ideas would be a great help . . .thx

    Did you install the Vista specific Oracle client?
    http://www.oracle.com/technology/software/products/database/oracle10g/htdocs/10204_winx64_vista_win2k8.html

  • [T400] Cisco VPN client not working over wireless adapter (but works on cabled connection)

    I have a very strange problem. 
    I need to connect to my work via the cisco vpn client (version 5.0.00.0340). 
    My previous laptop (T43 , windows XP) worked well through both wired / wireless connections.  My desktop machine (vista) works via wired connection (it has no wireless connection). 
    On my new T400, the VPN client works via a wired connection but not via the wireless adapter.  
    On the wireless apapter, the vpn seems to connect OK, but when I try to access resources via the VPN there is little response.
    I get this in the vpn log...
    405   08:56:57.073  04/16/09  Sev=Warning/2 IPSEC/0xE3700003
    Function CniInjectSend() failed with an error code of 0xa4510009 (IPSecDrvCB:846)
     I've tried disabling the firewall (in both the T400 and the router), removed access connections, and disabling tcp v6. I've rebooted everything too. 
    But, nothing seems to work.   I suspect the problem is on the t400 somewhere, because the old laptop used to work OK via wireless.
    I've seen some google links on cisco vpn not working via  wireless but nothing seems to apply to my exact situation yet. 
    Anyone else had this problem or know of a fix? Thanks in advance. 
    Solved!
    Go to Solution.

    all good now, got it working. 
    The Deterministic network thing was not installed on the wireless adapter for some reason.
    So, I installed the latest wireless driver, reinstalled the vpn and all is good now.  

  • Driver to email client not working

    For my class we are attempting to write our own email client. Our professor gave us the following driver. However when I attempt to compile the driver I get these errors:
    MailClient.java:125: cannot find symbol
    symbol  : variable envelope
    location: class MailClient.SendListener
                   SMTPConnection connection = new SMTPConnection(envelope);
                                                                  ^
    MailClient.java:126: cannot find symbol
    symbol  : variable envelope
    location: class MailClient.SendListener
                   connection.send(envelope);Admittedly it could be something with the SMPTConnection code, as that is what we had to write. However I would have expected it to throw some sort of exception in there and it does not. Any help to figure out why the driver is not working would be appreciatted.
    Code:
      import java.io.*;
       import java.net.*;
       import java.awt.*;
       import java.awt.event.*;
    /* $Id: MailClient.java,v 1.7 1999/07/22 12:07:30 kangasha Exp $ */
    * A simple mail client with a GUI for sending mail.
    * @author Jussi Kangasharju
        public class MailClient extends Frame {
        /* The stuff for the GUI. */
          private Button btSend = new Button("Send");
          private Button btClear = new Button("Clear");
          private Button btQuit = new Button("Quit");
          private Label serverLabel = new Label("Local mailserver:");
          private TextField serverField = new TextField("", 40);
          private Label fromLabel = new Label("From:");
          private TextField fromField = new TextField("", 40);
          private Label toLabel = new Label("To:");
          private TextField toField = new TextField("", 40);
          private Label subjectLabel = new Label("Subject:");
          private TextField subjectField = new TextField("", 40);
          private Label messageLabel = new Label("Message:");
          private TextArea messageText = new TextArea(10, 40);
         * Create a new MailClient window with fields for entering all
         * the relevant information (From, To, Subject, and message).
           public MailClient() {
             super("Java Mailclient");
          /* Create panels for holding the fields. To make it look nice,
          create an extra panel for holding all the child panels. */
             Panel serverPanel = new Panel(new BorderLayout());
             Panel fromPanel = new Panel(new BorderLayout());
             Panel toPanel = new Panel(new BorderLayout());
             Panel subjectPanel = new Panel(new BorderLayout());
             Panel messagePanel = new Panel(new BorderLayout());
             serverPanel.add(serverLabel, BorderLayout.WEST);
             serverPanel.add(serverField, BorderLayout.CENTER);
             fromPanel.add(fromLabel, BorderLayout.WEST);
             fromPanel.add(fromField, BorderLayout.CENTER);
             toPanel.add(toLabel, BorderLayout.WEST);
             toPanel.add(toField, BorderLayout.CENTER);
             subjectPanel.add(subjectLabel, BorderLayout.WEST);
             subjectPanel.add(subjectField, BorderLayout.CENTER);
             messagePanel.add(messageLabel, BorderLayout.NORTH);     
             messagePanel.add(messageText, BorderLayout.CENTER);
             Panel fieldPanel = new Panel(new GridLayout(0, 1));
             fieldPanel.add(serverPanel);
             fieldPanel.add(fromPanel);
             fieldPanel.add(toPanel);
             fieldPanel.add(subjectPanel);
          /* Create a panel for the buttons and add listeners to the
          buttons. */
             Panel buttonPanel = new Panel(new GridLayout(1, 0));
             btSend.addActionListener(new SendListener());
             btClear.addActionListener(new ClearListener());
             btQuit.addActionListener(new QuitListener());
             buttonPanel.add(btSend);
             buttonPanel.add(btClear);
             buttonPanel.add(btQuit);
          /* Add, pack, and show. */
             add(fieldPanel, BorderLayout.NORTH);
             add(messagePanel, BorderLayout.CENTER);
             add(buttonPanel, BorderLayout.SOUTH);
             pack();
             show();
           static public void main(String argv[]) {
             new MailClient();
        /* Handler for the Send-button. */
           class SendListener implements ActionListener {
              public void actionPerformed(ActionEvent event) {
                System.out.println("Sending mail");
             /* Check that we have the local mailserver */
                if ((serverField.getText()).equals("")) {
                   System.out.println("Need name of local mailserver!");
                   return;
             /* Check that we have the sender and recipient. */
                if((fromField.getText()).equals("")) {
                   System.out.println("Need sender!");
                   return;
                if((toField.getText()).equals("")) {
                   System.out.println("Need recipient!");
                   return;
             /* Create the message */
                Message mailMessage = new Message(fromField.getText(),
                         toField.getText(),
                         subjectField.getText(),
                         messageText.getText());
             /* Check that the message is valid, i.e., sender and
              recipient addresses look ok. */
                if(!mailMessage.isValid()) {
                   return;
             /* Create the envelope, open the connection and try to send
              the message. */
                try {
                   Envelope envelope = new Envelope(mailMessage, serverField.getText());
                    catch (UnknownHostException e) {
                   /* If there is an error, do not go further */
                      return;
                try {
                   SMTPConnection connection = new SMTPConnection(envelope);
                   connection.send(envelope);
                   connection.close();
                    catch (IOException error) {
                      System.out.println("Sending failed: " + error);
                      return;
                System.out.println("Mail sent succesfully!");
        /* Clear the fields on the GUI. */
           class ClearListener implements ActionListener {
              public void actionPerformed(ActionEvent e) {
                System.out.println("Clearing fields");
                fromField.setText("");
                toField.setText("");
                subjectField.setText("");
                messageText.setText("");
        /* Quit. */
           class QuitListener implements ActionListener {
              public void actionPerformed(ActionEvent e) {
                System.exit(0);
       }

    This is what I mean:
    /* Create the envelope, open the connection and try to send the message. */
               Envelope envelope = null;
                try {
                     envelope = new Envelope(mailMessage, serverField.getText());
                    catch (UnknownHostException e) {
                   /* If there is an error, do not go further */
                      return;
                try {
                   SMTPConnection connection = new SMTPConnection(envelope);
                   connection.send(envelope);
                   connection.close();
                    catch (IOException error) {
                      System.out.println("Sending failed: " + error);
                      return;
                System.out.println("Mail sent succesfully!");

  • Verizon email; Thunderbird client; Not working since 3/25/2013;server name change

    Yesterday, 3/25/2013, I noticed that email wasn't working from my thunderbird client. After a day of assuming that the problem existed elsewhere, I found on this site where it says to use POP.VERIZON.NET, port 995, and SMTP.VERIZON.NET, port 465.  After grumbling why didn't I hear about this name change?, I changed them. At that time I noticed that the PORTS were wrong, too.  They'd been right, and now, not.  Most confusing.  I changed them.  Each account has CONNECTION SECURITY SSL/TLS and NORMAL PASSWORD.
    But: when I try to connect, I get:  An error occurred during a connection to pop.verizon.net:995.  You have received an invalid certificate.....Your certificate contains the same serial number as another certificate issued by the certificate authority.  Please get a new certificate...."
    I am at a loss.  What's wrong, other than that email seems to be choking on security?
    Solved!
    Go to Solution.

    Found in another post where a person said the INCOMING.VERIZON.NET and OUTGOING.VERIZON.NET did still work, so I tried it, but still got that Certificate error.  Found someone else who said they had to say 'no connection security' before it would work, and so I tried that -- and it did.
    Not thrilled about this, but the client is working again.  

  • ArenaNets GW2 Mac Client Not Working

    I have installed the new ArenaNet Guild Wars 2 client.
    Game all downloaded and installed but it does not work.
    I click login - all good.
    I click Play - black screen with hand pointer
    It then drops back to desktop
    It did run once last night and thats it, before that once nothing, after that once nothing.
    It runs on this spec Mac people are saying - ATI Radeon HD4870 512 MB 2008 MacPro 6GB Mem
    It will not run on my machine.
    MacPro 2009 ATI Radeon HD4870 6GB 10.6.8 2.66 GHz Quad Core-Intel
    People are reporting that it will and does work on my above spec machine.
    The specs that ArenaNet give are just what they want to support not what it will actually work on.
    I know the games good on my machine as it runs under WIneskin but not as good the new Mac client.
    Any help/ideas would be good.

    You're right ntotheappledotcom! I upgraded to Lion and characters like '-', '*', '!', '.' are working now, however, '/' and '@' still don't work. Less to worry about
    Next feature should be writable ftp mountpoints in Finder... Please!

  • JSP/Servlets not working after upload

    I have a JSP file and some servlets that work fine on my PC running Tomcat.
    I just uploaded them to my web server (which supports servlets/jsp and has apache web server running), but they do not work. The jsp file does not run, it just displays the source code.
    Strangely, the support people at my server say the jsp files run ok when they view them. But when I view them from my browser it just shows source code.
    Do I need to configure something in my program? Or is it a server problem?

    Very hard to help without seeing the page - the answer is in the code  :-)
    Can you please point a link to your page?
    Are you sure you uploaded all the image files, and that the paths to the images are all correct?
    Nadia
    Adobe® Community Expert : Dreamweaver
    http://www.perrelink.com.au
    Unique CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    http://csstemplates.com.au/
    http://twitter.com/nadiap

  • Sites with .jsp extention not working completely

    websites having extension .jsp are not showing propperly

    Normally, when a webserver uses JSP, they instruct Firefox that the content type of the page is text/html, so Firefox doesn't treat those .jsp pages differently from other server technologies.
    Could you provide a link to a page that is not showing properly and describe how it differs from what you expect?
    More generally:
    When you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.
    (1) Bypass Firefox's Cache
    Use Ctrl+Shift+r to reload the page fresh from the server.
    Alternately, you also can clear Firefox's cache completely using:
    "3-bar" menu button (or Tools menu) > Options > Advanced
    On the Network mini-tab > Cached Web Content : "Clear Now"
    If you have a large hard drive, this might take a few minutes.
    (2) Remove the site's cookies (save any pending work first). While viewing a page on the site, try either:
    * right-click and choose View Page Info > Security > "View Cookies"
    * (menu bar) Tools > Page Info > Security > "View Cookies"
    * click the padlock or globe icon in the address bar > More Information > "View Cookies"
    In the dialog that opens, you can remove the site's cookies individually.
    Then try reloading the page. Does that help?

Maybe you are looking for

  • Can you please help me with this simple (not for me:) issue

    Why this doesnt work? public void spl ()      String a=("moon.sun"); String [] f=a.split("."); System.out.println(f[0]); }

  • PriemrePro CS6 exports at 23.7 fps instead of 23.976

    I have Premiere Pro CS6 (Master Collection) on Mac Pro Desktop. When I export my sequence 1920x1080, 23.976fps, XDCAM EX 1080p HQ to output at 1920x1080, 23.976fps, Quality 100, ProRes422, the frame rate in the mov file comes out at 23.70 fps.  Check

  • Just got back from Pinnacle Edition 5  launch

    This kind of doesn't belong in here, but I can't justify putting it in the edit forum either, so this will have to do. I took myself along to the Pinnacle Edition v5 product launch today, just to see what people were doing with the latest in NLE. I h

  • Migration 11.5 to 12.1

    Hi, We are migrating from 11.5 to 12.1, both on different servers. We went ahead and downloaded the .sca file for Migration Tool for the 12.1 version and deployed it. But, we are not able to open the Front End for this tool. Can somebody explain how

  • Problems with moving directories

    Hi, i have a problem with moving one subdirectory from one directory to another. Here is the code      public static boolean moveToDir(String filename, String dirname)      if( XFileUtils.fileExists(filename) )      return onMoveSingleFileToDir(filen