Setup & Utility Software Can't Find Express

A year ago, I set up an Airport Express using a PowerBook G4 with Tiger and a Linksys router. Now I have a MacBook with Leopard and the same Linksys router. After it was initially setup, the green light (on the Express) has been on.
So yesterday, I went to reconfigure the Express using both AirPort Setup Assistant and AirPort Utility. My problem is that neither piece of software can find the Express. They say that nothing is there but I can see the green light on the Express lit.
The only other change I made between the initial setup and now is I added WPA2 security to the router.
Why can't the setup software see the Airport Express?
Thanks,
LeonD

Hi Leon,
I think I can help you because I just had to reset my Express so it would work with my new wireless router. The process to do this is pretty easy and painless. I think you'll need to do this since you changed your network settings.
First, you need to reset your Express. The reset button is on the outboard side of the jack where you plug in the cable going to your stereo/external speakers. You'll need a straightened out paper clip to press the reset button, but the real trick is that you'll need to press the button while the Express is plugged in. I suggest that if you want an easy time of things, you take the Express and plug it into an extension chord that can give you some flexibility so you can at least see what you are doing. I have a three pronged adaptor/extension chord for Apple power supplies, and so I used that.
Once you can press the reset button with the straightened out paper clip, you need to hold button in for about five seconds. At that point, the amber light on the Express should flash rapidly. You can now release the reset button and the Express can be accessed and set up using these instructions.
Turn on your computer’s Airport card.
Switch the Airport card’s network to Airport Extreme (The network will be named "Apple xxxxxxxxx")
Run Airport Admin Utility.
Make sure Airport Express is chosen.
Click on Configure.
Airport tab should open by default, if not, click on Airport tab.
Under Airport Network, click Wireless Mode scroll box and choose “Join Existing Wireless Network (Wireless Client).”
Click Wireless work Scroll box and choose your Network.
Fill in security and password options as they apply.
Click on Music tab.
Make sure Enable Airtunes On This Base Station is checked
Fill in iTunes Speaker Name.
Set iTunes Speaker Password (if desired).
Click on Update.
Wait for Airport Express to restart, click OK
Airport Express status light should be a solid green.
Hope this gets you going. Out of curiosity, have you tried shutting off the WPA2 security on your router and tried to access the Express then? If this works, try turning on the WPA2 security in the Express before turning it back on in the router.
Cheers,
Malcolm

