Com.apple.applefileserver.plist does not contain MaxConnections.

Hello,
I am having connection issues with a mac pro 10.6.8. The solution I get from google would be updating the MaxConnection line in the com.apple.applefileserver.plist file but the line doens't exist. I turned off sharing, removed the file, turned sharing back on so it would generate a new .plist, but again no maxConnection line in the file.
Does anyone have an idea? thank you

You need to delete '.plist' from the file name in the path.
The defaults command handles paths differently than most commands; it automatically adds that regardless of whether or not it's in the provided path. Furthermore, if a path isn't specified, it is assumed to be ~/Library/Preferences/ as opposed to the current working directory.
(53905)

Similar Messages

  • What append to com.apple.InternetSharing.plist

    Hi everyone
    On Mavericks, I used to start and stop internet sharing using this command line :
    >> launchctl load -w /System/Library/LaunchDaemons/com.apple.InternetSharing.plist
    It seems that on Yosemite "/System/Library/LaunchDaemons/com.apple.InternetSharing.plist" does not exist anymore.
    Can someone help me to find what to use now for starting internet sharing ?
    Thanks
    waqueteu

    That file stores the preferences for the Mail application, as well as window sizes and other application-specific information.
    (43739)

  • Calling a WS from a servlet...EndpointPort does not contain operation meta.

    Hi all,
    I'm trying to call a service from a servlet but I get an error:
    Error: Endpoint {http://com.susan/SusanWS}SusanWebServiceEndpointPort does not contain operation meta data for: LoginWebService
    ...the WS is up and running (of this I'm sure...cause I also tested it with soapui...and it works..)
    The webservice is running on a local jboss (to which i can successfully connect, and see the wsdl...).
    the servlet is running on a local tomcat (which is also ok...).
    I'm trying to call the WS like this:
    Service service = new Service();
    Call call = (Call)service.createCall();
    call.setTargetEndpointAddress( new URL( wsEndpoint ) ); //http://localhost:8080/webservices/SusanWS (the same I used in soapui...so it should be right)
    call.setOperationName( "LoginWebService"); //name of the method i want to use...
    call.addParameter( "appCode", Constants.XSD_STRING, ParameterMode.IN );
    call.addParameter( "login", Constants.XSD_STRING, ParameterMode.IN );
    call.addParameter( "passwd", Constants.XSD_STRING, ParameterMode.IN );
    //            call.setReturnType( Constants.XSD_INT ); //left this out...should be the cause...
    Object retval = call.invoke( new String[] { appCode, login, passwd} ); //appCode,login,passwd contain the strings i want to  forward as input.if I try to run it I get(in the jboss log...):
    15:41:55,594 ERROR [SOAPFaultExceptionHelper] SOAP request exception
    javax.xml.rpc.soap.SOAPFaultException: Endpoint {http://com.susan/SusanWS}SusanWebServiceEndpointPort does not contain operation meta data for: LoginWebService
    at org.jboss.ws.server.ServiceEndpointInvoker.getDispatchDestination(ServiceEndpointInvoker.java:181)
    at org.jboss.ws.server.ServiceEndpointInvoker.invoke(ServiceEndpointInvoker.java:107)
    at org.jboss.ws.server.ServiceEndpoint.handleRequest(ServiceEndpoint.java:209)
    at org.jboss.ws.server.ServiceEndpointManager.processSOAPRequest(ServiceEndpointManager.java:355)
    at org.jboss.ws.server.StandardEndpointServlet.doPost(StandardEndpointServlet.java:115)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
    at org.jboss.ws.server.StandardEndpointServlet.service(StandardEndpointServlet.java:76)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
    at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:175)
    at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:74)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
    at org.jboss.web.tomcat.tc5.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:156)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
    at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
    at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
    at org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
    at java.lang.Thread.run(Thread.java:595)
    don't know if it can help...the soapui request looks like this:
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:typ="http://com.susan/SusanWS/types">
    <soapenv:Header/>
    <soapenv:Body>
    <typ:LoginWebService>
    <LoginInfo_1>
    <appCode>WEB_SERVICES</appCode>
    <login>root</login>
    <passwd>root</passwd>
    </LoginInfo_1>
    </typ:LoginWebService>
    </soapenv:Body>
    </soapenv:Envelope>
    anybody has an idea of what I'm doing wrong?
    Edited by: Turbo-555 on Mar 18, 2009 8:36 AM

    if I change the code with:
    //call.setOperationName( wsMethod );
    call.setOperationName( new QName("http://com.susan/SusanWS",wsMethod)); //http://com.susan/SusanWS is the targetnamespace...the error changes into:
    16:55:21,051 ERROR [SOAPFaultExceptionHelper] SOAP request exception
    javax.xml.rpc.JAXRPCException: Cannot find child element: {http://com.susan/SusanWS/types}LoginWebService
    at org.jboss.ws.binding.soap.SOAPBindingProvider.getParameterFromMessage(SOAPBindingProvider.java:799)
    at org.jboss.ws.binding.soap.SOAPBindingProvider.unbindRequestMessage(SOAPBindingProvider.java:282)
    at org.jboss.ws.server.ServiceEndpointInvoker.invoke(ServiceEndpointInvoker.java:112)
    at org.jboss.ws.server.ServiceEndpoint.handleRequest(ServiceEndpoint.java:209)
    at org.jboss.ws.server.ServiceEndpointManager.processSOAPRequest(ServiceEndpointManager.java:355)
    at org.jboss.ws.server.StandardEndpointServlet.doPost(StandardEndpointServlet.java:115)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
    at org.jboss.ws.server.StandardEndpointServlet.service(StandardEndpointServlet.java:76)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
    at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:175)
    at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:74)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
    at org.jboss.web.tomcat.tc5.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:156)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
    at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
    at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
    at org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
    at java.lang.Thread.run(Thread.java:595)

  • My mac 10.8 does no have the file, com.apple.desktop. plist   I wentto lIbrary, preference and look  for it and it is not where in my mac.  I also launch time machine and file is no where on my Mac.  How do I get this file back?

    My mac 10.8 does no have the file, com.apple.desktop. plist   I wentto lIbrary, preference and look  for it and it is not where in my mac.  I also launch time machine and file is no where on my Mac.  How do I get this file back?
    thanks

    System files are hidden by default in Finder now, search for what you want then click the little + button on the top right of the bar that appears when you do a search. A new bar comes up and click the first box (that says "Kind"), change it to "System Files". Then change the box that says "aren't included" to "are included" and your file should show up.
    http://osxdaily.com/2009/02/25/show-hidden-files-in-os-x/

  • I downloaded itunes upgrade now it does not work com.apple.ipod.plist

    com.apple.ipod.plist
    this was in a download but i can not access i tunes since i did the upgrade sept, 21st of this year...

    Why not?  What happens when trying to use it?
    "Will not work" is useless when asking for help.  Without specifics, no assistance can be provided.

  • 802.1x authentication at login not working (com.apple.loginwindow.plist)

    We have a number of OSX Macs (10.4.11) in an 802.1x test environment.
    All the Macs have been bound directly to a Windows 2003 Active Directory using the Directory Access Utility.
    All the clients have been imaged from the same original OSX 10.4.3 image and upgraded to 10.4.11.
    We would like the clients to Wirelessly 802.1x authenticate at user login.
    Apple provide a useful How-to doc for this purpose:
    http://docs.info.apple.com/article.html?artnum=303471
    Great! Well, yes for some systems but not for others. We have two clients running that will not take the above procedure from Apple.
    On the working clients the following file has been modified by the procedure above:
    \library\Prefrences\com.apple.loginwindow.plist
    On the non-working clients this file does not change.
    I assume this may be a permissions issue but just can't figure it out. Any help, advice or pointers would be greatly appreciated.

    I still don't know why Internet Connection is not updating com.apple.loginwindow. However, these articles have been helpful:
    http://ninjamonkey.us/wordpress/index.php/2008/01/16/macos-x-login-with-8021x/
    and
    http://ninjamonkey.us/wordpress/index.php/2008/03/16/update-macos-x-login-with-8 021x/

  • What does this mean? /System/Library/LaunchAgents/com.apple.RemoteDesktop.plist /System/Library/Private/Frameworks/PackageKit.framework/Resources/shove

    I got this as a Webroot alert:
    /System/Library/LaunchAgents/com.apple.RemoteDesktop.plist
    /System/Library/Private/Frameworks/PackageKit.framework/Resources/shove
    Is this OK, or is it something I need to fix?
    Thanks,
    Jerry

    If there is an associated event in the Activity Monitor or in Console logs showing
    something is actually running in the background, then I'd not be too concerned.
    However, the Remote Desktop should not show any activity if you have it shut off.
    After all, it is a Client version and unless you are networked remotely to someone
    who would be controlling your Mac from elsewhere, there's no need to use it.
    The application itself, is not the client version you have in your Mac for free:
    http://www.apple.com/remotedesktop/ the main deal administers client versions.
    http://www.apple.com/remotedesktop/features.html
    May be helpful to read up on various Mac OS X system sections to see when or
    if you have odd experiences with them, where to go and look. I've not messed w/
    Remote Desktop for several years, perhaps not since Mac OS X Tiger 10.4.x.
    Questions and sometimes answers about Apple Remote Desktop, appear here:
    Servers and Enterprise Software - Apple Support Community discussions.
    Maybe you should contact the Apple person who looked into your Mac and ask
    what was involved and why these messages keep appearing. The person should
    be able to tell what they did and why they did it. And what to go into, and check...
    They may have left something or another on or enabled, that needs to be addressed.
    To see Webroot items does seem rather odd, since I've never had any messages
    from that function; unless someone had a need to go in there. (But why?)
    This thread was moved to Servers/Enterprise ASC, from an OS X ASC area, btw.
    Also, after an update or other change in the system, may be reflected in Logs or in
    the report generated by Disk Utility's repair disk permissions. These do not mean a
    bad thing has taken place, necessarily. I'm unfamiliar with the recent one you noted.
    In any event...
    Good luck & happy computing!

  • Uploading AIR for IOS thru Application Loader I get the following error - The package does not contain an Info.plist.

    I'm publishing an .fla in AIR for IOS.
    I'm in CC 2014 so first I need to know which AIR should I publish in?
    newest is AIR 14.0.0.178 for IOS
    IOS deployment type is App Store
    publishes with no error.
    I see the following files included .swf and app.xml
    I convert the .ipa to a zip file
    Upload that thru the Application Loader I get the following error
    The package does not contain an Info.plist.
    Where is the infoplist for this and do I convert the .ipa and the info to a zip file?
    I converted the .ipa to a .zip and the intoplist file is NOT THERE  how do I generate this?
    Any help here?

    Ok this is becoming very very frustrating as I have been at this for hours now. So the only way to explain this is to write what I did step by step as I have to be doing something wrong, just to recap:
    I was publishing from Flash CC 2014 using AIR 14.0 and getting Digital Certificate is not valid message.
    Was instructed to download new AIR 17 , I did this installed into Flash and used to publish.
    I used my previous p12, app ID and distribution certificates all generated properly.
    The file worked ONCE but I got an app ID error ( I understood I used the wrong app ID)
    I changed it to the right app ID and the very next time and after 10 attempts I got the same error  Digital Certificate is not valid
    SO I then downloaded AIR 16.0
    RE DID ALL MY CERTIFICATES AND P12'S
    went to publish and I STILL GET THE SAME MESSAGE   Digital Certificate is not valid

  • Hi, my apple ID verification email does not contain the link for me to click in order to verify my account. Re-submitting has not worked, what can i do to verify/activate my account

    Hi, my apple ID verification email does not contain the link for me to click in order to verify my account. Re-submitting has not worked, what can i do to verify/activate my account in order to access Icloud?

    If you want to change your iCloud ID or password on your phone go to Settings>iCloud and tap Delete Account, then sign back in with your updated information.  Note: this only deletes the account and any synced data from your phone, not from iCloud.  Provided you are signing back into the same account and not changing accounts it will be synced back to your device when you sign back in.

  • Auto open docx and xlsx files in MS Office 2011 after it download in Safari (com.apple.DownloadAssessment.plist not work)

    Check "Open safe files" in Safari and define docx and xlsx extensions in ~/Library/Preferences/com.apple.DownloadAssessment.plist not work. Old doc and xls files was auto opened successfully...
    Content of .plist file:
    <?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>LSRiskCategorySafe</key>
              <dict>
                        <key>LSRiskCategoryExtensions</key>
                        <array>
                                  <string>doc</string>
                                  <string>docx</string>
                                  <string>xls</string>
                                  <string>xlsx</string>
                                  <string>ppt</string>
                                  <string>pptx</string>
                        </array>
              </dict>
    </dict>
    </plist>

    Yes, but there at least you are talking to people who all use the app, while in this forum (which is for hardware and not software in any case, so already off the mark, since the problem has nothing to do with hardware), it is probably a minority.
    A better place would be
    https://discussions.apple.com/community/mac_os/os_x_mountain_lion
    and or
    https://discussions.apple.com/community/mac_os/safari
    I did see someone from serveral years ago with the same problem at
    http://www.neowin.net/forum/topic/877358-open-microsoft-office-files-automatical ly-after-download-in-safari/
    I wonder if there is another list somewhere of permissible extensions in that .plist....

  • Hello i can't find com.apple.mail.plist and "mail" is not working well, thank you

    Hello,
    My mail.app is not working well.
    I read a lot messages forum an dlot of solutions for mail.app is delete
    "com.apple.mail.plist" but I can't find it in library/preferences, can you help me please.
    Thank you,
    Syl

    All human are not equal. Same for machines and servers.
    Get real : iCloud has a problem.
    https://discussions.apple.com/thread/3539034?start=15&tstart=0
    https://discussions.apple.com/message/17751466#17751466
    https://discussions.apple.com/thread/4145777?start=30&tstart=0
    https://discussions.apple.com/thread/4217434?start=0&tstart=0
    https://discussions.apple.com/thread/4207514?start=0&tstart=0
    https://discussions.apple.com/thread/4207514?start=0&tstart=0
    https://discussions.apple.com/thread/4192137?start=0&tstart=0
    On all machines, permissions are repaired once a week and Onyxed twice a month.
    No dice.

  • TS3540 My iPad is not recognised in iTunes. I have tried all the basic tests and then followed above. I cant locate the file referred to above "com.apple.usbmuxd.plist-orig". Is there anything else I can do?

    My iPad is not being recognised in iTunes. I have tried all the basic tests and then followed a series of uninstall instructions. One suggests deleting the following file however I cannot locate it - "com.apple.usbmuxd.plist-orig". Is there anything else I can do?

    My iPad is not being recognised in iTunes. I have tried all the basic tests and then followed a series of uninstall instructions. One suggests deleting the following file however I cannot locate it - "com.apple.usbmuxd.plist-orig". Is there anything else I can do?

  • Can not find com.apple.bluetooth.plist

    my bluetooth works for a minute and then stops. Can not find it in Preferences and the icon on the top right of my screen is greyed out. I have read some on the site and seems I should have the com.apple.bluetooth.plist file, but I dont.
    Please help

    Adam White wrote:
    Mine is in my User account>Library>Preferences>com.apple.bluetooth.plist
    Hey Adam, are you running 10.5.8? Reason I ask, on my SL machines I don't have a com.apple.bluetooth.plist in my ~/Library/Preferences it's in /Library/Preferences
    Just figured I'd clarify as the OP has 10.6.2 in their sig line. Why the location of the file changed, beyond me.

  • Server admin needs com.apple.servermgrd.plist - which is not on my mac

    Hi, I've installed server admin 10.5.7. It tries to connect to my server then says "there is no server available at the address you entered". Found a topic in the forums that says I need to run /System/Library/LaunchDaemons /com.apple.servermgrd.plist but it is not on my mac. Can someone please tell me where I can download it, or even post the contents (it's a gob of xml).
    Thanks much for any help.

    Chances are that there is something wrong with DNS or something else on your network. plist files are files that are created when you run apps. Can you provide more info on how you set up the server - has it worked before, is this a new instal, have you verified that your server/network is working properly aside from this issue?
    Jeff

  • After i had my hard drive replaced, i've gone to get my old emails and am unable to find them on time machine. The file com.apple.mail.plist isn't there. HELP!

    Pretty sure this will be some sort of user error, but i'm lost.
    I had to have my hard drive replaced, so before taking it to the genius bar, i backed up using time machine. I'd had issues with trying to use Carbon Copy Cloner previously so had formatted the external drive before doing time machine. TM seemed to work fine and copied what looked to be everything. Once i'd got the new hard drive in and went to restore everything, when i looked for the file i need to get to apparently get my mails back (Library > Preferences > com.apple.mail.plist) it's not there.
    Any help would be MASSIVELY appreciated.
    J

    Turn Time Machine OFF temporarily in its preference pane. Leave the window open.
    Navigate in the Finder to your backup disk, and then to the folder named "Backups.backupdb" at the top level of the volume. If you back up over a network, you'll first have to mount the disk image file containing your backups by double-clicking it. Descend into the folder until you see the snapshots, which are represented by folders with a name that begins with the date of the snapshot. Find the one you want to restore from. There's a link named "Latest" representing the most recent snapshot. Use that one, if possible. Otherwise, you'll have to remember the date of the snapshot you choose.
    Inside the snapshot folder is a folder hierarchy like the one on the source disk. Find one of the items you can't restore and select it. Open the Info dialog for the selected item. In the Sharing & Permissions section, you may see an entry in the access list that shows "Fetching…" in the Name column. If so, click the lock icon in the lower right corner of the dialog and authenticate. Then delete the "Fetching…" item from the icon list. Click the gear icon below the list and select Apply to enclosed items from the popup menu.
    Now you should be able either to copy the item in the Finder or to restore it in the time-travel view. If you use the time-travel view, be sure to select the snapshot you just modified. If successful, repeat the operation with the other items you were unable to restore. You can select multiple items in the Finder and open a single Info dialog for all of them by pressing the key combination option-command-I.
    When you're done, turn TM back ON and close its preference pane.

