Problem when client closes

Here is my server side:
import java.net.*;
import java.io.*;
public class server {
     private static ServerSocket serversocket = null;
     public static void main(String[] args) {
          //ServerSocket serversocket = null;
         try {
              serversocket = new ServerSocket(11116);
         } catch (IOException e) {
              System.out.println(e);
         while(true) {
              ClientWorker clientworker;
              try {
                   clientworker = new ClientWorker(serversocket.accept());
                   Thread thread = new Thread(clientworker);
                   thread.start();
              } catch(IOException e){
                   System.out.println(e);
                   System.exit(-1);
     protected void finalize(){
          try{
              serversocket.close();
          } catch (IOException e) {
              System.out.println("Could not close socket");
              System.exit(-1);
class ClientWorker implements Runnable {
     private Socket socket;
     public ClientWorker(Socket socket) {
          this.socket = socket;
     public void run(){
          String strLine;
          BufferedReader input = null;
          PrintWriter output = null;
          try{
               input = new BufferedReader(new InputStreamReader(socket.getInputStream()));
               output = new PrintWriter(socket.getOutputStream(), true);
         } catch (IOException e) {
              System.out.println(e);
         while(true){
              try{
                   strLine = input.readLine();
                   output.println(strLine);
                   System.out.println(strLine);
              } catch (IOException e) {
                    System.out.println(e);
                    System.exit(-1);
and my client side
import java.net.*;
import java.io.*;
public class client {
     public static void main(String[] args) {
          Socket socket = null;
          BufferedReader input = null;
          PrintWriter output = null;
          String strServer = "192.168.0.3";
          String strLine = "";
          try {
               socket = new Socket(strServer, 11116);
               input = new BufferedReader(new InputStreamReader(socket.getInputStream()));
               output = new PrintWriter(socket.getOutputStream(),true);
          } catch(UnknownHostException e) {
               System.out.println("Couldn't get I/O for the connection to: " + strServer);
          } catch(IOException e) {
               System.out.println(e);
          BufferedReader stdIn = new BufferedReader(new InputStreamReader(System.in));
          if(socket!=null && input!=null && output!=null) {
               while(!strLine.equals("quit")) {
                    try {
                         System.out.print("Output: ");
                         strLine = stdIn.readLine();
                         output.println(strLine);
                         System.out.println("Server: " + input.readLine());
                    } catch(UnknownHostException e) {
                         System.out.println("Couldn't get I/O for the connection to: " + strServer);
                    } catch(IOException e) {
                         System.out.println(e);
          try {
               output.close();
               input.close();
               socket.close();
          } catch(UnknownHostException e) {
               System.out.println("Couldn't get I/O for the connection to: " + strServer);
          } catch(IOException e) {
               System.out.println(e);
     } //end main method
}Seems like everytime I close my client, the server crashes which is "java.net.SocketException: Connection reset"
A little info about the program, it's just a multi-threaded server where clients can connect to it.
How do i fix it?
Thanks

Really? :)
strLine = stdIn.readLine(); // user
output.println(strLine); // send to serverYes, really. That 'strLine' is null if the client has closed. The OP is not checking for this condition so he is writing the null after the client has already closed, and this happens in a hard loop from which there is no escape until the exception.
So this happens because you are reading from the client after the client has closed its socket.That would cause readLine() to return a null. It wouldn't cause an IOException.
Message was edited by:
ejp

Similar Messages

  • [SOLVED] Disconnecting session when client close browser's window or tab

    Hello,
    I'm looking for disconnect my database session and invalidate the session with the "onunload" af:document function. I think that is the same as the "onunload" in "body" html tag.
    I see some documentation about that, for example:
    http://www.oracle.com/technology/products/jdev/htdocs/partners/addins/exchange/jsf/doc/tagdoc/core/document.html
    and I see that is enable to put an EL Expression, so I try with this:
    <f:view>
    <af:document binding="#{backing_user.document_user}" id="document_user" onunload="#{backing_user.logout}">
    <af:form binding="#{backing_user.form_user}" id="form_user"/>
    </af:document>
    </f:view>
    and not works, then I try:
    <f:view>
    <af:document binding="#{backing_user.document_user}" id="document_user" onunload="return logout_function()">
    <af:form binding="#{backing_user.form_user}" id="form_user"/>
    </af:document>
    </f:view>
    and as this, I try a lot of combinations, with no result. I take my time searching in various browsers but, surprisingly, I fount not much information about this (rare, I think is a very interesting matter).
    What is the way to be able this funcionallity?
    Thanks,
    Westh
    Edit: obviusly, logout_function() is a correct javascript function :P

    Hello,
    I resolve my problem. Now I go to describe the steps in a little tutorial.
    Remmember that this is a very basic tutorial that only allow you to do this matter, but not in deep. See bottom links for more information.
    Step's list:
    1) Download Shale framework from http://shale.apache.org/index.html#download
    2) Import all .jar libraries in your application.
    3) Open your web.xml file and add this:
    <context-param>
    <param-name>org.apache.shale.remoting.DYNAMIC_RESOURCES</param-name>
    <param-value>/dynamic/*:org.apache.shale.remoting.impl.MethodBindingProcessor</param-value>
    </context-param>
    4) Consider this:
    4.1) Managed bean --> userBean.java that have this method:
    public void logout () {
    /* Your logout code */
    and this name in faces-config.xml:
    <managed-bean>
    <managed-bean-name>userBeanId</managed-bean-name>
    <managed-bean-class>userBean</managed-bean-class>
    <managed-bean-scope>session</managed-bean-scope>
    </managed-bean>
    4.2) JSP Page --> home.jsp that have this code:
    A clinet listener:
    <af:clientListener method="unloadEvent" type="load"/>
    and this javascript functions:
    <f:verbatim>
    <script type="text/javascript">
    function unloadEvent () {
    window.onunload = function () {
    processUnload();
    function processUnload () {
    var httpRequest;
    if (window.XMLHttpRequest) {
    httpRequest = new XMLHttpRequest();
    } else if (window.ActiveXObject) {
    httpRequest = new ActiveXObject("Microsoft.XMLHTTP");
    httpRequest.overrideMimeType('text/xml');
    httpRequest.onreadystatechange = function() { alertContents(httpRequest); };
    httpRequest.open('GET', 'dynamic/userBeanId/logout.faces', false);
    httpRequest.send('');
    function alertContents(httpRequest) {
    if (httpRequest.readyState == 4) {
    if (!httpRequest.status == 200) {
    alert('There was a problem with the request. Http code: ' + httpRequest.status);
    </script>
    </f:verbatim>
    Assuming the suffix '.faces' is mapped to the JSF servlet.
    With this, you are able to acces to logout method of userBean (using ajax) when client closes window or tab. No servlets, no 'logout.jsp' pages, etc; and the most important thing: the code never be repeat! it's funny :)
    Westh
    Resources:
    http://thepeninsulasedge.com/blog/2007/06/22/adf-faces-rc-more-on-javascript/
    http://thepeninsulasedge.com/frank_nimphius/adf-faces-rich-client-javascript-programming/
    http://www.oracle.com/technology/products/adf/adffaces/11/doc/multiproject/adf-richclient-api/tagdoc/af_clientListener.html
    http://shale.apache.org/shale-remoting/apidocs/org/apache/shale/remoting/package-summary.html
    http://shale.apache.org/shale-remoting/index.html

  • Slideshow crop photos problem when i close the thumbnail botton

    In the slideshow i use thumbnail photo "turned on" to change the pictures (is it the only way to do it?)  and manage them with crop function but when i later close thumbnail (i don't want visible) photos resize. Any suggestion ?

    I have not a link yet, i'm preparing the graphic layout at the time. I bypassed the problem importing in muse the right photos size without use crop. Maybe i should see better edit photo functions tutorials. I'm new with Muse.
    Il giorno 09/ago/2013, alle ore 01.37, Brad Lawryk ha scritto:
    Re: slideshow crop photos problem when i close the thumbnail botton
    created by Brad Lawryk in Help with using Adobe Muse CC - View the full discussion
    Can you provide a link or screenshots so we can see what you are doing and what you are trying to achieve?
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5579245#5579245
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5579245#5579245
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5579245#5579245. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Help with using Adobe Muse CC by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • RMI-Server "checks" when Client closes RMI-Connection

    Hi there!
    I hope somebody can help me...
    I'm developing a client/server application where my client calls a remote method and my server starts working (i.e. 5-7 minutes batch processing).
    Is there a way my server "gets informed", when RMI connection is closed (network failure, client closes)? In this situation the server should perform a rollback, delete generated files, etc.
    I don't know if there is thrown a exception inside the server method, which I can catch ....
    Any suggestion is welcome ..
    Best Regards
    Anton

    Thanks a lot, I will have a look at the tutorial.
    Initially my thoughts on this issue were:
    -) The Client-RMI call is made in an own Thread (There are several things to do before job processing can start on the remote machine).
    -) when the RMI call is processed, the thread gets blocked, so doesn't add load to the machine (hope so).
    -) RMI does the "alive-checking", when network connection fails the client can mark the job as failed. The called server should also do some rollback. So I do not have to implements callback-listeners to react on server callbacks
    -) But I'm worried about open connections, running out of socket resources and that there is no way to abort a endless running job.
    This is my first aproach to solve this problem, I would be very glad about any comment ...

  • Problems when I close safari

    When I close Safari appers a MacKeeper page and a little box indicating continue in the page or leave.
    I do not know how to remove this problem, I cleaned the cookies, I downloaded Bitdefender and scanned my computer but it was not possible to eliminate this issue.
    Can someone help me.
    Regards

    Linc result of diagnose
    Start time: 15:35:07 01/17/15
    Revision: 1157
    Model Identifier: MacBookAir5,1
    System Version: OS X 10.10.1 (14B25)
    Kernel Version: Darwin 14.0.0
    Time since boot: 1:12
    Root access: No
    Diagnostic reports
       2015-01-14 taskgated crash
    Log
       Jan 14 20:23:54 com.apple.CSConfigDotMacCert-EMAIL-SharedServices: Service setup event to handle failure and will not launch until it fires.
       Jan 14 21:41:47 com.apple.iTunesHelper.9972: Service exited with abnormal code: 1
       Jan 15 05:41:04 ARPT: 10.345010: MacAuthEvent en0   Auth result for: 40:cb:a8:00:c9:24 Auth timed out
       Jan 15 05:41:08 ARPT: 14.805774: MacAuthEvent en0   Auth result for: 40:cb:a8:00:c9:24 Auth timed out
       Jan 15 05:41:10 ARPT: 16.201862: directed SSID scan fail
       Jan 15 05:41:11 com.apple.CSConfigDotMacCert-EMAIL-SharedServices: Service setup event to handle failure and will not launch until it fires.
       Jan 15 06:00:34 com.apple.iTunesHelper.9972: Service exited with abnormal code: 1
       Jan 16 05:31:29 ARPT: 11.020877: MacAuthEvent en0   Auth result for: 40:cb:a8:00:c9:24 Auth timed out
       Jan 16 05:31:31 ARPT: 12.414580: directed SSID scan fail
       Jan 16 05:31:33 ARPT: 14.664511: MacAuthEvent en0   Auth result for: 40:cb:a8:00:c9:24 Auth request tx failed
       Jan 16 05:31:34 ARPT: 16.061584: directed SSID scan fail
       Jan 16 05:31:36 com.apple.CSConfigDotMacCert-EMAIL-SharedServices: Service setup event to handle failure and will not launch until it fires.
       Jan 16 06:02:01 com.apple.iTunesHelper.9972: Service exited with abnormal code: 1
       Jan 17 09:39:07 com.apple.CSConfigDotMacCert-EMAIL-SharedServices: Service setup event to handle failure and will not launch until it fires.
       Jan 17 10:04:15 com.apple.iTunesHelper.9972: Service exited with abnormal code: 1
       Jan 17 10:04:41 com.apple.CSConfigDotMacCert-EMAIL-SharedServices: Service setup event to handle failure and will not launch until it fires.
       Jan 17 11:21:14 com.apple.xpc.launchd.domain.pid.BKAgentService.543: Path not allowed in target domain: type = pid, path = /Library/Frameworks/iTunesLibrary.framework/Versions/A/XPCServices/com.apple.iT unesLibraryService.xpc error = 147: The specified service did not ship in the requestor's bundle, origin = /System/Library/PrivateFrameworks/BookKit.framework/Versions/A/XPCServices/com. apple.BKAgentService.xpc
       Jan 17 11:21:14 com.apple.xpc.launchd.domain.pid.BKAgentService.543: Path not allowed in target domain: type = pid, path = /Library/Frameworks/iTunesLibrary.framework/Versions/A/XPCServices/com.apple.iT unesLibraryService.xpc error = 147: The specified service did not ship in the requestor's bundle, origin = /System/Library/PrivateFrameworks/BookKit.framework/Versions/A/XPCServices/com. apple.BKAgentService.xpc
       Jan 17 11:43:44 com.apple.iTunesHelper.9972: Service exited with abnormal code: 1
       Jan 17 14:22:55 ARPT: 8.276920: MacAuthEvent en0   Auth result for: 40:cb:a8:00:c9:24 Auth request tx failed
       Jan 17 14:22:56 ARPT: 9.824456: MacAuthEvent en0   Auth result for: 40:cb:a8:00:c9:24 Auth request tx failed
       Jan 17 14:22:58 ARPT: 11.939969: MacAuthEvent en0   Auth result for: 40:cb:a8:00:c9:24 Auth request tx failed
       Jan 17 14:23:00 ARPT: 13.334402: directed SSID scan fail
       Jan 17 14:23:00 com.apple.CSConfigDotMacCert-EMAIL-SharedServices: Service setup event to handle failure and will not launch until it fires.
       Jan 17 14:38:05 com.apple.xpc.launchd.domain.pid.quicklookd.441: Path not allowed in target domain: type = pid, path = /Library/Frameworks/iTunesLibrary.framework/Versions/A/XPCServices/com.apple.iT unesLibraryService.xpc error = 147: The specified service did not ship in the requestor's bundle, origin = /System/Library/Frameworks/QuickLook.framework/Versions/A/Resources/quicklookd. app
    Loaded kernel extensions
       com.rim.driver.BlackBerryUSBDriverInt (0.0.97)
    Agents
       com.adobe.ARM.UUID
       com.apple.AirPortBaseStationAgent
       com.apple.CSConfigDotMacCert-EMAIL-SharedServices
       - status: 78
       com.apple.FolderActions.enabled
       com.apple.FolderActions.folders
       com.oracle.java.Java-Updater
       com.rim.BBLaunchAgent
       com.rim.RimAlbumArtDaemon
    Extensions
       /System/Library/Extensions/JMicronATA.kext
       - com.jmicron.JMicronATA
       /System/Library/Extensions/RIMBBUSB.kext
       - com.rim.driver.BlackBerryUSBDriverInt
       /System/Library/Extensions/RIMBBVSP.kext
       - com.rim.driver.BlackBerryUSBDriverVSP
       /System/Library/Extensions/hp_Inkjet1_io_enabler.kext
       - com.hp.print.hpio.Inkjet1.kext
    Applications
       /Applications/Adobe Reader.app
       - com.adobe.Reader
       /Applications/Dropbox.app
       - com.getdropbox.dropbox
       /Applications/Garmin BaseCamp.app
       - com.garmin.BaseCamp
       /Applications/Garmin MapInstall.app
       - com.garmin.MapInstall
       /Applications/Garmin MapManager.app
       - com.garmin.MapManager
       /Applications/Google Earth.app
       - com.Google.GoogleEarthPlus
       /Applications/HP Photo Creations.app
       - com.rocketlife.photoproduct.29253245
       /Applications/Hewlett-Packard/HP Scan 3.app
       - com.hp.scan.app
       /Applications/Hewlett-Packard/HP Scan 3.app/Contents/Applications/PremiumScanEventHandler.app
       - com.hp.scan.button.handler.premium
       /Applications/Hewlett-Packard/HP Uninstaller.app
       - com.hp.Uninstaller
       /Applications/Microsoft Messenger.app
       - com.microsoft.Messenger
       /Applications/Microsoft Office 2011/Microsoft Document Connection.app
       - ́n de documentos de Microsoft
       /Applications/Microsoft Office 2011/Microsoft Excel.app
       - com.microsoft.Excel
       /Applications/Microsoft Office 2011/Microsoft Outlook.app
       - com.microsoft.Outlook
       /Applications/Microsoft Office 2011/Microsoft PowerPoint.app
       - com.microsoft.Powerpoint
       /Applications/Microsoft Office 2011/Microsoft Word.app
       - com.microsoft.Word
       /Applications/Microsoft Office 2011/Office/Complementos/Solver.app
       - com.microsoft.ASApplication
       /Applications/Microsoft Office 2011/Office/Equation Editor.app
       - com.microsoft.EquationEditor
       /Applications/Microsoft Office 2011/Office/Microsoft Alerts Daemon.app
       - com.microsoft.alerts.daemon
       /Applications/Microsoft Office 2011/Office/Microsoft Chart Converter.app
       - com.microsoft.openxml.chart.app
       /Applications/Microsoft Office 2011/Office/Microsoft Clip Gallery.app
       - ́a de imágenes de Microsoft
       /Applications/Microsoft Office 2011/Office/Microsoft Database Daemon.app
       - com.microsoft.outlook.databasedaemon
       /Applications/Microsoft Office 2011/Office/Microsoft Database Utility.app
       - com.microsoft.outlook.databaseutility
       /Applications/Microsoft Office 2011/Office/Microsoft Graph.app
       - com.microsoft.Graph
       /Applications/Microsoft Office 2011/Office/Microsoft Office Reminders.app
       - com.microsoft.outlook.officereminders
       /Applications/Microsoft Office 2011/Office/Microsoft Office Setup Assistant.app
       - ́n de Microsoft Office
       /Applications/Microsoft Office 2011/Office/Microsoft Query.app
       - com.microsoft.Query
       /Applications/Microsoft Office 2011/Office/Microsoft Upload Center.app
       - com.microsoft.office.uploadcenter
       /Applications/Microsoft Office 2011/Office/My Day.app
       - com.microsoft.myday
       /Applications/Microsoft Office 2011/Office/Office365Service.app
       - com.microsoft.Office365Service
       /Applications/Microsoft Office 2011/Office/Open XML for Excel.app
       - com.microsoft.openxml.excel.app
       /Applications/Microsoft Office 2011/Office/SyncServicesAgent.app
       - com.microsoft.SyncServicesAgent
       /Applications/Remote Desktop Connection.app
       - ́n a Escritorio remoto
       /Applications/Skype.app
       - com.skype.skype
       /Applications/Utilities/Adobe Flash Player Install Manager.app
       - com.adobe.flashplayer.installmanager
       /Applications/Wuala.app
       - com.wuala.gui.macosx
       /Library/Application Support/BlackBerry/BBLaunchAgent.app
       - null
       /Library/Application Support/BlackBerry/BlackBerry Device Manager.app
       - com.rim.blackberrydevicemanager
       /Library/Application Support/BlackBerry/BlackBerryMobileMediaServer.app
       - com.rim.BlackBerryMobileMediaServer
       /Library/Application Support/BlackBerry/IPModemPasswordDialog.app
       - ̃a de BlackBerry
       /Library/Application Support/Google/GoogleTalkPlugin.app
       - com.google.GoogleTalkPluginD
       /Library/Application Support/Google/GoogleVoiceAndVideoUninstaller.app
       - com.google.GoogleTalkPluginUninstaller
       /Library/Application Support/Microsoft/MAU2.0/Microsoft AutoUpdate.app
       - com.microsoft.autoupdate2
       /Library/Application Support/Microsoft/MERP2.0/Microsoft Error Reporting.app
       - com.microsoft.error_reporting
       /Library/Application Support/Microsoft/MERP2.0/Microsoft Ship Asserts.app
       - com.microsoft.netlib.shipassertprocess
       /Library/Application Support/Script Editor/Templates/Cocoa-AppleScript Applet.app
       - com.apple.ScriptEditor.id.cocoa-applet-template
       /Library/Application Support/Script Editor/Templates/Droplets/Droplet with Settable Properties.app
       - com.apple.ScriptEditor.id.droplet-with-settable-properties-template
       /Library/Application Support/Script Editor/Templates/Droplets/Recursive File Processing Droplet.app
       - com.apple.ScriptEditor.id.file-processing-droplet-template
       /Library/Application Support/Script Editor/Templates/Droplets/Recursive Image File Processing Droplet.app
       - com.apple.ScriptEditor.id.image-file-processing-droplet-template
       /Library/Image Capture/Devices/Canon IJScanner2.app
       - jp.co.canon.ijscanner2.scanner.ica
       /Library/Image Capture/Devices/Canon IJScanner4.app
       - jp.co.canon.ij.ica.scanner4
       /Library/Image Capture/Devices/HP Scanner 3.app
       - com.hp.scanModule3
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/4.0/Runtime/hp dot4d.app
       - com.hp.devicemodel.hpdot4d
       /Library/Printers/hp/Utilities/HP Utility.app
       - com.hp.printerutility
       /Library/Printers/hp/Utilities/Handlers/ScanEventHandler.app
       - com.hp.scan.button.handler.generic
       /Library/Printers/hp/cups/filters/commandtohp.filter
       - com.hp.print.cups.filter.commandtohp
       /Library/Printers/hp/cups/filters/pdftopdf.filter
       - com.hp.print.cups.filter.pdftopdf
       /Library/Printers/hp/cups/tools/autosetup.tool
       - com.hp.print.autosetup
    Frameworks
       /Library/Frameworks/MacFUSE.framework
       - com.google.MacFUSE
       /Library/Frameworks/OSXFUSE.framework
       - com.github.osxfuse.framework
       /Library/Frameworks/RIM_VSP.framework
       - com.rim.vsp
       /Library/Frameworks/RimBlackBerryUSB.framework
       - com.rim.RimBlackBerryUSB
    PrefPane
       /Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/deploy/JavaControlPanel.pref Pane
       - null
       /Library/PreferencePanes/Flash Player.prefPane
       - com.adobe.flashplayerpreferences
       /Library/PreferencePanes/OSXFUSE.prefPane
       - com.github.osxfuse.OSXFUSEPrefPane
    Bundles
       /Library/Internet Plug-Ins/AdobePDFViewer.plugin
       - com.adobe.acrobat.pdfviewer
       /Library/Internet Plug-Ins/AdobePDFViewerNPAPI.plugin
       - com.adobe.acrobat.pdfviewerNPAPI
       /Library/Internet Plug-Ins/Flash Player.plugin
       - com.macromedia.Flash
       /Library/Internet Plug-Ins/GarminGpsControl.plugin
       - com.garmin.GarminGpsControl
       /Library/Internet Plug-Ins/JavaAppletPlugin.plugin
       - com.oracle.java.JavaAppletPlugin
       /Library/Internet Plug-Ins/SharePointBrowserPlugin.plugin
       - com.microsoft.sharepoint.browserplugin
       /Library/Internet Plug-Ins/googletalkbrowserplugin.plugin
       - com.google.googletalkbrowserplugin
       /Library/Internet Plug-Ins/o1dbrowserplugin.plugin
       - com.google.o1dbrowserplugin
       /Library/Printers/Canon/BJPrinter/Plugins/BJNP/CIJNetworkIOM.plugin
       - jp.co.Canon.ij.print.iom.CIJNP
       /Library/Printers/Canon/BJPrinter/Plugins/BJNP/CIJNetworkPBM.plugin
       - jp.co.Canon.ij.print.pbm.CIJNP
       /Library/Printers/Canon/BJPrinter/Plugins/BJUSB/BJUSBIOM.plugin
       - jp.co.canon.bj.print.bjusbiom
       /Library/Printers/Canon/BJPrinter/Plugins/BJUSB/BJUSBPBM.plugin
       - jp.co.canon.bj.print.pbm.USB
       /Library/Printers/Canon/BJPrinter/Plugins/BJUSB/CIJUSBClassDriver.plugin
       - jp.co.canon.ij.print.CIJUSBClassDriver
       /Library/Printers/Canon/BJPrinter/Plugins/BJUSB/CIJUSBClassDriver2.plugin
       - jp.co.canon.ij.print.CIJUSBClassDriver2
       /Library/Printers/Canon/BJPrinter/Plugins/IJBluetooth/IJBluetoothIOM.plugin
       - jp.co.canon.ij.print.ijbluetoothiom
       /Library/Printers/Canon/IJScanner/Plugins/ag07_09.plugin
       - jp.co.canon.scangear.ag07.09
       /Library/Printers/Canon/IJScanner/Plugins/ag08_09.plugin
       - jp.co.canon.scangear.ag08.09
       /Library/Printers/Canon/IJScanner/Plugins/cncl09_09.plugin
       - jp.co.canon.scangear.lld09.09
       /Library/Printers/Canon/IJScanner/Plugins/cnq2413_09.plugin
       - jp.co.canon.scanner.cnq2413.09
       /Library/Printers/Canon/IJScanner/Plugins/cnq2414_09.plugin
       - jp.co.canon.scanner.cnq2414.09
       /Library/Printers/Canon/IJScanner/Plugins/cnq4807_09.plugin
       - jp.co.canon.scanner.cnq4807.09
       /Library/Printers/Canon/IJScanner/Plugins/cnq4808_09.plugin
       - jp.co.canon.scanner.cnq4808.09
       /Library/Printers/Canon/IJScanner/Plugins/cnq4809_09.plugin
       - jp.co.canon.scanner.cnq4809.09
       /Library/Printers/Canon/IJScanner/Plugins/cnq9601_09.plugin
       - jp.co.canon.scanner.cnq9601.09
       /Library/Printers/Canon/IJScanner/Plugins/ijfshlib_09.plugin
       - jp.co.canon.scangear.ijfshlib.09
       /Library/Printers/Canon/IJScanner/Plugins/mld07_09.plugin
       - jp.co.canon.scangear.mld07.09
       /Library/Printers/Canon/IJScanner/Plugins/mld08_09.plugin
       - jp.co.canon.scangear.mld08.09
       /Library/Printers/Canon/IJScanner/Plugins/mld09_09.plugin
       - jp.co.canon.scangear.mld09.09
       /Library/Printers/Canon/IJScanner/Plugins/mld9601_09.plugin
       - jp.co.canon.scangear.mld9601.09
       /Library/Printers/Canon/IJScanner/Plugins/sfusb_09.plugin
       - jp.co.canon.sf.scanner.sfusb.09
       /Library/Printers/Canon/IJScanner/Plugins/sgusb_09.plugin
       - jp.co.canon.scangear.usb.09
       /Library/Printers/Canon/IJScanner/Plugins/smac_09.plugin
       - jp.co.canon.scangear.smac.09
       /Library/Printers/Canon/IJScanner/Plugins/zoom_09.plugin
       - jp.co.canon.scangear.zoom.09
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/4.0/Frameworks /ClientUI.framework/Versions/4.0/PlugIns/ClientUI.plugin
       - com.hp.devicemodel.ClientUI.plugin
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/4.0/Frameworks /Core.framework/Versions/4.0/PlugIns/CFXmlParser.plugin
       - com.hp.devicemodel.plugins.CFXmlParser
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/4.0/Frameworks /Core.framework/Versions/4.0/PlugIns/NSXMLParser.plugin
       - com.hp.devicemodel.plugins.NSXMLParser
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/4.0/Frameworks /Core.framework/Versions/4.0/PlugIns/bluetooth.plugin
       - com.hp.devicemodel.plugins.transport.bluetooth
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/4.0/Frameworks /Core.framework/Versions/4.0/PlugIns/libXmlParser.plugin
       - com.hp.devicemodel.plugins.libXmlParser
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/4.0/Frameworks /Core.framework/Versions/4.0/PlugIns/network.plugin
       - com.hp.devicemodel.plugins.transport.network
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/4.0/Frameworks /Core.framework/Versions/4.0/PlugIns/usb.plugin
       - com.hp.devicemodel.plugins.transport.usb
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/4.0/Frameworks /Status.framework/Versions/4.0/PlugIns/CDPrintingStatus.plugin
       - com.hp.devicemodel.plugins.CDPrintingStatus
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/4.0/Frameworks /Status.framework/Versions/4.0/PlugIns/CoversStatus.plugin
       - com.hp.devicemodel.plugins.CoversStatus
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/4.0/Frameworks /Status.framework/Versions/4.0/PlugIns/DeviceAlerts.plugin
       - com.hp.devicemodel.plugins.DeviceAlerts
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/4.0/Frameworks /Status.framework/Versions/4.0/PlugIns/DeviceStatus.plugin
       - com.hp.devicemodel.plugins.DeviceStatus
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/4.0/Frameworks /Status.framework/Versions/4.0/PlugIns/DeviceTrays.plugin
       - com.hp.devicemodel.plugins.DeviceTrays
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/4.0/Frameworks /Status.framework/Versions/4.0/PlugIns/EstimatedPagesStatus.plugin
       - com.hp.devicemodel.plugins.EstimatedPagesStatus
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/4.0/Frameworks /Status.framework/Versions/4.0/PlugIns/JobsStatus.plugin
       - com.hp.devicemodel.plugins.JobsStatus
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/4.0/Frameworks /Status.framework/Versions/4.0/PlugIns/SpecialtyPrintingStatus.plugin
       - com.hp.devicemodel.plugins.SpecialPrintingStatus
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/4.0/Frameworks /Status.framework/Versions/4.0/PlugIns/SuppliesStatus.plugin
       - com.hp.devicemodel.plugins.SuppliesStatus
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/4.0/Runtime/HP IOPrinterClassDriver.plugin
       - com.hp.devicemodel.printerclassdriver
       /Library/Printers/hp/PDEs/PDE.plugin
       - com.hp.print.cups.pde
       /Library/Printers/hp/cups/filters/commandtohp.filter/Contents/PlugIns/reportlev els.plugin
       - com.hp.print.cups.filter.commandtohp.reportlevels
       /Library/Printers/hp/cups/filters/commandtohp.filter/Contents/PlugIns/reporttra ys.plugin
       - com.hp.print.cups.filter.commandtohp.reporttrays
       /Library/Printers/hp/cups/filters/pdftopdf.filter/Contents/PlugIns/mh_one_butto n.plugin
       - com.hp.print.mh-one-button
       /Library/Printers/hp/cups/filters/pdftopdf.filter/Contents/PlugIns/mh_pre_one_b utton.plugin
       - com.hp.print.mh-pre-one-button
       /Users/USER/Library/Address Book Plug-Ins/SkypeABDialer.bundle
       - com.skype.skypeabdialer
       /Users/USER/Library/Address Book Plug-Ins/SkypeABSMS.bundle
       - com.skype.skypeabsms
       /Users/USER/Library/Internet Plug-Ins/Google Earth Web Plug-in.plugin
       - com.Google.GoogleEarthPlugin.plugin
       /Users/USER/Library/Widgets/Astronomy Picture of the Day.wdgt
       - com.apple.widget.AstronomyPictureOfTheDay
       /Users/USER/Library/Widgets/F1 News.wdgt
       - com.TheDashboard.widget.F1
    dylibs
       /Applications/Microsoft Office 2011/Office/MicrosoftSetupUI.framework/Libraries/mbupgx.dylib
       /Applications/Microsoft Office 2011/Office/OPF.framework/Versions/14/Resources/OPF_Common.dylib
       /Applications/Microsoft Office 2011/Office/Visual Basic for Applications.framework/Versions/14/Frameworks/Fm20.dylib
       /Applications/Microsoft Office 2011/Office/Visual Basic for Applications.framework/Versions/14/Frameworks/MicrosoftOLE2TypesLib.dylib
       /Applications/Microsoft Office 2011/Office/Visual Basic for Applications.framework/Versions/14/Frameworks/RefEdit.dylib
       /Applications/Microsoft Office 2011/Office/Visual Basic for Applications.framework/Versions/14/Frameworks/RichEdit.dylib
       /Library/Frameworks/OSXFUSE.framework/Versions/A/Resources/Debug/libmacfuse_i32 .2.dylib.dSYM/Contents/Resources/DWARF/libmacfuse_i32.2.dylib
       /Library/Frameworks/OSXFUSE.framework/Versions/A/Resources/Debug/libmacfuse_i64 .2.dylib.dSYM/Contents/Resources/DWARF/libmacfuse_i64.2.dylib
       /Library/Frameworks/OSXFUSE.framework/Versions/A/Resources/Debug/libosxfuse_i32 .dylib.dSYM/Contents/Resources/DWARF/libosxfuse_i32.dylib
       /Library/Frameworks/OSXFUSE.framework/Versions/A/Resources/Debug/libosxfuse_i64 .dylib.dSYM/Contents/Resources/DWARF/libosxfuse_i64.dylib
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/4.0/Frameworks /Core.framework/Versions/4.0/Libraries/libHPIOnetsnmp.5.dylib
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/4.0/Frameworks /XMLServices.framework/Versions/4.0/Resources/axis2_repo/lib/libaxis2_axiom.dyli b
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/4.0/Frameworks /XMLServices.framework/Versions/4.0/Resources/axis2_repo/lib/libaxis2_engine.dyl ib
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/4.0/Frameworks /XMLServices.framework/Versions/4.0/Resources/axis2_repo/lib/libaxis2_http_commo n.dylib
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/4.0/Frameworks /XMLServices.framework/Versions/4.0/Resources/axis2_repo/lib/libaxis2_http_recei ver.dylib
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/4.0/Frameworks /XMLServices.framework/Versions/4.0/Resources/axis2_repo/lib/libaxis2_http_sende r.dylib
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/4.0/Frameworks /XMLServices.framework/Versions/4.0/Resources/axis2_repo/lib/libaxis2_parser.dyl ib
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/4.0/Frameworks /XMLServices.framework/Versions/4.0/Resources/axis2_repo/lib/libaxis2_xpath.dyli b
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/4.0/Frameworks /XMLServices.framework/Versions/4.0/Resources/axis2_repo/lib/libaxutil.dylib
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/4.0/Frameworks /XMLServices.framework/Versions/4.0/Resources/axis2_repo/lib/libguththila.dylib
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/4.0/Frameworks /XMLServices.framework/Versions/4.0/Resources/axis2_repo/lib/libneethi.dylib
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/4.0/Frameworks /XMLServices.framework/Versions/4.0/Resources/axis2_repo/modules/addressing/liba xis2_mod_addr.dylib
       /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/4.0/Frameworks /XMLServices.framework/Versions/4.0/Resources/axis2_repo/modules/logging/libaxis 2_mod_log.dylib
       /usr/local/lib/libmacfuse_i32.2.dylib
       /usr/local/lib/libmacfuse_i64.2.dylib
       /usr/local/lib/libosxfuse_i32.2.dylib
       /usr/local/lib/libosxfuse_i64.2.dylib
    App extensions
       com.getdropbox.dropbox.garcon
    Contents of /Library/LaunchAgents/com.oracle.java.Java-Updater.plist
       - mod date: Aug 23 07:12:05 2014
       - checksum: 924339332
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.oracle.java.Java-Updater</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Resources/Java Updater.app/Contents/MacOS/Java Updater</string>
        <string>-bgcheck</string>
        </array>
        <key>StandardErrorPath</key>
        <string>/dev/null</string>
        <key>StandardOutPath</key>
        <string>/dev/null</string>
        <key>StartCalendarInterval</key>
        <dict>
        <key>Hour</key>
        <integer>7</integer>
        <key>Minute</key>
        <integer>15</integer>
        <key>Weekday</key>
        <integer>7</integer>
        </dict>
       </dict>
       ...and 1 more line(s)
    Contents of /Library/LaunchAgents/com.rim.BBAlbumArtCacher.plist
       - mod date: Jun 25 13:00:22 2013
       - checksum: 2868431736
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>KeepAlive</key>
        <true/>
        <key>Label</key>
        <string>com.rim.RimAlbumArtDaemon</string>
        <key>OnDemand</key>
        <false/>
        <key>Program</key>
        <string>/Library/Application Support/BlackBerry/RimAlbumArtDaemon</string>
        <key>ProgramArguments</key>
        <array>
        <string>RimAlbumArtDaemon</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
       </dict>
       </plist>
    Contents of /Library/LaunchAgents/com.rim.BBLaunchAgent.plist
       - mod date: Jun 25 13:00:23 2013
       - checksum: 908705504
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>KeepAlive</key>
        <true/>
        <key>Label</key>
        <string>com.rim.BBLaunchAgent</string>
        <key>OnDemand</key>
        <false/>
        <key>Program</key>
        <string>/Library/Application Support/BlackBerry/BBLaunchAgent.app</string>
        <key>ProgramArguments</key>
        <array>
        <string>BBLaunchAgent</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
       </dict>
       </plist>
    Contents of /Library/LaunchDaemons/com.rim.BBDaemon.plist
       - mod date: Jun 25 13:00:23 2013
       - checksum: 4059782046
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC -//Apple Computer//DTD PLIST 1.0//EN
       http://www.apple.com/DTDs/PropertyList-1.0.dtd >
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.rim.BBDaemon</string>
        <key>Program</key>
        <string>/Library/Application Support/BlackBerry/BBDaemon</string>
        <key>ProgramArguments</key>
        <array>
        <string>BBDaemon</string>
        </array>
        <key>KeepAlive</key>
        <true/>
        <key>OnDemand</key>
        <false/>
        <key>RunAtLoad</key>
        <true/>
        <key>Sockets</key>
        <dict>
        <key>Listeners</key>
        <dict>
        <key>SockType</key>
        <string>stream</string>
       ...and 8 more line(s)
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist
       - mod date: Sep  2 22:41:33 2012
       - checksum: 408149527
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.adobe.ARM.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Adobe Reader.app/Contents/MacOS/Updater/Adobe Reader Updater Helper.app/Contents/MacOS/Adobe Reader Updater Helper</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>12600</integer>
       </dict>
       </plist>
    Contents of Library/LaunchAgents/com.apple.AddressBook.ScheduledSync.PHXCardDAVSource.UUID. plist
       - mod date: Sep  1 16:45:13 2012
       - checksum: 415235512
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.apple.AddressBook.ScheduledSync.PHXCardDAVSource.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string>/System/Library/Frameworks/AddressBook.framework/Resources/AddressBookS ourceSyncScheduleHelper</string>
        <string>-scheduleSync</string>
        <string>UUID</string>
        </array>
        <key>StartInterval</key>
        <integer>120000</integer>
       </dict>
       </plist>
    Contents of Library/LaunchAgents/com.apple.CSConfigDotMacCert-EMAIL-SharedServices.Agent.pl ist
       - mod date: Sep  1 16:46:29 2012
       - checksum: 1134641101
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>KeepAlive</key>
        <false/>
        <key>Label</key>
        <string>com.apple.CSConfigDotMacCert-EMAIL-SharedServices</string>
        <key>LimitLoadToSessionType</key>
        <string>Aqua</string>
        <key>LowPriorityIO</key>
        <true/>
        <key>Nice</key>
        <integer>10</integer>
        <key>ProgramArguments</key>
        <array>
        <string>/System/Library/Frameworks/CoreServices.framework/Frameworks/OSServices .framework/Versions/A/Support/CSConfigDotMacCert</string>
        <string>-l</string>
        <string>/Users/USER/Library/Logs/CSConfigDotMacCert.log</string>
        <string>-u</string>
        <string>EMAIL</string>
        <string>-t</string>
        <string>SharedServices</string>
        <string>-s</string>
        </array>
       ...and 4 more line(s)
    Contents of Library/LaunchAgents/com.apple.FolderActions.folders.plist
       - mod date: Jan 17 15:35:57 2015
       - checksum: 526030816
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.apple.FolderActions.folders</string>
        <key>Program</key>
        <string>/usr/bin/osascript</string>
        <key>ProgramArguments</key>
        <array>
        <string>osascript</string>
        <string>-e</string>
        <string>tell application "Folder Actions Dispatcher" to tick</string>
        </array>
        <key>WatchPaths</key>
        <array>
        <string>/Users/USER/Downloads</string>
        </array>
       </dict>
       </plist>
    User login items
       iTunesHelper
       - /Applications/iTunes.app/Contents/MacOS/iTunesHelper.app
       Dropbox
       - /Applications/Dropbox.app
    Widgets
       Astronomy Picture of the Day
    Restricted files: 1053
    Lockfiles: 4
    Elapsed time (sec): 190

  • I have a problem when i close the prgram and i open it agin it open on the page which i closed at it

    when i close firefox at any page and also when i close my pc and then i open the program i find it open on last page which i closed at ,, although i made home page for it to open at and it doesn't make the order

    Check in preferences > general > Startup: Do you have "Show my windows and tabs from last time" selected? If so change to "Show my home page" (or blank page).
    Note: this may happen when quitting Firefox, and you inadvertently click "Save and Quit" and select "Do not ask next time".

  • Can I be notified when client closes?

    Hi all,
    Is there any way for a Flash client to be notified when it is
    about to be terminated by the browser (e.g. because the user closes
    the window)?
    Thanks in advance!
    Barry

    Not with ARD.

  • When i close firefox and want to use it later i get a warning saying cannot open firefox close it first this keeps happening all the time any ideas to solve this problem? i have 2 mchines one on xp and one on windows 7

    i have 2 pcs one with xp and the other with windows 7 heres the problem
    when i close firefox and say go back to it say in 10 mins i get a error message saying to close firefox before opening!!! but firefox window is closed but the processes still say its running in task manager so to correct this i have to end process on firefox. this seems to be happening now every time in the last few days i have upgraded firefox to the latest version. any ideas on how to solve this problem.

    see if this helps you : [https://support.mozilla.org/en-US/kb/Firefox%20is%20already%20running%20but%20is%20not%20responding Firefox is already running but is not responding]
    thank you
    Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

  • Adobe Flash Player 10 when installed closes the whole computer as soon as it is selected to 'play' a video clip from U Tube or any other source, I have uninstalled it and the problem goes away but I cannot play the clip.any answers?

    Adobe Flash Player 10, when installed, closes the whole computer when it is used to play any clip from U Tube or other source. I uninstalled it and there was no further trouble but, of course, I cannot view the clip. If I reinstall it the same problem persists. I have contacted my 'computer guru' but his comment is that many of his clients have the same problem but it appears to be a problem with Adobe however many other friends have put in the version 10 Flash Player and have no problems. I do not appear to have any other problems with the computer such as viruses etc and it is scanned very day for such items. I would appreciate any advice you can give as it is very annoying, thanks, RAB

    Me too!
    On both IE8 and Firefox. Win 7 32 bit on IBM T42 - 1GB ram.
    Old laptop I know but the 10.1.x.x Flash Players worked just fine. Problem started with 10.2.152.26 flash player.
    Now BBC TV live and iPlayer work just fine, however YouTube does not - audio but no video. Just a black rectangle where the video should be.
    Right click to get the menu and "settings" is greyed out. However select the pop-out option and the video plays. Right click on the pop-out and "settings" is available. So deselect "enable hardware acceleration", close the pop-out and refresh the window (F5) and now YouTube videos play. Switch hardware acceleration back on and now they don't.
    This video works fine with hardware acceleration enabled. http://www.adobe.com/products/flashplayer/features/video/h264/
    These also work. http://www.adobe.com/devnet/flashplayer/stagevideo.html
    Something broken in 10.2, I think.

  • We have created shared folder on multiple client machine in domain environment on different 2 OS like-XP,Vista, etc. from some day's When we facing problem when we are access from host name that shared folder is accessible but same time same computer when

    Hello All,
    we have created shared folder on multiple client machine in domain environment on different 2 OS like-XP,Vista, etc.
    from some day's When we facing problem when we are access from host name that shared folder is accessible but same time same computer when we are trying to access the share folder with IP it asking for credentials i have type again and again
    correct credential but unable to access that. If i re-share the folder then we are access it but when we are restarted the system then same problem is occurring.
    I have checked IP,DNS,Gateway and more each & everything is well.
    Pls suggest us.
    Pankaj Kumar

    Hi,
    According to your description, my understanding is that the same shared folder can be accessed by name, but can’t be accessed be IP address and asks for credentials.
    Please try to enable the option below on the device which has shared folder:
    Besides, check the Advanced Shring settings of shared folder and confrim that if there is any limitation settings.
    Best Regards,
    Eve Wang
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • When I close my iPhone and I want to open it to use it again, the opening process takes more than an hour, I regretted to buy the iPhone because of this problem that you do not suffer at all with Nokia,how I can solve this problem?

    When I close my iPhone and I want to open it to use it again, the opening process takes more than an hour, I regretted to buy the iPhone because of this problem that you do not suffer at all with Nokia,how I can solve this problem?

    mostafa182 wrote:
    ... how I can solve this problem?
    The Basic Troubleshooting Steps are:
    Restart... Reset... Restore from Backup...  Restore as New...
    Restart / Reset
    http://support.apple.com/kb/ht1430
    Backing up, Updating and Restoring
    http://support.apple.com/kb/HT1414
    If you try all these steps and you still have issues... Then a Visit to an Apple Store or AASP (Authorized Apple Service Provider) is the Next Step...
    Be sure to make an appointment first...

  • Why does firefox "close" when I close the window but the process doesn't shutdown even with the upgrades since problem was reported.since i had updated to FF25

    Frequently after I have been viewing numerous sites on firefox, when I close down the last window and try to reopen firefox, I am told that the program is already running and needs to be shut down. Using Task Manager is not useful, since task manager doesn't show the program as up and running. The only way to get the program to close so it can be used for a different subject is to reboot the computer. This is happening 10 - 12 times a week now, and gradually getting worse. This closes out everything I have open, making it necessary to save all opened files BEFORE I reboot, and then going back to reopen all of them. None of the other questions I've seem point to this particular quirk in the problem.

    This is not a cure but will make it easier if Firefox locks up.
    '''https://support.mozilla.org/questions/997866''' {web link}
    From what I have been reading from other posts on this forum, the
    issue may be caused by the clear history settings. It was suppose
    to have been fixed in v30.
    Press the '''Alt''' or '''F10''' key to bring up the tool bar.
    Followed by;
    Windows; '''Tools > Options'''
    Linux; '''Edit > Preferences'''
    Mac; ''application name'' '''> Preferences'''
    Then '''Privacy'''.
    The button next to '''History''', select '''Use Custom Settings'''.
    At the bottom of the page, turn on '''Clear History When Firefox Closes.'''
    At the far right, press the '''Settings''' button. Turn on ONLY '''Cache''' and
    '''Form And Search History''' leaving the others off.

  • Hello guys i m getting problem in date picker css in new version(21.0) firefox month & year drop down not working but its working when I close the dialog box

    when I m opning datepicker (by jquery 1.7.3 min.js) it will work on normal UI but it's dropdown not working in dialog UI after I closed the dialog the datepicker dropdown works
    and also it works in older version of firefox like 15.0

    Start Firefox in Safe Mode to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    <b> To Enable SafeMode </b>
    *You can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    *''Once you get the pop-up, just select "'Start in Safe Mode"''
    If it works in Safe Mode and in normal mode with all extensions (Tools > Add-ons > Extensions) disabled then try to find which extension is causing it by enabling one extension at a time until the problem reappears.
    Close and restart Firefox after each change via "Firefox > Exit" (Windows: Firefox/File > Exit; Mac: "Firefox > Quit Firefox"; Linux: "Firefox/File > Quit")
    * https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Can I get help with podcasts?  When I try to open the podcasts, itunes crashes, says "itunes has detected a problem and must close", or the spanish equivalent since my xp is in spanish.  everything else works fine, it even downloads podcasts and syncs.

    Can I get help with podcasts?  When I try to open the podcasts tab, itunes crashes, says "itunes has detected a problem and must close", or the spanish equivalent since my xp is in spanish.  everything else works fine, it even downloads podcasts and syncs.

    The only other thing I can suggest is to use the Repair option for iTunes.
    Download the iTunes programme (do not uninstall your current iTunes) and then "install" the new copy. At some stage you should see an option to "install" or "Repair". Take the Repair option.
    Once you've done that, if you still have a problem, I don't know what else to suggest, except to search through the discussions to see if anyone else has had the problem and managed to fix it.

  • Urgent: Shut down when lid closes problem

    My Mabook pro / mid 2010 / Yosemite 10.10 shuts down when lid closes. This is new in the last few days, not after any system updates. It wont restart after lid opens again, unless repeatedly holding down power button for long periods. Strangely, the sleep light is on before I open the lid, but once lid is open, it's completely off.
    Does anyone know the cause and/or fix for this? I'm really worried it's the beginning of the end, and I rely on this machine for work and need to travel in a few days! Thanks in advance for any trouble shooting tips.

    Just to clarify; when I say "this is new" I mean the problem, not the laptop.

Maybe you are looking for