Unable to subscribe to calendar

Sun Java(tm) System Calendar Server 6.3-19.01 (built Aug 26 2009)
SunOS mail 5.10 Generic_141414-10 sun4u sparc SUNW,SPARC-Enterprise
For a reason unknow to me some of our resource calenders disappeared today. When I run csresourse they don't show up but can see that the calendar exist in cscal list. When attempting to subscribe to the calender I am able to preview the calender in convergence but if i check the calender and attempt to subscribe to it nothing happens. I've been able to change permissions on the calender but no matter what i try I am unable to subscribe to it. Thanks
Tom

b-lobills wrote:
For a reason unknow to me some of our resource calenders disappeared today.Is there anything in common with the resource calendars that "disappeared" vs. those that didn't e.g. common owner/permissions, all part of the same domain?
Do you see any errors in the Calendar logs?
Have you performed a "./csdb check"?
If you create a new resource, does that work?
If you compare the LDAP entries for a working vs. "disappeared" calendar, can you see anything different?
Check the LDAP audit logs to see if there have been any changes to the resource calendar LDAP entries recently.
When I run csresourse they don't show up but can see that the calendar exist in cscal list.The csresource command performs an LDAP search for a resource e.g.
[05/May/2010:10:30:35 +1000] conn=42 op=1 msgId=2 - SRCH base="o=aus.sun.com,o=isp" scope=2 filter="(objectClass=icsCalendarResource)" attrs="cn icsCalendar icsAllowedServiceAccess icsDWPHost icsDomainNames icsPartition"
[05/May/2010:10:30:35 +1000] conn=42 op=1 msgId=2 - RESULT err=0 tag=101 nentries=1 etime=0The cscal command accesses the calendar database. If the resources LDAP entry was removed/changed this could explain why you cannot subscribe to it or see it in the "csresource list" output.
Regards,
Shane.