Maybe you are looking for

  • How much RAM can my computer handle?

    I have a iMac that was manufactured mid 2011 21.5 inch display.  The specs say it can only handle 16GB of RAM but here's the response I got from the RAM manufacturer: "Whist your official manufacturer specification recommends 16GB maximum capacity, w

  • In CQ5 5.5.0, About Redirect URL

    Hello all, Recently I had the change-over from former developer to CMS and develope the home page. Anyway, I used to vanity URL in CQ5 Author tool for changing URL more efficiently and shorterly such as before http://geometrixx/content/en after http:

  • JSafe JCE 6 and WebSphere 7

    Hello, We are having a problem with the security provider JSafe JCE running on WebSphere 7. The administrator of Coldfusion 10 does not run after setting the password. We had remove the security provider at runtime using these lines of code: <cfset o

  • Is there any user exit in CRM_MKT_JOB_WIZARD

    Hi All, Is there any user exit in function module CRM_MKT_JOB_WIZARD? We have a requirement, where user selects 'Immediately' while scheduling job, but still it should be pooled and run over night. Thank you, Regards, Rajesh.

  • How to resolve SQLVDI and SQLWRITER errors

    I'm getting these errors whenever I run windows backup on I get these errors for each of the six SQL databases. Below are two examples of the errors that I get. This is causing my backups to fail.  Log Name: Application Source: SQLWRITER Date: 7/1/20