Default timezone from Web calendar (currently UTC)

When I create an event using the Web calendar, it seems to use UTC as the time zone. This causes a problem when I go into iCal and see that the event is several hours off compared to what I set when I created the event. I can edit the event in iCal to use my local timezone (PST), but I'm wondering if there is a way to set the default timezone when creating events using the Web calendar?
Patrick

As far as I can see from looking at the saved CalDAV data, iCal and Sunbird save timezone info for each calendar entry whereas the WebCalendar saves none.
This is fine if you are working only with the web calendar or you specify no timezone data in your external client (iCal, Sunbird, etc), but is unusable otherwise.
There are four things that need to be addressed here as I see it.
1) The iCal Server software needs to use the timezone info from the settings on the server machine to set its internal values.
2) The web calendar software needs to use (1) as a default for all new web calendar accounts.
3) The web UI needs to have a way to set a timezone value in the "Settings" page of the users and the groups.
4) The web calendar needs to read and save this timezone data with each entry to/from the CalDAV server.
Until Apple does this the system is unusable except in tightly controlled environments as more diligent users will set their timezone data in other applications such as iCal, Sunbird, or others that are coming out.
Any comments on this from Apple Tech?
JM

Similar Messages

  • Default timezone of wiki calendar

    I want to change the default timezone of wiki calendar. It is set to "America/Los Angeles" by default. Each user can change it through setting but it is confusing to new people who access it. The calendar is accessible to anybody. I am using Server 2.2.1.

    As far as I can see from looking at the saved CalDAV data, iCal and Sunbird save timezone info for each calendar entry whereas the WebCalendar saves none.
    This is fine if you are working only with the web calendar or you specify no timezone data in your external client (iCal, Sunbird, etc), but is unusable otherwise.
    There are four things that need to be addressed here as I see it.
    1) The iCal Server software needs to use the timezone info from the settings on the server machine to set its internal values.
    2) The web calendar software needs to use (1) as a default for all new web calendar accounts.
    3) The web UI needs to have a way to set a timezone value in the "Settings" page of the users and the groups.
    4) The web calendar needs to read and save this timezone data with each entry to/from the CalDAV server.
    Until Apple does this the system is unusable except in tightly controlled environments as more diligent users will set their timezone data in other applications such as iCal, Sunbird, or others that are coming out.
    Any comments on this from Apple Tech?
    JM

  • How do I change the default timezone for user calendars?

    The default timezone for new calendars is "America/New_York." How
    do I change the default timezone to my local timezone?
    To change the default timezone, perform the following steps:
    <P>
    <OL>
    <LI>Go to the bin/data/default_user_prefs.xml
    file.
    <P>
    <LI>In this file, change the values for the
    "icsTimeZone" and
    "ceSingleCalendarTZID"
    parameters. The default settings will appear something as follows:
    <P>
    <P>
    Changing these two parameters will change the timezone in the Calendar user
    interface.
    <P>
    <LI>In addition, go to the
    bin/config/ics.conf file.
    <P>
    <LI>In this file, change the value for
    calstore.default.timezoneID
    <P>
    Changing this value will enable the server to pick up the new timezones.
    </OL>
    <P>
    <B>Please note:</B> The values you enter for the above parameters must be valid
    timezones defined in the
    bin/data/timezone.ics
    file.
    <B>Related Technote:</B>
    <P>
    20000330-7: iCS 2.x: How do you change the
    default timezone in JavaScript?<BR>
    see article 4322

    Colin,
    You may substitute any text you like for the "Placeholder Text", as it is called, in Pages. Click on the existing placeholder text and type something more to your liking. Do this in as many places as your particular template of interest demands. Then, Format > Advanced > Define as Placeholder Text. Lastly, File > Save as Template.
    Now that you have defined a Custom Template to your liking, you can go to Pages Preferences and under the General tab's first section, define the new custom template as your default for each new document.
    Regards,
    Jerry

  • Cannit retrieve DNC 2.0 Default Destination from web.config

    I am using ConfigDestination class in DNC 2.0 to access SAP backend systems. The class is overloaded requiring either a Destination name or null parameter. If I pass destination name like: ConfigDestination c = new ConfigDestination("CI0230"), it works fine. All the information is retrieved correctly from the web.config file. However, if a pass a null parameter like: ConfigDestination c = new ConfigDestination(), it does not work. It is supposed to use the Default Destination like <Destinations Default="CI0230"> in the config file. Any ideas how to retrieve teh default destination?
    Any help will be appreciated.

    I found the problem.
    The dtd location of the faces-config.xml had to be changed. It was pointing to the schema of 1.1.
    With the following faces-config.xml, my application worked perfectly fine.
    <?xml version="1.0"?>
    <faces-config xmlns="http://java.sun.com/xml/ns/javaee"
                  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                  xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_2_0.xsd"
                  version="2.0">             
    </faces-config>

  • How to upload Unicode encoding files from web?

    Hi everyone,
    I do not manage to upload Unicode encoding CSV files from web. Currently I use class CL_HTMLB_MANAGER to upload file from web. It works fine with ANSI encoding files, but file content is not uploaded correctly with Unicode encoding files. Especially I get innumerable characters u201C#u201D throughout the string that contains the file content (For example instead of u201CSAP CATALOG CSV 2.0u201D I get u201CÿþS#A#P# #C#A#T#A#L#O#G# #C#S#V# #2#.#0#u201D).
    I did not find in forums a solution to my issue that is why I am now asking for your help.
    How can I upload Unicode encoding files from web? Do you know another way to upload file from web that is Unicode compatible?
    Remark: I tried to upload Unicode encoding files from SAP GUI using function module GUI_UPLOAD and upload is successful.
    Here is the code that I currently used.
    DATA:     lr_event_ex     TYPE REF TO if_htmlb_data,
               fileupload      TYPE REF TO cl_htmlb_fileupload,
               lr_upload_model TYPE REF TO /ccm/cl_bsp_upload_model,
               lr_error        TYPE REF TO /ccm/cx_file_upload.
    lr_event_ex =  cl_htmlb_manager=>get_event_ex( runtime->server->request ).
    IF lr_event_ex->event_name = 'fileUpload' AND lr_event_ex->event_type = 'upload'.
      fileupload ?= lr_event_ex.
      FREE lr_event_ex.
    * get the model
      lr_upload_model ?= me->get_model( model_id = 'mupl' ).
      IF NOT fileupload->file_name IS INITIAL.
    *   upload data
        TRY.
            CALL METHOD lr_upload_model->upload_data
              EXPORTING
                iv_file_name = fileupload->file_name
              CHANGING
                cv_xcontent  = fileupload->file_content.
          CATCH /ccm/cx_file_upload INTO lr_error.
        ENDTRY.
        FREE fileupload.
      ENDIF.
    ENDIF.
    Thank you in advance for helping me.
    Best regards,
    Vanessa

    Hi There,
    Please check the details for the same.
    Link: http://helpx.adobe.com/creative-cloud/help/sync-files.html#Sync or upload files
    Troubleshoot sync:     
    Error: "Unable to sync files"
    Creative Cloud File Sync | Known issues
    Thanks,
    Atul Saini

  • Web calendar time zone

    hallo,
    i have a problem with the time zone of web calendar, it is on UTC but i have to change it to CET "Berlien-Germany", in the system preferences"OS X 10.5.6" i have the time zone on CET int the web calendar its UTC i dont know why, and i dont know how to fix this problem.
    It is bad when i have a hole day appointed, because in the grafik of the web calender shows me the appointed is in a day befor!!!!
    please help
    best regards

    it is CET zone
    Message was edited by: x-x-x

  • How to delete unwanted timezones from Calendar app on Yosemite?

    I upgraded to Yosemite and one of the problems I had with Calendar App had something to do with Time Zone.
    I realized that Calendar added California time as default. So now I want to delete the unwanted time zone, but cannot find a way to do so.
    How does one remove or uncheck a time zone in iCal (Mountain Lion)?
    I found this forum and tried, but as the last person who posted said, it doesn't work on Yosemite.
    Does anyone know to delete unwanted timezones from Calendar App on Yosemite?
    Thanks.

    Thank you for your response.
    However, I am not asking about how to change the timezone on Mac. I'm asking about how to delete unwanted timezones on Calendar app.
    Here I have 2 Pacific Time's. They are basically the same, but sometimes my computer choses one of the other without my intention. And when it does, it keeps showing (PST) on next to the starting time which I do not want. In order to avoid that, I'd like to delete "Pacific Time (America/Los_Angeles)". From the link you provided, I'm not finding the solution to this. I might be looking at a wrong spot and if so please be patient to guide me through.
    If my question still doesn't make sense, please click the link to the solution for the same problem on Mountain Lion in my original question. You might understand my question better from it.
    Thank you.

  • Where can I change the default timezone UTC?

    Hi,
    I am working with the calendar and events to plan meetings.
    The default for the time zone is UTC.
    Have two questions:
    1. Where can I change this default timezone for my login?
    2. If a timezone can not be changed, is it possible to show the timezone behind the DateTime entries in the Overview > Calender view, when displaying in list form (like it is displayed in the month view)?
    Thanks a lot
    Volker

    Volker,
    The default timezone is set in bcentral.
    Go to https://beehiveonline.oracle.com/bcentral.
    Log in with your normal username and password
    Click on the MyAccount link
    Set the country and timezone as appropriate.
    Phil

  • How to Change a Default Value from Drop Down Box displayed in Web Dynpro?

    Hi,
    How to Change a Default Value from 'High' to 'Low'  in a Drop Down Box for RANGE field displayed in Standard Web Dynpro Component.  I saw a Default Value set for a RANGE field  in View Context When I select that field and click on Display. I am seeing Default Value set it to 'HI'. Please let me know how to change from HIgh to Low.
    I appreciate your help!
    Thanks,
    Monica

    hi,
    use the set_attribute( ) method now to set the attribute with a particular key eg HIGH in ur case
    // u can use the code wizard( control +f7) this code will be auto generated when u select the
    //radio button to read the context node
    DATA lo_nd_cn_node TYPE REF TO if_wd_context_node.
      DATA lo_el_cn_node TYPE REF TO if_wd_context_element.
      DATA ls_cn_node TYPE wd_this->element_cn_node.
    * navigate from <CONTEXT> to <CN_NODE> via lead selection
      lo_nd_cn_node = wd_context->get_child_node( name = wd_this->wdctx_cn_node ).
    * get element via lead selection
      lo_el_cn_node = lo_nd_cn_node->get_element(  ).
    * set single attribute
      lo_el_cn_node->set_attribute(
          name =  `ATTribute name.`
          value = 'LOW' ).
    it will solve ur query ..
    also refer to this component
    wdr_test_events -> view dropdownbyidx and dropdownbykey ->method name onactionselect.
    regards,
    amit

  • Either there is no default mail client or the current mail client cannot fulfill the messaging request" error message when you send e-mail from Office 2010 in Outlook

    Hi,
    If save and send as attachment used in MS Office 2010 then outlook 2010 displays error "Either
    there is no default mail client of the current mail client cannot fulfill the messaging request-----error Outlook 2010"
    Windows 7 32 bit Enterprise edition and Offoce Professional plus 2010 32 bit is installed in the machine.
    I have followed the below troubleshooting steps but still getting the same error.
    Method 1:
    Followed the  Microsoft fix
    http://support.microsoft.com/kb/813745
    1. On the Windows taskbar, click
    Start > Run.
    2. In the Open box, type the following text:
    3. regedit
    4. Press Enter.
    5. Go to the following registry key:
    6. HKEY_LOCAL_MACHINE\SOFTWARE\Clients\Mail
    7. In the right pane, right-click
    the following registry value:
    8. PreFirstRun
    9. Click Delete
    10. Click Start, and then click Run.
    11. In the Open box, type regedit, and then pressENTER.
    12. InRegistry Editor, locate the followingsubkey in the registry:
    13. HKEY_LOCAL_MACHINE\Software\Clients\Mail\Microsoft Outlook
    14. Select thesubkey, and then pressDELETE.
    15. Click
    Yes.
    Method 2:
    Repaired Office
    Method 3:
    fixmapi.exe. Mapi32.dll
    Method 4:
    Created the below registry key HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Offlce\15.0\Outlook
    Create the following String value if it does not exist: Bitness Set the String value for Bitness to the following if it is not already set to x86
    Method 5:
    Compared the installed applications
    Uninstalled the below program :Microsfot Visuall C++ 2008 Redistributable - x86 - KB2467175" and installed "Microsfot Visuall C++ 2008 Redistributable - x86  - 9.0.21022"
    Please help to solve the issue.
    Regards,
    Boopathi S

    Hi,
    Do you mean Send as Attachment button under File>Save & Send>Sending Using E-mail
    in Office applications, like Excel or Word?
    Is this an issue that come up recently? Have you ever made any changes to your system?
    If you have installed multiple e-mail programs on the same computer, please try to make Outlook the default mail client and then try again:
    http://office.microsoft.com/en-us/outlook-help/make-outlook-the-default-program-for-email-messages-contacts-and-calendar-HP010355552.aspx
    http://support.microsoft.com/kb/223877
    Regards,
    Ethan Hua
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Using queries from another universe in Webi; Functionality currently works in Deski

    Post Author: ck1938
    CA Forum: WebIntelligence Reporting
    I have a report in deski that was built using 2 queries and 2 universes.  One query is from a calendar universe since there is no calendar information in the reporting universe.  In deski I have the option of selecting the operand Select Query Results (All) and using the calendar universe to build a filter in the reporting uiverse that uses the results found in the calendar query to define a start date in the reporting query.  I'm trying to automate the report in Webi but am having issues since the operand is not available.  I only have the options for Constant, Values From List, Prompt, and Object.  Object will only give me objects in the reporting universe.  It apparently can't see the calendar universe query.  I've tried writing some sql statements but have had no luck so far.  Does anyone have any guidance they can offer. 

    Post Author: ck1938
    CA Forum: WebIntelligence Reporting
    You did get me thinking though.  I found another reporting universe with a calendar component and the SQL from that universe has pointed me in the right direction here.  I just replaced the manually input date in the sql for the query (2008-5-29 00:00:00) with trunc(sysdate) and the report ran without any manual intervention.  Thanks for your help. 

  • Presence data from web service

    Hello,
    i like to get presence data from the presenceconsumer web service. But everytime a call getUserPresence i get a PolicyException (POL0002): 'Privacy verification failed for address %1, request is refused'.
    I use a web service proxy generated from the wsdl of the presenceconsumer web service. Authentication is made against the appregationproxy by setting username and password. Both users (the one i use for authentication and the one whose presence data i want to get) are registered in the timesten database.
    The user whose presence data should be accessed is logged in the OracleCommunicator and has the other user on the allowed list for presence data.
    All other operations of the presence web services work without any problem, so why not getUserPresence?
    Thanks for help

    Hi,
    I have found the problem and fixed it :)
    If you see my code, I was checking for the pending subscriptions after publish() method. When I tried this check before publish() method, I got the expected results (All the pending subscriptions).
    Also, I got an error (ServiceException) while dynamically retrieving the subscribed attributes for some reason. I have found an alternative solution, by manually allowing only the PresenceAttributeType.Activity (instead of all getSubscribedAttributes()).
    Note: This code was working fine in my local machine because, I have already setup-ed the users (Buddy list) through Oracle communicator in my machine. I was not able to install OC in the VM for some reason though OS is same in both my machine and the VM (OS: Windows 2000 SP4).
    thanks & regards,
    S.Vasanth Kumar.
    My latest code for your reference.
    =======================================================
    package presencedemo;
    import java.net.URI;
    import java.rmi.RemoteException;
    import java.util.Calendar;
    import org.csapi.schema.parlayx.common.v2_0.PolicyException;
    import org.csapi.schema.parlayx.common.v2_0.ServiceException;
    import org.csapi.schema.parlayx.common.v2_0.SimpleReference;
    import org.csapi.schema.parlayx.presence.v2_0.ActivityValue;
    import org.csapi.schema.parlayx.presence.v2_0.AttributeTypeAndValue;
    import org.csapi.schema.parlayx.presence.v2_0.CommunicationMeans;
    import org.csapi.schema.parlayx.presence.v2_0.CommunicationMeansType;
    import org.csapi.schema.parlayx.presence.v2_0.CommunicationValue;
    import org.csapi.schema.parlayx.presence.v2_0.OtherValue;
    import org.csapi.schema.parlayx.presence.v2_0.PlaceValue;
    import org.csapi.schema.parlayx.presence.v2_0.PresenceAttribute;
    import org.csapi.schema.parlayx.presence.v2_0.PresenceAttributeType;
    import org.csapi.schema.parlayx.presence.v2_0.PresencePermission;
    import org.csapi.schema.parlayx.presence.v2_0.PrivacyValue;
    import org.csapi.schema.parlayx.presence.v2_0.SphereValue;
    import org.csapi.schema.parlayx.presence.v2_0.SubscriptionRequest;
    import org.csapi.wsdl.parlayx.presence.consumer.v2_0.interface_.PresenceConsumerClient;
    import org.csapi.wsdl.parlayx.presence.supplier.v2_0.interface_.PresenceSupplierClient;
    /* PresenceDemoClient.java
    * This class contains the primary functionality for
    * connecting to the Presence Server and retreiving
    * presence information for a set of buddies
    public class PresenceDemoClient {
    PresenceSupplierClient supplier;
    PresenceConsumerClient consumer;
    private String PresenceServer;
    private String PresenceUsername;
    private String PresencePassword;
    private String PresenceRealm;
    private String PresencePort;
    URI BuddyList[];
    PresenceAttributeType[] pat1;
    // Constructor - creates a supplier and consumer presence client
    // for publishing, subscribing to, and retrieving user presence.
    public PresenceDemoClient(String server, String username, String password,
    String realm, String port, URI[] buddies) {
    try {
    supplier = new PresenceSupplierClient();
    consumer = new PresenceConsumerClient();
    PresenceServer = server;
    PresenceUsername = username;
    PresencePassword = password;
    PresenceRealm = realm;
    PresencePort = port;
    BuddyList = new URI[buddies.length];
    BuddyList = (URI[])buddies.clone();
    } catch (Exception e) {
    System.out.println(e.toString());
    // publishPresence - this method publishes presence on behalf of the
    // current user. Allowed information includes and activityString and a note
    public void publishPresence(String activityString, String note) {
    try {
    System.out.println("Publishing presence for " + PresenceUsername);
    // create supplier web service endpoint
    supplier.setEndpoint("http://" + PresenceServer + ":" +
    PresencePort +
    "/aggregationproxy/presencesupplierws/presencesupplier");
    System.out.println("Supplier URL: " + "http://" + PresenceServer + ":" +
    PresencePort +
    "/aggregationproxy/presencesupplierws/presencesupplier");
    supplier.setMaintainSession(true);
    supplier.setUsername(PresenceUsername);
    supplier.setPassword(PresencePassword);
    ActivityValue activity = null;
    String expires = "3600"; // default expiration of subscription
    if (note == null || note.length() < 1)
    note = "From Web Service Client";
    if (activityString == null)
    activity = ActivityValue.ActivityNone;
    else if (activityString.equals("Available"))
    activity = ActivityValue.Available;
    else if (activityString.equals("Busy"))
    activity = ActivityValue.Busy;
    else if (activityString.equals("Meeting"))
    activity = ActivityValue.Meeting;
    else if (activityString.equals("Away"))
    activity = ActivityValue.Away;
    else
    activity = ActivityValue.ActivityNone;
    PresenceAttribute pa = new PresenceAttribute();
    AttributeTypeAndValue typeValue = new AttributeTypeAndValue();
    typeValue.setActivity(activity);
    if (Integer.parseInt(expires) == 0)
    typeValue.setUnionElement(PresenceAttributeType.Other);
    else
    typeValue.setUnionElement(PresenceAttributeType.Activity);
    CommunicationMeans mean = new CommunicationMeans();
    System.out.println(new URI("sip:" + PresenceUsername + "@" +
    PresenceRealm));
    mean.setContact(new URI("sip:" + PresenceUsername + "@" +
    PresenceRealm));
    mean.setPriority(1);
    mean.setType(CommunicationMeansType.Chat);
    CommunicationValue commValue = new CommunicationValue();
    commValue.setMeans(new CommunicationMeans[] { mean });
    typeValue.setCommunication(commValue);
    OtherValue other = new OtherValue();
    other.setName("Expires");
    other.setValue(expires);
    typeValue.setOther(other);
    typeValue.setPrivacy(PrivacyValue.PrivacyNone);
    typeValue.setPlace(PlaceValue.PlaceNone);
    typeValue.setSphere(SphereValue.SphereNone);
    pa.setTypeAndValue(typeValue);
    pa.setNote(note);
    //Allowing all pending subscriptions
    SubscriptionRequest[] srArray = supplier.getOpenSubscriptions();
    for (SubscriptionRequest sr:srArray) {
    URI watcher = sr.getWatcher().normalize();
    /*System.out.println("Blocking: " + watcher);
    supplier.blockSubscription(watcher);*/
    System.out.println("Allowing: " + watcher);
    /*PresenceAttributeType patArray[] = supplier.getSubscribedAttributes(watcher.toString());
    PresencePermission permissions[] = new PresencePermission[supplier.getSubscribedAttributes(watcher.toString()).length];
    for(int i=0;i<patArray.length;i++){
    PresenceAttributeType pat = patArray;
    System.out.println("\tPermission: " + pat);
    PresencePermission pp = new PresencePermission();
    pp.setPresenceAttribute(pat); //You always pass in Activity
    pp.setDecision(true); //Put the user on the allow list
    permissions[i] = pp;
    supplier.updateSubscriptionAuthorization(watcher,permissions);*/
    PresenceAttributeType pat = PresenceAttributeType.Activity;
    PresencePermission pp = new PresencePermission();
    pp.setPresenceAttribute(pat); //You always pass in Activity
    pp.setDecision(true); //Put the user on the allow list
    supplier.updateSubscriptionAuthorization(watcher,new PresencePermission[]{pp});
    Calendar dateTime = Calendar.getInstance();
    pa.setLastChange(dateTime);
    supplier.publish(new PresenceAttribute[] { pa });
    System.out.println("Publish done: " + "sip:" + PresenceUsername + "@" +
    PresenceRealm);
    } catch (Exception e) {
    System.out.println("Publish failed: " + e.toString());
    e.printStackTrace();
    // subscribePresence - this method subscribes to
    // presence information of buddylist members
    public void subscribePresence() {
    try {
    // create web services endpoint
    consumer.setEndpoint("http://" + PresenceServer + ":" +
    PresencePort +
    "/aggregationproxy/presenceconsumerws/presenceconsumer");
    System.out.println("Consumer URL: " + "http://" + PresenceServer + ":" +
    PresencePort +
    "/aggregationproxy/presenceconsumerws/presenceconsumer");
    consumer.setMaintainSession(true);
    consumer.setUsername(PresenceUsername);
    consumer.setPassword(PresencePassword);
    // Setting the attribute to activity.
    PresenceAttributeType pa = PresenceAttributeType.Activity;
    PresenceAttributeType[] pat = new PresenceAttributeType[] { pa };
    // These input are required but not used.
    SimpleReference sr = new SimpleReference();
    sr.setCorrelator("unused_correlator");
    sr.setInterfaceName("unused_interfacename");
    sr.setEndpoint(new URI("http://unused.com"));
    int counter = 0;
    // Calling the subscribe web service with sip
    // address of each buddy
    for (counter = 0; counter < BuddyList.length; counter++) {
    System.out.println("Subscribing presence for: " + BuddyList[counter]);
    consumer.subscribePresence(BuddyList[counter], pat, "unused",
    sr);
    Thread.sleep(3000); // Give the backend enough time to get the subscription.
    // Define Presence Activity types and attribute storage
    PresenceAttributeType pa1 = PresenceAttributeType.Activity;
    pat1 = new PresenceAttributeType[] { pa1 };
    } catch (Exception e) {
    System.out.println("Exception " + e.toString());
    e.printStackTrace();
    // getUserPresence - this method retuns the presence information
    // of a particular buddy(user)
    public PresenceAttribute getUserPresence(URI user) {
    PresenceAttribute pa;
    try {
    System.out.println(consumer.getEndpoint() + "," + consumer.getUsername());
    pa = consumer.getUserPresence(user, pat1)[0];
    } catch (PolicyException pEx) {
    pa = null;
    System.out.println("PolicyException:getUserPresence: " + pEx.getMessageId() + ":" + pEx.getText());
    String[] variables = pEx.getVariables();
    for(String str:variables){
    System.out.println(str);
    } catch (ServiceException serEx) {
    pa = null;
    System.out.println("ServiceException:getUserPresence: " + serEx.toString());
    } catch (RemoteException rEx) {
    pa = null;
    System.out.println("RemoteException:getUserPresence: " + rEx.toString());
    return pa;
    public static void main(String args[]) throws Exception{
    URI[] buddy_list = {new URI("sip:[email protected]"),new URI("sip:[email protected]"),new URI("sip:[email protected]")};
    PresenceDemoClient client = new PresenceDemoClient("192.168.111.222","employee1","welcome1","vitkovice","8888",buddy_list);
    client.publishPresence("Available",":)");
    client.subscribePresence();
    URI[] buddy_list2 = {new URI("sip:[email protected]"),new URI("sip:[email protected]"),new URI("sip:[email protected]")};
    PresenceDemoClient client2 = new PresenceDemoClient("192.168.111.222","employee2","welcome1","vitkovice","8888",buddy_list2);
    client2.publishPresence("Available",":)");
    client2.subscribePresence();
    URI[] buddy_list3 = {new URI("sip:[email protected]"),new URI("sip:[email protected]"),new URI("sip:[email protected]")};
    PresenceDemoClient client3 = new PresenceDemoClient("192.168.111.222","employee3","welcome1","vitkovice","8888",buddy_list3);
    client3.publishPresence("Available",":)");
    client3.subscribePresence();
    URI[] buddy_list4 = {new URI("sip:[email protected]"),new URI("sip:[email protected]"),new URI("sip:[email protected]")};
    PresenceDemoClient client4 = new PresenceDemoClient("192.168.111.222","employee4","welcome1","vitkovice","8888",buddy_list4);
    client4.publishPresence("Available",":)");
    client4.subscribePresence();
    Thread.sleep(10000); //Allow some time for all the subscription notifications.
    PresenceAttribute pa = client.getUserPresence(buddy_list[0]);
    System.out.println(buddy_list[0] + ": " + pa.getTypeAndValue().getActivity() + " " + pa.getNote());
    PresenceAttribute pa2 = client2.getUserPresence(buddy_list2[0]);
    System.out.println(buddy_list2[0] + ": " + pa2.getTypeAndValue().getActivity() + " " + pa2.getNote());
    PresenceAttribute pa3 = client2.getUserPresence(buddy_list3[0]);
    System.out.println(buddy_list3[0] + ": " + pa3.getTypeAndValue().getActivity() + " " + pa3.getNote());
    PresenceAttribute pa4 = client2.getUserPresence(buddy_list4[0]);
    System.out.println(buddy_list4[0] + ": " + pa4.getTypeAndValue().getActivity() + " " + pa4.getNote());

  • Meetings created after some time start shoing up "re-created a meeting that was missing from your calendar" with no body information e.g. Lync meeting

    My manager is having a problem.  "randomly" reoccurring meetings in outlook will after some time start showing as this:
    "Exchange 2013 re-created a meeting that was missing from your calendar"
    With all the "meat" of the body is missing.
    We are running Exchange 2013 SP1 and Outlook 2013.  They look the same in OWA.  Meetings can be from different senders, different times etc.
    Any thoughts?

    Microsoft have confirmed this is an issue with Exchange Online via the O365 Dashboard:
    Current Status: Engineers have developed a fix and are currently testing to ensure successful remediation.
    Customer Impact: Affected customers are experiencing issues with incomplete meeting information for a limited number of invites set to occur between the dates of August 7th, 2014 and September 12th, 2014. For the affected calendar invites, customers may see
    meeting content replaced with a canned message stating, “Exchange 2013 has re-created a meeting that was missing on your calendar.” This issue is only affecting the body of the calendar invite for attendees, and not the meeting organizer.
    Also, this does not affect the title, location, date and time, or the attendee list.
    Workaround: As a workaround, customers can re-send affected calendar invites. Additionally, if the calendar invite contains Lync meeting information and the information does not appear in the message body, attendees may be able to use the ‘Join Lync Meeting’
    button that appears in Outlook, Outlook Web App (OWA), and the mobile client to join the scheduled meeting.
    Incident Start Time: Thursday, August 7, 2014, at 12:00 AM UTC
    Preliminary Root Cause: A recent update to the service caused the Calendar Repair Assistant feature to misidentify some meetings on the attendee’s calendar as missing. By design, the feature recreated the meeting invite, including the title, location,
    date and time, but replaced the body of the calendar invite with the canned message.
    Next Update: Monday, August 18, 2014, at 4:00 PM UTC

  • Need Help Streaming Video From Web Server Built Into Application - Linksys WRT54g Router

    Very much appreciate any help getting streaming video feed from web server built into video application to work properly using port forwarding on my Linksys WRT54g wireless router.
    Here is the situation:
    My PC is connected to the internet via a Linksys WRT54g wireless router.
    The Windows XP Pro SP2 firewall is enabled, with a firewall exception established for the video camera application.
    On the router, forwarding of port 80 is enabled for the LAN IP address of the PC running the video application with an embedded web server, and the web server in the video camera application is also set to use port 80.
    I have a free DYNDNS account and also run the DYNDNS updater program on the PC running the video application with embedded web server. According to the DYNDNS web site and the DYNDNS updater program, the IP address assigned to the machine running the video application with embedded web server is set correctly in my dyndns account.
    When I open a browser (Explorer or Firefox) on the PC running the video camera application with embedded web server, I am able to  connect to the video application's web server by going to the dyndns address linked to the machine running the video application. The video application's web server is set to use the dyndns address. That's the good news. The bad news is that I can't connect to the video application's web server from any machine that connects to the internet that uses a router other than the router used by the PC running the video application. I am only able to connect to the streaming video from the application's web server only on machines that connect to the internet using the same (home) router used by the PC that is running the video application.
    Since I am able to connect to the video app's embedded web server successfully on the machine running the video application, it seems that at least something about the current port forwarding settings is correct. For example, if I uncheck 'enable' for forwarding of port 80 on the router settings page, I am no longer able to connect to the video app's web server when I try to do so in a browser running on the machine running the video app. When I re-enable port 80 forwarding on the router, I am again able to connect to the web server of the video application on the machine running the video app. I thought that by enabling forwarding of port 80 on the router and associating that port with the LAN IP of the machine running the video application, it would be possible to connect to the streaming video of the video app's embedded web server from ANY machine connected to the internet, but that is not the case. There must be some other router settings to update/change in order to get the port forwarding working to enable a successful connection to the video web server, but I am stumped. Very grateful for any suggestions as to how to get this working properly.
    Thanks in advance...

    The firewall log can be configured on the third tab in the window for the firewall settings, where you can turn the firewall on and off completely.
    From your tests, though, it does not seem to be the firewall. However, to be sure, it would be good to check the log. It will help to eliminate the firewall as the culprit and you may find it handy in the future, too. ;-) Just don't forget to turn the log off again after you are done because it may cause some performance penalty on your system while on.
    From what you write, it seems as if I should give a little networking background on the ip addresses you'll see. Your setup is (or should be) a modem connected to the WAN/Internet port of the WRT. The computer is connected into a LAN port of the WRT.
    Your router has two IP addresses (that's what makes it a router): a WAN address and a LAN address. The WAN address is the address assigned by the ISP. It is a normal internet IP address. Everyone is able to send packets to this IP address. The WAN address is the one reported by whatismyipaddress.com, it should be listed in the dyndns record and it is the address that your router shows on the Status page. It's the public IP address of your router. Dyndns maps your dyndns.org name to that IP address.
    Your router also has an IP address on the LAN side. You can configure it to be whatever you want. The default is 192.168.1.1 with netmask 255.255.255.0 and it is better to leave it like that or at least inside the network 192.168.*.*. 192.168 is a special, reserved IP address range for private networks. Basically, routers in the internet are not supposed to forward addresses in this range. That makes them suitable for private LANs as the packets never can get anywhere. Most people using Linksys routers have there LAN in 192.168.1.*.
    The router acts as gateway, which means it forwards packets from PCs in the LAN to the internet and back. As all your PCs in your LAN share a single WAN IP address, the gateway does address translation (NAT). This works only in one direction: from the inside to the outside. The router remembers when a PC in your LAN sends something out and accepts the responses in and sending them back to the PC. If something comes in from the internet which cannot be associated with a ongoing communication the packet is dropped unless you use port forwarding.
    All computers in your LAN either have a static IP address assigned or use DHCP to get it automatically. The router has a DHCP server as well which gives out IP address from 192.168.1.100-149 if not changed. With a router with default settings static IP addresses can be in the range of 192.168.1.2-99 and 150-254.
    ipconfig /all reports your IP address in your LAN, i.e. an address 192.168.1.*. The gateway in this output should be 192.168.1.1 which is your router. And packet no in the LAN address range 192.168.1.* is send to the router which forwards the packets into the internet.
    An address 192.168.1.* should not appear as internet address in the Status page of the router nor should it appear at dyndns.
    Port forwarding is used to operate a server in the LAN. By default, a server in the LAN cannot be reached from the internet. You have to configure port forwarding for this. You configure that traffic bound for a specific port (e.g. TCP port 80 for http) on your WAN IP address is forwarded to the same port on a specific LAN IP address. If your server runs on 192.168.1.50 than traffic to your WAN IP address port 80 is forwarded to 192.168.1.50 port 80. That way your HTTP server can be reached from the internet. As you can only configure a fixed IP address in port forwarding it is recommended that the server uses a static IP address and not DHCP as in the latter case the IP address may change over time...
    O.K. so much for networking. I hope that makes things a little clearer and you can verify that your setup is how it is intended to be.
    I suggest the following: on the router's security page there is an option to block WAN requests. Remove the check if it is set (meaning: do not block). After you did that change you should be able to ping your WAN address (e.g. ping xxxx.dyndns.org) from the internet. That way we know that it is on the correct address.
    Also on the Administration page make sure that remote management is disabled (should be like that per default) or that the management port is NOT 80 but for example 8080. What is your your UPnP settings on the same page?
    O.K. that should be enough for the moment...

  • Remove album from Web Gallery (not in Iphoto)

    I have a album in my Web Gallery but it's not in my IPhoto. I am trying to remove it from Web Gallery but can not figure out how?

    Welcome to the Apple Discussions. Go into iPhoto's Preferences/Web Gallery. If the gallery is listed then select it and hit the Stop Publishing button.
    If the gallery is not listed then mount your iDisk and go to the iDisk/Sites/Web/_gallery folder. If you have more than one gallery you'll have to look inside each of the gallery folders (they are just numbered and hard identify which is which) to determine which is the gallery you want to delete. When you find it drag it to the trash.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 6 and 7 libraries and Tiger and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.≤br>
    Note: There now an Automator backup application for iPhoto 5 that will work with Tiger or Leopard.

Maybe you are looking for

  • ITunes 10.5.1 won't open

    I decided to upgrade to iTunes 10.5 on my MacBook Pro (which is running Snow Leopard) and iTunes has since never successfully launched. All I see is the program launch, the typical Apple Terms and Conditions flashes on the screen and then iTunes cras

  • TS1702 Problems with subscription in newsstand.

    I've bought a subscription for a magazine through Newsstand and paid through apple store. Received an invoice, so everything was looking normal. IPC media sent a message in regards to my new subscription, that should show in my iPad shortly.  This al

  • How do I change products on monthly payments ie. Muse to Fireworks ?

    I have Muse on monthly payments and found I don't need it, I would like to use Fireworks instead. How can I change it ?

  • Imported graphics look blurry in playback

    This just started creating headaches for me. I have high-resolution graphics (1920x1080 HD resolution) that I have imported into Final Cut Pro X and they look fine in preview mode. However when I go to play it back after render they look blurry. The

  • HELP - lost pdf export presets?!

    Help! This morning I began work in ID and suddenly discovered that my long list of PDF export presets (which I use for work daily) was simply gone. I have only the default list - screen, print, press, etc. These are very complex presets that I need o