Similar Messages

  • Unable to view the Calendar Year/Month in the Query

    Hi All,
    We are having a standard query on Customer InfoCube 0sd_c01_q0003.
    I was able to get the data. But I am unable to view the Calendar Year/month. In that place I am getting '#'.
    I am able to view the details in the InfoCube. There aren't any errors while executing the error.
    Regards
    YJ

    hi,
    U r Problem is not clear...if u r getting # for characteristic values means..u don't have data in Infoprovider...try to view data in InfoProvider with the same selections that u r executing the Query with.
    thnaks

  • Unable to add subscription calendars in iCal

    Hello all,
    I have been running into some iCal issues of late. I re-installed the application from Snow Leopard install DVD and after having some issues yesterday, deleted the cache and preference files. My issues were resolved.
    However, I am still unable to add subscription calendars.
    When attempting to add a calendar, I enter the webcal address (confirmed to be correct) and a dialog box appears "downloading". This process is taking longer than in the past. At the end of the process, the subscription calendar does NOT appear in my list of calendars. In other words, it is unsuccessful.
    Any ideas on how to resolve this issue?
    Thanks,
    Kieran

    Greetings,
    Try adding a standard subscription like US Holidays, does the same issue occur? :webcal://ical.mac.com/ical/US32Holidays.ics
    1. Remove the contents of the /Macintosh HD/Library/Caches/ directory (drag everything inside to the trash).
    2. Launch iCal and test
    3. If the issue persists follow this article to reset your sync history: http://support.apple.com/kb/TS1627
    4. If the issue persists test in a new user and let us know if that works:http://docs.info.apple.com/article.html?path=Mac/10.6/en/8235.html
    Cheers.

  • HT5029 I can't get my subscribed work calendar to show up on iCloud. I have deleted it and re-added it. I have made sure that the location is set to iCloud. Ideas?

    I can't get my subscribed work calendar to show up on iCloud. I have deleted it and re-added it. I have made sure that the location is set to iCloud. Ideas?

    Apple have not announced any such plans. It was the same during the whole MobileMe period from 2008 - 2012, so it doesn't seem to be a high priority issue for Apple.
    Send feedback here: http://www.apple.com/feedback/icloud.html

  • How to modify  the search results of the GUI for subscribing to calendars

    How to modify the search results of the GUI for subscribing to calendars
    Note:
    <OL>
    <LI>The following information applies only to iPlanet Calendar Server 5.0
    Patch 3.
    <LI>All of the cases for which the XSLT changes will work have not been
    verified.
    <LI>The following is only an example of an XSLT customization.
    </OL>
    The example below shows a sample customization of the
    search_for_calendars
    dialog. This customization will result in the Display Name being included as
    part of the search results in the GUI, which would normally show just the
    calendar ID. It will render the returned calendars in the following format:
    <P>
    Display Name - <I>description</I>
    <P>
    Normally, the format would be as follows:
    <P>
    Calendar-ID - <I>description</I>
    <P>
    </A>
    The example consists of the following two files:
    <P>
    <OL>
    <LI>search_for_calendars_common.xsl
    (the entire XSLT file)
    <P>
    <LI>diffctx.txt
    (the context sensitive diff patch file,
    which basically shows only the changes that need to be made)
    </OL>
    <P>
    <HR>
    </A><B>
    search_for_calendars_common.xsl</B>
    <?xml version="1.0" ?>
    <!DOCTYPE xsl:stylesheet (View Source for full doctype...)>
    - <!--
    set the output properties
    <xsl:stylesheet
    xmlns:xsl="http://www.w3.org/XSL/Transform/1.0"
    result-ns="http://www.w3.org/TR/REC-html40">
    -->
    - <xsl:stylesheet xmlns:xsl="http://www.w3.org/XSL/Transform/1.0">
    - <!-- set the output properties
    -->
    <xsl:output method="html" encoding="ISO-8859-1" />
    <xsl:include href="data/common.xsl" />
    <xsl:include href="data/i18n.xsl" />
    <xsl:include href="data/date_format.xsl" />
    <xsl:include href="data/dialog_tabs.xsl" />
    - <xsl:template match="/">
    <xsl:apply-templates select="calendar" />
    </xsl:template>
    - <xsl:template match="calendar">
    - <xsl:choose>
    - <xsl:when test="@top='true'">
    - <xsl:variable name="Frame1">
    <xsl:value-of select="frame[1]" />
    </xsl:variable>
    - <xsl:variable name="Frame2">
    <xsl:value-of select="frame[2]" />
    </xsl:variable>
    - <xsl:variable name="Frame3">
    <xsl:value-of select="frame[3]" />
    </xsl:variable>
    - <xsl:variable name="tab_value">
    <xsl:value-of select="@tab" />
    </xsl:variable>
    - <HTML>
    - <HEAD>
    <xsl:call-template name="contextJavascript" />
    <TITLE>Calendars Search: Calendar Express - iPlanet</TITLE>
    </HEAD>
    - <FRAMESET border="0" frameborder="0" rows="77,*,71">
    <FRAME name="tab" marginheight="0" marginwidth="0" scrolling="no"
    scrollbars="no" src="{$Frame1}" />
    <FRAME name="main" frameborder="0" src="{$Frame2}" />
    <FRAME name="button" marginheight="0" marginwidth="0" scrolling="no"
    scrollbars="no" frameborder="0" src="{$Frame3}" />
    </FRAMESET>
    </HTML>
    </xsl:when>
    - <xsl:when test="@view='searchProperties'">
    - <xsl:for-each select="group">
    - <xsl:if test="@name='searchProperties'">
    <xsl:call-template name="search_toolbar" />
    </xsl:if>
    </xsl:for-each>
    </xsl:when>
    - <xsl:when test="@view='main'">
    - <xsl:for-each select="group">
    - <xsl:if test="@name='main'">
    <xsl:call-template name="main" />
    </xsl:if>
    </xsl:for-each>
    </xsl:when>
    - <xsl:when test="@view='button'">
    - <xsl:for-each select="group">
    - <xsl:if test="@name='button'">
    <xsl:call-template name="button_root" />
    </xsl:if>
    </xsl:for-each>
    </xsl:when>
    - <xsl:otherwise>
    - <html>
    What's this view? (search_for_cals.xsl) -
    <xsl:value-of select="@view" />
    </html>
    </xsl:otherwise>
    </xsl:choose>
    </xsl:template>
    - <xsl:template name="search_toolbar">
    - <HTML>
    <xsl:call-template name="emit_frame_head_tag" />
    - <BODY bgcolor="{$bgcolor_background}" background="imx/tdbg.gif"
    marginwidth="0" marginheight="0" onload="window.focus()">
    - <FORM>
    - <xsl:attribute name="action">
    <xsl:value-of select="./formdata@action" />
    </xsl:attribute>
    <xsl:attribute name="name">form</xsl:attribute>
    <xsl:attribute name="onSubmit">document.forms[0]['find'].click(); return false;
    </xsl:attribute>
    <xsl:apply-templates select="formdata" />
    - <CENTER>
    - <TABLE border="0" cellpadding="2" cellspacing="0" width="100%" height="100%">
    - <TR>
    - <TD align="center">
    - <TABLE border="0" cellpadding="3" cellspacing="1">
    - <TR>
    - <TD colspan="4">
    <FONT size="{$font_size_big_2}" face="{$font_name}">Find all calendars where
    the calendar</FONT>
    </TD>
    </TR>
    - <TR>
    - <TD valign="baseline">
    - <FONT size="{$font_size_big_2}" face="{$font_name}">
    - <SELECT name="which">
    <OPTION value="name;calid">name or ID</OPTION>
    <OPTION value="name">name</OPTION>
    <OPTION value="primaryOwner">primary owner</OPTION>
    <OPTION value="calid">ID</OPTION>
    </SELECT>
    </FONT>
    </TD>
    - <TD valign="baseline">
    - <FONT size="{$font_size_big_2}" face="{$font_name}">
    - <SELECT name="how">
    <OPTION value="0">contains</OPTION>
    <OPTION value="1">begins with</OPTION>
    </SELECT>
    </FONT>
    </TD>
    - <TD valign="baseline">
    <INPUT type="text" name="what" />
    </TD>
    - <TD valign="baseline">
    - <FONT size="{$font_size_big_2}" face="{$font_name}">
    - <INPUT type="button" name="find" value="Find">
    - <xsl:attribute name="onClick">
    <xsl:value-of select="./button[@name='find']" />
    </xsl:attribute>
    </INPUT>
    </FONT>
    </TD>
    </TR>
    </TABLE>
    </TD>
    </TR>
    </TABLE>
    </CENTER>
    </FORM>
    </BODY>
    </HTML>
    </xsl:template>
    - <xsl:template name="main">
    - <HTML>
    <xsl:call-template name="emit_frame_head_tag" />
    - <BODY bgcolor="{$bgcolor_background}" background="imx/tdbg.gif"
    marginwidth="0" marginheight="0">
    - <FORM name="form" method="post">
    - <xsl:attribute name="action">
    <xsl:value-of select="./formdata@action" />
    </xsl:attribute>
    <xsl:attribute name="name">form</xsl:attribute>
    <xsl:apply-templates select="formdata" />
    <INPUT type="hidden" name="how" value="0" />
    <INPUT type="hidden" name="which" value="name;calid" />
    <INPUT type="hidden" name="what" value=" />
    <INPUT type="hidden" name="selectedGroup" />
    - <xsl:if test="(./calsearchresults/nomatch)">
    - <!-- print no match found
    -->
    &#38;nbsp;
    &#38;nbsp;
    No Match Found
    </xsl:if>
    - <xsl:for-each select="./calsearchresults/searchresultcal">
    - <P>
    &#38;nbsp;
    &#38;nbsp;
    - <FONT size="{$font_size_big_2}" face="{$font_name}">
    - <FONT size="{$font_size_big}" face="{$font_name}">
    Owner:
    <xsl:value-of select="@owner" />
    <FONT size="{$font_size_big}" face="{$font_name}" color="{$bgcolor_wend_mid}">|
    </FONT>
    Calendar ID:
    <xsl:value-of select="@id" />
    <BR />
    </FONT>
    - <FONT size="{$font_size_big_2}" face="{$font_name}">
    - <xsl:choose>
    - <xsl:when test="@subscribed='false'">
    &#38;nbsp;
    &#38;nbsp;
    - <INPUT type="checkbox" name="calendar">
    - <xsl:attribute name="value">
    <xsl:value-of select="@name" />
    </xsl:attribute>
    </INPUT>
    &#38;nbsp;
    &#38;nbsp;
    - <A target="_blank">
    - <xsl:attribute name="href">
    <xsl:value-of select="@viewCommand" />
    </xsl:attribute>
    <xsl:value-of select="@name" />
    </A>
    </xsl:when>
    - <xsl:otherwise>
    &#38;nbsp;
    &#38;nbsp;
    - <A target="_blank">
    - <xsl:attribute name="href">
    <xsl:value-of select="@viewCommand" />
    </xsl:attribute>
    <xsl:value-of select="@name" />
    </A>
    &#38;nbsp;
    (Subscribed)
    </xsl:otherwise>
    </xsl:choose>
    - <xsl:if test="string-length(@description) > 0">
    &#38;nbsp;
    &#38;nbsp;
    - <FONT size="{$font_size_big}" face="{$font_name}">
    <xsl:value-of select="@description" />
    </FONT>
    </xsl:if>
    </FONT>
    </FONT>
    </P>
    </xsl:for-each>
    </FORM>
    </BODY>
    </HTML>
    </xsl:template>
    </xsl:stylesheet>
    <P>
    <A HREF="#back">Back</A>
    <P>
    <HR>
    </A>
    <B>diffctx.txt</B>
    Index: search_for_calendars_common.xsl
    ===================================================================
    RCS file: /m/src/ns/server/msg/calendar/core/html/search_for_calendars_common.xsl,v
    retrieving revision 1.1.2.14
    diff -c -r1.1.2.14 search_for_calendars_common.xsl
    *** search_for_calendars_common.xsl 2000/12/12 23:10:43 1.1.2.14
    --- search_for_calendars_common.xsl 2001/03/15 23:55:19
    *** 182,188 ****
    &#38;nbsp; &#38;nbsp;
    <INPUT type="checkbox" name="calendar">
    <xsl:attribute name="value">
    ! <xsl:value-of select="@id"/>
    </xsl:attribute>
    </INPUT>
    &#38;nbsp; &#38;nbsp;
    --- 182,188 ----
    &#38;nbsp; &#38;nbsp;
    <INPUT type="checkbox" name="calendar">
    <xsl:attribute name="value">
    ! <xsl:value-of select="@name"/>
    </xsl:attribute>
    </INPUT>
    &#38;nbsp; &#38;nbsp;
    *** 190,196 ****
    <xsl:attribute name="href">
    <xsl:value-of select="@viewCommand"/>
    </xsl:attribute>
    ! <xsl:value-of select="@id"/>
    </A>
    </xsl:when>
    <xsl:otherwise>
    --- 190,196 ----
    <xsl:attribute name="href">
    <xsl:value-of select="@viewCommand"/>
    </xsl:attribute>
    ! <xsl:value-of select="@name"/>
    </A>
    </xsl:when>
    <xsl:otherwise>
    *** 199,205 ****
    <xsl:attribute name="href">
    <xsl:value-of select="@viewCommand"/>
    </xsl:attribute>
    ! <xsl:value-of select="@id"/>
    </A>
    &#38;nbsp;(Subscribed)
    </xsl:otherwise>
    --- 199,205 ----
    <xsl:attribute name="href">
    <xsl:value-of select="@viewCommand"/>
    </xsl:attribute>
    ! <xsl:value-of select="@name"/>
    </A>
    &#38;nbsp;(Subscribed)
    </xsl:otherwise>
    <P>
    <A HREF="#back">Back</A>

    Maybe on the Google API s page?

  • HT201077 Keep getting this error on iCloud   Unable to subscribe. Photos was unable to subscribe to the shared photo stream.   I am also not able to share my photos . Started three days ago

    Last three days have not been able to share photos on ICloud
    We tried to reestablish photostream keep getting they following error
    Unable to subscribe
    Photos was unable to subscribe to the share photo stream
    Any help would be great

    Last three days have not been able to share photos on ICloud
    We tried to reestablish photostream keep getting they following error
    Unable to subscribe
    Photos was unable to subscribe to the share photo stream
    Any help would be great

  • Outlook 2010 subscribed internet calendar recurring event problem -- missing recurring events

    Hi --
    In Office Outlook 2010, I'm subscribed to my wife's google calendar via subscribed internet calendars.  A few weeks ago, I noticed that recurring events weren't appearing.  I deleted the subscription, and resubscribed, with no luck.  (All
    her other appointments and events were there, but not the recurring ones - including new scheduled events she had just added.)
    At the same time, I did the same thing in Office Outlook 2013, (on another computer), and all the recurring events were there.
    So the problem isn't with the feed, but somewhere in MS Office Outlook 2010.
    Does anyone have any idea how to fix this?
    Thanks.

    Hi,
    Please make sure the latest patches and service packs are installed for your Outlook 2010. Since the issue doesn’t happen in Outlook 2013 on another computer, the Internet Calendar URL should be OK for opening.
    Please refer to the following article to create a new Outlook profile and restart Outlook in Safe mode to have a try:
    https://support.office.com/en-za/article/I-can-t-start-Microsoft-Outlook-2010-or-2013-or-receive-the-error-%E2%80%9CCannot-start-Microsoft-Office-Outlook-Cannot-open-the-Outlook-Window%E2%80%9D-d1f69da6-b333-4650-97bf-4d77bd7abb85
    If the issue doesn’t happen in safe mode, the issue may be caused by any third-party add-ins, please disable then enable the add-ins in Outlook One by One to confirm the issue cause.
    Regards,
    Winnie Liang
    TechNet Community Support

  • I am unable to install Lightning calendar to Thunderbird 31.1.2/Windows 7 64bit

    I am unable to install Lightning calendar to Thunderbird 32.0.3/Windows 7 64bit.
    My original calendar dissapeared a while ago during an update.
    I have tried downloading lightning-3.3.sm+tb-windows.xpi, but every time I try to run it, all it does is add the file as an attachment to a new email.
    Can you help please?

    Yes, frequently.
    Once there, I click on Lightning, download for Windows and when the popup asks what should Thunderbird do with this file I highlight Open with Thunderbird. It then opens a new Write window with lightning-3.3.sm+tb-windows.xpi as an attachment.
    I have also tried saving it as a file, but when I try to open it the same thing happens (new write window with file added as an attachment).

  • Unable to subscribe to Security Alerts

    I am unable to subscribe to security alerts. Every time I click on the link to subscribe, OTN tells me that my Province/State is incorrect. I have triple-checked my profile. There is nothing apparent wrong. How can I fix this?
    Can you sign me up for Security Alerts?
    --Joe                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    I'll forward this message to someone who should be able to help.
    In the mean time, have you tried entering the 2-letter postal abbreviation for your state, e.g., PA?

  • Unable to subscribe to digital magazines- ipad 2 ios 6.1

    Hello all,
    It seems that i am unable to subscribe to any digital magazines using my ipad 2 on ios 6.1.
    Have tried numerous magazines to no joy. 
    If i go to view account it does not show up any purchased magazine subscriptions, so it looks like it will not let me subscribe for some reason.
    Any ideas, but i want to avoid updating my ipad if possible!

    Here is how to subscribe.
    http://support.apple.com/kb/ht4098
    If you still can't on ipad try using iTunes on your computer?

  • ITunes U App downloaded, but unable to subscribe

    I downloaded the iTunes U app on my iTunes v 11. I am still unable to subscribe to and download lectures from iTunes U.
    I plan to view these lectures on my windows 7 pc. Are there any suggestions for how to fix this? Do I need to submit and enrollment request before I can subscribe?
    Thanks

    I fixed my own problem.
    The lecture series was in Podcast form. I had the default Parental Control settings on my iTunes viewer; which disabled Podcasts and internet radio. I simply had to enable these features and I was able to subscribe and download the necessary lecture series.

  • How do I subscribe to calendars on my iphone

    how do I subscribe to calendars on my iphone

    You might try creating a smart playlist specifically for podcasts. When you create the smart playlist, be sure "live updating" is checked. Once you've done that and know it's grabbing the podcasts, under "store" select "Update iTunes Match." The playlist should then become available on your iPhone. 

  • [Torch 9860] Unable to subscribe podcasts over Wi-Fi

    Hello,
    I have a Torch 9860 running 7.1
    I am unable to subscribe to podcasts over Wi-Fi.
    Is there anything I can do to make this functional?
    Thanks,
    medacomix15

    i dunno.  If you are home, and the computer is home - why not just plug it in?  I tried the wifi syncing when it first came out, and there is so much data flying back and forth - a momentary loss or hiccup in the wifi signal scews up the sync.   To me, just not worth the effort.
    System updates, on the other hand seem to work fine .  That is a one way data transmission with checks and resends as needed - more or less just a large download.

  • Unable to subscribe to iTunes Match

    When I try to subscribe to iTunes Match from an iPad Mini and iPhone 4 using the same account, I get a message saying "Unable to subscribe to iTunes Match from this account." The account is part of a family. What happens?

    Hi beestingya,
    If you're getting repeatedly asked for your username and password when trying to subscribe to iTunes Match, try these steps to see if they help:
    iTunes repeatedly prompts to authorize computer to play iTunes Store purchases
    http://support.apple.com/kb/TS1389
    Cheers,
    - Ari

  • When I accept a meeting request via email I am unable to designate which calendar I want the meeting to go to. I can do it on my iPhone, but not my MacBook.

    When I accept a meeting request via email I am unable to designate which calendar I want the meeting to go to. I can do it on my iPhone, but not my MacBook. The calendars are shared with my wife, she is the owner of the calendar but I have Read & Edit permissions.

    Are you properly selecting the content to sync in iTunes? I mean you have all of the headings - Sync Music, Sync Movies, etc. checked to sync and all of the content as well?
    Is the iPad signed into the same iTunes account as your PC? You are using the same Apple ID and iTunes account on both devices. On the iPad go to Settings>Store>Apple ID - is that the same ID that your iTunes library is using?
    Lastly, did you ever transfer the purchases from your iPad to the PC? Is all of the content that you have on the iPad in your iTunes library?
    I can't think of any other reasons why the iTunes on the PC as seeing this as a new iPad.

