I dont want entity references to be resolved

Hi,
I have some entities in my XML file. I create a DOM Document out of the file for modifying. During creation of the Document my entities get expanded. Now when I write it back to the file, I have the expanded entities in my file. That is :
<something param="herewego & a m p ;">
is written to the file as
<something param="herewego&">
So the next time i read the file. It gives me a long error message saying the entity is not proper.
I have tried using setExpandEntityRefernce(false) in the DocumentBuilderFactory but there is no effect. Is there something else I need to configure?, I am using Xerces.
Can anybody help me out. I am in a desperate situation.
Thanks in advance,
Josy

I don't believe the Xerces parser can be configured to leave entity references as is if the entity reference is located in an attribute value. I think you might have more luck if the entity reference is inside an element.

Similar Messages

  • HTML Character entity references on SQLQuery

    I am trying retrieve the data thru XMLElement and I like to do a HTML Character entity references. I guess XMLElement does it with the proper character set translations and I was not successul in getting it correct. Could you please help me out. My DB character set it UTF-8.
    For example, the "acute" e needs to be translated to its hexa equivalent. I tried it by setting the mid-tier's client's NLS but with no success. I dont want to scan the each character and convert it.
    create table master.temp_xml_encode
    (party_name_id NUMBER(15),
    party_id NUMBER(15),
    party_name VARCHAR2(200) );
    PARTY_NAME_ID PARTY_ID PARTY_NAME
    3831587 5496840 The West Company México, S.A. de C.V.
    3844362 5496730 Schiønning & Arvé A/S
    3847940 5496836 West Rubber de España, S.A.
    4047634 5983166 Timberland España, S.L.
    4266163 5983166 Timberland España, S.A.
    4285954 6482794 The Young Women¿s Christian Association of Central New Jersey
    SELECT XMLELEMENT("party_id", party_id,
    xmlforest(party_name_id AS "partynameid",
    party_name AS "partyname"
    FROM master.temp_xml_encode
    Thanks for your help

    And Yes forgot to add one thing, the index.jsp is a part of the application supplied by vendor and I do not have src of the struts actions (no control on server side code).
    I need to find a solution from client's side.

  • Entity Reference difficulties

    I'm trying to generate an XML so that it shows the Entity References. I need help figuring what I'm doing wrong. Complete source is included below.
    When I run the included source, I get:
    <?xml version="1.0"encoding="UTF-8"?>
    <xmlTest>
    <polish text1="�"/>
    </xmlTest>But what I really want is:
    <?xml version="1.0" encoding="UTF-8"?>
    <xmlTest>
    <polish text1="& # 0 2 2 5 ;"/>
    <note value="Note that the forum is too smart for my special formatting. Please disregard the spaces in between each character in the previous element. This current element is just a note is is also to be ignored."/>
    </xmlTest>Source:
    import java.io.*;
    import javax.xml.parsers.DocumentBuilder;
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.transform.OutputKeys;
    import javax.xml.transform.Transformer;
    import javax.xml.transform.TransformerFactory;
    import javax.xml.transform.dom.DOMSource;
    import javax.xml.transform.stream.StreamResult;
    import org.w3c.dom.*;
    * @author pclement
    public class XmlTransformerEntityIssue {
        /** Creates a new instance of XmlTransformerEntityIssue */
        public XmlTransformerEntityIssue() {
        public static void main(String a[]) throws Exception {
            XmlTransformerEntityIssue test = new
    XmlTransformerEntityIssue();
            test.execute();
        public void execute() throws Exception {
            Document doc = generateTempDoc();
            StringBuffer text = transform(doc);
            doc = null;
            System.out.println(text);
            File file = File.createTempFile("xkgjfhfhf", ".xml",
    new File("c:/temp/"));
            FileWriter w = new FileWriter(file);
            w.write(text.toString());
            w.flush();
            w.close();
            file = null;
        private Document generateTempDoc() throws Exception {
            DocumentBuilderFactory factory =
    DocumentBuilderFactory.newInstance();
            factory.setValidating(false);
            DocumentBuilder docBuilder =
    factory.newDocumentBuilder();
            Document doc = docBuilder.newDocument();
            Element xmlTest  =
    (Element)doc.createElement("xmlTest");
            // try polish
            Element node = (Element)doc.createElement("polish");
            node.setAttribute("text1", "\u00E1");
            // append element
            xmlTest.appendChild(node);
            node = null;
            doc.appendChild(xmlTest);
            return doc;
        private StringBuffer transform(Document doc) throws
    Exception {
            TransformerFactory tFactory =
    TransformerFactory.newInstance();
            Transformer transformer = tFactory.newTransformer();
            DOMSource source = new DOMSource(doc);
            StringWriter writer = new StringWriter();
            StreamResult result = new StreamResult(writer);
            transformer.transform(source, result);
            doc = null;
            return writer.getBuffer();
    }

    Turns out, that the character '�' CANNOT be
    e represented raw in UTF8. As UTF8 uses the first
    128 chars for English, it uses the rest for special
    formatting. It is quite well documented.I don't know what you mean by "raw" here. Your characterization of UTF-8 is wrong, although Microsoft's description is correct. It is possible to represent &aacute; in UTF-8, it just takes two bytes. I suppose you might call this "special formattting" but I certainly don't. That's just how UTF-8 represents characters.
    http://msdn.microsoft.com/library/default.asp?url=/lib
    rary/en-us/dnxml/html/xmlencodings.aspYou might want to read this article too:
    http://skew.org/xml/tutorial/
    I feel it describes things better for Java users.
    After having read MS's site, I then went to
    O'Reilly's Java Internationalization book. On pages
    166 and 167 is where the following block of code came
    from:
    byte bytes[] = text.getBytes("UTF8");
    return new String(bytes);
    I don't have the book. Perhaps there's a context where that code is meaningful. There are certainly plenty of contexts where it is not.
    I realize that it's a lot easier to read and comment
    than to do a POC (proof of concept). But I'm not
    sure why you say that the original XML is fine!Looks like I was wrong about that. Apparently you were not generating the original XML correctly. Still, you shouldn't have to resort to hacks like that to get non-ASCII characters into XML. It looks like you read it from a UTF-8 encoded file, incorrectly using your system's default encoding. In that case the O'Reilly hack would reverse that error. At least it would for that particular character. If it had been a Chinese character it probably wouldn't have worked.
    The new code runs quite well and comes from O'Reilly
    - a source I trust.It's hard to argue with working software.

  • Entity Reference embedded within colspec attribute name-table col. heading

    My team is working on a project that involves converting MS Word documents to XML. The XML is applied to a stylesheet (*.xsl) which generates a *.pdf document. Is it valid to include an xml entity reference within a colspec attribute name? For example, the xml document would contain the following code for a table:
    <t id="t1109681052">TABLE 1.0 My Favorite Restaurants</t>
    <tbl id="tbl921133606" val="1.0">
    <TblHdg num="1">Table 1.0 My Favorite Restaurants </TblHdg>
    <colspec id="colspec1148420628" name=" Restaurant Name" width="0.61875"/>
    <colspec id="colspec201089067" name="Type of Authentic Cuisine" width="1.61875"/>
    <colspec id="colspec201089069" name="Location" width="1.61875"/>
    </tbl>
    Is the following code valid in XML to produce the results in the sample table below when the XML is applied to a stylesheet (xsl)?
    <colspec id="colspec201089067" name="Type of "Authentic" Cuisine" width="1.61875"/>
    The desired table and column titles would be as follows:
    Restaurant Name ----     Type of “Authentic” Cuisine ----     Location
    Le Chantecler --------------->French     The Negresco Hotel –
    Promenade des Anglais Nice France
    La Coupola -------------------->French     The Mirabeau Hotel
    1 Princess Grace Ave
    Monte Carlo Monaco
    What is needed in the XML code to produce the table column heading with quotes embedded around the word "Authentic"?
    Please advise. Thanks so much and have a prosperous and memorable holiday.

    SOLUTION RESOLVED FOR THIS MESSAGE.

  • [SOLVED] ADF BC : View Object "second level" Entity reference issue

    hi
    If I insert a row in a View Object that uses "two levels" of Entity references, the attributes of the Entity on the "second level" don't get a value.
    Consider these tables:
    MY_ROW (MY_ROW_ID, MY_ROW_STUFF, MY_ROW_LU1_ID)
    MY_ROW_LU1 (MY_ROW_LU1_ID, MY_ROW_LU1_STUFF, MY_ROW_LU1_LU1_ID)
    MY_ROW_LU1_LU1 (MY_ROW_LU1_LU1_ID, MY_ROW_LU1_LU1_STUFF)
    Where MY_ROW.MY_ROW_LU1_ID is a "look-up" in MY_ROW_LU1 and MY_ROW_LU1.MY_ROW_LU1_LU1_ID is a "second level look-up" in MY_ROW_LU1_LU1.
    I created default Entities and Associations on these tables and a View Object that uses all 3 Entities (MyRow as Updatable, MyRowLu1 and MyRowLu1Lu1 as Reference).
    See example code in
    http://verveja.footsteps.be/~verveja/files/oracle/ViewObjectEntityReferenceIssue-v0.03.zip
    (contains no Java code, all out-of-the-box ADF BC)
    problem scenario:
    If run the MyRowService Application Module in the Oracle Business Component Browser and "open" the MyRowViewAll View Object instance, I get the rows and their related "look-up values".
    If I click the "Insert a new record" button and fill out values for MyRowId, MyRowStuf and MyRowLu1IdEntity, I only get "look-up" values for the "first level". While the "second level" stays empty.
    For example, a MyRowLu1IdEntity of "2003" gives a MyRowLu1Stuff value of "2003 stuff", but no value in MyRowLu1Lu1Stuff.
    What am I doing wrong? What should I change to also get a value in the "second level" MyRowLu1Lu1Stuff attribute?
    many thanks
    Jan Vervecken

    Jan,
    If you create a view object on Emp and Dept, with Dept as a reference entity, you might choose to build the view object to only include the:
    Emp.Empno (required, since it's the PK of Emp entity usage)
    Emp.Ename (included since you want to show the ename)
    Dept.Deptno (required, since it's the PK of the Dept entity usage)
    Dept.Dname (included since you want to show the dname)
    The wizard enforces the inclusion of the required attributes above.
    When you run this view object, a join is performed and you see the reference data.
    Now, if you want to allow the user to UPDATE the reference data, you need to add one more attribute to the list of attributes:
    Emp.Empno
    Emp.Ename
    Emp.Deptno (To allow user to change Deptno employee belongs to)Dept.Deptno
    Dept.Dname
    At this point, not only is the join performed for you, but the ADF BC reference mechanism reacts to any modification of the Emp.Deptno attribute, correctly showing the reference information for that new foreign-key-referenced department (even before commiting and requerying, at which time the SQL join would pickup that correct, related information).
    The "second level" problem you describe in this thread is simply the same issue described here as a master/first-level-detail situation, taken to its logical next step. If you want the end-user to be able to change the second-level detail to which the first-level-detail is associated, you need to include the first-level-detail's foreign key attributes in the view object's select list. Otherwise, there is no foreign key attribute whose value-change event the framework can react to in order to coordinate the related reference data in the row.
    I've blogged a link to a working example of a four-level reference information view object here:
    http://radio.weblogs.com/0118231/2007/05/09.html#a818
    based on the HR schema.

  • Dont want to put pasword again and again

    how i will turn off key pad lock password
    in menu-options -security options-general setting-pasword is enabled
    i dont want to put pasword again and again i want to disable it
    please help me friends

    EMOTION wrote:
    in menu-options -security options-general setting-pasword is enabled
    Set that (in red above) to DISABLED, and save.
    If you have a red lock symbol next to that setting you cannot. If that is the situation, you are probably in a corporate BES which REQUIRES you to use a password via the IT Policy set to the device by your employer.
    Is that your situation?
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Non-Latin is converted into entity reference in "Copy Text" of Extract

    The Japanese (other than Latin) text which I copied in a clipboard is converted into entity reference when I perform "copy text" in a letter layer using Extract for Brackets.
    Is this problem a known thing? This does not rise in Extract of Creative Clouds, Dream Weaver.
    An example:
    Oh, it is → &#12354;
    아 → &#50500;
    أ نا ← &#1571;&#1606;&#1575;

    Hi Bernard,
    This is really a 'browser issue' (which is probably not what you wanted to hear). Since it's up to the browser how it handles copy/paste.

  • I want to recover only c partition cause i have shrieked the c partition and i dont want to lose dat

    Hi
    i have hp pavilion dv6 6180se ..i have made the recovery media disks..then i shrinked the c partition to make E partition that used to store my data...now i want to recover my windows with recovery media disks without losing the E partition that i'v made..because there is a lot of data i dont want to lose and i can't move it to external storge.
    please could you guide me how to make this procedure ?
    Best regards
    walid shahin
    HP pavilion DV6
    serial number {Removed for privacy}
    PRODUCT NUMBER: QF459EA#ABV
    INSTALLED WINDOWS: WINDOWS 7 64BIT SP1

    Hi,
    There is no option when using your Recovery Discs to reinstall that will allow you to keep a custom partition, so you'll have to do this another way.  A possible option is described below.
    First, click the Start Menu, open Computer and double-click Local Disk C - you should see a folder called swsetup.  This will contain all the driver installers and practically all of the software installers for your notebook - back this up to an external device/media.
    Next, create a retail installation disc yourself - just download the correct Disc Image ( this must be the same as the version you currently have )  from the link below and use an application such as ImgBurn to burn the ISO correctly to a blank DVD - a guide on using ImgBurn to write an ISO to a disc is Here.
    Windows-7 sp1-iso-official-32-bit-and-64-bit
    With reference to the guide on the link below, use this disc to perform the installation - when you get to Step 7, choose the Custom ( advanced ) option and select the C partition as the destination to install Windows.
    Windows 7 Custom Installation.
    Enter the Windows activation key found on the underside of your notebook when requested and when the installation has completed, use the 'Phone Method' detailed in the link below to activate the OS - this method supported by Microsoft and is popular with people who just want a clean installation of Windows 7 without the additional software load normally bundled with OEM installations.
    http://www.kodyaz.com/articles/how-to-activate-windows-7-by-phone.aspx
    When the installation has completed, use the installers in the swsetup folder to reinstall your drivers etc.
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • Dont want COPA doc for credit memo billing in costing based copa

    Hi,
    We are in costing based COPA
    Created one mis sale account with CE 1 as we dont want to drive to COPA
    when i did billing the credit memeo am getting Profitability segment for primary cost element not advisable.
    we have not mapped the Condition type to COPA field also.
    Can you help us how to resolve this.
    We need billing accounting document with out COPA document.
    thanks,
    Sudha

    Hi Sudha,
    The best way will be to reset the fields in transaction KE4W if you do not want a COPA document for a particular billing type.
    Regards,
    Abhisek

  • I dont want to throw an exception !!

    Hi,
              I have a stateless session bean, that in turn calls BMP entity bean. The
              transaction attribute for session bean is Required and that of entity bean
              is Supports.
              Now if some database error occurs, I want to catch that exception in the
              stateless bean, and dont want to rethrow it. How can I do it. Weblogic still
              throws the exception.
              The code of session bean looks something like this :
              try
              // Call entity bean
              catch (Exception e)
              // Dont do anything !!
              on the client program, that calls the session bean, am getting this
              exception :
              java.rmi.UnexpectedException: Unexpected exception in
              src.com.etouch.scheduler.stateless.schedulerapi.impl.SchedulerApiBean.create
              Schedule():
              javax.transaction.SystemException: Transaction not active
              at weblogic.jts.internal.TxContext.commit(TxContext.java:251)
              at
              weblogic.ejb.internal.StatelessEJBObject.postInvokeOurTx(StatelessEJBObject.
              java:88)
              at weblogic.ejb.internal.BaseEJBObject.postInvoke(BaseEJBObject.java:758)
              at
              src.com.etouch.scheduler.stateless.schedulerapi.impl.SchedulerApiBeanEOImpl.
              createSchedule(SchedulerApiBeanEOImpl.java:62)
              at
              src.com.etouch.scheduler.stateless.schedulerapi.impl.SchedulerApiBeanEOImpl_
              WLSkel.invoke(SchedulerApiBeanEOImpl_WLSkel.java:88)
              at
              weblogic.rmi.extensions.BasicServerObjectAdapter.invoke(BasicServerObjectAda
              pter.java, Compiled Code)
              at
              weblogic.rmi.extensions.BasicRequestHandler.handleRequest(BasicRequestHandle
              r.java:77)
              at
              weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:1
              5)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java, Compiled Code)
              ; nested exception is:
              javax.transaction.SystemException: Transaction not active
              javax.transaction.SystemException: Transaction not active
              Exception in thread "main" Process Exit...
              What am I doing wrong here ? The idea is, I dont want the client to know
              about this error.
              Thanks
              Amit
              

    Amit,
              I believe that what is actually happening here is that the transaction is
              not actually being rolled back until the session bean method, which is
              participating in the transaction, is completing. I too am having this
              problem and currently have not found a solution short of adding an extra
              layer which is not an option. You also appear to be having another problem
              with the transaction upon which I cannot comment.
              Any help would be greatly appreciated.
              Regards
              Conrad Rowlands
              Callards Technology.
              "Amit" <[email protected]> wrote in message
              news:[email protected]...
              > Hi,
              > I have a stateless session bean, that in turn calls BMP entity bean. The
              > transaction attribute for session bean is Required and that of entity bean
              > is Supports.
              > Now if some database error occurs, I want to catch that exception in the
              > stateless bean, and dont want to rethrow it. How can I do it. Weblogic
              still
              > throws the exception.
              > The code of session bean looks something like this :
              > try
              > {
              > // Call entity bean
              > }
              > catch (Exception e)
              > {
              > // Dont do anything !!
              > }
              >
              > on the client program, that calls the session bean, am getting this
              > exception :
              >
              > java.rmi.UnexpectedException: Unexpected exception in
              >
              src.com.etouch.scheduler.stateless.schedulerapi.impl.SchedulerApiBean.create
              > Schedule():
              > javax.transaction.SystemException: Transaction not active
              > at weblogic.jts.internal.TxContext.commit(TxContext.java:251)
              > at
              >
              weblogic.ejb.internal.StatelessEJBObject.postInvokeOurTx(StatelessEJBObject.
              > java:88)
              > at weblogic.ejb.internal.BaseEJBObject.postInvoke(BaseEJBObject.java:758)
              > at
              >
              src.com.etouch.scheduler.stateless.schedulerapi.impl.SchedulerApiBeanEOImpl.
              > createSchedule(SchedulerApiBeanEOImpl.java:62)
              > at
              >
              src.com.etouch.scheduler.stateless.schedulerapi.impl.SchedulerApiBeanEOImpl_
              > WLSkel.invoke(SchedulerApiBeanEOImpl_WLSkel.java:88)
              > at
              >
              weblogic.rmi.extensions.BasicServerObjectAdapter.invoke(BasicServerObjectAda
              > pter.java, Compiled Code)
              > at
              >
              weblogic.rmi.extensions.BasicRequestHandler.handleRequest(BasicRequestHandle
              > r.java:77)
              > at
              >
              weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:1
              > 5)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java, Compiled Code)
              > ; nested exception is:
              > javax.transaction.SystemException: Transaction not active
              > javax.transaction.SystemException: Transaction not active
              > Exception in thread "main" Process Exit...
              >
              >
              > What am I doing wrong here ? The idea is, I dont want the client to know
              > about this error.
              > Thanks
              >
              > Amit
              >
              >
              >
              

  • My iphone 4 dont want to start beyond the apple logo

    my iphone 4 dont want to start beyond the apple logo

    Hello diyaakaraman69,
    That symptom is listed in this article (it is having problems booting),
    iOS: Not responding or does not turn on
    http://support.apple.com/kb/TS3281
    5. If the above steps do not resolve the issue, or the if the screen remains black or shows a persistent Apple logo, try restoring with iTunes:
         1.Connect the device to your computer and open iTunes.
         2. If the device appears in iTunes, select and click Restore on the Summary pane. Learn more about restoring iOS software.
         3. If the device doesn't appear in iTunes, try to force the device into recovery mode, and then restore it.
    6. If the above steps do not resolve the issue, contact Apple.
    Note it suggests a restore as described here:
    Use iTunes to restore your iOS device to factory settings
    http://support.apple.com/kb/HT1414
    Please go through that article.
    Thank you for using Apple Support Communities.
    Nubz

  • One Apple ID for iTunes...dont want to share photos/contacts/calendars....now what???

    We have always just had the one Apple ID for the family....sync my iPod and the kids iPod along with my iPad.  Just upgraded to iOS 5 on my iPhone 4 and hubby's iPhone 4....now our calendars have merged.  We dont mind sharing apps but dont want to deal with each other calendars or contacts.  Had to restore husbands phone once after upgrade bc iMessage was frozen on "waiting" ... how do I handle this when we all sync to same MacBook??

    You'll want a separate iCloud account for each user in addition to the main Apple ID used for purchases.
    Let's say you have a family of four (husband, wife, and two children). Here is what you will need:
    Main Apple ID for shared purchases in Tunes (everybody will be using this)
    iCloud (Apple ID) account for husband
    iCloud (Apple ID) account for wife
    iCloud (Apple ID) account for child 1
    iCloud (Apple ID) account for child 2
    Yes, you can have both an Apple ID and iCloud account setup on the same device.
    On each iOS device, setup the main Apple ID account for the following services:
    iCloud (Photo Stream and Backup are the only items selected here).
    Music Home Sharing
    Video Home Sharing
    Photo Stream
    Additionally, on each iOS device, add a new iCloud account (Under Mail, Contacts, Calendar) that is unique to each user for the following services:
    Mail (if using @me.com)
    Contacts
    Calendars
    Reminders
    Bookmarks
    Notes
    Find My iPhone
    Messages
    Find Friends
    FaceTime
    On your individual Macs (or Mac accounts), use the main Apple ID in iTunes. Then, use the unique iCloud account in/for iCloud.
    Now that everbody is using separate iCloud accounts for your contacts, calendars, and other things, it will be all be kept separate.
    The only thing that is now 'shared' would be iTunes content (apps and other purchases), backups via iCloud (if enabled), and Photo Stream (if enabled).

  • My ipod touch 1st gen has gone into recovery and wont restore because of a error 1 or something like that can someone help me quick this ipod is my little cousins and i dont want her mum to find out what happend

    my ipod touch 1st gen has gone into recovery and wont restore because of a error 1 or something like that can someone help me quick this ipod is my little cousins and i dont want her mum to find out what happend

    I have not seen a solution for error (1)
    make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar

  • HT1495 I am using imessage on my phone but i dont want them to appear on my ipad how do i remove the number from my ipad for messages

    Hi i am using an iphone with imessage but I dont want to use that number on my ipad for imessage or facetime can I change this ??

    Use a free gmail.com address on the iPad.
    Using FaceTime http://support.apple.com/kb/ht4319http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime + iMessage: Setup, Use, and Troubleshooting
    http://tinyurl.com/a7odey8http://tinyurl.com/a7odey8
    Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268http://support.apple.com/kb/TS4268
    iOS: FaceTime is 'Unable to verify email because it is in use'
    http://support.apple.com/kb/TS3510http://support.apple.com/kb/TS3510
    Using FaceTime and iMessage behind a firewall
    http://support.apple.com/kb/HT4245http://support.apple.com/kb/HT4245
    iOS: About Messages
    http://support.apple.com/kb/HT3529http://support.apple.com/kb/HT3529
    Set up iMessage
    http://www.apple.com/ca/ios/messages/http://www.apple.com/ca/ios/messages/
    iOS and OS X: Link your phone number and Apple ID for use with FaceTime and iMessage
    http://support.apple.com/kb/HT5538http://support.apple.com/kb/HT5538
    How to Set Up & Use iMessage on iPhone, iPad, & iPod touch with iOS
    http://osxdaily.com/2011/10/18/set-up-imessage-on-iphone-ipad-ipod-touch-with-io s-5/http://osxdaily.com/2011/10/18/set-up-imessage-on-iphone-ipad-ipod-touch-with-io s-5/
    Set Up Alert Sounds
    http://www.quepublishing.com/articles/article.aspx?p=1873027&seqNum=3http://www.quepublishing.com/articles/article.aspx?p=1873027&seqNum=3
    Extra FaceTime IDs
    http://tinyurl.com/k683gr4http://tinyurl.com/k683gr4
    Troubleshooting Messages
    http://support.apple.com/kb/TS2755http://support.apple.com/kb/TS2755
    Troubleshooting iMessage Issues: Some Useful Tips You Should Try
    http://www.igeeksblog.com/troubleshooting-imessage-issues/http://www.igeeksblog.com/troubleshooting-imessage-issues/
    Setting Up Multiple iOS Devices for iMessage and Facetime
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htmhttp://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l
    FaceTime and iMessage not accepting Apple ID password
    http://www.ilounge.com/index.php/articles/comments/facetime-and-imessage-not-acc epting-apple-id-password/http://www.ilounge.com/index.php/articles/comments/facetime-and-imessage-not-acc epting-apple-id-password/
    Fix Can’t Sign Into FaceTime or iMessage iOS 7
    http://ipadtutr.com/fix-login-facetime-imessage-ios-7/http://ipadtutr.com/fix-login-facetime-imessage-ios-7/
    FaceTime, Game Center, Messages: Troubleshooting sign in issues
    http://support.apple.com/kb/TS3970http://support.apple.com/kb/TS3970
    Unable to use FaceTime and iMessage with my apple ID
    https://discussions.apple.com/thread/4649373?tstart=90https://discussions.apple.com/thread/4649373?tstart=90
    How to Block Someone on FaceTime
    http://www.ehow.com/how_10033185_block-someone-facetime.htmlhttp://www.ehow.com/how_10033185_block-someone-facetime.html
    My Facetime Doesn't Ring
    https://discussions.apple.com/message/19087457#19087457https://discussions.apple.com/message/19087457#19087457
    How to watch FaceTime calls on the big screen with Apple TV
    http://www.imore.com/daily-tip-ios-5-airplay-mirroring-facetimehttp://www.imore.com/daily-tip-ios-5-airplay-mirroring-facetime
    Send an iMessage as a Text Message Instead with a Quick Tap & Hold
    http://osxdaily.com/2012/11/18/send-imessage-as-text-message/http://osxdaily.com/2012/11/18/send-imessage-as-text-message/
    To send messages to non-Apple devices, check out the TextFree app https://itunes.apple.com/us/app/text-free-textfree-sms-real/id399355755?mt=8https://itunes.apple.com/us/app/text-free-textfree-sms-real/id399355755?mt=8
    How to Send SMS from iPad
    http://www.iskysoft.com/apple-ipad/send-sms-from-ipad.htmlhttp://www.iskysoft.com/apple-ipad/send-sms-from-ipad.html
    How to Receive SMS Messages on an iPad
    http://yourbusiness.azcentral.com/receive-sms-messages-ipad-16776.htmlhttp://yourbusiness.azcentral.com/receive-sms-messages-ipad-16776.html
    Apps for Texting http://appadvice.com/appguides/show/apps-for-textinghttp://appadvice.com/appguides/show/apps-for-texting
    You can check the status of the FaceTime/iMessage servers at this link.
    http://www.apple.com/support/systemstatus/http://www.apple.com/support/systemstatus/
     Cheers, Tom

  • Will not let me download apps say that I haven't used itunes and takes me to a page to put in my credit card details.  I dont want to put them in as its for my child

    Help can't download or up date anything as when I put my apple id in ot say that this apple id has not yet been used in the itunes store tap review to sign in when I go on the page it ask me for my bank details which I dont want to put in thanks

    Try redemaing an itunes gift card.
    Otherwise,
    Create a NEW account/ID for her using these instructions. Make sure you follow the instructions. Many do not and if you do not you will not get the None option. You must use an email address that you have not used with Apple before. Make sure you specify a birthdate that results in being at least 13 years old
      Creating an iTunes Store, App Store, iBookstore, and Mac App Store account without a credit card

Maybe you are looking for

  • Why my instance crashed down

    HI,everybody,My instance crashed down last day. Is there anybody can tell me why ? oracle version:10.2.0.1.0 (Only Patch 4612267) OS version:redhat as 4.5 Sorry, I am in china,so there is some chinese character in the alter file,but I think everybody

  • User reports in Oracle 10g

    How difficult is it for non-technical users to generate their own ad hoc reports in Oracle 10g?

  • Group currency amount missing with transaction code FBB1

    Hi, Whenever there is a document posted using transaction code FBB1 there is no updation of amount in group currency. If the document currency is matching with local currency then even the local currency is also with zero value. Can somebody explain

  • Does unmarshall operation hold entire XML document in memory?

    Hi, When the unmarshall operation is done on a large XML file, does the root element Java object returned hold the entire XML document in memory? I have a large XML file that I want to unmarshall that contains many <product> elements for example. I w

  • Is there a setting for PC to override iPhone when syncing?

    I want to make sure that if I delete a song/playlist from my phone it does not delete from my computer.  Using Windows version 12.0.1.26 of iTunes.