Persistence and XA with MDBs

Hi,
          We currently run WLS 6.1, SP3. We'd like to use Message Driven Beans over MQSeries. Does anyone know what the minimum version of WLS/SP is needed to make this work? Also, is there any clear documentation on the BEA site. I haven't seen anything.
          Thanks,
          Frank
          

Hi Frank,
          In 6.1 you can use the messaging bridge (with patches) to forward
          the MQ messages transactionally to a WL destination, and then have
          the MDB transactionally read from the WL destination. Otherwise,
          you can use 7.0 to have MQ drive the MDB directly.
          I highly recommend you start by reading this white-paper
          on dev2dev.bea.com:
          "Whitepaper: Using Foreign JMS Providers with WebLogic Server"
          Note that this white-paper does not take into account
          some 8.1 ease-of-use features that simplify
          integration - see the 8.1 release notes for the two following
          JMS features:
          Foreign Vendor Destination Wrappers
          and
          Resource-Reference Pools
          (I may have the names wrong, but don't have time to look
          them up.)
          Note also that the very latest version of MQ provides
          a remote capable XA JMS client. Previous versions only
          supported transactions if the MQ client ran on the same
          server as the MQ server.
          Tom, BEA
          Frank Guerino wrote:
          > Hi,
          >
          > We currently run WLS 6.1, SP3. We'd like to use Message Driven Beans over MQSeries. Does anyone know what the minimum version of WLS/SP is needed to make this work? Also, is there any clear documentation on the BEA site. I haven't seen anything.
          >
          > Thanks,
          >
          > Frank
          >
          

