Problem with a Stuck ML Calendar Client using Server Calendar

I set up group Wikis on our server, which seem to work fine (as long as everyone remembers to log in with "https:" not "http:".
On my ML client however, after cleaning out old Calendar accounts with the server, using System Preferences to create a Calendar account with the server, and then reopening Calendar, I can see the Server as a calendar source on the left pane but always get a message that says:
"The URL https://<server URL>/principals/__uids__/0D06B83A-D825-4318-816C-097904CB4886/ encountered HTTP error 404. Make sure the URL is correct."
I suspect that the hex code for my user ID is wrong (or maybe it is a group ID). But I can't seem to fix this. There is no place in the application to edit this URL. I can delete the server account from Calendar and try to start again and I still get the same message.
Is there a configuration file where I can kill this and start over? I suspect some of my other clients to the server will also have this problem as I migrate them over.
Thanks!

I am still trying to debug this problem.
I have tried removing the Server account from Calendar Preferences as well as System Preferences, then readding. Did not work.
I tried doing the remove again, this time removing everything in Keychain associated with the Server Calendars. Did not work.
I tried going to ../<User>/Library/Calendars and navigating to the caldav directory associated with the server (this takes some poking around as the directory name is based on the server's hex identifier), then renaming the Info.plist file, then deleting the account from System Preferences, then recreating. Did not work. In fact the renamed Info.plist file was gone, but a new one was there.
The Info.plist file contained the bad entry in several places. This is what mine looks like (with specific servers and user names replaced):
<?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>AccountIsEnabled</key>
        <true/>
        <key>AutoDiscovery</key>
        <false/>
        <key>AutoScheduleSupport</key>
        <true/>
        <key>CalendarHomePath</key>
        <string>/calendars/__uids__/0D06B83A-D825-4318-816C-097904CB4886/</string>
        <key>CalendarProxySupport</key>
        <true/>
        <key>CalendarServerPrivateEventsSupport</key>
        <true/>
        <key>CalendarUserAddresses</key>
        <array>
                <string>urn:uuid:0D06B83A-D825-4318-816C-097904CB4886</string>
                <string>/principals/users/<user short name>/</string>
                <string>mailto:<user mailing address></string>
                <string>/principals/users/<another short name>/</string>
                <string>/principals/users/<another short name>/</string>
                <string>/principals/__uids__/0D06B83A-D825-4318-816C-097904CB4886/</string>
        </array>
        <key>Color</key>
        <string>#808080FF</string>
        <key>Delegate</key>
        <false/>
        <key>DropBoxPath</key>
        <string>/calendars/__uids__/0D06B83A-D825-4318-816C-097904CB4886/dropbox/</stri ng>
        <key>Enabled</key>
        <true/>
        <key>ExpandPropertyReportSupport</key>
        <true/>
        <key>Expanded</key>
        <true/>
        <key>FullName</key>
        <string><User Full Name></string>
        <key>InboxAvailabilitySupport</key>
        <true/>
        <key>InboxPath</key>
        <string>/calendars/__uids__/0D06B83A-D825-4318-816C-097904CB4886/inbox/</string >
        <key>KeepOffline</key>
        <false/>
        <key>Kerberos</key>
        <false/>
        <key>Key</key>
        <string>0F753F73-160F-4836-91F3-8B0A54F10B85</string>
        <key>Login</key>
        <string><user short name></string>
        <key>ManagedAttachmentSupported</key>
        <false/>
        <key>NotificationCollectionPath</key>
        <string>/calendars/__uids__/0D06B83A-D825-4318-816C-097904CB4886/notification/< /string>
        <key>Order</key>
        <integer>39</integer>
        <key>OutboxPath</key>
        <string>/calendars/__uids__/0D06B83A-D825-4318-816C-097904CB4886/outbox/</strin g>
        <key>PrincipalURL</key>
        <string>https://<server URL>:8443/principals/__uids__/0D06B83A-D825-4318-816C-097904CB4886/</string>
        <key>PrivateCommentsSupport</key>
        <true/>
        <key>PushDisabled</key>
        <false/>
        <key>RefreshDate</key>
        <date>2012-12-02T19:44:22Z</date>
        <key>RefreshInterval</key>
        <integer>900</integer>
        <key>RequestCompressionSupported</key>
        <false/>
        <key>ShareDefaultAlarmSettings</key>
<true/>
        <key>SupportsDefaultAlarms</key>
        <true/>
        <key>SupportsSharing</key>
        <true/>
        <key>SupportsSubscriptionCalendars</key>
        <false/>
        <key>Title</key>
        <string><server name></string>
        <key>Type</key>
        <string>CalDAV</string>
        <key>Writable</key>
        <true/>
        <key>isInSeparateWindow</key>
        <false/>
        <key>isManuallyConfigured</key>
        <false/>
</dict>
</plist>
This tells me that my client is pulling this information down from the server. Annoying. Where is the configuration file on Mountain Lion Server? Why does it use the Hex address??? Short name would be infinitely better!

Similar Messages

  • Problem with national characters on windows client

    Hello there,
    I'am having problem with national characters on windows client.
    All national data stored in NVARCHAR2 colums, applications (.net) works fine,
    but in sqlplus:
    select city from test_table;
    - everything ok, sqlplus shows national characters
    select dump(N'<national symbols>') from dual
    - returns
    Typ=96 Len=12: 0,191,0,191,0,191,0,191,0,191,0,191
    select * from test_table where city = N'<national symbols> '
    - always returns nothing
    As i understand the problem in
    sql query text (and national literals) convertion
    to servers "WE8ISO8859P1" encoding, Is it possible
    to solve the issue?
    Thanks in advance
    PS.
    Console in right mode (chcp=1251)
    sqlplus shows russian messages well
    Server (oracle 9 on solaris):
    select * from nls_database_parameters
    NLS_NCHAR_CHARACTERSET AL16UTF16
    NLS_SAVED_NCHAR_CS WE8ISO8859P1
    NLS_LANGUAGE AMERICAN
    NLS_TERRITORY AMERICA
    NLS_CURRENCY $
    NLS_ISO_CURRENCY AMERICA
    NLS_NUMERIC_CHARACTERS .,
    NLS_CHARACTERSET WE8ISO8859P1
    NLS_CALENDAR GREGORIAN
    NLS_DATE_FORMAT DD-MON-RR
    NLS_DATE_LANGUAGE AMERICAN
    NLS_SORT BINARY
    NLS_TIME_FORMAT HH.MI.SSXFF AM
    NLS_TIMESTAMP_FORMAT DD-MON-RR HH.MI.SSXFF AM
    NLS_TIME_TZ_FORMAT HH.MI.SSXFF AM TZH:TZM
    NLS_TIMESTAMP_TZ_FORMAT DD-MON-RR HH.MI.SSXFF AM TZH:TZM
    NLS_DUAL_CURRENCY $
    NLS_COMP BINARY
    NLS_LENGTH_SEMANTICS BYTE
    NLS_NCHAR_CONV_EXCP FALSE
    NLS_RDBMS_VERSION 9.2.0.6.0
    Client (windows server 2003, oracle client 10):
    NLS_LANG = RUSSIAN_CIS.CL8MSWIN1251

    N'<national symbols>', being part of an SQL statement, will be converted to the database character set (WE8ISO8859P1) before being parsed. Only if the client and the database are both 10.2 or higher, the client can encode the literal appropriately so that it survives this conversion.
    In earlier versions, you can do the encoding yourself. Instead of the N'<national symbols>' literal use the UNISTR function: UNISTR('\xxxx\yyyy\zzzz'), where U+xxxx, U+yyyy, U+zzzz are Unicode code points of your national characters.
    -- Sergiusz

  • Hi, i have a macbook air and i've been having problems with the camera when i'm using skype. i know im no the 1st one and i'd like to know when apple or someone 'll do something about this.

    hi, i have a macbook air and i've been having problems with the camera when i'm using skype. i know im no the 1st one and i'd like to know when apple or someone 'll do something about this.

    Try reinstalling Combo Update.
    http://support.apple.com/kb/DL1676
    Best.

  • Problem with a stuck yellow process chain

    Hi all,
    I have a problem with a stuck yellow process chain.
    A Meta chain calling a sub chain. The sub chain loads some master data.
    Some months ago one process stopped in yellow, no processes still running.
    So after that day when the meta chain runs the error msg is as follows
    Diagnosis                                                                               
    The previous run of the current subchain, BW_METADATA_MD_ST , is not yet   
         complete. This leads to communication errors with the metachain called,    
         BW_METADATA_MD .                                                                               
    System response                                                                               
    The current run of the metachain is cancelled.                                                                               
    Procedure                                                                               
    1.  End the previous run of the subchain, or wait until the run is         
             complete.                                                              
             It does not matter whether the run was successfully completed or       
             not.                                                                               
    2.  Restart the metachain.                                                 
    How do I end the previous run of the subchain?
    There is no process running, just want to set the flag to ended.
    Thanks in advance.
    BR
    Lars
    Message was edited by:
            Lars Johnsson

    Hi Lars,
       Have a look this web log : Restarting Processchains
    /people/siegfried.szameitat/blog/2006/02/26/restarting-processchains
    Hope it Helps
    Srini

  • Im having problem with the dvd quality, I'm using compressor to convert the video fils from apple prores to mpeg2 .It doesn't matter how long my video is even if its just 5 minutes  I'm getting cut edges in the video , does anyone have any idea ?

    Im having a problem with the dvd quality, I'm using compressor to convert the video fils from apple prores to mpeg2 .It doesn't matter how long my video is even if its just 5 minutes  I'm getting cut edges/lines  in the video specialy if i have titles it comes up really bad , I took the same video to a friend of mine who have PC and he uses Encore , did the encoding there and it was just fine no problems! BTW I tried using doferent setings in compressor from CBR and VBR I even pushed up the setings to 8 or 9 BR and still no luck !
    does anyone have any idea ?
    Thanks in advence ...

    Let's focus attention on just the Sony. (What model and what resolution are you shooting?)
    For now, I'll assume you're shooting 1080i.
    Take a representaive clip  into a new sequence. Add a title.
    In your sequence, make sure field dominance is set to Upper.
    Set render settings to Pro Res 422.
    After rendering, export QT self contained.
    Import into Compressor (I'm now referring to v3.5).
    Select the 90 minute Best quality DVD preset.
    Open frame controls and turn on (click the gear icon). Set Resize filter to Best.
    Submit burn and check quality on TV.
    Good luck.

  • Can anyone please help me, I'm having problems with sound while watching video clips using flash player using Internet Explorer\

    Can anyone please help me, I'm having problems with sound while watching video clips using flash player & Internet Explorer

    There's a good chance that this is a known issue.  We'll have a Flash Player 18 beta later this week that should resolve this at http://www.adobe.com/go/flashplayerbeta/

  • I downloaded Firefox 7 and when I click on the browser icon nothing happens, the browser does not load on desktop.I had no problems with Firefox 4 I had been using for several years and liked very much

    I downloaded Firefox 7 and when I click on the browser icon nothing happens, the browser does not load on desktop.I had no problems with Firefox 4 I had been using for several years and liked very much

    Most people have no problems with installing firefox as an upgrade, but there are quite a few things that can cause problems. Please have a look at the articles
    * [[software Update Failed]] <-- clickable link (blue ) --
    * [[firefox will not start]]
    * [[firefox does not work]]
    Post back after you read them and say what you tried. Have you ensured you used an admin account, possibly needing to check the UAC setting, and that security software is not blocking the changes. You should certainly try starting in firefox's [[safe mode]] either from a menu/icon option or by holding the shift key as you attempt to run firefox.
    Is the browser icon you see on the desktop, and a firefox icon ?

  • I am having problems with downloading Windows Support Software by using Boot Camp Assistant. Is there somewhere else I can download from?

    I am having problems with downloading Windows Support Software by using Boot Camp Assistant. Is there somewhere else I can download from?

    No. There is no other location. Be patient. Read the posts in the Bootcamp Forum. There are hundreds of posts about your issue and what to do. https://discussions.apple.com/community/windows_software/boot_camp

  • There is a problem with the security certificate of the proxy server. Error code 18 and 38.

    Hi All,
    After several hours and a short night of sleep I'm out of ideas and hopefully someone here can help me trying to solve this one. First of all the situation:
    Exchange 2013 on a remote location with a CA-certificate.
    Outlook 2010 and 2013 on different locations, locally installed and on RDS.
    When I open Outlook on my laptop all is fine, no errors, good sync, no problem. But when I open Outlook on our Remote Desktop Servers with Outlook 2013 I'm getting errors like "There is a problem with the security certificate of the proxy server. The
    name on the security certificate is invalid or does not match the name of the site. Outlook is unable to connect to this server. (Error code 18)". Opening Outlook 2010 the message is the same, but the error code now is 38.
    After this Outlook opens and is working, there's one more error though. After a while an security warning pops up with the message: "Information you exchange with this site cannot be viewed or changed by others. However, there is a problem with the
    site's security certificate. * The security certificate was issued by a company you have not chosen to trust. View the certificate to determine whether you want to trust the certifying authority. * The security certificate is valid. * The name on the security
    certificate is invalid or does not match the name of the site."
    Strangest thing is, it is the certificate of my RDS! It isn't my valid en officially bought certificate from my mailserver. What's going on? I'm out of options, what I've tried so far (in random order):
    - restarting mailserver and AD;
    - restarting switches;
    - restarting routers;
    - restarting RDS, AD and all other servers;
    - bypassed proxyserver for RDS;
    - created a new profile;
    - checked recently installed updates;
    - checked certificate on mailserver;
    - checked RDS on a different location, working fine.
    Nothing helped, what can I do next? Please advice.
    Regards.

    Found a thread that solves half my problem (https://social.technet.microsoft.com/Forums/office/en-US/70d18244-889a-4d95-ac3f-e234672a82b2/there-is-a-problem-with-the-proxy-servers-security-certificate-error-when-starting-outlook?forum=exchangesvrclients).
    The first message can be suppressed by adding this to the Exchange config:
    set-outlookprovider -Identity EXCH -CertprincipalName msstd:webmail.domain.tld
    set-outlookprovider -Identity EXPR -CertprincipalName msstd:webmail.domain.tld
    Giving the command get-outlookprovider, gives me empty information regarding the certprinipalname. Filled
    this and after recreating the profile or deleting the ost-file I still have the second alert with the local certificate of my RDS.
    Not completely where I want to be, any help regarding the second alert is greatly appreciated!

  • Firefox is having problems with google and google calendars

    Two things: can't keep two separate google accounts functioning, one being their calendar used by a client to which we have access (client A), and the other a gmail inbox (client B).
    The two accounts are unrelated but accessed from the same computer. When trying to refresh after appt setting for client A, google defaults to client B's calendar and logs me out of their gmail account.
    Second hassle, incoming messages to the gmail inbox activates the scroll bar and takes me to the bottom of whatever page I am viewing on the net, or if I'm typing an email hangs the machine so I can't use the keyboard or swap between tabs.
    I also have trouble with plugins so wonder where the problem lies?

    Is it a safe assumption that website is your's? <br />
    What difference does it make which browser '''''you''''' use? Isn't your website for client's or potential clients?
    That said, I don't have a problem with that web page on Firefox 2.0.0.20, 3.0.19, 3.5.16, 3.6.13, or the 4.0b9 nightly - it looks the same as in IE8 on 32-bit WinXP SP3, with an AMD 64-bit processor.
    The problem shown in your screenshot is with your own Firefox installation. It's like all the "styling" is turned off.
    ''''' "I infer Firefox needs a 64 bit version." ''''' <br />
    What good is a 64-bit browser without 64-bit plugins? <br />
    Adobe still hasn't released a 64-bit version of Flash, although they do have a "preview" version available. <br />
    http://kb2.adobe.com/cps/000/6b3af6c9.html
    ''BTW, Mozilla does have a Windows 64-bit version of the Firefox 4.0 betas that is being tested now, but it is not going to be released in Jan / Feb when Firefox 4.0 is released. It will probably be released later in 2011 with one of the 4.# versions, I suspect right after Adobe has a 64-bit Flash release version.''

  • Problem with previews browser and email clients vs DW

    Hey everyone.  I am having an issue with DW.  I wanted to see if I could get some quick help.  I am having a problem with the DW Design looking fine and great on my screen in DW, but when I go to preview in a browser or upload to an Email client, it has a spacing issues.  See pics for reference.  The first is in DW, the 2nd is in Chrome.  All browsers and MailChimp.com look the same. 
    Can I get some help into what I am doing wrong? 

    I take it you are using an older version of DW - say DW5?  First thing to know is that DW's Design view is not a browser. It's an approximation (and sometimes a poor one) of what you will see in the browser, as you are discovering. Second thing is that by just looking at a screen shot, we can only guess at what might be wrong. Please show us the code and we can tell you what actually IS wrong. Do this by either posting a link to the uploaded page, or by pasting the code into a reply here. If CSS is involved, please add that to your paste. And to be successful with this latter method, you must come to the web forum to make your post - email won't work.

  • PI Demo Examples problems with executing CTC template for client setup

    Dear SAP community,
    I use PI 7.30 SP 4 and get the following exception if I use the CTC template to set up the PI demo examples in client 105
    and 106
    Web Services Configuration
    Description
    Exception in step "SRT_TECHNICAL_SETUP"
    Exception details : java.lang.Exception: BAPIRET2 SRT_ADMIN 050 Could not create service destination
    State
    Step was skipped
    In client 107, the template works after I delete the SAP_WSRT user. In clients 105 and 106, this leads to the exception above,
    If the  SAP_WSRT user exists, I get the exception that this user alreadz exists if I run the template.
    What should I do to fix this problem and properly implement the template on all clients?
    PS: I use admin users with SAP_ALL  rights. Maybe I use the wrong master password, because I use the one of my SAP_ALL user. This works at least for using the template within client107.
    Andreas

    Hi Mark,
    in my case the workaround of deleting the service user works only in Client 107.
    The additional problem with a missing service destination occurs already after deleting the service user in Clients 105 and 106. Will this additional problem also be treated in the new note?
    Joerg-Joachim Klossika already added the workaround to this note for the existing service user I proposed to him.
    I still cannot resolve the problem with the missing service destination.
    regards
    Andreas

  • Problem with af:selectInputDate (no calendar popup)

    Hi All,
    I have a problem with the af:selectInputDate component and the calendar popup when using a custom converter. My converter converts the date in a way, that it always has a four digit year depending on the short date format and the corresponding locale, e.g. 01/18/2007 instead of 01/18/07 for en-us. It looks like when I am using my converter with the component in the following way some javascript is not generated by the af:selectInputDate which results in an javascript error when clicking on the popup button:
    <h:panelGroup>
    <af:selectInputDate id="idPatientBirthDate" columns="12" simple="true" value="#{PatientDetails.patient.birthDate}">
    <f:converter converterId="BirthdateConverter" />
    </af:selectInputDate>
    <h:message for="idPatientBirthDate" errorClass="errorMessageStyle"></h:message>     
    </h:panelGroup>
    The following javascript is not generated using the above jsf:
    <script>
    if(window['_dfs'] == (void 0)){var _dfs=new Object();}_dfs["_id43:general:idPatientBirthDate"]='M/d/yyyy';function __id43Validator(){return true;}
    </script>
    I am using version 10.1.3.0.4 of ADF faces.
    My BirthdateConverter is a standard converter that implements the Converter interface and is not doing any magical. It works perfectly for other components. An interesting fact is, that the above javascript gets generated when I am using no converter at all or the standard date/time converters like f:convertDateTime provided by the RI. However, these don't provide the functionality I need.
    I have the bad feeling, that I am missing something. Does anyone else ran across this problem?
    Thanks,
    Herbert

    Frank,
    Thank you for your answer. I'm not using ADF BC, so is there a possible workaround? My model provides a standard java.util.Date. My converter looks like:
    public class BirthdateConverter implements Converter {
      public Object getAsObject(FacesContext facesContext, UIComponent uIComponent, String sDate) {
        Locale locale = facesContext.getCurrentInstance().getExternalContext().getRequestLocale();
        String pattern = AppUtil.getFourDigitYearPattern(DateFormat.SHORT);
        SimpleDateFormat sdf = new SimpleDateFormat(pattern, locale);
        java.util.Date d = sdf.parse(sDate);
        // converter logic
        return d;
      public String getAsString(FacesContext facesContext, UIComponent uIComponent, Object object) {
        if (object == null)
          return null;
        if (!(object instanceof Date))
          return object.toString();
        Locale locale = facesContext.getCurrentInstance().getExternalContext().getRequestLocale();
        String pattern = AppUtil.getFourDigitYearPattern(DateFormat.SHORT);
        SimpleDateFormat sdf = new SimpleDateFormat(pattern, locale);
        return sdf.format((java.util.Date)object);
    }AppUtil.getFourDigitYearPattern(DateFormat.SHORT) provides a date pattern, e.g. "M/d/yyyy" for locale en-us. In the above code I did not include try-catch blocks to make it more readable.
    Herbert
    Message was edited by:
    user575859

  • Having a problem with commandButton attribute when i am using it under tabl

    Having a problem with {color:#800000}commandButton {color}{color:#339966}attribute {color}when i am using it under{color:#ff0000} table{color}
    I am using a command button under a table.
    here is the example
    <h:dataTable value="#{wlmHandler.plexes.plexes}" var="{color:#ff0000}onePlex{color}" border="0" cellspacing="0" cellpadding="0" width="100%" border="0">
    <h:column>
    <h:panelGrid border="0" cellpadding="0" cellspacing="0" columns="5">
    <h:commandButton action="" styleClass="tixbutton" value="#{labels.ADD}" onclick="#{onePlex.tran}"/>
    <f:verbatim> </f:verbatim>
    <h:commandButton action="#{createTransaction.transactionCommand}" styleClass="tixbutton"
    value="#{labels.SUBMIT}" actionListener="#{createTransaction.processAction}">
    <f:attribute name="dbName" value="#{wlmHandler.dbName}"/>
    <f:attribute name="plexName" value="{color:#ff9900}#{onePlex.name}"{color}/>
    </h:commandButton>
    </h:panelGrid>
    <h:/column>
    </h:dataTable >
    when i am using this plex name atribute it is giving nullPointerException
    {color:#ff9900}this value #{onePlex.name} i cant able to access inside the command button{color}

    balu i have tried by seeing u r blog.
    this is my structure of tables
    plexes (if i iterate plexes table gives plex object)
    |
    ------ plex (plex table gives transaction object)
    |
    ------transactions(transactions table gives transaction table)
    |
    here i will have a command link to this link i have to pass the plex name which
    will come from
    i tried in this command action with HTMLDataTable getRowData()
    i am not getting the selected row data .i am downcasting this getRowData() to plex.

  • I had to uninstall firefox since it was causing so many problems with my computer. I was using the latest version 18. What is the problem?

    I have had nothing but problems since I installed the latest version of Firefox version 18. It hangs up my computer no matter what I am doing. Even if I am not using the browser. I uninstalled it three times and the problems just seemed to be getting worse. I finally uninstalled it and did not reinstall it again. I am not going to use it again until the problems are fixed. I also don't know what funmoods is or whatever it is that replaced my google home page. I don't like software deciding what services I should use. I have been a firefox user for over 15 years. I have never had problems like this before. I have switched to Safari. It works without interfering with the other tasks I am doing on my computer. I don't know what version 18 did but the previous version of firefox I was using was perfectly fine. I had no problems whatsoever with it. It appears as if this version was not sufficiently tested. Also my daughter is having the same problems with her computer and they all started with the new version. So it isn't just me. At least give us the option of going back to the previous version and asking us if we want to upgrade when a new one comes out. However, I have never had these problems in the past with any version of firefox I installed. I like the features of firefox but cannot afford to keep rebooting my computer. It seems that firefox gets hung up and then hangs the computer up and I can't do anything else even if I am not using it. It seems to stay on in the background and hang everything up. Please fix this.

    It most definitely is the browser that is causing most of the problems. I have used Firefox so long, I can't even remember. Maybe since its beginning. But today is a sad day. I gave up on it. I can't accomplish anything and end up spending hours troubleshooting. I see I am not alone. I am so sick of it "not responding." It's simply not worth it to spend so much time trying to make the thing work, so I can actually do something. Installed, removed, reinstalled numerous times, and I can't fix your software on my Win 7 Pro machine. No problems with IE or Chrome. So. as much as I hate Google Update, Chrome has won the test. Sad, sad day for me to lose Firefox, but it just does not work on the Win 7 machine. I don't have the same issues with the XP machine and have exactly all the same add-ons. Keep it up developers and you will have no Win 7 users at all.

Maybe you are looking for

  • No access to free iWork Apps?

    Here's the deal, I just bought a new Macbook Air earlier this week, Upgraded to Maverick, and the iWork apps in the app store arent showing up as free? Solution for this?

  • Bring Design View back!

    Removing Design View from Flash Builder was an hilarious idea... Why not just stop support for Flash Builder and remove it completly from Adobe? Just bring the Design View back!

  • IPhone SDK:  Breakpoints don't trigger in a Callback function

    Hi - I coded a callback function for a CFSocket object; I followed the steps outlined by the CFSocket reference page. Everything seems fine, and then I enable a breakpoint inside my callback function. I run my code, and gdb does not stop into my call

  • Parse time for OLAP SQL statements

    Hello! I have built ROLAP cube and now trying to analyse performance. Most of problems are coming from SQL statements which are prepared by BI beans (Disco or Excel). These statements have a very big parse time because they use IN predicates with a l

  • Iphone 3g.....worth it or not?

    I have searched every forum and review and am quite uneasy now. Dropped calls, horrible reception, crappy battery life and other errors seem to be plaguing this latest and supposedly, greatest tech toy. I ordered mine yesterday via AT&T, but now afte