TS1398 I can see the public network and it show the the conected bars at the top, but it doesn't prompt me to the main page to log in

I can see the public network and it show the the conected bars at the top, but it doesn't prompt me to the main page to log in

I tried that, I am staying at a hotel and it shows the network and it shows the conectivity bar at the top, generally it sends me to the main wifi page and asks me to type a password... but it doesn't even send me to that page at all, I did a network reset and still not working

Similar Messages

  • Can see the test page, Can register the provider but error in portlet

    Hi all,
    I have done the following settings in my web.xml
    web.xml
    <servlet>
    <servlet-name>calsample</servlet-name>
    <servlet-class>oracle.portal.provider.v1.http.HttpProvider</servlet-class>
    <init-param>
    <param-name>provider_root</param-name>
    <param-value>D:\pdk\pdkoct\pdk\urlservices\providers\calsample</param-value>
    </init-param>
    <init-param>
    <param-name>sessiontimeout</param-name>
    <param-value>1800000</param-value>
    </init-param>
    <init-param>
    <param-name>debuglevel</param-name>
    <param-value>3</param-value>
    </init-param>
    </servlet>
    <servlet-mapping>
    <servlet-name>calsample</servlet-name>
    <url-pattern>/calsample/*</url-pattern>
    </servlet-mapping>
    <servlet>
    <servlet-name>CalendarServlet</servlet-name>
    <servlet-class>com.jsos.calendar.CalendarServlet</servlet-class>
    <init-param>
    <param-name>config</param-name>
         <param-value>d:/tomcat/conf/calconf.txt</param-value>
    </init-param>
    </servlet>
    <servlet-mapping>
    <servlet-name>CalendarServlet</servlet-name>
    <url-pattern>calendar</url-pattern>
    </servlet-mapping>
    provider.xml
    <provider class="oracle.portal.provider.v1.http.DefaultProvider" session="true">
    <portlet class="oracle.portal.provider.v1.http.DefaultPortlet" version="1">
    <id>1</id>
    <name>CalendarServlet</name>
    <title>My Calendar Servlet</title>
    <description>This is my Calendar Servlet implemented as a ServletRenderer.</description>
    <timeout>5</timeout>
    <timeoutMsg>Calendar Servlet Renderer example timed out</timeoutMsg>
    <hasHelp>true</hasHelp>
    <hasAbout>true</hasAbout>
    <showDetails>true</showDetails>
    <showEdit>true</showEdit>
    <showEditDefault>true</showEditDefault>
    <acceptContentTypes>
    <item>text/html</item>
    </acceptContentTypes>
    <portletRenderer class="oracle.portal.provider.v1.http.ServletPageRenderer">
    <appPath>/pdk/calendar</appPath>
    <appRoot>D:\tomcat\webapps\pdk\WEB-INF\lib</appRoot>
         <showServlet>com.jsos.calendar.CalendarServlet</showServlet>
    </portletRenderer>
    </portlet>
    </provider>
    With the above settings, I can see the test page at http://<server_ip>:port/pdk/calsample.
    I am able to register the provider on the Portal server as well.
    While adding the portlet to the portal page, the Calendar Portlet is listed there.
    But, when I press the preview button next to it, It shows "Error: The listener returned the following Message: 500 Internal Server Error".
    Please give me a clue where I am going wrong.
    Thanks in advance.

    Well, over the past few days while desparately trying to make my portlets work, I have tried several things. I started initially with a downloaded version of pdk that contains samples of v1. My first message above reflects the setup I used with v1. While trying to figure-out the problem for error 500, I tried v2 but the same problem persisted.
    However, the clue by Mr. Peter Moskovits to check the application.log has helped me to finally resolve the problem.
    Here is my new WORKING setup:
    \WEB-INF\web.xml:
    <context-param>
    <param-name>oracle.portal.log.LoggerClass</param-name>
    <param-value>oracle.webdb.log.ServletLogger</param-value>
    </context-param>
    <context-param>
    <param-name>oracle.portal.log.LogLevel</param-name>
    <param-value>7</param-value>
    </context-param>
    <!--
    Define the JPDK servlets and their parameters
    -->
    <servlet>
    <servlet-name>SOAPServlet</servlet-name>
    <display-name>SOAPServlet</display-name>
    <description>Extended Portal SOAP Server</description>
    <servlet-class>oracle.webdb.provider.v2.adapter.SOAPServlet</servlet-class>
    <!-- The following parameter enables invalidation caching -->
    <init-param>
    <param-name>invalidation_caching</param-name>
    <param-value>true</param-value>
    </init-param>
    </servlet>
    <servlet-mapping>
    <servlet-name>SOAPServlet</servlet-name>
    <url-pattern>/providers</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>SOAPServlet</servlet-name>
    <url-pattern>/providers/*</url-pattern>
    </servlet-mapping>
    <servlet>
    <servlet-name>CalendarServlet</servlet-name>
    <servlet-class>com.jsos.calendar.CalendarServlet</servlet-class>
         <init-param>
         <param-name>config</param-name>
         <param-value>d:/conf/calconf.txt</param-value>
    </init-param>
    </servlet>
    <servlet-mapping>
    <servlet-name>CalendarServlet</servlet-name>
    <url-pattern>/calendar</url-pattern>
    </servlet-mapping>
    \WEB-INF\providers\calendar\provider.xml :
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <?providerDefinition version="3.1"?>
    <provider class="oracle.portal.provider.v2.DefaultProviderDefinition">
    <session>true</session>
    <portlet class="oracle.portal.provider.v2.DefaultPortletDefinition" >
    <id>1</id>
    <name>Calendar</name>
    <title>Calendar Portlet</title>
    <shortTitle>Calendar</shortTitle>
    <description>This portlet is my calendar portlet.</description>
    <timeout>30</timeout>
    <timeoutMessage>Calendar Portlet timed out</timeoutMessage>
    <renderer class="oracle.portal.provider.v2.render.RenderManager" >
    <showPage/calendar</showPage>
    </renderer>
    </portlet>
    </provider>
    \WEB-INF\deployment\calendar.properties
    serviceClass=oracle.webdb.provider.v2.adapter.soapV1.ProviderAdapter
    loaderClass=oracle.portal.provider.v2.http.DefaultProviderLoader
    showTestPage=true
    definition=providers/calendar/provider.xml
    autoReload=true
    debugLevel=7
    With the above setup, I am able to access the test page successfully at:
    http://[server-ip]:port/jpdk/providers/calendar
    Which lists my portlet, Calendar.
    Upon registering the portlet provider with the above URL, the portlet provider lists my Calendar portlet there and it shows-up the portlet successfully there.
    Thank you all.

  • How can I adjust ADE so that I can see the entire page of a graphic novel (.epub)?

    How can I adjust ADE so that I can see the entire page of a graphic novel (.epub)?

    You can reduce or increase the font size of the page according to the way you like. Click on "Reading" under the Menu option -> "EPUB Text Size". Select appropriate font size from this option.
    Reduce or decrease the font size so that you can see the entire page.

  • When I went to adjust the brightness on my phone, the screen went black.  I have tried everything...resetting, turning off/on, charging, and restoring.  I can see the "unlock" page and the "passcode" page, but when I enter the passcode, it goes dark again

    When I went to adjust the brightness on my iphone, the screen went black. I have tried everything I can think of and have read online to try....resetting the phone, turning it off/on, charging the phone, and restoring the phone.  I can see the "slide to unlock" page and the "enter passcode" page.  When I enter the passcode, the screen goes dark again.  I can't even answer calls.  What should I do now?

    If no change after restoring the iPhone as a new iPhone or not from the backup, the iPhone has a hardware problem.

  • Preventing the User from going back to the main page after logging out.

    Hi all,
    In my project I want to prevent the User from going back to the Main page, by clicking the back button of the browser, after the user has loggged out.I had invalidated the session so the user will not be able to do any operations, but he can vew the infos. I want to redirect to the login page if the user tries to go back using the back button after he has logged out.
    I tried the same in this forum after loging out. Surprisingly it is the same. I can browse through all the operations i did even after logging out from here.
    Is it not possible to do that in Servlets?Could somebody help?
    Thanks,
    Zach.

    Hi,
    You can use a servlet filter to do this , as it can interceptany request to your application you can decide to allow user access or not to any page/servlet.
    public class Test implements Filter{
         public void destroy() {
         public void doFilter(ServletRequest arg0, ServletResponse arg1, FilterChain arg2) throws IOException,
                   ServletException {
              System.out.println("filter");
              HttpServletRequest request = (HttpServletRequest) arg0;
              if(!request.getRequestURI().contains("index")){ // set condition that will be checked to verify if the user is logged in
                   System.out.println("redirecting ... ");
                   RequestDispatcher d = arg0.getRequestDispatcher("/index.jsp");
                   d.forward(arg0, arg1);
              arg2.doFilter(arg0, arg1);
         public void init(FilterConfig arg0) throws ServletException {
    }in you web.xml add :
    <filter>
              <filter-name>test</filter-name>
              <filter-class>test.Test</filter-class>
         </filter>
         <filter-mapping>
              <filter-name>test</filter-name>
              <url-pattern>/*</url-pattern>
         </filter-mapping>

  • How do I get new tabs/windows to open automatically such that I can see the entire page width without having to adjust the zoom?

    I cannot see much of the page when it automatically opens so zoomed in ...

    You can use an extension to set a default font size and page zoom on web pages.
    *Default FullZoom Level: https://addons.mozilla.org/firefox/addon/default-fullzoom-level/

  • I can see the main menu on TV but does not respond?

    I have tried disconnecting Apple TV but can not get it to respond with remote, don't know what else to do, any suggestions?

    No luck, remote does not let me go to settings to change anything.  Tried holding down MENU key with right button for 6 seconds and will not respond.  How frustrating, been trying for the last 2 hours and nothing.  Appreciate your help....thanks.

  • Add Device sees wireless but printer is wired and can reach the HTTP page on wire

    I installed my new Officejet 8000 Pro A809 with an ethernet but when I run the HP "Add Device" Wizard, it trys to install it as wireless even though I select wired and the install fails.
    I can see the http page for the printer and it shows all sane information about my printer so I believe the ethernet is actually working.
    I am running WinXP with the FW off. The printer is on the same switch as my PC & of course I can see the http page
    In the wizard, although I selected "Wired" of course the wire is working, the "Found Network Printers" page shows that its connection is wireless. None-the-less I click next and a screen comes up for "Starting Network Services" & it rolls though topology, wireless strength, etc. and to sending an SLP request to the IP then it fails & shows an picture of a wireless signal and a big red X.
    The HP Home Network Diagnostics Utility says that software to connect to printer over network is missing BUT I ran the Wizard all the way though a second time, I selected that my device was not online and it finished OK. I ran the UPDATE from the Utility & it did a security update; I rand it again and it did not find any.
    Although my FW is off, I checked the ports that the FW Guide says are needed:
    I can telenet to the printer on ports 9100 & 92200
    I cannot telnet on ports 137,139 or 427
    Ideas?
    Thanks!
    Larry Holt
    This question was solved.
    View Solution.

    OK, plugging the Ethernet cable into the printer should turn off the printer's wireless radio, but in case it did not, click the button near the blue light (or go to Setup > Network > Turn off wireless radio on the front panel).
    Now, don't bother with the Add Device wizard, let's just add it manually:
    Verify that you can browse to the printer's internal web page by its IP address.  If you cannot, disable your security system's firewall (not Windows firewall, it is usually not in the way).
    1. Click "Start" button --> Printers and Faxes.
    2. Under Printer Tasks, click "Add Printer".
    3. Click "Next" button on the Add Printer Wizard window.
    4. Select "Local printer attached to this computer". Deselect "Automatically detect and install My Plug and play printer". Click "Next".
    5. Under Select a Printer Port option, select "Create a new port" and select "Standard TCP/IP Port" and click "Next" button.
    6. In the "Welcome to the Add Standard TCP/IP printer port wizard" make sure that the printer is turned on and connected to same network that your computer is connected to. Click "Next" button.
    7. Under "Add Standard TCP/IP Printer Port" enter the printer's IP address. Click "Next" then click "Finish".
    8. Now, select HP from the list of manufacturers, select your printer from the list of Printer models and click 'Next' button.
    9. If you can't find your printer, you'll need to find the install CD and use the "Have Disk" option to select one of the hp*.ini files. Alternatively, you can select another HP printer model from the same type.
    10. Add the print spooler name and click "Next".
    11. Click "Next"
    12. Click "Next" and then "Finish"
    Say thanks by clicking "Kudos" "thumbs up" in the post that helped you.
    I am employed by HP

  • Can see and recognize my wireless network and Internet is working, but I can't connect with ANY computers/iPad/iPod/air TV, etc. I have reset the time machine several times, and can see the network, but cannot access it with any device. PLEASE HELP!

    I have Comcast Internet and have it connected to a Motorla Surfboard modem and have that running directly to a 2TB Time Capsule. The TC is serving as our time machine as well as our wireless router. We lost power in a storm a week ago and can no longer connect to my wireless network I can see the network and sign into it via password, but cannot connect with any device(iMac, MacBook, iPhones, iPod touches, air tv, etc.). ALL of these devices worked gat before the power went out. I reset both modem and TC and still can't connect. I can connect to the Internet through Ethernet cord directly from the modems dn have confirmation(per Comcast service) that the Internet is working and we have a good connection.
    The TC is less than six months old so I'm not sure what is wrong. I have reset settings with TC to no avail. I have reset the TC SEVERAL times and have no idea what could be wrong and what is prohibiting me from connecting. Anyone that has ANY suggestions or ideas as to how to fix this, PLEASE HELP!!!  I'm going crazy using iPad 3G and not being able to connect to our wifi. THANKS FOR YOUR TIME AND I LOOK FORWARD TO GETTING BACK TO THE 21ST CENTURY! 

    Anyone have any ideas or information to help with this?  Any help and consideration is MUCH appreciated.

  • The power went out and when it returned the network name and password was lost.  I can see the network in my connections and connect to it.  How do I get it back to the orginal name and password.  I have an HP laptop

    The power went out and when it returned the network name and password was lost.  I can see the network in my connections and connect to it.  How do I get it back to the orginal name and password? I have an HP laptop. 

    Chances are, there was a signficant power surge or voltage fluctuation just before the power went out. This type of thing can cause the AirPort Extreme to reset back to default settings.
    If this occurs, your only option is re-configure the device again, just as you did originally.
    In order to improve your chances this next time this happens, (especially if you live in an area where thunderstorms are severe), a good quality surge suppressor / voltage limiting power strip will really help, and may save you the entire device or a nearby computer next time something like this occurs.

  • Extended router's network for Airport extreme. Works well with MacbookPro. I can print with notebook with XP SP3 and, I can see the USB-harddisc in the Airport service program but, I cannot use it. I have set filesharing etc. What do I do wrong?

    I connected the Airport Extreme wireless to the existing network of my router. At the Airport there is connected via USB a Printer and three hard discs. All works well on my MacBook Pro - I can print and use the hard discs. On my notebook and my desktop, both with XP-SP3 I can use the printer only. In the Airport service program - manual set up - hard discs I can see the drives with the correct names but I cannot work with it. I don't find neithe the Airport Extreme nor the drives in the Windows Explorer. Of course I've set 'filesharing' etc. What do I do wrong? Where is the mistake in the set up?

    apikoros wrote:
    The Utility transferred all of the AE's settings, so I still have to change the password, which leaves me with only 2 other questions, I think:
    1)  I assume it's just a matter of using the Utility, entering a stronger password and checking for it to be remembered in Keychain Access.  But do I have to  change the password for each individual unit-- the TC, the Extreme and both Expresses-- or will changing it just for the TC alone work for the entire network?
    Resetting the password you will need to do for each device... the utility cannot even see those old units.
    So you will have to do it for each one.. think it through.. because as you change passwords the others will lose connection.. so start from the express which are wireless extending .. change those first.. and go back up the chain.. as each one changes it will drop off the network.. until you reach extreme and change that. Then you might need to reboot the whole network to get everything talking again. If something goes wrong.. just pluck that one out of the mix and plug in ethernet.. reset and redo the setup. That is my preferred method anyway.. do everything in isolation one by one. By ethernet and then nothing goes wrong.
    2)  Who's the treasonous SOB who spilled the beans to you about the ICBM in my back yard?!?
    N.Korean hackers.
    [Edit] Whoops-- one more question:  I want to partition the TC's disk, but Disk Utility doesn't see it.  What do I need to do?
    You cannot partition a network disk. And apple provided no tools for it in the TC itself. You can pull the disk out and partition it but that voids your warranty. (although done with care who is to know).
    Look at Q3 here.
    http://pondini.org/TM/Time_Capsule.html
    Mixing TM and data on the TC is worth planning carefully. They don't necessarily sit happily together.

  • Just got a macbook, and I cannot print on my printer. I used to be able to print on my printer with my old Dell laptop, but I can't print with my macbook. I can see the printer network on on my macbook, it says it is my default printer, but I can't print.

    I just got a macbook air and I cannot print on my home printer which is networked through my wife's window based computer. I can see the wifi network, I can see the printer, it is set as my default, but I can't print.
    Any ideas?

    You may have to visit the printer manufacturer's web site and look into their support pages to get a print driver for your Mac, and install it. Or see if you can see if a driver may already be in your Mac by checking settings, since there are many drivers already installed in Mac OS X.
    Good luck & happy computing!

  • Since I've upgraded to Maverick the airpot utility does not recognise that there is a time capsule on the wireless network. I can see the TC using the air port utility on my iPhone5 and on my iPad. What am I doing wrong on my macbook?

    Since I've upgraded to Maverick on my Macbook Pro the airpot utility does not recognise that there is a time capsule on the wireless network. I can see the TC using the air port utility on my iPhone5 and on my iPad. What am I doing wrong on my macbook?

    I have over 250G backed up and I really don't want to reset everything and start again.
    Not sure what you mean here. 
    A reset will not affect any of the data on the Time Capsule hard drive.  You would have to perform a completely separate and very deliberate Erase Disk operation for that to occur.
    I'm not recommending that you perform a default reset, but it is an option if there is really nothing else to try.
    I don't know if what you are seeing is a Mavericks issue or not, since I refuse to use any new software until at least the first major update with fixes comes along.
    Another user may be able to offer more input on Mavericks.

  • I have a mini I pad and it can see the wifi

    When I try and test wifi with another I pad this works ok have tried rebooting router and also turning off mini iPad but still will not connect when looking for wifi the mini pad can see the network and allows you to select it but will not connect to it has any body got any solutions for this

    Some things to try first:
    1. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    2. Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    3. Change the channel on your wireless router (Auto or Channel 6 is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    4. Go into your router security settings and change from WEP to WPA with AES.
    5.  Renew IP Address: (especially if you are droping internet connection)
        •    Launch Settings app
        •    Tap on Wi-Fi
        •    Tap on the blue arrow of the Wi-Fi network that you connect to from the list
        •    In the window that opens, tap on the Renew Lease button
    6. Potential Quick Fixes When Your iPad Won’t Connect to Your Wifi Network
    http://ipadinsight.com/ipad-tips-tricks/potential-quick-fixes-when-your-ipad-won t-connect-to-your-wifi-network/
    ~~~~~~~~~~~~~~~~~~~~~~~~~
    Wi-Fi Fix for iOS 6
    https://discussions.apple.com/thread/4823738?tstart=240
    iOS 6 Wifi Problems/Fixes
    How To: Workaround iPad Wi-Fi Issues
    http://www.theipadfan.com/workaround-ipad-wifi-issues/
    Another Fix For iOS 6 WiFi Problems
    http://tabletcrunch.com/2012/10/27/fix-ios-6-wifi-problems-ssid/
    Wifi Doesn't Connect After Waking From Sleep - Sometimes increasing screen brightness prevents the failure to reconnect after waking from sleep. According to Apple, “If brightness is at lowest level, increase it by moving the slider to the right and set auto brightness to off.”
    Fix For iOS 6 WiFi Problems?
    http://tabletcrunch.com/2012/09/27/fix-ios-6-wifi-problems/
    Did iOS 6 Screw Your Wi-Fi? Here’s How to Fix It
    http://gizmodo.com/5944761/does-ios-6-have-a-wi+fi-bug
    How To Fix Wi-Fi Connectivity Issue After Upgrading To iOS 6
    http://www.iphonehacks.com/2012/09/fix-wi-fi-connectivity-issue-after-upgrading- to-ios-6.html
    iOS 6 iPad 3 wi-fi "connection fix" for netgear router
    http://www.youtube.com/watch?v=XsWS4ha-dn0
    Apple's iOS 6 Wi-Fi problems
    http://www.zdnet.com/apples-ios-6-wi-fi-problems-linger-on-7000004799/
    ~~~~~~~~~~~~~~~~~~~~~~~
    How to Boost Your Wi-Fi Signal
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Boost-Your-Wi-Fi-Signal.h tm
    Troubleshooting a Weak Wi-Fi Signal
    http://ipad.about.com/od/iPad_Troubleshooting/a/Troubleshooting-A-Weak-Wi-Fi-Sig nal.htm
    How to Fix a Poor Wi-Fi Signal on Your iPad
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Fix-A-Poor-Wi-Fi-Signal-O n-Your-iPad.htm
    iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    WiFi Connecting/Troubleshooting http://www.apple.com/support/ipad/wifi/
    How to Fix: My iPad Won't Connect to WiFi
    http://ipad.about.com/od/iPad_Troubleshooting/ss/How-To-Fix-My-Ipad-Wont-Connect -To-Wi-Fi.htm
    iOS: Connecting to the Internet http://support.apple.com/kb/HT1695
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Connect iPad to Wi-Fi (with troubleshooting info)
    http://thehowto.wikidot.com/wifi-connect-ipad
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    How To Fix iPhone, iPad, iPod Touch Wi-Fi Connectivity Issue http://tinyurl.com/7nvxbmz
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    Wi-Fi or Bluetooth settings grayed out or dim
    http://support.apple.com/kb/TS1559
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • I would like to use time Machine to back up to a network SMB drive. I can see the drive on my desktop but it will not show in the time machine window to be able to select it

    I currently have a mini server (OSX10.8.5, server 2.2.2) that I am using Time Machine to back up 4 external drives that are connected to the server via firewire 800. I would like to use Time Machine to back up to a windows network SMB drive. I can see the drive on my desktop but it will not show in the time machine window to be able to select it for use.
    Can this be done
    Thanks for any and all help

    The supported targets for Time Machine backups are local (direct-connected) disks, and network targets include Time Capsule, a disk hanging off the current-generation AirPort (though not earlier AirPort devices), and OS X Server systems.
    The Time Machine storage is based on the HFS+ file system, so I would not expect TM to work with SMB file services.
    While there are hacks to allow Time Machine to access network drives, I would not consider those to be reliable. Skim the forum and the 'net for related details, and for previous discussions of setting this up and the related issues that can arise.
    Remember to test the recovery with whatever you decide to use; whole point of backups is the ability to restore the data, after all.
    If you want to learn more about Time Machine, Pondini is an excellent resource.

Maybe you are looking for

  • No sound when using HDMI to Vizio TV. HP Pavilion dv4-4310us

    I just bought a Vizio HDTV and connected to my HP Pavilion dv4-4310us Entertainment Notebook.  I have it connected through the HDMI output on the laptop and get great picture, but no sound! I have scoured the forums for Win 7, and here on HP's site..

  • How can I "hear" the outgoing fax?

    When I fax a document from my MBP, using File/Print/Fax PDF, how can I hear the dial town and fax tone (so I can tell if it's going out, or it's busy, or whatever)?

  • Security audit log for the last 30 days?

    Hi, My current settings for the security audit log is 20 MB (by default).  I dont want to control it with file size limitation, but by the no. of days the audit is recorded (max 30 days). What are the parameters that I would need to maintain? Or any

  • Importing .dv file problem

    Hi I'm using MPEG Streamclip to convert the .rec file on my DVR to a .dv file. The .rec file on my DVR is 2.5 Gig, after the conversion to .dv it's a huge 11.36 Gig. Any way the problem is it won't import into imovie I get a "unknown error" message H

  • Oralce Error - ORA-01722 WARN  [org.hibernate.dialect.Oracle9Dialect]

    Hi. i want to know meaning of following Error and how to remove it. ORA-01722 WARN [org.hibernate.dialect.Oracle9Dialect] The Oracle9Dialect dialect has been deprecated; use either Oracle9iDialect or Oracle10gDialect instead Regards, Pradeep Kr. Shar