Similar Messages

  • Java.util.MissingResourceException: Can't find bundl :ERROR plz Help

    hey guys am trying to connect to my data base and view data toa jsp page but i got this error :
    Exception report
    message
    descriptionThe server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException: java.util.MissingResourceException: Can't find bundle for base name DataBase, locale en_US
    root cause
    java.util.MissingResourceException: Can't find bundle for base name DataBase, locale en_US
    note The full stack traces of the exception and its root causes are available in the Sun Java System Application Server 9.1 logs.
    here is the code database _proper
    drivername=oracle.jdbc.driver.OracleDriver
    dataSourceName=jdbc/orcl/WOH
    dsLookupPrefix=WOH.getstring("dslookupprefix");
    user=SYSTEM
    password=SYSTEM
    location=192.168.1.3
    port=1521
    sid=ORCL
    and here is the Dao connection class
    package version.dao;
    import java.util.*;
    //to provide JDBC classes
    import java.sql.*;
    * @author freddy
    public class DAODirect {
    * Insert the type's description here.
    * Creation date: (12/25/2006 12:13:56 PM)
    * @author: Administrator
         private Connection connection = null;
         private Statement statement = null;
         private String driverName =null;// "oracle.jdbc.driver.OracleDriver";//null;
         private String url =null;//"jdbc:oracle:thin:scott/tiger@localhost:1521:ORCL";//null;
         private ResultSet rs = null;
         private String columnNames[];
         private int columnCount;
         private Object[] record;
         * PFSDataBase constructor comment.
         public DAODirect() {
              super();
              ResourceBundle database = ResourceBundle.getBundle("DataBase");
    //1 get the driver name
              driverName = database.getString("drivername");
              String user = database.getString("user");
              String password = database.getString("password");
              String location = database.getString("location");
              String port = database.getString("port");
              String sid = database.getString("sid");
    //String dataSourceName=database.getString("dataSourceName");
    //2- get the Connection url
              url =
                   "jdbc:oracle:thin:"
                        + user
                        + "/"
                        + password
                        + "@"
                        + location
                        + ":"
                        + port
                        + ":"
                        + sid;
              System.out.println("++++++++"+url);
    System.out.println("++++++++"+url);
         public void closeStatement() {
              try {
                   if (statement != null) {
                        statement.close();
                        statement = null;
              } catch (Exception e) {
         public void commitDB() throws Exception{
              connection.commit();     
         public boolean connect() throws Exception {
              try {
                   if (connection == null) {
    //1- loading of JDBC Drivers
                        Class.forName(driverName);
                        System.out.println(url);
    //this line =conn = DriverManager.getConnection(
    // "jdbc:oracle:thin:@noizmaker:1521:osiris",
    // "scott", "tiger");
    //2- Establish Connection
                        connection = DriverManager.getConnection(url);
                        return true;
                   } else {
                        throw (
                             new Exception("connection is not disconnected, you have to disconnect this connection before reconnecting it again"));
              } catch (SQLException e) {
                   e.printStackTrace();
                   throw (new Exception("Unable to connect to database,Error Loading Driver"));
         public void createStatement() throws Exception {
              if (statement != null) {
                   closeStatement();
              if (connection == null) {
                   throw (new Exception("database is not connected"));
              statement = connection.createStatement();//3-bulit_in funnction that create and send sql statment
         public void disconnect() throws Exception {
              if (connection != null) {
                   try {
                        connection.close();
                        connection = null;
                   } catch (Exception e) {
                   //isConnected = false;
              } else {
                   throw (new Exception("can not disconnect database"));
    // ResultSet is: A table of data representing a database result set, which is usually generated by executing a statement that queries the database
         public ResultSet execute(String query) throws Exception {
              if (connection == null) {
                   throw (new Exception("database is not connected"));
              if (statement == null) {
                   throw (new Exception("statement is not created"));
              return statement.executeQuery(query);//bulit_in funnction that 4-execute given sql statment
         public void getColumnNames(ResultSet result) throws Exception {
              try {
    //An object that can be used to get information about the types and properties of the columns in a ResultSet object.
                   ResultSetMetaData resultsMetaData = result.getMetaData();
                   columnCount = resultsMetaData.getColumnCount();
                   columnNames = new String[columnCount];
                   for (int i = 1; i < columnCount + 1; i++) {
                        columnNames[i - 1] = resultsMetaData.getColumnName(i).trim();//trim to remove whaite space
              } catch (Exception e) {
                   throw (new Exception("Result Set Columns " + e.getMessage()));
         public Connection getConnection(){
              return connection;     
         public void rollBack() throws Exception{
              connection.rollback();     
         public Vector rsToVector(ResultSet rs) throws Exception {
              getColumnNames(rs);
              Vector resultSetData = new Vector();
              resultSetData.addElement(columnNames);
              try {
                   this.record = new Object[columnCount];
                   while (rs.next()) {
    //ave each raw
                        Object[] record = new Object[columnCount];
                        for (int i = 1; i < columnCount + 1; i++) {
                             Object entry = rs.getObject(i);
                             record[i - 1] = entry;
    // here we print the whole tabel after we save each record in record[]
                        resultSetData.addElement(record);
                   return resultSetData;
              } catch (Exception e) {
                   resultSetData.clear();
                   throw (new Exception("Result Set : " + e.getMessage()));
         public void setAutoCommit(boolean commitType) throws Exception{
              connection.setAutoCommit(commitType);     
         public boolean update(String query) throws Exception {
              if (connection == null) {
                   throw (new Exception("database is not connected"));
              try {
    //create query and execute it
                   createStatement();
                   statement.execute(query);
                   return true;
              } catch (Exception e) {
                   throw (
                        new Exception(
                             "Error in manipulating query :" + e.getMessage()));
              } finally {
                   closeStatement();
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    package version.dao;
    import java.sql.ResultSet;
    import java.sql.Connection;
    import java.sql.Statement;
    import java.sql.SQLException;
    import javax.sql.DataSource;
    import javax.naming.InitialContext;//unknown
    import java.util.ResourceBundle;//unknown
    * @author freddy
    * This is the Data Access Object (DAO), which deals with all Database transactions,
    * connections,and pooling (through Data Source implementation).
    * This class configured through the database.properties file
    * which contains all the database parameters
    * @author: Tariq Qasem
    public class DAO {
         private Connection connection = null;
         private Statement statement = null;
         private String dataSourceName =null; //MyDataSource; //null;
         private String dsLookupPrefix = null;//java:comp/env/;
    //null;
         private ResultSet rs = null;
         * DAO constructor comment.
         public DAO() {
              super();
              ResourceBundle database = ResourceBundle.getBundle("DataBase");
              dataSourceName = database.getString("dataSourceName");
              dsLookupPrefix = database.getString("dsLookupPrefix");
         * @param request PortletRequest
         * @return void
         * this method close pooled statement
         public void closeStatement() {
              try {
                   if (statement != null) {
                        statement.close();
                        statement = null;
              } catch (Exception e) {
         * @param request PortletRequest
         * @return boolean
         * this method connects to the database
         public boolean connect() throws Exception {
              try {
                   if (connection == null) {
                        InitialContext ctx = new InitialContext();
                   DataSource ds = (DataSource) ctx.lookup(dsLookupPrefix+dataSourceName);
                        connection = ds.getConnection();
                        return true;
                   } else {
                        throw (
                             new Exception("connection is not disconnected, you have to disconnect this connection before reconnecting it again"));
              } catch (SQLException e) {
                   e.printStackTrace();
                   throw (new Exception("Unable to connect to database"));
         public void createStatement() throws Exception {
              if (statement != null) {
                   closeStatement();
              if (connection == null) {
                   throw (new Exception("database is not connected"));
              statement = connection.createStatement();
         * @param request PortletRequest
         * @return void
         * this method disconnect the database connection
         public void disconnect() throws Exception {
              if (connection != null) {
                   try {
                        connection.close();
                        connection = null;
                   } catch (Exception e) {
              } else {
                   throw (new Exception("can not disconnect database"));
         * @param request PortletRequest
         * @return boolean
         * this method updates (executes) Insert and Updates queries on the database
    /*     public boolean update(String query) throws Exception {
              if (connection == null) {
                   throw (new Exception("database is not connected"));
              try {
                   createStatement();
                   statement.execute(query);
                   return true;
              } catch (Exception e) {
                   throw (
                        new Exception(
                             "Error in manipulating query :" + e.getMessage()));
              } finally {
                   closeStatement();
         public int update(String query) throws Exception {
              int records = 0;
              if (connection == null) {
                   throw (new Exception("database is not connected"));
              try {
                   createStatement();
                   records = statement.executeUpdate(query);
                   return records;
              } catch (Exception e) {
                   throw (
                        new Exception(
                             "Error in manipulating query :" + e.getMessage()));
              } finally {
                   closeStatement();
         * @param request PortletRequest
         * @return ResultSet
         * this method executes select queries on the database
         public ResultSet execute(String query) throws Exception {
              if (connection == null) {
                   throw (new Exception("database is not connected"));
              if (statement == null) {
                   throw (new Exception("statement is not created"));
              return statement.executeQuery(query);
         * @param request PortletRequest
         * @return void
         * this method to set the commit transaction on the database to be auto
         public void setAutoCommit(boolean commitType) throws Exception{
              connection.setAutoCommit(commitType);     
         * @param request PortletRequest
         * @return void
         * this method commit database transaction
         public void commitDB() throws Exception{
              connection.commit();     
         * @param request PortletRequest
         * @return void
         * this method rollback database transaction
         public void rollBack() throws Exception{
              connection.rollback();     
         * @param request PortletRequest
         * @return Connection
         * this method return the database connection as java object
         public Connection getConnection(){
              return connection;     
    and this is my jsp page:
    <%--
    Document : index
    Created on : Mar 16, 2008, 10:14:55 AM
    Author : freddy
    --%>
    <%@page contentType="text/html" pageEncoding="UTF-8"%>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>JSP Page</title>
    </head>
    <body>
    <h2>Hello World!</h2>
    <%
    version.dao.DAODirect dao=new version.dao.DAODirect();
    try
    boolean connected = dao.connect();
    dao.createStatement();
    String query = " SELECT ID,NAME FROM version";
    java.sql.ResultSet rs = dao.execute(query);
    while(rs.next()){
    out.println(rs.getInt("P_ID")+" ");
    out.println(rs.getString("P_FN")+"<BR>");
    dao.closeStatement();
    dao.disconnect();
    catch(Exception e)
    out.print(e.getMessage());
    %>
    </body>
    </html>
    plz guys help me i need this for my graduation project also if anyone know kind of tutorialsfor building J2me/J2EE application using wifi plzzzsend me links or anything ,thx in advance

    This can happen after modifying the calendar properties and not reloading the application. Try reloading or restarting the application. This could also mean the Calendar.properties file has been moved, deleted, or become corrupted. A default properties file can be found at:
    "Tomcat-install-dir"\webapps\"your-web-application"\WEB-INF\classes\defaultPropFile\. Copy this file to: "Tomcat-install-dir"\webapps\"your-web-application"\WEB-INF\classes\. Stop and restart the web server. From a browser, run "hostname"/"your-web-application"/src/setupCalendar.jsp.

  • File upload in KM throws a system exception: java.util.MissingResourceException: Can't find resource for bundle java.util.PropertyResourceBundle, key xtlt_Required

    Hi All,
    We are on Netweaver 7.01 SP14. (well I understand we are way behind patch levels, but a simple file upload should be working ?/)
    We are trying to upload (HTML &/ Image) a file in one of the KM's public folder.
    As and when we select folder and click on upload we get the below message:
    Below is the error trace details:
    Full Message Text
    com.sapportals.wdf.WdfException
    at com.sapportals.wcm.control.edit.ResourceUploadControl.render(ResourceUploadControl.java:688)
    at com.sapportals.wdf.layout.HorizontalLayout.renderControls(HorizontalLayout.java:42)
    at com.sapportals.wdf.stack.Pane.render(Pane.java:155)
    at com.sapportals.wdf.stack.PaneStack.render(PaneStack.java:73)
    at com.sapportals.wdf.layout.HorizontalLayout.renderPanes(HorizontalLayout.java:73)
    at com.sapportals.wdf.stack.Pane.render(Pane.java:158)
    at com.sapportals.wdf.stack.PaneStack.render(PaneStack.java:73)
    at com.sapportals.wdf.layout.HorizontalLayout.renderPanes(HorizontalLayout.java:73)
    at com.sapportals.wdf.stack.Pane.render(Pane.java:158)
    at com.sapportals.wdf.stack.PaneStack.render(PaneStack.java:73)
    at com.sapportals.wdf.layout.HorizontalLayout.renderPanes(HorizontalLayout.java:73)
    at com.sapportals.wdf.stack.Pane.render(Pane.java:158)
    at com.sapportals.wdf.stack.PaneStack.render(PaneStack.java:73)
    at com.sapportals.wdf.WdfCompositeController.internalRender(WdfCompositeController.java:709)
    at com.sapportals.wdf.WdfCompositeController.buildComposition(WdfCompositeController.java:674)
    at com.sapportals.htmlb.AbstractCompositeComponent.preRender(AbstractCompositeComponent.java:33)
    at com.sapportals.htmlb.Container.preRender(Container.java:120)
    at com.sapportals.htmlb.Container.preRender(Container.java:120)
    at com.sapportals.htmlb.Container.preRender(Container.java:120)
    at com.sapportals.portal.htmlb.PrtContext.render(PrtContext.java:408)
    at com.sapportals.htmlb.page.DynPage.doOutput(DynPage.java:238)
    at com.sapportals.wcm.portal.component.base.KMControllerDynPage.doOutput(KMControllerDynPage.java:134)
    at com.sapportals.htmlb.page.PageProcessor.handleRequest(PageProcessor.java:133)
    at com.sapportals.portal.htmlb.page.PageProcessorComponent.doContent(PageProcessorComponent.java:134)
    at com.sapportals.wcm.portal.component.base.ControllerComponent.doContent(ControllerComponent.java:88)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
    at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
    at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:215)
    at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:645)
    at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
    at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:753)
    at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:249)
    at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:557)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:430)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1064)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
    at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
    at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
    at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)
    --- Nested WDF Exception -----------------------
    java.util.MissingResourceException: Can't find resource for bundle java.util.PropertyResourceBundle, key xtlt_Required
    at java.util.ResourceBundle.getObject(ResourceBundle.java:327)
    at java.util.ResourceBundle.getObject(ResourceBundle.java:324)
    at java.util.ResourceBundle.getString(ResourceBundle.java:287)
    at com.sapportals.wcm.util.resource.ResourceBundles.getString(ResourceBundles.java:55)
    at com.sapportals.wcm.control.base.WcmBaseControl.getBaseBundleString(WcmBaseControl.java:150)
    at com.sapportals.wcm.control.base.WcmBaseControl.getBaseBundleString(WcmBaseControl.java:176)
    at com.sapportals.wcm.control.edit.ResourceUploadControl.renderUploadFileContent(ResourceUploadControl.java:773)
    at com.sapportals.wcm.control.edit.ResourceUploadControl.render(ResourceUploadControl.java:655)
    at com.sapportals.wdf.layout.HorizontalLayout.renderControls(HorizontalLayout.java:42)
    at com.sapportals.wdf.stack.Pane.render(Pane.java:155)
    at com.sapportals.wdf.stack.PaneStack.render(PaneStack.java:73)
    at com.sapportals.wdf.layout.HorizontalLayout.renderPanes(HorizontalLayout.java:73)
    at com.sapportals.wdf.stack.Pane.render(Pane.java:158)
    at com.sapportals.wdf.stack.PaneStack.render(PaneStack.java:73)
    at com.sapportals.wdf.layout.HorizontalLayout.renderPanes(HorizontalLayout.java:73)
    at com.sapportals.wdf.stack.Pane.render(Pane.java:158)
    at com.sapportals.wdf.stack.PaneStack.render(PaneStack.java:73)
    at com.sapportals.wdf.layout.HorizontalLayout.renderPanes(HorizontalLayout.java:73)
    at com.sapportals.wdf.stack.Pane.render(Pane.java:158)
    at com.sapportals.wdf.stack.PaneStack.render(PaneStack.java:73)
    at com.sapportals.wdf.WdfCompositeController.internalRender(WdfCompositeController.java:709)
    at com.sapportals.wdf.WdfCompositeController.buildComposition(WdfCompositeController.java:674)
    at com.sapportals.htmlb.AbstractCompositeComponent.preRender(AbstractCompositeComponent.java:33)
    at com.sapportals.htmlb.Container.preRender(Container.java:120)
    at com.sapportals.htmlb.Container.preRender(Container.java:120)
    at com.sapportals.htmlb.Container.preRender(Container.java:120)
    at com.sapportals.portal.htmlb.PrtContext.render(PrtContext.java:408)
    at com.sapportals.htmlb.page.DynPage.doOutput(DynPage.java:238)
    at com.sapportals.wcm.portal.component.base.KMControllerDynPage.doOutput(KMControllerDynPage.java:134)
    at com.sapportals.htmlb.page.PageProcessor.handleRequest(PageProcessor.java:133)
    at com.sapportals.portal.htmlb.page.PageProcessorComponent.doContent(PageProcessorComponent.java:134)
    at com.sapportals.wcm.portal.component.base.ControllerComponent.doContent(ControllerComponent.java:88)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
    at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
    at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:215)
    at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:645)
    at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
    at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:753)
    at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:249)
    at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:557)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:430)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1064)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
    at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
    at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
    at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176) 

    Hi Vijay,
    Thanks for the quick reply.
    I have gone through the notes 1535201  & now on 1606563  after your advise.
    Both the notes says the fix is available on 7.01 after SP 07 and we are on SP 14 already.
    Also just in case I did checked with our basis and they confirmed we are a head and we have the above notes in our release already.
    Unfortunately the notes are not the solution to the investigation till date.
    Thanks,
    Sai

  • Have been using successfully Acrobat 8 Standard, version 8.3.1 for years.  Suddenly can not digitally sign anything because software can not find "existing digital ID file?

    Have been using successfully Acrobat 8 Standard, version 8.3.1 for years.  Suddenly can not digitally sign anything because software can not find "existing digital ID file?

    Are you still using Acrobat 8? If not read further.
    All Acrobat versions prior to 11.0.07 had a security flaw that they allows signing with certificates that had "Extended Key Usage" (EKU) restricted to certain certificate uses and those did not include document signing. Most frequently those were certificates with "Client Auth" or "Server Auth" in EKU. Acrobat/Reader 11.0.07 fixed this problem, which also means that while previous versions accepted such certificates for signing 11.0.07 and later do not.

  • HP Software Can't Find My Photosmart D110a on Network

    I used to be able to use my Photosmart D110a for about a year with no problems.
    One day, all of a sudden, I go to print something, and the printer isn't listed.
    I uninstalled all the software. I verified in the Control Panel and my Programs Folder that all software and drivers were uninstalled.
    Then, I load the CD and the software won't find my printer on the network. On the next page, it had me type in the IP address (192.168.0.10) and still couldn't find it. If I type that IP address on a browser page, it finds it just fine.
    I can also add it manually on my devices and printers, but I really want to be able to use it from the HP Solution Center like I used to because the advanced scanning utilities are great.
    I've tried restarting the computer and my device, along with my router, several times with long pauses while off to make sure connections reset ok.
    I even tried running the standalone driver and all-in-one software from the website, along with the update and every diagnostic tool there was available to download. I have even disabled the firewall and the software still can't find the printer on the network.
    Please help, I keep coming to dead ends with this

    I would uninstall one more time and do an L3 on the computer to remove all HP files that are on the Photosmart D110.  This way when you run the install for the drivers you have gotten from the site, one will know that all the files from the old drivers have been removed. To do an L3:
    Step one: Clear temp directory
    Type %temp% in the run or search for programs and files field
    Highlight all the files in this folder, and then press the delete key to delete. If you get a message that the file is in use you will need to skip this file(s).
    Continue with Step 2 below
    Step two: Downloaded and extracted to your system:
    1. Download the full feature software and drivers
    Link the drivers page for the printer in question
    2. Once the download is finished double click on the file to extract the software.
    3. When the installation window opens press the cancel button to stop the installation
    4. Type %temp% in the run or search for programs and files field
    5. Look for, and open the folder starting with 7z (Example: 7zS2356)
    6. Right click on the folder, and select Copy
    7. Close that window, and all your open windows, and then in the middle of the desktop right click your mouse, and select Paste. This will move the 7z folder to your desktop.
    8. Open the 7z folder you just copied to your desktop
    9. Open folder Util
    10. Open folder CCC
    11. Run the uninstall_L3
    12. When the uninstall has completed restart the computer
    13. Run Disk cleanup from Accessories\ System Tools folder under all programs
    14. Download and install the latest version of Adobe flash player
    Update Adobe Flash Player
     15. Open the 7z folder, and then double click on the Setup.exe file which will be toward the bottom of the open window. Follow the on screen instructions to reinstall your printer.
    I am a former employee of HP...
    How do I give Kudos?| How do I mark a post as Solved?

  • Can connect to internet, but software can't find base station

    I bought the Airport express a few months ago to use with my stereo and IBM laptop. It took me a few tries to get it initially installed properly, but eventually did and everything worked great. A month or so ago I noticed that the tab to select "remote speakers" was not on my iTunes as it had been before. All of the settings were correct on my iTunes however so then I went to the AirPort Utility to check out the settings and the program said it could not find the base station. I tried to find the station on AirPort Set-up assistant. This program can find it but not connect to it (on the first page after the menu it shows the base station and when I hit "next" it can't connect to the station). All of this is really odd as I have internet access through this base throughout these problems. Any ideas what might be happening and how to fix it? I have reset the base station to factory settings numerous times, I have unplugged everything and restarted the whole process numerous times, I even left the base station unplugged for a week to let it relax. Still nothing works. I can connect to the internet through the station but can not find the station.
    IBM T40 Windows XP Pro

    Thanks for your help. I can manually connect to the internet but I can't figure out how to get iTunes to recognize that there are remote speakers as my computer can't recognize my base station. Is there a manual way to do this?
    IBM T40 Windows XP Pro

  • Software can't find WVC-54G

    I successfully programmed my WVC-54G to operate wirelessly on a WEP encripted Linksys router.  I can get to it wirelessly using Internet Explorer.  But, I cannot get the Linksys Viewer software to "find" it.  I tried downloading the new version of the s/w (slicker looking...) but it has the same problem.  I have tried to find it using the IP address on both tabs (Internet and LAN), but it won't find it.  Perhaps I have the wrong port number (I am using the default 1024).
    Since I can see it through IE, but not the s/w, I suspect it is a problem in communications.  I have the Linksys router firewall turned off.  Any suggestions?
    Thanks.

    HELP! I had the SAME problem! I can see the camera w/IE, but the software doesn't find it.. The other day, it did find it.. then I got it all set up.. unplugged the ethernet - recycled the power, and it was working wirelessly.. but then I went to set up a recording and the utility couldn't see the camera. I uninstalled/ reinstalled the software - nothing.. Then, in reading above, I saw that I also had a dhcp lease for the camera, even though it's set up as status 1.115. So I deleted the lease, but I still can't get the software to find the camera EVEN PLUGGED IN with a network cable.. This is crazy! Please help! The same software on my laptop sees the camera just fine and the recording etc works.. but I don't leave that computer on - I want the desktop to be able to do it.
    Thank's in advance for any help you can give me.
    - Maggie

  • Connected to the Airport Express' Network but Can't Find Express

    I've recently been having some trouble with my network, which contains a modem connected to an Airport Express, with my iMac connecting wirelessly to that. My internet connection is getting dropped, and when I open up Airport Utility I can't see my Express. However, from the wireless indicator at the top-right of my screen, I am still connected to the Express' network. When I turn my iMac's Airport on and off, it reconnects to the Express' network (which is constantly at full-strength). I also can't ping the Express.
    So, I'm connecting to the Express' network but I can't do anything. After a variable amount of time (5 seconds to half-an-hour), the Express will appear in my Airport Utilities once again and I can surf the net. Does anyone have any thoughts? Is there a way to ping any of the protected wireless-networks that are available, just to see if it's a problem on my iMac's end? Could my Express still be broadcasting its SSID but has shut-down it's networking capability because of an overheating issue?
    Thanks.
    - Matt
    PS. My Airport Express is the 802.11n model.

    You may need to re set the AE to factory specs and start all over. Read the manual on a factory re set. Start on page 41 and go through page 42.

  • Desktop Software can't find 9790

    Hi, i've been trying for a month now to get my 9790 to work on Blackberry Desktop software so i've actually got it backed up to the PC etc. But when ever i conect via USB it says "please conect device" i've gone through all the trouble shooting options & none seam to work/apply. Getting really angry. I hope someone can help, thanks in advance.

    Hi and Welcome to the Community!
    I suggest the following steps (insert plenty of reboots of your PC...not just restarts, but full power down reboots). Also, it is advised that you be logged into the PC on an account with full admin rights. Further, under Vista/Win7, use the "Run As Administrator" option for everything.
    Further, it has also been reported that when your user profile on windows (type 'echo %userprofile%' in the command prompt) contains spaces, then the installer will not work. In order to solve this issue, log out of your Windows account and log back in using the local Administrator account (or any other account name without spaces) and install the desktop (for all users).
    1) Remove any/all BB device OS update package(s) from your PC (add/remove programs)
    2) Cleanly uninstall the RIM Desktop Software:
    KB02206 How to perform a clean uninstall of BlackBerry Desktop Software
    Some have reported the manual search and removal of RIM, BB, and Puma registry keys to be helpful...do not attempt this if you are at all unsure as editing your registry wrongly can render your entire PC useless.
    Others have reported the use of a registry cleansing tool to also be helpful
    Still others have reported the use of your original PIM (e.g., Outlook, NOTES, etc.) installation CD, running the "repair" process, to be helpful in some situations
    3) Get a fresh download of the RIM Desktop Software:
    http://us.blackberry.com/apps-software/desktop/
    4) Download (to your PC) a fresh copy of your device OS package from your carrier:
    http://na.blackberry.com/eng/support/downloads/download_sites.jsp
    5) Install the Desktop Software to your PC
    6) Install (also to your PC), the device OS package
    7) Start the organizer configuration over:
    KB03315 How to synchronize organizer data (calendar, task list, memo list, and contact list) using the BlackBerry Desktop Software
    Hopefully that will get things going again.
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • TC works in airport utility - but can't find it under time machine

    Hello out there
    I have a BIG problem ..
    I have for some while ago, bought a TC and used it with no problems for some month while i have had a wi-fi at home ..
    Now, I don't have the wi-fi connection anymore - i use my iPhone for sharing, so the settings for the TC are not working anymore..
    So .. I went resetting it, and pluggin it in with ethernet instead, expecting to have a clean start .. but that was not what happened, I can se it under efthernet connections in my airport utillity - but not in the time machine window ..
    When i restarted it, I tried to make a new network and reset old settings - nothings working ..
    Please help me ..

    So your main internet is via a tethered connection with the iphone.. or wifi from the iphone??
    I would reset the TC.. and set a static IP for the ethernet.
    Set the IP to 10.0.1.10 and subnet mask to 255.255.255.0
    Do not fill in router or dns.. those will be picked up by wifi and you don't want to mess them up.
    With simultaneous connection to two different networks now working properly try again to connect to the TC hard disk in TM.. if it fails. reset tm as it can get messed up.
    See A4 http://pondini.org/TM/Troubleshooting.html
    You can also do a disk check of the existing backup. A5.
    If necessary you might need to take more extreme measures.
    What OS is the computer running??

  • Mac Proxy Server Software - can not find any app to run a Mac proxy server

    Hi! Looking for an application that will run and manage a proxy server on my Mac. I am after something that does not involve programming, editing and using the console, something that is done through a simple, user friendly interface. I would need to run a proxy server for web access so that the client using the proxy could be seen as using the authenticated IP of the server machine. (To put it simple, I need to be able to log on to a site where authentication is done via IP as well as login / pass. My home machine is set up for access but I would like to be able to log in on the move with my laptop or from other machines. Unfortunately I can not get a static IP for my laptop and would like to run a proxy server on my home machine so I can log in remotely via the proxy server) I am after a software solution that will install and manage the proxy and gives me full control over setting access limitaions etc (i.e something safe, easy and reliable). I have ben searching for days but have not found anything for the Mac although there appears to be an abundance of such software for Windows . . . Any help would be immensly appreciated! I have a spare older Mac I could set up for this purpose and keep online all the time . . .

    Would this do what you need?
    http://www.apple.com/downloads/macosx/networking_security/macproxy.html
    (I'm not that knowledgeable about servers, so this is a shot in the dark)

  • Java.util.MissingResourceException: Can't find resource for bundle java.ut

    Hi,
    I am using a resource bundle and reading a properties file. This is working fine for the existing one. I am getting the exception after I add the new keys in the properties file and run my application.
    Can anyone point my error?

    AnanSmriti wrote:
    Hi,
    I appreciate your response. I am using eclipse and I have compiled the classes and copied the properties files and saved in the respective package and finally prepared a jar. Only this added key is not found. The remaining keys are workingThen you haven't done it correctly. If you are actually referencing the correct properties file in the code, and the correct properties file exists in the jarfile, then it will work. If not, not. That's all there is to it.

  • Desktop Software can't find my old BlackBerry Curve 8330

    I've never synced my 8330 with desktop software.  I just bought a new 9330 and want to sync my calendar, notes, etc. onto it.  I've loaded the desktop software, but it cannot detect my 8330 to sync.  HELP!

    I've never synced my 8330 with desktop software.  I just bought a new 9330 and want to sync my calendar, notes, etc. onto it.  I've loaded the desktop software, but it cannot detect my 8330 to sync.  HELP!

  • Receive error on sparc2.6, w/4.1sp9 sjava resource bundle not found-using default:java.util.MissingResourceException:Can't find resource for base name res.s java, locale en meaning?  Thanks.

     

    This can happen after modifying the calendar properties and not reloading the application. Try reloading or restarting the application. This could also mean the Calendar.properties file has been moved, deleted, or become corrupted. A default properties file can be found at:
    "Tomcat-install-dir"\webapps\"your-web-application"\WEB-INF\classes\defaultPropFile\. Copy this file to: "Tomcat-install-dir"\webapps\"your-web-application"\WEB-INF\classes\. Stop and restart the web server. From a browser, run "hostname"/"your-web-application"/src/setupCalendar.jsp.

  • HP 6310 All-in-one - Apple find it but HP Software can't

    I moved my HP 6310xi to an Airport Extreme. Everything set up very smoothly (which I was pleasantly surprised by). I can print to it from any application -- in other words, my Mac found it with no problem and used the Driver that was already installed on my machine.
    However, it's an all-in-one, so it needs to find my mac (for scanning, and memory card). I re-installed the latest HP software for this printer, and the HP software can't find the printer. So I am kind of stuck.
    Any ideas? I don't know if it matters, but my Mac says I am connected through Bonjour.
    Jon

    Most HP software uses the USB port to discover printer. Unless it say's it's network ready, it will then have a network config utility.
    Anyway, moving AIO printer onto AEBS, you will loss the scanning and fax features, since AEBS does not support it. Some AIO's support webscan, if your does, you can open the browser and type in the address of your AIO printer into the URL and you will see your printer there.

Maybe you are looking for