Maybe you are looking for

  • Intel 915GM slow performance.

    I don't know what happen, but my Intel 915GM (graphic card) is very very slow under linux. I've already tried the i810 driver, and the intel driver. The performance is like 30~40% of the original on Windows... The direct rendering is up, below it's s

  • Facing problems while creating OBIEE Repositories

    Hi All, Am a beginner for OBIEE,I am trying to create a repository but Its prompting with below Error Message,please advise. [nQSError : 16001] ODBC error state : 08004 code: 10018 message: [NQODBC][SQL_STATE: 08004][nQSError: 10018] Access for the r

  • Frequent "unable to sync files" message

    I use Creative Cloud to store all my project files.  While working, I frequently get the popup message "Unable to sync ...." whatever project file I'm currently working on.  This happens about 20 times per day, so it's a little annoying.  Eventually

  • How to assigned SHD0 Variants to user?

    Dear All,     I want to use SHD0 to hide the u2018DO not Display Valuesu2019 in MB52 .Now I used SHD0 to do it. My step is: 1.     Created Transaction Variants:ZMB52_T  and Screen Variants ZMB52_S 2.     Created Tcode: ZMB52, Created Variant Groups G

  • Win XP Error Report w/ cp1525nw HPlaserjet​service.ex​e

    HP CP1525nw, OS=Win XP Pro 2002, svc pk 3. Printer prints fine both wired and wireless, but Windows error msg displays frequently and randomly. My ptr firmware is 20111215. Msg appears only on wired (USB) PC connection. How do I fix issue or clear fr