Similar Messages

  • Java framework/toolkit for POJO, database persistence and XML

    Hi all,
    I've been wondering if there's a toolkit or framework for developing Java program (could be standalone Java program, EJBs etc.)
    I surfed around casually and found some but there isn't any detailed description of what and how each framework/toolkit does. So I hope to ask around if you've anything that you have used before and would like to point to me to look further.
    Given the huge number of open source toolkits, libraries and frameworks out there, it can be quite confusing as to which one is more suitable for me. Also with Sun's move into JDO and Java Persistence API, things become more messy and complicated - there isn't any clear leader in this area and things are starting to change with the inclusion of JDO which seems to be the future standard persistence API to use.
    So far, I've only worked with Hibernate for database persistence before. So I'm wondering if there're other options such as Hibernate with XDoclet, Castor and Spring framework etc. that can easily transform Plain Old Java Objects (POJO) -- hopefully using Java Reflection w/o using mapping XML files like in Hibernate -- into SQL for database persistence and XML text data and vice-versa. The current problem is that I've been spending tons of time writing code to transform data in Java objects into XML (using my own format) and also doing mapping files for Hibernate.
    I am hoping for something simple like:
    Object o = new Object();
    o.setProperty = "something";
    String xml = o.toXML(); // Convert object to XML text.
    o.save(); // Save to database.
    // The reverse: Parse XML into object and load from database
    Object o = new Object();
    o.fromXML(xml);
    o.load();
    // Properties should be initialized from database or XML.
    Anything similar to this out there?

    Hi,
    Just to share what I've found after surfing a bit more on this issue to promote more discussion on this area.
    For mapping of Java objects to XML, we can try looking more at Castor and JAXB.
    For database persistence to/from Java objects, look at Hibernate and JDO.
    There is this Hydrate project (hydrate.sourceforge.net) that I do not know where it fits in still. But it is supposed to do data transformation and mapping between Java objects, XML and database representation.
    Fyi.

  • MQ with MDB on WL 7.1

              I have setup MQ 5.2 and want to use it with MDB's on weblogic 7.1.
              I DO NOT WANT TO use bridging.
              I have a netscape LDAP server from which i get the JNDI context for the MQ.This
              works fine with a pure java client and reciever class.
              But when using MDB to recieve i get the following error:
              <Sep 3, 2003 11:00:23 AM EDT> <Warning> <EJB> <010061> <The Message-Driven EJB:
              com.message.MyMessageDrivenEJB is unable to connect to the JMS destination: JAVA
              BEEN.TEST. The EJB container will automatically attempt to re-establish the conn
              ection with the JMS server. This warning may occur during WebLogic Cluster start
              -up if the JMS destination is located on another server. When the JMS server con
              nection is re-established, the Message-Driven EJB will again receive JMS message
              s.
              The Error was:
              The JMS destination with the JNDI name: JAVABEEN.TEST could not be found. Please
              ensure that the JNDI name in the weblogic-ejb-jar.xml is correct, and the JMS
              d
              estination has been deployed.>
              here is my weblogic-ejb-jar.xml
              <?xml version="1.0" ?>
              <!DOCTYPE weblogic-ejb-jar (View Source for full doctype...)>
              - <!-- Sample MessageDriven bean Weblogic deployment descriptor
              -->
              - <weblogic-ejb-jar>
              - <weblogic-enterprise-bean>
              <ejb-name>com.message.MyMessageDrivenEJB</ejb-name>
              - <message-driven-descriptor>
              - <pool>
              <max-beans-in-free-pool>5</max-beans-in-free-pool>
              <initial-beans-in-free-pool>2</initial-beans-in-free-pool>
              </pool>
              <destination-jndi-name>cn=JAVABEEN.TEST</destination-jndi-name>
              <initial-context-factory>com.sun.jndi.ldap.LdapCtxFactory</initial-context-factory>
              <provider-url>ldap://aseq05.test.com:1390/ou=jms,ou=naming,o=com.test</provider-url>
              <connection-factory-jndi-name>cn=TEST0D2</connection-factory-jndi-name>
              </message-driven-descriptor>
              <jndi-name>MdbForMQ</jndi-name>
              </weblogic-enterprise-bean>
              </weblogic-ejb-jar>
              

    Yes, it works - even transactionally - although sometimes it
              takes a little fiddling.
              If you haven't already done so, I suggest that you start
              by reading the "Using Foreign JMS Providers with WebLogic Server"
              white-paper on http://dev2dev.bea.com/technologies/jms/index.jsp
              Furthermore note that WL 8.1 contains features that ease
              the integration task somewhat (the white-paper was written before 8.1).
              Do the tracing flags Greg suggested reveal anything?
              Tom
              sam wrote:
              > Greg,
              >
              > thks for taking time to respond, i appreciate.
              >
              > I still cant get this working, can we even use MDB( deployed on WL 7.1) with MQ
              > ??
              >
              > thks
              >
              > Sam
              >
              >
              >
              >
              > "Greg Brail" <[email protected]> wrote:
              >
              >>The basic stuff appears to be there and OK in weblogic-ejb-jar.xml. Are
              >>you
              >>sure that you have the classes for your LDAP provider in the server's
              >>CLASSPATH? That's a pretty common problem.
              >>
              >>You could also start your server with:
              >>
              >>-Dweblogic.ejb.jms.connect.debug=true
              >>-Dweblogic.ejb.jms.connect.verbose=true
              >>
              >>and the "StdoutDebugEnabled" flag set on the "Server" element in config.xml.
              >>This will cause the EJB container to print all sorts of diagnostic
              >>information that should help with the debugging.
              >>
              >> greg
              >>
              >>"sam" <[email protected]> wrote in message
              >>news:[email protected]...
              >>
              >>>I have setup MQ 5.2 and want to use it with MDB's on weblogic 7.1.
              >>>I DO NOT WANT TO use bridging.
              >>>
              >>>I have a netscape LDAP server from which i get the JNDI context for
              >>
              >>the
              >>MQ.This
              >>
              >>>works fine with a pure java client and reciever class.
              >>>
              >>>But when using MDB to recieve i get the following error:
              >>>
              >>><Sep 3, 2003 11:00:23 AM EDT> <Warning> <EJB> <010061> <The Message-Driven
              >>
              >>EJB:
              >>
              >>>com.message.MyMessageDrivenEJB is unable to connect to the JMS
              >>
              >>destination: JAVA
              >>
              >>>BEEN.TEST. The EJB container will automatically attempt to re-establish
              >>
              >>the conn
              >>
              >>>ection with the JMS server. This warning may occur during WebLogic
              >>
              >>Cluster
              >>start
              >>
              >>>-up if the JMS destination is located on another server. When the JMS
              >>
              >>server con
              >>
              >>>nection is re-established, the Message-Driven EJB will again receive
              >>
              >>JMS
              >>message
              >>
              >>>s.
              >>>The Error was:
              >>>The JMS destination with the JNDI name: JAVABEEN.TEST could not be
              >>
              >>found.
              >>Please
              >>
              >>> ensure that the JNDI name in the weblogic-ejb-jar.xml is correct,
              >>
              >>and the
              >>JMS
              >>
              >>>d
              >>>estination has been deployed.>
              >>>
              >>>
              >>>here is my weblogic-ejb-jar.xml
              >>>
              >>>
              >>>
              >>> <?xml version="1.0" ?>
              >>> <!DOCTYPE weblogic-ejb-jar (View Source for full doctype...)>
              >>>- <!-- Sample MessageDriven bean Weblogic deployment descriptor
              >>> -->
              >>>- <weblogic-ejb-jar>
              >>>- <weblogic-enterprise-bean>
              >>> <ejb-name>com.message.MyMessageDrivenEJB</ejb-name>
              >>>- <message-driven-descriptor>
              >>>- <pool>
              >>> <max-beans-in-free-pool>5</max-beans-in-free-pool>
              >>> <initial-beans-in-free-pool>2</initial-beans-in-free-pool>
              >>> </pool>
              >>> <destination-jndi-name>cn=JAVABEEN.TEST</destination-jndi-name>
              >>>
              >><initial-context-factory>com.sun.jndi.ldap.LdapCtxFactory</initial-context-f
              >>actory>
              >>
              >>>
              >><provider-url>ldap://aseq05.test.com:1390/ou=jms,ou=naming,o=com.test</provi
              >>der-url>
              >>
              >>> <connection-factory-jndi-name>cn=TEST0D2</connection-factory-jndi-name>
              >>> </message-driven-descriptor>
              >>> <jndi-name>MdbForMQ</jndi-name>
              >>> </weblogic-enterprise-bean>
              >>> </weblogic-ejb-jar>
              >>
              >>
              >
              

  • Ibm Visual age 3.5 Persistence Name Server with Oracle 8.1.7

    Hello every one!
    Iam facing a problem with visualage 3.5 persistence name server with Oracle DB. I configured PNS with oracle driver (thin driver).
    I could start the pns server, Servlet Engine.
    I loaded my application with PNS and oracle thin driver is not executing any queries.
    Without PNS, directly interacting with Oracle DB thru JDBC also works fine.
    Has anyone tried to use PNS with Oracle successfully?
    Thanks
    Keerthi

    hello there,
    check these things in u r mac before launching PNS..
    1: Is OracleDriver is there in the path i mean in the PNS path..
    2: Right click and check the properties...
    3: and also check the env properties and launch the PNS if PNS is launched then u can work on it...

  • Css11501 Whats the difference in persistence and stickiness

    css11501 Whats the difference in persistence and stickiness

    persistence is an HTTP concept.
    With HTTP 1.1 you can now have 1 TCP connection for all your HTTP requests.
    With this solution you reduce time by not having to open and close TCP connections for every request.
    It is sometimes needed to break persistence to guarantee a better load sharing between the servers.
    This is the case when multiplie users use the same proxy server.
    The proxy would generally open a persistent connection and use it for all the requests from all the users.
    Stickyness is a loadbalancing mechanism to guarantee that every TCP connections are sent to the same server.
    You can do stickyness based on source ip, or SSLID, or a cookie, or ...
    Stickyness is required when you have a website saving information about a user session [ie: a shopping basket].
    Regards,
    Gilles.

  • Deploying J2EE application with MDB

    Hi,
    I am looking for a solution to deploy a J2EE application with MDB and the resource provider as well. For now, I only see the solution to manually create a resource provider by the EM enterprise console or to add the resource provider into the application.xml in the oc4j instance.
    Any help appreciated
    Peter

    Hi,
    This looks like an incorrect AQ JMS Jar file. Please contact the AQ team if this is a known issue and if required log a tar against AQ.
    Thanks
    Raja

  • Issue with MDB (jms Queue) in weblogic 8.1

              Hi all...
              I'm facing a strange kind of problem with MDB using weblogic 8.1.
              The code worked perfectly in weblogic 7.0.
              This is wht i'm trying to achieve..
              i'm having a MDB which implements a onMessage().
              I'm publishing message thru a standalone client. Publishing works fine..
              The problem is onMessage(javax.jms.Message msg) is never been called :-(.
              when i monitor it shows that messages are recieved..
              Am is missing something that is really important..
              here is my code
              package com.csxwt.zodiac.service.domain;
              import javax.ejb.*;
              import javax.jms.*;
              import javax.naming.*;
              import java.io.Serializable;
              //import com.csxwt.zodiac.service.domain.TestObject;
              public class MDBTestBean implements MessageDrivenBean, MessageListener {
              MessageDrivenContext messageDrivenContext;
              public void ejbCreate() throws CreateException {
              System.out.println("into the ejb create");
              /**@todo Complete this method*/
              public void ejbRemove() {
              /**@todo Complete this method*/
              public void onMessage(javax.jms.Message msg) {
              System.out.println("into the onMessage method 1 ");
              ObjectMessage objectMsg = null;
              String strObject = "Test";
              try
              System.out.println("into the onMessage method 2 ");
              if (msg instanceof ObjectMessage)
              System.out.println("into the onMessage method 3");
              objectMsg = (ObjectMessage) msg;
              Serializable serializableObj = objectMsg.getObject();
              String test = serializableObj.toString();
              System.out.println("value of the message sent " + test);
              TestObject test1 = null;
              if(serializableObj instanceof TestObject )
              test1 = (TestObject) serializableObj;
              System.out.println("after getting the test value ");
              System.out.println("getting the test object valuye " + test1.getName());
              else
              return;
              catch (Exception e)
              System.out.println("Message Bean:unexpected Exception thrown ");
              e.printStackTrace();
              public void setMessageDrivenContext(MessageDrivenContext messageDrivenContext)
              System.out.println("into MDB context");
              this.messageDrivenContext = messageDrivenContext;
              here are the 2 xml files....
              <ejb-jar>
              <enterprise-beans>
              <message-driven>
              <display-name>MDBTest</display-name>
              <ejb-name>MDBTest</ejb-name>
              <ejb-class>com.csxwt.zodiac.service.domain.MDBTestBean</ejb-class>
              <transaction-type>Container</transaction-type>
              <message-selector>GATE_LANE</message-selector>
              <message-driven-destination>
              <destination-type>javax.jms.Queue</destination-type>
              </message-driven-destination>
              </message-driven>
              </enterprise-beans>
              <assembly-descriptor>
              <container-transaction>
              <method>
              <ejb-name>MDBTest</ejb-name>
              <method-name>*</method-name>
              </method>
              <trans-attribute>Required</trans-attribute>
              </container-transaction>
              </assembly-descriptor>
              </ejb-jar>
              <weblogic-ejb-jar>
              <weblogic-enterprise-bean>
              <ejb-name>MDBTest</ejb-name>
              <message-driven-descriptor>
              <pool>
              <max-beans-in-free-pool>200</max-beans-in-free-pool>
              <initial-beans-in-free-pool>20</initial-beans-in-free-pool>
              </pool>
              <destination-jndi-name>zodiac.jms.queue.HardWareOutMessageQueue</destination-jndi-name>
              </message-driven-descriptor>
              </weblogic-enterprise-bean>
              </weblogic-ejb-jar>
              Am i missing something somewhere?????
              any help in this is highly appreciated..
              thanks in advance.
              r
              sasi
              

    Check your log for error and warning messages. If there
              are some, they should help trace down the problem. If there
              aren't any, try confirm that your MDB is deploying in
              the first place.
              The MDB below is a Q MDB, but you write below that your client
              is a "publisher". "Publisher" implies a topic producer, not
              a queue producer, and topic producer can't publish to queues.
              Tom
              T. Sasii Dharma wrote:
              > Hi all...
              >
              > I'm facing a strange kind of problem with MDB using weblogic 8.1.
              > The code worked perfectly in weblogic 7.0.
              > This is wht i'm trying to achieve..
              > i'm having a MDB which implements a onMessage().
              > I'm publishing message thru a standalone client. Publishing works fine..
              > The problem is onMessage(javax.jms.Message msg) is never been called :-(.
              > when i monitor it shows that messages are recieved..
              > Am is missing something that is really important..
              >
              > here is my code
              >
              > package com.csxwt.zodiac.service.domain;
              >
              > import javax.ejb.*;
              > import javax.jms.*;
              > import javax.naming.*;
              > import java.io.Serializable;
              > //import com.csxwt.zodiac.service.domain.TestObject;
              >
              > public class MDBTestBean implements MessageDrivenBean, MessageListener {
              > MessageDrivenContext messageDrivenContext;
              > public void ejbCreate() throws CreateException {
              > System.out.println("into the ejb create");
              > /**@todo Complete this method*/
              > }
              > public void ejbRemove() {
              > /**@todo Complete this method*/
              > }
              > public void onMessage(javax.jms.Message msg) {
              > System.out.println("into the onMessage method 1 ");
              > ObjectMessage objectMsg = null;
              > String strObject = "Test";
              > try
              > {
              > System.out.println("into the onMessage method 2 ");
              > if (msg instanceof ObjectMessage)
              > {
              > System.out.println("into the onMessage method 3");
              > objectMsg = (ObjectMessage) msg;
              > Serializable serializableObj = objectMsg.getObject();
              > String test = serializableObj.toString();
              > System.out.println("value of the message sent " + test);
              > TestObject test1 = null;
              > if(serializableObj instanceof TestObject )
              > {
              > test1 = (TestObject) serializableObj;
              > System.out.println("after getting the test value ");
              > System.out.println("getting the test object valuye " + test1.getName());
              > }
              >
              > }
              > else
              > {
              > return;
              > }
              >
              > }
              > catch (Exception e)
              > {
              > System.out.println("Message Bean:unexpected Exception thrown ");
              > e.printStackTrace();
              > }
              >
              > }
              > public void setMessageDrivenContext(MessageDrivenContext messageDrivenContext)
              > {
              > System.out.println("into MDB context");
              >
              > this.messageDrivenContext = messageDrivenContext;
              > }
              > }
              >
              >
              > here are the 2 xml files....
              >
              > <ejb-jar>
              > <enterprise-beans>
              > <message-driven>
              > <display-name>MDBTest</display-name>
              > <ejb-name>MDBTest</ejb-name>
              > <ejb-class>com.csxwt.zodiac.service.domain.MDBTestBean</ejb-class>
              > <transaction-type>Container</transaction-type>
              > <message-selector>GATE_LANE</message-selector>
              > <message-driven-destination>
              > <destination-type>javax.jms.Queue</destination-type>
              > </message-driven-destination>
              > </message-driven>
              > </enterprise-beans>
              > <assembly-descriptor>
              > <container-transaction>
              > <method>
              > <ejb-name>MDBTest</ejb-name>
              > <method-name>*</method-name>
              > </method>
              > <trans-attribute>Required</trans-attribute>
              > </container-transaction>
              > </assembly-descriptor>
              > </ejb-jar>
              >
              > <weblogic-ejb-jar>
              > <weblogic-enterprise-bean>
              > <ejb-name>MDBTest</ejb-name>
              > <message-driven-descriptor>
              > <pool>
              > <max-beans-in-free-pool>200</max-beans-in-free-pool>
              > <initial-beans-in-free-pool>20</initial-beans-in-free-pool>
              > </pool>
              > <destination-jndi-name>zodiac.jms.queue.HardWareOutMessageQueue</destination-jndi-name>
              > </message-driven-descriptor>
              > </weblogic-enterprise-bean>
              > </weblogic-ejb-jar>
              >
              > Am i missing something somewhere?????
              > any help in this is highly appreciated..
              >
              > thanks in advance.
              >
              > r
              > sasi
              

  • Database transaction management with MDB

    Hi all,
    I'm working on an Online Order Processing system. One of the functionalities that we've developed is mass order upload, that consists of one CSV file with a lot of orders inside.
    To have concurrent processing on the processing of an order upload file (as the orders present in file are independent of each), we've implemented a Message Driven Bean that receives an order to process in a request queue, processes the order and answers with the processed order in a response queue. The flow is like:
    1- Struts action is invoked to handle order upload.
    2- A method on a session bean is called to process the file.
    3- The session bean parses the file, separates all the order lines by origin customer (one order for each customer in the file) and sends messages to the request queue.
    4- For each order, an instance of the MDB will receive the message, process the order and send the processed order via response queue.
    5- After the Session Bean sends all the requests with the orders to process, he will wait for all the responses in the response queue until all the orders are processed and provide a valid answer, according to the whole process result, to the online user.
    My doubt is how can I manage efficiently transactions (mainly database transactions) so if inside a bunch of 200 orders processed concurrently one fails, I am able to rollback all the database transactions used by the MDB to process all the orders?
    As the failure of an order can be related to some error in the file, I want to rollback everything, give a message to the user to fix the file and allow him to upload the whole file (fixed) again.
    Any help would be appreciated.
    Regards,
    Campos

    Hi,
    1) As Of Version 4.6 C BAPIs has autocommit.ie Once you call a BAPI from anywhere before it returns it commits.So, we no need to worry about that.
    But some BAPI's doesn't in that case only we need to make COMMIT call.
    2)Transaction doesn't depend on Client object.
    3)No.
    Regards,
    Abdul Raheem .S

  • How do I use Qt and OpenGL with Visual Studio

    Hi! I mainly want to program in C++ and I want to use Qt and OpenGL with Visual Studio.
    I am currently revising C++ and later on i am going to start reading Qt and OpenGL. I have a background of
    Embedded firmware design(C and Assembly).
    The Visual Studio Version I have is 2013 ultimate. How do I use Qt and OpenGL with Visual Studio?
    Thanks
    Alexandros

    Hi ClassicalGuitar,
    The forum supports VS setup and installation. And your issue is not about the forum. I will move the thread to off-topic forum. Thanks for your understanding.
    Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click HERE to participate the survey.

  • Open report with "Save as" and "Open with" dialogue

    Hi,
    I'm using jasper reports within my application. I manage to open them in a new window but in that case the url containing JasperServer username and password is shown. I would like to open the report without showing the url.
    I tryed using a database procedure (http://sqlcur.blogspot.com/2009/02/jasperreports-in-apex.html) but all I get is a alert window saying "file does not begin with ' pdf-'". Couldn't see what is the problem (I used the same procedure as Ino has in his example) so I thought of another way. Is it possible, when someone clicks a button to open a report, to open that report with a "Save as" and "Open with" pop up window?
    The javascript function that I use:
    <script language="JavaScript" type="text/javascript">
    function openLAPopUpJasper(url){
    w = open(url,"winLov","toolbar=false,menubar=false,location=false,resizable=yes, //scrollbars=yes,status=yes,fullscreen=true");
    if (w.opener == null)
    w.opener = self;
    w.focus();
    </script>
    Thanks in advance!
    Edited by: Josip on Oct 29, 2009 2:55 AM

    Anyone?

  • Troubleshoting help needed:  My iMac keeps crashing and restarting with a report detail: "spinlock application timed out"  What can I do to fix this?timed out"

    Troubleshooting help needed:  My iMac keeps crashing and restarting with a notice: "Spinlock application timed out"  What can I do?

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the page that opens.
    Select the most recent panic log under System Diagnostic Reports. Post the contents — the text, please, not a screenshot. In the interest of privacy, I suggest you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header and body of the report, if it’s present (it may not be.) Please don't post shutdownStall, spin, or hang reports.

  • Is there a way to create a PDF form that ANYONE can fill out and SAVE with their content?

    Is there a way to create a PDF form that ANYONE can fill out and SAVE with their content? By anyone, I mean someone who can download and use the free Adobe Reader, on either a Mac or PC. I have Acrobat Pro, and would like to be able to create forms that can not only be filled out and printed, but saved and emailed, which is not an option with the forms I have created to date. They can be filled out, but not saved, with Adobe Reader.
    TIA,
    Nancy

    To do what Dave indicated you need to do, it depends on what version of Acrobat you have:
    Acrobat 8: Advanced > Enable Usage Rights in Adobe Reader
    Acrobat 9: Advanced > Extend Features in Adobe Reader
    Acrobat 10: File > Save As > Reader Extended PDF > Enable Additional Features
    Acrobat 11: File > Save as Other > Reader Extended PDF > Enable More Tools (includes form fill-in & save)
    I wonder what it will be next time?

  • My Outlook/iCloud calendar invites to others appear to work on my end and sync with my PC and mobile, but when other people "accept" the invite, it will not populate/add in to their calendar. How can i fix this without turning off iCloud?

    My Outlook/iCloud calendar invites to others appear to work on my end and sync with my PC and mobile, but when other people "accept" the invite, it will not populate/add in to their calendar. How can I fix this without turning off iCloud?
    I am at a new office that uses Outlook (not Outlook Exchange) which does not sync with my mobile... I just got iCloud set up on my PC to sync my contacts, calendar, reminders, etc... The sync worked (not without flaws, but the other issues seem solvable... I think), so that i can now see all my appointments on both my phone and on my PC. The problem I am having is that iCloud moved all of my calendar items from Outlook into iCloud calendar and now when I send out meeting/calendar invites the recipients may accept them, but the meeting does not get added to their calendar. This is a huge problem and may mean that i need to turn off iCloud.
    Does anyone know how to fix this?
    Thanks!

    I am replying to my own post here as I seem to have fixed the problem.
    I do have some calendars that are shared. Some of those are shared with users who have time zone support turned on. So i activated time zone support on my iphone, then deleted my icloud subscription. I then signed in to icloud again and voila... problem solved.
    It is a weird one as the other calendar views were always fine and when you opened an event that appeared in the wrong day (on list view), the correct date of the event was shown in the information...
    one more bug in a complicated system I guess

  • My ipod nano is no longer recognized by itunes after I installed windows 8.1.  The ipod nano still is recognized and works with a Windows 7 computer

    My ipod nano is no longer recognized by itunes after I installed windows 8.1.  The ipod nano still is recognized and works with a Windows 7 computer

    Hello, Pete. 
    Here is an article I would recommend going through when an iPod is not recognized by iTunes or the computer.
    iPod not recognized in My Computer and in iTunes for Windows
    http://support.apple.com/kb/ts1369
    Usually the resolution is updating the Apple Mobile Device Driver.  See the section labeled Verify that the Apple Mobile Device USB Driver is installed > For Windows Vista, Windows 7, and Windows 8 > Update the Apple Mobile Device Driver.
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538
    Cheers,
    Jason H. 

  • All my purchased song from iTunes are not playing complete (iPod and computer with Windows Vista), unexpectedly stops and continues with next song. What am I doing wrong?

    All my purchased song from iTunes are not playing complete (iPod and computer with Windows Vista), unexpectedly stops and continues with next song. What am I doing wrong?

    Are the songs playing whole in iTunes? if not download them again.
    else read this Apple Support Article on your problem
    Have a nice day!

Maybe you are looking for

  • Photoshop 7 crashing on launch, Mac OS 10.4.11

    If I post the crash report, can someone help me?  I have been running and working in PS 7 on my Mac G4 tower for years.  Yesterday, it stopped launching.  I can't think of what I may have installed, other than regular updates. Here is the entire cras

  • Trace to know the server name or server's IP

    Hi, Given one domain name like NTNET11 how can I trace which server name or IP, is inside having all the AD details? Many Thanks & Best Regards, Hua Min

  • ZipFiles and JTree

    I am developing a tool which compares to source zip files and generate report. I got stuck in the middle of the project. Do anybody help in extracting z zip file and displaying the whole contents in zip file using JTree format. I was able to extract

  • My keyboard on my computer keeps switching to using symbols as I'm typing.

    My keyboard on my computer keeps switching to using symbols as I'm typing. I've gone through and changed/reset/etc the keyboard, text, and language settings. I've tried to figure out if a key is stuck, but couldn't find one. I've disabled function ke

  • Assigning Account Assignment to Depreciation Area

    Hello All, I want trying to Assign Account Assignmebt to Depreciation Area using Transaction code ACSET. Details of the assignment i am trying to add are - Depreciation Area  - 15 Account Assignment Object  - KOSTL Asset Transaction type - * Account