Server Path for iCal users

I hope this doesn't come off as a dumb question... and I'm not really sure how to ask it.
The server path for users in iCal are found at /principals/_uids_/really long string of random characters. Is this correct? Shouldn't they be found at /principals/_uids_/username
Is something miss-configured on the server? Or am I missing something?

If you're using a Snow Leopard client, you should not need to enter a path, only the credentials and server name (if you specify the calDAV service).
For 10.5 clients, I had to use:
http://server.domain.com:8008/prinicpals/users/usershortname
or for secure:
https://server.domain.com:8443/prinicpals/users/usershortname
If you have to use the <uid> to make it work, you're in a world of hurt. As I understand it, that directory tracks individual events for the calDAV service, not the complete calendar.
Good luck.
J

Similar Messages

  • Outgoing server works for one user not for other

    Hi,
    I just made a second user in Leopard. When logged in as the original user, the outgoing mail server works fine in Mail. When logged in as the new user, the outgoing mail server shows as 'offline' in Mail. In both cases the outgoing server is the same one.
    As the new user i can only receive mail and not send any. I am pretty sure the account settings on both mail accounts r identical(Authentication, SSL etc.) (except for user specific identification of course)
    Any advice/idea on what is wrong and what i can do to make the outgoing server work for both users?
    Thx,
    Brick

    Yes I am certain the authentication is correct. When trying to send a message out Mail gives a message saying my "SMTP server does not support authentication".
    When i open Mail preferences. The outgoing server is indicated as Offline.

  • Usually there is a upgrade path for current users of the software at a reduced price. I dont see anything like that for Lightroom 6. Will I have to pay full price just to upgrade to the new LR6 standalone version???

    Usually there is a upgrade path for current users of the software at a reduced price. I dont see anything like that for Lightroom 6. Will I have to pay full price just to upgrade to the new LR6 standalone version???

    The standalone upgrade is 79 US Dollars.
    Go to Products, select Lightroom 6, click on Buy, select Upgrade instead of Full

  • Mail does not retain correct external server path for Exchange Server '07 even when "automatically detect and maintain account settings" is unchecked. Advice?

    Mail keeps resetting the external server path for an Exchange server '07 account when the program is closed and reopened. This happens even though "automatically detect and maintain account settings" is unchecked. To reset to the correct setting I need to disable the account, make the change and save with the account disabled, close Mail, reopen Mail, and enable the account. Then the settings are maintained and Mail works great... until Mail is closed and reopened again. At that point the server path reverts to an incorrect setting. Anyone else experiencing this? Advice? I don't think this is a problem with the Exchange server because this problem did not happen with OS X Mavericks.

    This this to fix repeated password requests....
    Open Keychain Access in Applications/Utilities
    Search for your Dreamhost accounts. There should be two entries (incoming, outgoing) for each account.
    It's not uncommon to find old entries. You might want to delete all and start clean.The Keychain isn't smart and will keep all old entries when you add/change a password.
    While you are in the Keychain run Keychain First Aid, Under Keychain Access in the Menu bar.
    Open Mail
    Open Connection Doctor.
    If you see red for the account, enter the password again.
    If you continue to have problems, delete the account then add it back.

  • I want to get desktop path for client user using webutil

    oracle database 11g
    oracle forms 10 g
    client windows
    i want to get desktop path for client user using webutil
    as i want to save file in this path

    To get the user's path to their Desktop is a two step process.  First, you have to echo the %USERPROFILE% to a output file and secondly, read the directory from the output file in to Forms.  The code would look similar to the following:
    /* When-Button-Pressed trigger */
    DECLARE
      v_temp_path VARCHAR2(250);
      v_temp_file VARCHAR2(12) := 'webutil.log';
      f_file Client_Text_IO.File_Type;
    BEGIN
      Client_Host('cmd /c echo %USERPROFILE%\Desktop > c:\'||v_temp_file);
      f_file := Client_Text_Io.FOpen('c:\'||v_temp_file, 'R');
    Client_Text_Io.Get_Line(f_file,v_temp_path);
    Client_Text_Io.FClose(f_file);
       b_dummy := WebUtil_File.Delete_File('C:\'||v_temp_file);
      --At this point, you have the path stored in the v_temp_path variable.
      --You can assign this variable to a block item or reference it directly in your code.
    END;
    When you reference the value of the v_temp_path, don't forget to wrap the value in double-quotes (" ") becuase the path will have spaces.  Since your plan is to write a file to the user's desktop, your call to FOPEN will look  like this:
    f_file := Client_Text_Io.FOpen('"'||v_temp_file||'"','W');
    Hope this helps,
    Craig...

  • Server settings for iCal push?

    How to get iCal to push from server to computers running os x 10.6?

    You need to use the search function for this question in this forum. There are many many threads on how to get this running.
    First - download and read all the Apple SLS server docs.
    Second - run by Barnes and Noble and pick up a copy of SLS - Developer Reference. (I have no affiliation)
    Concerning the iPhone.
    Forget it.
    'nuff said on that one...
    Edit: After reading this again, it appeared to me that I was sounding like an a$$. Sorry. It was not intended that way.
    However, the forum does have numerous threads on how to get push working for iCal on 10.6 clients. It does work and it works quite well for me on my network. Pay particular attention to the order you setup your SLS. DNS must function without errors. You must have an OD master to authenticate users against. Mail services must be enabled to use external invites.
    Alot of these services rely on web based protocols and it's "push" features are built around XMPP PubSub protocol which means you must have a working iChat server configured and running and web services running. SSL is needed for most of it.
    If you are new to SLS (or Mac server in general) it is worth every single penny of $25 for one month of lynda.com. They have a few Mac OS Server lessons in their library.
    As for the iphone - please don't start this one again. It doesn't work. There is no built in OTA sync service agent in the iphone OS. Wait for iPhone 4.0 like the rest of us.
    Message was edited by: sbkeith

  • How to find weblogic Server memory for particular user

    In a weblogic server how can i get the information for each user approximately
    it occupying "x" size of memory...is there any command..so that based on number
    of users i can increse my memory and harddisk space.

    Hi,
    Following sql will help you find the responsibilities associated with the users in oracle applications.
    SELECT frt.RESPONSIBILITY_NAME, furg.end_date
    FROM
    fnd_user_resp_groups furg,
    FND_RESPONSIBILITY fr,
    fnd_responsibility_tl frt,
    fnd_user fu
    WHERE fu.user_name = ‘&&username’
    AND fu.user_id = furg.user_id
    AND furg.responsibility_id = fr.RESPONSIBILITY_ID
    AND frt.responsibility_id = fr.RESPONSIBILITY_ID
    ORDER BY 1
    Cheers...

  • Can I install Acrobat in a Windows Server 2008 for many users?

    I'm looking for a solution for my enterprise to install Adobe Acrobat in Windows Server 2008 R2, where the users connect by remote desktop. I'm looking for a form for they use Acrobat by the same form they uses now Reader. But not for all, only for some of this users.
    I called a responsible and he told me that I can install Acrobat for some users in Windows Server 2008 R2, but I'm not sure if that solution will be legal.
    Can I buy a special license for it or I have to buy a license for each user? How can I proceed to do this, if it's possible?
    Thanks in advance for you attention!

    Use a mozilla.cfg file in the Firefox program folder to lock prefs or specify default values.
    Place a file local-settings.js in the defaults\pref folder where you also find the file channel-prefs.js to specify using mozilla.cfg.
    pref("general.config.filename", "mozilla.cfg");
    pref("general.config.obscure_value", 0); // use this to disable the byte-shift
    See:
    * http://kb.mozillazine.org/Locking_preferences
    You can use these functions in mozilla.cfg:
    defaultPref(); // set new default value
    pref(); // set pref, but allow changes in current session
    lockPref(); // lock pref, disallow changes
    <pre><nowiki>lockPref("app.update.enabled", false);</nowiki></pre>

  • Lyncdiscover reports HTTP 500 Internal Server Error for external users

    Hello,
    I have a problem providing lyncdiscover information for external Lync users. The same address works internal (prompts for file download) so I believe the problem is UAG/TMG providing the site which is not my cup of tea. I have a working external lyncdiscover
    for other domain in the same Lync + UAG/TMG server environment. I have also checked the public DNS records few times and everything should be fine. Firewall also shouldn't be an issue since it reports the internal server error, right? Any suggestions what
    should I check?

    more information based on Lync Autodiscover Web Service Remote Connectivity Test.
    Testing HTTP authentication methods for URL https://lyncdiscover.domain1.com/Autodiscover/AutodiscoverService.svc/root/user.
    HTTP authentication methods successful.
    Additional Details
    Testing HTTP content for URL https://lyncdiscover.domain1.comi/?sipuri=[email protected] has
    token="User".
    HTTP content isn't verified.
     <label for="testSelectWizard_ctl12_ctl06_ctl00_ctl04_tmmArrow">Tell
    me more about this issue and how to resolve it</label>
    Additional Details
    HTTP 200 status received from server, but no token="User".
    Elapsed Time: 203 ms.
    The same result goes for the other domain that provides the lyncdiscover information correctly for external users. It doesn't seem to solve the root cause but might help to understand
    the problem.

  • Adding printers to Terminal Server 2008 for all users

    Hi!  I'm trying to add a printer to a terminal server for all users that log in.  I've been reading around and this seems like a working solution:
    Rundll32 printui.dll,PrintUIEntry /ga /c\\localcomputername /n\\servername\printername
    So I ran this with the proper parameters.  Nothing shows up in Devices and Printers with the name I specified.  I rebooted the server, still nothing.  I re-run the command above and it tells me there's already a printer defined with that name. 
    I look at Devices and Printers and the name I specified still isn't there.  Why doesn't the above command work like it's supposed to?
    Thanks!

    Thanks, yes, that was the first command I tried (without the /c).  All subsequent attempts tell me the printer already exists yet it definitely does not show up under Devices and Printers.  I ran the above logged in as Administrator with an elevated
    command prompt.  The printer can't be seen from this login or a 'normal' user login.

  • Silent install of SQL Server 2008r2 for ALL users?

    We ship an installer that does a silent install of SQL Server 2008r2 with all the 'right' parameters pre-configured. We use this:
    /QS /INSTANCENAME=MSSQLSERVER /ACTION=Install /FEATURES=SQL,BC,Conn,ADV_SSMS /SAPWD=MyPasswordGoesHere /SECURITYMODE=SQL /TCPENABLED=1 /ADDCURRENTUSERASSQLADMIN /SQLSVCSTARTUPTYPE=Automatic /SQLSVCACCOUNT="NT AUTHORITY\SYSTEM" /AGTSVCACCOUNT="NT
    AUTHORITY\SYSTEM" /IACCEPTSQLSERVERLICENSETERMS
    However, the problem is that if a tech installs it for another user, that user does not have access, since ADDCURRENTUSERASSQLADMIN flag only adds the user who installed it -- rather than adding ALL users on the computer. (Or at least all admins.)
    I tried replacing ADDCURRENTUSERASSQLADMIN with this:
    /SQLSYSADMINACCOUNTS="BUILTIN\ADMINISTRATORS"
    but that also failed to work. How can we install for all users, or at least all administrators?
    NOTE: we do NOT know the name of the computer or the users. The installer has to work for any computer setup.
    Similar question has already been asked, but wasn't helpful:
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/8354675f-be9b-4909-b776-942f03954807/how-to-do-a-silent-install-of-sql-2010-express-for-all-users-on-a-computer?forum=sqlexpress
    The documentation does not make it clear what you can pass as allowed SQLSYSADMINACCOUNTS parameters. I also am not sure if I would need to change the AGTSVCACCOUNT or SQLSVCACCOUNT?

    I tried one more thing:
    /SQLSYSADMINACCOUNTS="BUILTIN\Administrators"
    which does not halt installation with an error. 
    However, doing:
    osql -E
    create database test
    go
    in a command prompt from a different admin user on the same machine results in a permissions error... but works if done from a command prompt on the user account from which MSSQLServer was installed.
    So for some reason /SQLSYSADMINACCOUNTS="BUILTIN\Administrators" does not work as expected.
    Anyone have any idea why?
    I checked the output log from the install, and found it had generated and used a configurationFIle to do the install. I looked in that file, and these were the settings, even though I did NOT pass /ADDCURRENTUSERASSQLADMIN as a command line option:
    ; Windows account(s) to provision as SQL Server system administrators. 
    SQLSYSADMINACCOUNTS="BUILTIN\Administrators"
    ; The default is Windows Authentication. Use "SQL" for Mixed Mode Authentication. 
    SECURITYMODE="SQL"
    ; Provision current user as a Database Engine system administrator for SQL Server 2008 R2 Express. 
    ADDCURRENTUSERASSQLADMIN="True"

  • Design lync server 2013 for 20000 users, licenses required

    Hi,
          for 20000 users, required features are IM/presence, Archive, external access thats it with HA. also its hyperv.
    is below configuration sufficient?
    4 FE enterprise server,  2 SQL mirrored, 2 Edge servers, 1 SQL witness
    20000 lync client license :- is there any client, which is not thick???
    20000 standard cals
    4 server cals
    3 SQL licenses
    am i missing anything here??

    If you build those servers out to the full specs mentioned in
    http://technet.microsoft.com/en-us/library/gg615015.aspx you should be fine.
    The client software license is included with Office Pro Plus or can be purchased separately.
    The standard cal gets you IM and peer to peer AV.  Enterprise will get you conferencing and desktop sharing (see a breakdown here:
    https://mspartner.microsoft.com/en/wi/pages/solutions/downloads/lync-2013-licensing-guide.aspx)
    You'd want 4 Lync server licenses, correct.
    You'd only need two SQL server licenses as the witness can be SQL Express.
    As for missing... just Windows server licenses if you need them. 
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question please click "Mark As Answer".
    SWC Unified Communications

  • Files on mac server invisible for windows user

    Hi,
    Our school have a mac file server for sharing all the teachers' source.
    The problem is that when I login with my account in windows, some folders are invisible but when I login in Mac folders are visible.
    All the protocols are running well, AFP, FTP, MySQL, SMB and Web.
    Any suggestions are appreciated!
    Tony

    So you actually got the windows computers to connect to the server???? HOW?

  • ATP in SD. Advantage of ATP server & locks for multiple users.

    hi,
    I am working on ATP in SD. We have to design our own ATP calculation logic.
    1. What is advantage of ATP server (logical partition) in SD. does it helps in regulating the calls for ATP calculation.
    2. In standard there is lock for plant & material combination i.e. Material block with quantity transfer.  but here i want blocking to be done on the level material-storage location including one more entity called paper machine which is specific in this ATP calculation.

    Hello Rishi,
    It is quite possible to connect more than one SCM system to ECC technically. Business case will be little specific to customer requirements i.e having existing SCM systems for different business units.
    GATP check can be carried out in different SCM system as you rightly mentioned based on CIF integration model. It doesn't create any issue. We have similar system set-up for internal use.
    Only issue what I see here is, in case of RBATP, if you are using cross location ATP check, if will not give you desired results. Second issue will be for planned supply components, if material is planned in separate SCM system.
    Such system set-up works fine when you are having isolated materials and location to plan and GATP.
    Regards,
    Dinesh Goyal

  • Server Essentials for 30 users

    Looking to update a clients server from Windows Small Business 2008 Server to something more modern. We just migrated to Office 365 and I was looking at Windows server Essentials but they have 30 users which may go as high as 35, but I can't see it going
    beyond that. Is there a way to use Essentials or do we have to get Standard?

    This one may help.
    http://blogs.technet.com/b/sbs/archive/2012/08/06/growing-beyond-25-users-with-windows-server-2012-essentials.aspx
    I'd ask them more over here.
    https://social.technet.microsoft.com/Forums/windowsserver/en-US/home?forum=winserveressentials
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

Maybe you are looking for