Unable to connect to HP PSC1510 shared at Windows XP

As the title suggests I've got a HP PSC1510 All-in-one printer attached by USB to a Windows XP Pro SP2 machine. The printer has been shared in Windows.
I've tried following various articles on the Apple Support site, but nothing seems to work. I can't locate the printer on the network, and as a result I can't connect to it.
Is there some trick that I am overlooking? Any help would be very welcome.

There are two issues here - connection protocol and driver. For driver, look up your model here and install the recommended driver:
http://www.linux-foundation.org/en/OpenPrinting/macosx
(You need a CUPS driver because HP's driver was written for USB only)
Then follow this guide:
http://www.ifelix.co.uk/tech/3015.html

Similar Messages

  • [Forum FAQ] "Unable to connect to the server by using Windows PowerShell Remoting" error while installing RDS roles on Server 2012 R2

    When you try to install RDS role on server 2012 R2 using standard deployment, this issue may occur (Figure 1).
    “Unable to connect to the server by using Windows PowerShell remoting”.
    Figure 1: Unable to connect to the server by using Windows PowerShell remoting
    First of all, we need to verify the configurations as it suggested:
    1. The server must be available by using Windows PowerShell remotely.
    2. The server must be joined to a domain.
    3. The server must be running at least Windows Server 2012 R2.
    4. The currently logged on user must be a member of the local Administrators group on the server.
    5. Remote Desktop Services connections must be enabled by using Group Policy.
    In addition, we need to check if the “Windows Remote Management “service is running and related firewall exceptions have been created for WinRM listener.
    To enabling PowerShell remoting, we can run this PowerShell command as administrator (Figure 2).
    Enable-PSRemoting -Force
    Figure 2: Enable PowerShell Remoting
    However, if issue persists, we need to check whether it has enough memory to work.
    By default, remote shell allots only 150 MB of memory. If we have IIS or SharePoint App pool, 150 MB of memory is not sufficient to perform the remoting task. Therefore, we need to increase
    the memory via the PowerShell command below:
    Set-Item WSMan:\localhost\Shell\MaxMemoryPerShellMB 1000
    Then, you need to restart the server and the issue should be resolved.
    You can get more information regarding Remote Troubleshooting by below link:
    about_Remote_Troubleshooting
    If you need further assistance, welcome to post your questions in the
    RDS forum.
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    i found another possible reason, this solution worked for me:
    http://oyvindnilsen.com/solution-for-powershell-remoting-error-it-cannot-determine-the-content-type-of-the-http-response-from-the-destination-computer/
    I tried to set up powershell remoting on a server and kept getting this error:
    Enter-PSSession : Connecting to remote server failed with the following error message : The WinRM client cann
    ot process the request. It cannot determine the content type of the HTTP response from the destination comput
    er. The content type is absent or invalid. For more information, see the about_Remote_Troubleshooting Help to
    pic.
    After a bit of troubleshooting I discovered that the problem was that the authentication packets was to big (over 16k), this will cause WinRM to reject the request. The reason for authentication packets getting too big can be because the user is member of very
    many security groups or in my case because of the SidHistory attribute.
    The solution was to increase the MaxFieldLength and MaxRequestBytes keys in the registry under HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\HTTP\Parameters
    If the keys does not exists you can create them, be sure to use the DWORD type.
    I sat MaxFieldLength to DEC value 40000 and MaxRequestBytes to DEC value 32768 and rebooted the server. Problem solved.

  • I am unable to connect to the icloud from my windows laptop and get an error message: "Connection error: icloud encountered an error while trying to connect to the server"

    I am unable to connect to icloud from my windows-based laptop and get the following error message: "icloud encountered an error while trying to connect to the server."

    I would remove the email account from mail and then set it up again.
    If your are able to long I via owa though without the auto fill, then we already know the user name and password are correct.
    Let me know if that works.

  • Unable to connect to Oracle database running on Windows machine from linux.

    Hi,
    I'm not able to connect to oracle database running on Windows machine from Linux machine. I'm geting the below mentioned error. I have given below the code I used to connect to database and database propertes.Do I need to use any specific driver?
    Please help me.
    Thanks,
    Sunjyoti
    Code :
    import oracle.jdbc.pool.OracleDataSource;
    import java.sql.Connection;
    import java.util.*;
    import java.sql.*;
    import java.io.*;
    class try2{
    public static void main(String args[]) {
    try {
              System.out.println("hi");
    // Load the properties file to get the connection information
    Properties prop = new Properties();
    prop.load(new FileInputStream("/home/sreejith/EDIReader/Connection.properties"));
    // Create a OracleDataSource instance
    OracleDataSource ods = new OracleDataSource();
    System.out.println("prop is "+prop);
    configureDataSource(ods, prop);
    Connection conn=null;
    // Create a connection object
    conn = ods.getConnection();
         System.out.println("Connection is"+conn);
    // Sets the auto-commit property for the connection to be false.
    conn.setAutoCommit(false);
    } catch (SQLException sqlEx){ // Handle SQL Errors
    System.out.println("In exception "+sqlEx);
    } catch(Exception excep) { // Handle other errors
    System.out.println(" Exception "+ excep.toString());
    private static void configureDataSource(OracleDataSource ods, Properties prop) {
    // Database Host Name
    ods.setServerName(prop.getProperty("HostName"));
    // Set the database SID
    ods.setDatabaseName(prop.getProperty("SID"));
    // Set database port
    ods.setPortNumber( new Integer( prop.getProperty("Port") ).intValue());
    // Set the driver type
    ods.setDriverType ("thin");
    // Sets the user name
    ods.setUser(prop.getProperty("UserName"));
    // Sets the password
    ods.setPassword(prop.getProperty("Password"));
    Connection properties :
    # Your Database Connection details
    HostName = 10.20.3.19
    SID = EDIREAD
    Port = 1521
    UserName = dbuser
    Password = dbuser
    Error I'm getting is
    error while trying to connect with odbc datasource
    [root@iflexpau2217 EDIReader]# java try2
    hi
    prop is {HostName=10.20.3.19, Password=dbuser, UserName=dbuser, SID=EDIREAD, Port=1521}
    In exception java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    Also I tried to connect with weblogic JDBC driver
    Code is here:
    import java.io.BufferedReader;
    import java.io.ByteArrayInputStream;
    import java.io.File;
    import java.io.FileNotFoundException;
    import java.io.FileReader;
    import java.io.IOException;
    import java.sql.Blob;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.PreparedStatement;
    import java.sql.SQLException;
    //import com.entrust.toolkit.util.ByteArray;
    public class trial{
         public static void main(String args[]) throws IOException{
              System.out.println("hi");
              Connection p_conn = null;
              PreparedStatement xml_insert = null;
              try {
         // Load the JDBC driver
                   System.out.println("hi2");
         // String driverName = "oracle.jdbc.driver.OracleDriver";
    String driverName = "weblogic.jdbc.oracle.OracleDriver";
         System.out.println("hi2");
         Class.forName(driverName);
         // Create a connection to the database
         String serverName = "10.20.3.19";
         String portNumber = "1521";
         String sid = "EDIREAD";
         //String url = "jdbc:oracle:thin:@" + serverName + ":" + portNumber + ":" + sid;
    String url = "jdbc:bea:oracle://10.20.3.19:1521";
         String username = "dbuser";
         String password = "dbuser";
    System.out.println("connection is:"+p_conn+"user name is"+username+"password is"+password);
         p_conn = DriverManager.getConnection(url, username, password);
         System.out.println("connection is:"+p_conn+"user name is"+username+"password is"+password);
              xml_insert=p_conn.prepareStatement("insert into PRTB_SUBUNIT (SUBUNT_ID,SUBUNT_SUB_UNIT,SUBUNT_PHYUNT_ID) values (?,?,?)");
              //InputStream in=null;
              File l_file=new File("/home/sreejith/EDIReader/propertyfiles/inputfile/BUG_10802_ES_CSB19_68.txt");
              BufferedReader input =null;
              input=new BufferedReader(new FileReader(l_file));
              String line = null;
              StringBuffer trial=new StringBuffer();
              while (( line = input.readLine()) != null){
                   trial.append(line);
                   trial.append(System.getProperty("line.separator"));
              //InputStream is = new BufferedInputStream(new FileInputStream(l_file));
              System.out.println(trial.toString());
              //Blob b ;
              //byte[] bytes=trial.toString().getBytes();
              //System.out.println("Size-->"+bytes.length);
              xml_insert.setString(1,new String("SpecailChar"));
              //xml_insert.setBinaryStream(2,new ByteArrayInputStream(bytes),15920);
              xml_insert.setString(3,"SpecailChar");
              xml_insert.executeUpdate();
              p_conn.commit();
              } catch (ClassNotFoundException e) {
                   System.out.println("ClassNotFoundException:"+e.getMessage());
              // Could not find the database driver
              } catch (SQLException e) {
                   System.out.println("SQEXCEPTIN:"+e.getMessage());
              // Could not connect to the database
              }catch (FileNotFoundException e) {
                   System.out.println("filenot found:"+e.getMessage());
              // Could not connect to the database
    Error I'm getting is
    error while trying with jdbc:
    SQEXCEPTIN:[BEA][Oracle JDBC Driver]Error establishing socket to host and port: 10.20.3.19:1521. Reason: Connection refused

    Is the Windows firewall active? Have you enabled the port on the firewall, if it is?

  • Unable to connect to Planning nor shared services

    Hi,
    Something weird happened:
    Users were using Planning webforms in the office (http://server.com:8300/HyperionPlanning/LogOn.jsp) for about 2 hours and suddenly no one could log in.
    When users entered userid/password on the planning application, the form was stuck in state saying “Authenticating User”.
    The strange thing is that I am able to log into Planning (from my home PC, VPN into corporate network)
    However, from all rooms in the building, no one was able to log into Planning nor Shared Services. Everyone could access the Internet and Intranet thought.
    Any idea why? Restarting Planning and HSS services did not solve the problem. We even tried to use IP address in http://server.com:8300/HyperionPlanning/LogOn.jsp
    Edited by: Essbase Fan on Feb 2, 2010 12:55 PM

    Hi John,
    If you are in Europe, this must be late at night for you <smile>
    I logged in as one of the users from my PC from my home via vpn - no problem.
    Oh, they are getting a blank screen - they are not able to access Planning login screen.
    Same userID can't get Planning login screen from corporate office. Planning admins can't login as well.
    Just found out that all users can now log in.
    Isn't that weird ?
    I was wrong , the Windows administrator did NOT attempt to log into Planning using Remote Desktop directly to Planning server. It probably would have worked.
    Edited by: Essbase Fan on Feb 2, 2010 12:56 PM

  • Outlook client in different subnet unable to connect to Exchange 2010 CAS using Windows 2008 R2 NLB multicast mode

    Hi all,
    need urgent assistance on the following issue
    this is my Exchange 2010 setup
    2 x CAS/Hub servers with HP network teaming, and load balanced using Windows NLB multicast mode. There are 2 VIPs on the NLB, one for outlook anywhere, one for autodiscover
    2 DNS records were created for the 2 VIPs
    Clients use Outlook Anywhere (HTTPS) to connect to the CAS servers from external segment via a Palo Alto firewall, which also acts as a layer 3 router
    static arp was set on the Palo Alto firewall, with both virtual MACs pointing to the primary virtual MAC used by the NLB. 
    Observations
    1. within same segment - no issue accessing Exchange servers, even when one CAS node is offline
    2. external segment (via firewall)
    a. when both nodes are up
    outlook client able to connect to Exchange CAS VIP on 443, but will disconnect after around 30 seconds. Client will retry and the pattern will repeat
    Exchange CAS RPC logs shows client connections and disconnections to the outlook anywhere VIP address
    Firewall logs shows allowed traffic from client to the VIPs
    unable to complete profile creation
    b. with only CAS2 (CAS1 stopped/deleted from NLB cluster)
    no issues accessing Exchange servers, creating profiles etc
    c. with only CAS1
    same behaviour as (a)
    reinstalled NLB, but doesn't resolve
    deleted CAS1 from NLB cluster, and re-add. issue remain
    Q1. is teaming supported? Teaming is currently set to automatic mode, instead of specified Fault Tolerant
    Q2. are there additional settings we need to set or verify on the Palo Alto firewall, since the issue only happen to external segment? Thanks!

    Yes - I've been scarred with this for many years :(
    If it is just CAS 1 that is causing issues, then focus in on that.  The support statement for Win 2008 R2 is that NLB is still a 3rd party component and support may ask for it to be disabled.
    http://support.microsoft.com/kb/278431 
    Does CAS1 and CAS2 have the same NICs (firmware as well), driver, teaming software, and teaming config? 
    I also want to ask what the network team did for configuring the switch ports on the servers?  This will vary from vendor to vendor  - did they do the same config on both?
    Cheers,
    Rhoderick
    Microsoft Senior Exchange PFE
    Blog:
    http://blogs.technet.com/rmilne 
    Twitter:   LinkedIn:
      Facebook:
      XING:
    Note: Posts are provided “AS IS” without warranty of any kind, either expressed or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.
    Thanks Rhoderick, issue still persists
    can you also help clarify what you meant by "configuring the switch ports on the servers"?
    thanks again

  • UNABLE TO CONNECT TO WIRELESS NETWORK WITH APPLE WINDOWS COMPUTERS CAN

    I am new to Apple and am trying to connect to our at home wireless network.Have a Linksys wireless router that is functioning as far as I know correctly.We are able to connect with windows based laptops.My Apple sees our network which is identified correctly and asks for a password.When we enter the password that functions for the other computers it does not work.I s there a configuration change I need to make.Maybe a password variant? I really want to get this up and running and am out of ideas.
    INTEL IMAC 20 IN 2.17 GHZ   Mac OS X (10.4.7)  

    Are you using WEP, if you can try and use WPA.
    One of the problems with WEP is that the actual standard relies on a 10 character HEX key for 40bit WEP and a 26 character HEX key for 128bit WEP.
    In order to make things easier for people, vendors use certain algorithms to convert simple alphanumeric passwords (or passphrases) into HEX keys, thus enabling people to use simple memorable WEP password rather than lengthy HEX keys.
    The problem is that different vendors use different algorithms to generate the HEX key and therefore a ASCII password on an AEBS will be hashed differently on a Netgear client and vice versa.
    One thing is a 13 character 128 bit WEP password will be hashed by all vendors in the same way (if you use 40bit WEP then a 5 character password is required).
    Though sometimes not even that works and the HEX key must be used regardless.
    AirPort: Joining an encrypted wireless network
    http://docs.info.apple.com/article.html?artnum=106424
    Choosing a password for networks that use Wired Equivalent Privacy (WEP)
    http://docs.info.apple.com/article.html?artnum=108058
    WPA
    "WPA Personal" on the Mac corresponds to plain WPA, with a pre-shared key (PSK) and TKIP encryption, on non-Apple wireless routers. The same alphanumeric password should work on both.
    iFelix

  • Unable to Connect to SQL 2000 Instance from Windows Server 2012 environment

    We have a windows server (TEST) 2012 environment , where our test SQL Server 2012 instance is hosted.
    We have a different (DEV) Server (windows 2000)  where a SQL Server 2000 instance is present.
    When I RDP to our Windows Server 2012 box, I cannot connect to the SQL 2000 server instance from SQL Management Studio. (whereas I can connect to
    the same server from my local machine which has windows 7 and SQL 2012 installed). 
    This is the error i see - 
    "A transport-level error has occurred when receiving results from the server. (provider: TCP Provider, error: 0 - The specified network name
    is no longer available.) (.Net SqlClient Data Provider)"
    When run from SQL Agent Service from TEST (A Job which tries to connect to that SQL 2000 instance to read some data using SSIS) , we get the following
    error - 
    An OLE DB record is available.  Source: "Microsoft OLE DB Provider for SQL Server"  Hresult: 0x80004005  Description: "[DBNETLIB][ConnectionRead
    (recv()).]General network error. Check your network documentation.".
    The same SSIS package runs successfully from my local machine.
    Please, could someone advice how to resolve this situation?

    Thanks Olaf.
    Its just that we have legacy systems here in our company, who, for some reason haven't upgraded their older infrastructure, whereas they have set up new Windows 2012/SQL 2012 environments for the newer sql instances where they want to transition to !
    Not sure what the solution is honestly. It is affecting our timelines now. The infrastructure team needs to take a decision now, as to what to do.
    I do have to add, we were able to connect to these "older" servers from our Windows 7 client machines which have SQL 2012 - both from SQL management studio & SSIS (using OLE-DB Provider for SQL Server).

  • E63 unable to connect to Netgear WGR614v7: invalid...

    Just bought a Nokia E63 and keen to try connecting via my wireless router.
    Sees the network immediately. Easy to setup. However, as soon as I try to connect to the internet (e.g. Google) it says WLAN:
    Unable to connect:
    Invalid WPA pre-shared key.
    I assume it is referring to the network or passphrase key. Well, just to be sure I changed it and then went in on my laptop and had to change that so it could reconnect. Laptop works fine (again); phone still a no go.
    Wireless router setup as:
    Region: Europe
    Channel 11
    Mode g and b
    Wireless AP: ON
    Broadcast: ON
    Security options: WPA-PSK [TKIP] + WPA2-PSK [AES]
    Enable WMM: DISABLE
    No wireless card access setup.
    WAN Setup  
    Connect Automatically, as Required   = yes
    Disable SPI Firewall   = unticked
    Default DMZ Server ...   = unticked
    Respond to Ping on Internet Port = unticked   
    MTU Size (in bytes)    = 1500
    NAT Filtering Secured Open = unticked
    Disable SIP ALG = SECURED
    Ideas anyone?
    Cheers,
    J
    Solved!
    Go to Solution.

    jceh wrote:
    Originally I just followed the auto-setup and entered responses as required. Since then I've been trying different combinations trying to get it to work. Currently I go in through: menu > tools > settings > connection  > access points and then select my router SSID.
    Data bearer: wireless LAN
    Network status: public
    WLAN network mode: infrastructure
    Security mode: WPA/WPA2
    WPA/WPA2: pre-shared key
    Pre-shared key:  = router pass key (note this contains odd characters such as £ and % and commas.)
    WPA2 only mode: off
    All advanced settings (IPv4 etc) are automatic.
    J
    Looks allright to me. Use another key without the special characters or spaces. Check the router for MAC filtering. If you're using DNS servers you have to define them in the IPv4 section, if not leave it automatic (DHCP). Turn off the powersaving in the WLAN settings. Tools-> settings-> connection-> WLAN-> options-> advanced settings->yes-> powersaving-> off.
    ‡Thank you for hitting the Blue/Green Star button‡
    N8-00 RM 596 V:111.030.0609; E71-1(05) RM 346 V: 500.21.009

  • Unable to connect to LAN - Integrated 10/100BASE-T Ethernet LAN (RJ-45 connector)

    Unable to connect to LAN, downgraded laptop from Windows 8 to Windows 7 64-bit. Have tried using the HP device identifier, and installing all drivers under Network for the laptop on WIndows 7, though none of them showed as being for Local Area Network.I also tried following this thread: http://h30434.www3.hp.com/t5/Wireless-Internet-Home-Networking/Integrated-10-100BASE-T-Ethernet-LAN-RJ-45-connector/td-p/4040756Downloaded the suggested drivers there for the HP Envy 17t-j100I also tested downloading the drivers here for Windows 7: http://www.realtek.com.tw/downloads/downloadsView.aspx?Langid=1&PNid=14&PFid=7&Level=5&Conn=4&DownTypeID=3&GetDown=false Neither worked, I am still only able to connect via Wi-Fi, but not via LAN with actual cable attached.In case necessary, hardware ID for the Realtek PCIe FE Family Controller:
    PCI\VEN_10EC&DEV_8136&SUBSYS_1854103C&REV_05PCI\VEN_10EC&DEV_8136&SUBSYS_1854103CPCI\VEN_10EC&DEV_8136&CC_020000PCI\VEN_10EC&DEV_8136&CC_0200

    Hi: You can use all of the W7 x64 drivers and software from the HP 2000t-2a00 on your model except the BIOS and firmware files. Make sure you install the Intel chipset installation utility first and reboot before trying to install the Realtek LAN driver. http://h22207.www2.hp.com/us-en/drivers/selfservice/hp-2000-2a00-notebook-pc-series/5259212/model/5275371

  • Azure Table Storage Unable to connect - Error on increasing load

    I am using Windows Aure Website ( Reserved Instance) and doing the Inserts to an Azure table via http. ( Yes http).  When i was doing load testing, foud the below error.  It was like  2 hits / seconds... Not sure what is the reason?
    Any thoughts? SDK issue? 
    HTTP_Request2_ConnectionException</b>: Unable to connect to tcp://innovativetxtstorage.table.core.windows.net:80. Error: php_network_getaddresses: getaddrinfo failed: No such host is known.  
    C:\DWASFiles\Sites\innovativetxt\VirtualDirectory0\site\wwwroot\vendor\pear-pear.php.net\HTTP_Request2\HTTP\Request2\Adapter\Socket.php  on  line 324
    >HTTP_Request2_SocketWrapper->__construct('tcp://innovative&hellip;', 10, Array)</td><td>C:\DWASFiles\Sites\innovative in C:\DWASFiles\Sites\innovativetxt\VirtualDirectory0\site\wwwroot\vendor\pear-pear.php.net\HTTP_Request2\HTTP\Request2\SocketWrapper.php
    on line 116

    Here is further information ...
    In normal circumstance with 30 Hits per Minute to our our API.... It works fine.  After that latency is too high that it gives time out. See the Attached Report..
     All I am doing is reading the Azure table to verify user Loginand Password...   ( Reading Same Entity Again and Again)
    See teh Performance Test Report here... http://www.innovativetxt.com/BlitzPerformanceTest.pdf
    My customer cannot send us more than 30 request per seconds.. we feel ourself in trouble by complains every day.
    We are on reserved Instance Website URL is http://www.innovativetxt.com   and we feel like latency is killing us. 
    1. Is it because of Aure Storage? Cannot handel load of that much?
    Is it bec
    ( I have already turend of Tanggling, TCP 100 etc all tips implemented )
    See the below error message from Log file.
    [03-Aug-2013 09:37:01 UTC] PHP Fatal error:  Uncaught <table style="border: 1px" cellspacing="0">
    <tr><td colspan="3" style="background: #ff9999"> <b>HTTP_Request2_ConnectionException</b>: Unable to connect to tcp://innovativetxtstorage.table.core.windows.net:80. Error: php_network_getaddresses: getaddrinfo failed:
    No such host is known.  in <b>C:\DWASFiles\Sites\innovativetxt\VirtualDirectory0\site\wwwroot\vendor\pear-pear.php.net\HTTP_Request2\HTTP\Request2\Adapter\Socket.php</b> on line <b>324</b></td></tr>
    <tr><td colspan="3" style="background-color: #aaaaaa; text-align: center; font-weight: bold;">Exception trace</td></tr>
    <tr><td style="text-align: center; background: #cccccc; width:20px; font-weight: bold;">#</td><td style="text-align: center; background: #cccccc; font-weight: bold;">Function</td><td style="text-align:
    center; background: #cccccc; font-weight: bold;">Location</td></tr>
    <tr><td style="text-align: center;">0</td><td>HTTP_Request2_SocketWrapper->__construct('tcp://innovative&hellip;', 10, Array)</td><td>C:\DWASFiles\Sites\innovative in C:\DWASFiles\Sites\innovativetxt\VirtualDirectory0\site\wwwroot\vendor\pear-pear.php.net\HTTP_Request2\HTTP\Request2\SocketWrapper.php
    on line 116

  • Unable to connect to Exchange

    Hi!
    After renewing Exchange 2010 third party Certificate windows XP and 2003 server are unable to connect to OWA and Outlook. Windows 7 users are fine. OWA is showing
    Internet Explorer cannot display the webpage
    Any Suggestions!
    Thanks.

    Hi,
    To narrow down the cause, I recommend the following troubleshooting:
    1. Try to ping your Exchange server on the problematic users’ workstations
    2. Try to access OWA with the proper IP address.
    3. Try to directly access the following URL:
    https://autodiscover.domain.com/autodiscover/autodiscover.xml
    If you have any question, please feel free to let me know.
    Thanks,
    Angela Shi
    TechNet Community Support

  • Why do I get the "unable to connect " page when I am connected to the internet?

    My operating system is XP. I can go to most of my pages without the "Unable to connect" tab. When I go to Microsoft page it displays but I will get the "Unable to connect" when I try to download Windows Media player.
    == URL of affected sites ==
    http://www.microsoft.com/windows/windowsmedia/player/11/default.aspx

    Let's start simple. Try clearing your cache and cookies.
    # Open the Tools menu, then select Clear Recent History... .
    # In the '''Time Range to clear:''' drop-down, select '''Everything'''.
    # Click the arrow next to '''Details''' to display the list of items that can be cleared.
    # Select both '''Cookies''' and '''Cache'''.
    # Click Clear Now .

  • Unable to connect to the database to product shared services

    Hi
    I got an error in configuring shared services with the Oracle server database
    "" Unable to connect to the database to product shared services ""
    I created a database that is working properly when accessed by a client.
    I typed everything in config utility, Does we need to take care of any other servies?
    I appreciate if any one help with this.
    Thanks
    Abel Junior
    Version: Hyperion System 9 and Oracle 9i

    John is of course correct that XP is not a supported environment for Essbase 9.3.x.
    Having said that, I have successfully installed Shared Services, Essbase, and EAS on multiple XP laptops. I have done so with 9.2 (painful) and 9.3.1 (just about painless) although always against SQL Server. This is strictly for development/kick the tires work, never as a production environment.
    Planning has quite an issue with XP (and Vista) although I have heard that there is a Windows Registry fix for this.
    Of course Oracle support is going to gong you if you call up with questions about your laptop -- it isn't supported.
    One last thing -- Shared Services and laptop suspends =! stability. For my development purposes, I have backed off Shared Serivces and just go with Essbase as a service with native security and EAS.
    Regards,
    Cameron Lackpour
    P.S. VMs are probably the way to go if your desktop/laptop has the horsepower to drive a proper OS with the VM overhead. On a 4 gigabyte laptop with a Duo Core (no, not a Mac, I just can't remember what Intel calls it -- the power of marketing) VMServer running Windows Server 2003 and the full stack is pretty slow, but it works.

  • Unable to connect shared drive on Sun host via PCNFS v5.1

    I am trying to setup a shared directory on a Sun host running SunOS Release 5.6. I have an old version of PCNFS v5.1 for DOS that I require for a legacy application which seems to be setup correctly. However when I try to mount a shared drive on the Sun server I using "mt.exe" I get the message "Unable to connect the resource '/dirname' from the Server 'name'. Reason: Unrecognized RPC error number 1005." When I try to use the "net use..." command it also fails with the message "PCNFS 251F: The NET USE failed with an internal error code of 1005." I have mountd and rpc.pcnfsd running on the Sun host and would appreciate any help that can be provided. Thanks!

    I have looked under Wireless/Advanced Wireless Setting, and in fact, all around in the setup, but don't have any parameter called AP Isolation. Router model is BEFW11S4.
    Any other ideas?

Maybe you are looking for

  • No Color on the TV

    This has happened to me once before and I managed to find the answer with a search on the forum. This time no luck. I can't remember the solution. I believe this happens if you power off tv and other components BEFORE shutting down AppleTV or vice ve

  • Who create Web service in flex 3? Or import  web service flex 3

    Please import web service flex 3, work code example (Alguine quien me colabore mostrando un ejemplo trabajando con web services en flex)

  • Can't get Generator to work

    I'm using a free trial of PS CC and have downloaded all the updates. Generator is checked in the file menu but nothing is being saved to the folder where my psd is. I'm pretty much a beginner so could be doing something very basic wrong - or is it be

  • Protecting my Windows Share?

    I have turned on Windows Sharing on my Mac, but it seems that everyone on the network can view and modify my documents. Is there any way of restricting access to my files e.g. by setting a username or password to access the share?

  • Is there a way to get iCloud tabs to sync between my iPod touch and Safari for Windows?

    I would like to know if there is a setting or something that I'm missing over... I already have iTunes and the iCloud Control Panel on my Windows 8 computer.  Is the iCloud Tab feature Mac-only or can I get it to sync with Safari for Windows?  Thanks