Problems with messaging after returning from overseas.

I recently spent 2wks in Bali and switched to an Indonesian SIM card while there.
When i returned to Australia i changed back to my Vodafone SIM but i've been having issues since then.
When I message other people, instead of my name appearing as the "contact title" it has my email address. I am not receiving messages from some people unless they send it to the email address contact.
For example, my sister has my phone number saved in her phone as "Lyndsey" but now whenever i message her it comes from a contact which is my email address.
I also can't send messages to certain people. I will type the message and attempt to send it and the sending status bar will run very slowly, and then the whole message will just disappear as if I never typed it out. It doesn't even say "failed to send", it just disappears.
I've tried turning the phone on and off, switching back an forth from flight mode, turning off iCloud, switching iMessage on and off, i've even reset the network settings.

After you reset the network settings and switched off iMessage, when you switched it back on, did it activate? If you go in and check your Send & Receive, is your phone number listed there and does it have a checkmark by it? I've read other threads where people changing countries and SIMs having these issues. Also, if reset network settings did not work, try to reset all settings.

Similar Messages

  • Problem with printing after migrating from 3.5 to 4.1

    Hello everyone,
    I'm currently working on an application that was recently migrated (by someone else) from Flex 3.5 to Flex 4.1 and I discovered the printing doesn't work properly anymore. So I tried to find out what the problem was and after many tries, I came to the conclusion that the problem was within the following line:
    printJob.addObject(myPrintView,FlexPrintJobScaleType.MATCH_WIDTH);
    (Of course "myPrintView" is not the real name used in the app but that's not important)
    I searched on the Internet and this line is supposed to work in 4.1, isn't it? However, the printed version cuts my PrintAdvancedDataGrid approximately in half. I tried to change the width property from myPrintView but the grid is still cut at the same place, its cells are just distorted.
    FYI, you can find a part of the code right here:
    var printJob:FlexPrintJob = new FlexPrintJob();
                        if (printJob.start()) {
         //A lot of code to build the print view
    myPrintView.width=1280;
    printJob.addObject(myPrintView,FlexPrintJobScaleType.MATCH_WIDTH);
    printJob.send();
    myPanel.removeChild(myPrintView);
    Any help would be appreciated.
    Regards,
    Gudril

    While looking for a solution on the Internet I found some people having troubles because of the structure of their AdvancedDataGrid. My problem doesn't come from any example I've seen but maybe it's still linked to that, so here's an AdvancedDataGrid that's being printed in my app:
                                                    <mx:PrintAdvancedDataGrid dataProvider="{dataRayon}" sortExpertMode="true" id="dataGridRayon" width="100%" itemClick="dispatchEvent(new KpiEvent(DATAGRID_RAYON_CLICK,event));" itemDoubleClick="dispatchEvent(new KpiEvent(DATAGRID_RAYON_CLICK,event));" creationComplete="resizeGridRayon();" >
                                                      <mx:columns>
                                                                <mx:AdvancedDataGridColumn id="rownumRayon"  width="25"  sortable="false" labelFunction="getRowNumRayon" fontWeight="bold"/>
                                                                <mx:AdvancedDataGridColumn id="rayonCoRgrp" textAlign="center" width="75" headerText="{resourceManager.getString('rentabilitePanel', 'CODE')}" dataField="co_rgrp_produits" />
                                                                <mx:AdvancedDataGridColumn textAlign="left" width="240" headerText="{resourceManager.getString('rentabilitePanel', 'SOUS_SECTEURS')}" dataField="libelle" id="hTDataGridRayon" />
                                                                <mx:AdvancedDataGridColumn id="rayonMeVenteHt" textAlign="right" width="100" headerText="{resourceManager.getString('rentabilitePanel', 'MONTANT_VENTE_HT')}" dataField="meVenteHt" formatter="{currencyFormatter}" sortCompareFunction="{function(obj1:Object, obj2:Object):int{return mySortFunc(obj1, obj2, 'meVenteHt');}}"  />
                                                                <mx:AdvancedDataGridColumn id="rayonMargeAvtDem" textAlign="right" width="75" headerText="{resourceManager.getString('rentabilitePanel', 'MARGE_AVT_DEM')}" dataField="margeAvtDem" formatter="{currencyFormatter}" sortCompareFunction="{function(obj1:Object, obj2:Object):int{return mySortFunc(obj1, obj2, 'margeAvtDem');}}"  />
                                                                <mx:AdvancedDataGridColumn id="rayonPMargeAvtDem" textAlign="right" width="80" headerText="{resourceManager.getString('rentabilitePanel', 'POUR_MARGE_AVT_DEM')}" dataField="margeAvtDemP" formatter="{pourcentageFormatterFloat}" sortCompareFunction="{function(obj1:Object, obj2:Object):int{return mySortFunc(obj1, obj2, 'margeAvtDemP');}}"  />
                                                                <mx:AdvancedDataGridColumn id="rayonDemarqueHt" textAlign="right" width="100" headerText="{resourceManager.getString('rentabilitePanel', 'DEMARQUE_HT')}" dataField="demarque" formatter="{currencyFormatterFloat1Dec}" sortCompareFunction="{function(obj1:Object, obj2:Object):int{return mySortFunc(obj1, obj2, 'demarque');}}"  />
                                                                <mx:AdvancedDataGridColumn id="rayonPDemarqueHt" textAlign="right" width="85" headerText="{resourceManager.getString('rentabilitePanel', 'POUR_DEMARQUE_HT')}" dataField="demarqueP"  formatter="{pourcentageFormatterFloat}" sortCompareFunction="{function(obj1:Object, obj2:Object):int{return mySortFunc(obj1, obj2, 'demarqueP');}}"  />
                                                                <mx:AdvancedDataGridColumn id="rayonMargeAprDem" textAlign="right" width="100" headerText="{resourceManager.getString('rentabilitePanel', 'MARGE_APR_DEM')}" dataField="margeAprDem" formatter="{currencyFormatter}" sortCompareFunction="{function(obj1:Object, obj2:Object):int{return mySortFunc(obj1, obj2, 'margeAprDem');}}"  />
                                                                <mx:AdvancedDataGridColumn id="rayonPMargeAprDem" textAlign="right" width="115" headerText="{resourceManager.getString('rentabilitePanel', 'POUR_MARGE_APR_DEM')}" dataField="margeAprDemP" formatter="{pourcentageFormatterFloat}" sortCompareFunction="{function(obj1:Object, obj2:Object):int{return mySortFunc(obj1, obj2, 'margeAprDemP');}}"  />
                                                      </mx:columns>
                                            </mx:PrintAdvancedDataGrid>
    I also realised I wasn't very clear on the outcome of my doPrint() function. When I said the grid was cut in half, I was talking about half the columns not showing on the printed version, not half the rows. Actually even a column being cut in half. I hope these precisions made my problem a bit clearer and somebody will be able to help me in any way (even just hints).
    Thanks for your help.
    Regards,
    Gudril

  • Problem with image after exporting from Lightroom 5

    Good day. Please can someone help me? I have Lightroom 5, and I have a problem in exporting edited images. At issue, do all the necessary settings and retreat noise and sharpness adjustment by brush adjustment tool, however, to export the image, noise and some minor adjustments are lost. Because in Lightroom visualize the way you wish, but after export, is not it the same? How do I get a different result? Thank you all!

    I have the same problem!
    Something got broken with my Lightroom 5.6 (Windows 7Pro)  two days ago and I don't see any adjustments made with brush after exporting photos!
    It's not a problem of library or RAW files - the same, work fine on other computers (iMac).
    I tried to clean the computer with CC Cleaner Tool, and install everything again, but it didn't help.
    I already lost 2 days trying to fix it, and I don't want to format the drive and install Windows again
    Can anyone help?

  • Problem with servlet after migrating from OC4J to WebLogic 10.3

    I come across a problem when I was migrating from jDev 11g TP4 to production version in that step also server got changed from OC4J to webLogic.
    I am running java http servlet along other jspx pages. When everything was on OC4J there was no problem whit security on this servlet ( servlet was under same authorization automatically, and I was able to create new application module on this servlet by createRootApplicationModule
    ) but when I changed to WebLogic 10.3 I come across a numerous problems. First one is solved i managed to put the servlet under same authorization as jspx pages by
    *&lt;servlet&gt;*
    *&lt;servlet-name&gt;report&lt;/servlet-name&gt;*
    *&lt;servlet-class&gt;path.to.class&lt;/servlet-class&gt;*
    *&lt;security-role-ref&gt;*
    *&lt;role-name&gt;name&lt;/role-name&gt;*
    *&lt;role-link&gt;valid-users&lt;/role-link&gt;*
    *&lt;/security-role-ref&gt;*
    *&lt;/servlet&gt;*
    but when I trying to create new application module I get JBO-30003 error which is Caused by:
    oracle.adf.share.security.ADFSecurityAuthenticationException: JAAS login error.
    Invalid null input: name
    Has anybody any idea what I am doing wrong?
    Thank you for your help, Rok Kogov&scaron;ek

    for example:
    web.xml
    <security-role>
    <role-name>yourrole</role-name>
    </security-role>
    weblogic.xml
    <security-role-assignment>
    <role-name>yourrole</role-name>
    <principal-name>wlsuser</principal-name > <!-- wlsuser is define at wls console-->
    </security-role-assignment>

  • Time-out problems with RV320 (after upgrade from RV042)

    config:
    dual wan
    WAN1: 4G router (DHCP) - approx 25Mbit/ 8Mbit
    WAN2: PPOE (DSL) - 1 Mbit/ 0.2 Mbit
    worked with a RV042 before and upgraded to a RV320 now.
    all other things are unchanged.
    3 problems - 2 solved/ not critical - one still open:
    a) not critical:  DHCP Status does not include all devices (changing view - but all-time problem)
    I would suspect a software bug.... DHCP itself works perfectly/ IPs are assigned (just not shown in status)
    b) solved (at least for now):  internet connection featured time-outs; after many tries, disabling the SPI in the firewall helped
    btw: this only happend for the WAN1 - WAN2 worked  (or is that slow that the additonal wait time did not matter ;-)
    c) very annoying: exchange connection (from Outlook client to external exchange) still has time-outs (mostly the whole mail client hangs/ ends to be restarted).
    As soon as I disable WAN1, it works!  But it´s not the LTE WAN itself - switching back to the RV042 does not show the same symptom.
    I tried: include IP into local DNS (in general I work with google DNS servers - but changing that does not help either), opening all traffic for teh realevant IPs and disabling the firewall completely.  no positive results....
    thanks for any hints....

    I agree with you on a, probably a bug of some sort.
    b is an issue I've seen before, and even on similar bandwidth (25/5) on my rv016.  What was able to figure out is that the carrier (ISP) is sending about 4k/sec of ICMP packets to the router, which in turn makes the router think it's under attack so it drops the connection.  As you can tell, disabling the SPI helps.  For me, putting another router in front of my rv016 (on 2 of 3 wans) was my only 'permanent' solution.
    c sounds like there's a protocol binding/static route in the rv042 that you need to add to the rv320.  I'd check that first.
    Huntsville's Premiere Car and Bike e-magazine: www.huntsvillecarscene.com

  • Problem with CM after upgrading from 4.0.19 - 4.1.1

    I upgraded my Edge-WAE and Core-WAE from 4.0.19 to 4.1.1 and it was successful
    However, after upgrading the CM, I got the message "service temporarily unavailable" when access the web page.
    The console showed: "Stopping the service 'cms_cdm' because it is restarting too often."
    When I quried the CMS service, I got:
    CMS services information :
    Service cms_httpd is running
    Service cms_cdm is not running
    What may be the problem?

    I had the same problem and opened a TAC case. It seems that others are reporting the same trouble when using the CM GUI to upgrade the CM. For some reason it doesn't back up the database correctly and it gets corrupted, causing the cms_cdm to crash and then shut down.
    I was told to roll back to 4.0.19, de-register all the non-CM devices using a forced de-register, then from the CM CLI, ftp the new 4.1.1 image over, reload, and re-register all the devices.
    Luckily my setup was in the lab and not production. There may be a better/another way to do it, but that's the way I got it done.

  • Problem with Mail after restoring from backup

    I just replaced the hard drive in a 1.83ghz 2 core Mac Mini. No problems there. Once I restored the system and all of my files I was right back up and running. Except one thing... in Mail, all appears normal, I can see all of my email headers from the past several years, but there is no content for these emails. Just blank. I've restored my Mail folder from my backup library again. Same thing. What gives? It's very frustrating, because I can see the headers and I know there has to be some way to get the body of the emails back. Any ideas folks?
    Thanks in advance!

    you need to rebuild mail index. first try reindexing the inbox using Mailbox menu-.rebuild. if that does not help then quit Mail and delete the file home directory/library/mail/envelope index. then start Mail and let it import. it should work normally after that.

  • Problem with PK after migration from Access

    I converted an Access 2000 db to Oracle 8.1.7, and now Access is having trouble recognizing the correct primary key for one table.
    The actual primary key on the table is Column A, which is a number (an autonumber, in fact). On the Oracle side, this shows up as the PK. But when I go back to Access and link the table, a different column is identified as the PK! A TEXT column, no less! And I can't get Access to recognize the correct column as the PK, which is keeping me from loading data to that table. Has anyone else seen this happen? And maybe can offer some advice?
    I already dropped/rebuilt the PK on the Oracle side, that didn't help. And I've re-converted the database again, just to make sure there were no problems in the conversion.

    Found a workaround. I'll share it, in case anyone else experiences this:
    The PK and index looked FINE on the Oracle side, but what I had to do was this: I had to drop the unique index on the column that Access thought was the PK (I'll call it Column B). Then I dropped the PK and index on the actual PK (Column A). Then I re-created the PK and index on Column A. Voila! Access now knew that column A was the PK. Then I was able to re-create the unique index on column B, and Access didn't lose its way.

  • Problems with email after switching from POP to IMAP

    I recently switched from POP to IMAP settings on my MacBook Pro (OS X Yosemite 10.10.2). My email seems to time out and then my emails seem to disappear. Then I  have to logout and re-launch every few minutes to keep seeing my emails. Everything seems to be working fine for my iPhone and it's IMAP settings. Any ideas anyone?

    William Kucharski wrote:
    V.K. wrote:
    when an IMAP account is set to use IDLE (a desktop equivalent of push) the emails are pushed by the IMAP server to Mail as soon as they are received. when this happens no new mail sound is played.
    That is incorrect.
    well, it always worked this way for me on all my imap accounts (I have 4).
    and I've seen lots and lots of posts describing the same behavior. I don't know what's going on in your case.
    I have two email accounts, both use IMAP IDLE, and I get the new mail sound each and every time a new mail message is delivered to either.
    So there's some other factor at work here.

  • Problems with IPhoto after transfer from Mobile Me

    It seems that most of the necessary transfer out of of Mobile Me was accomplished, but I am still somewhat confused where my Gallery went to and now my IPhoto program keeps telling me that it is synchronizing to my service provider (Comcast), but it has been going on forever and I wonder if that is a necessary function?  I chatted with the support team of ICloud, but they had no answer.  Can anyone help?

    Hello sean:
    I am not an expert in iPhoto, but people who post here are:
    http://discussions.apple.com/category.jspa?categoryID=143
    To try to address the browser problem, reset Safari and see if that helps. Also, try an alternate browser (I use Firefox that way) to see if the problem is system-wide. Also, there is a Safari forum here:
    http://discussions.apple.com/category.jspa?categoryID=169
    Barry

  • Problems with Aperture after upgrading from Tiger to Snow Leopard

    Help!  I recently upgraded my IMac operating system from Tiger to Snow Leopard.  Now, I am finding my aperture is not responding the way it used to.  I cannot change the border dimensions; I can't print.  Any suggestions would be appreciated.  I was told by Apple Technical Support that they will not provide support for Aperture 2 and that I would have to upgrade to Aperture 3.  Is this correct? 

    This is called a Kernel panic.
    See here for possible solutions:
    http://support.apple.com/kb/TS3742
    Did you do anything else apart from ungrading OS?
    Did you add memory?
    Bad or not well seated memory modules are often a cause of kernel panic

  • Problem with report after moving from version 8.5 to 11

    Post Author: kenbrien
    CA Forum: General
    I have a Crystal Report which was created in version 8.5 that is going against an Oracle datasource. When we upgraded to Report Server XI the report worked almost the same but it began to truncate a memo field that is on the report. The field can be up to a few hundred characters long but it truncates it to only the first 2 characters. In addition there is also one field in a Group Header that no longer displays when we run the report. The design of the report hasn't changed so how do we fix the problems introduced since going to XI? Where do I start looking?
    Thanks.

    Hi,
    Try this link for update and hot fixes,[ Click Here|https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/bobj_download/main.htm]
    regards,
    Clint

  • My iphone 4S has problem in making and receiving the calls. While making the call , call fails and netwrok disappears. Like wise no voice is heard for incoming calls. This happened after return from the overseas travel.

    My iphone 4S has problem in making and receiving the calls. While making the call , call fails and netwrok disappears. Like wise no voice is heard for incoming calls. This happened after return from the overseas travel.

    Hello SamSax
    Check out the assist page below for troubleshooting call connectivity.
    Calls and connection issues
    http://www.apple.com/support/iphone/assistant/calls/
    Thanks for using Apple Support Communities.
    Regards,
    -Norm G.

  • After update 8.1.2 i had problem with sync my content from ITunes with IPod

    After update 8.1.2 i had problem with sync my content from ITunes with IPod. It stucks on moment when its waiting for implementing changes (step 5 of 5) Hours and hours i'm waiting but still the same. So i cant use my Ipod at all. I restarted Ipod and delete and download Itunes again. Still stuck in the same moment. Help please. Someone has some problems like that?

    I have an error message saying that "An unknown error occurred (-54)"

  • I have problems with activation, after delete mi Iphone from Icloud.

    I have problems with activation, after delete mi Iphone from Icloud.

    Hello Sikiz 21,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    iPhone: Troubleshooting activation issues
    http://support.apple.com/kb/TS3424
    iOS: Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
    Best of luck,
    Mario

Maybe you are looking for

  • Where can i find a user manual for a camcorder model A1MARKII OR A1 MARK2

    I have looked all over the canon site and " canot" find a user manual for this legacy model        A1 MARK IITHANKS 

  • Referencing different columns in Numbers 3.0

    Hello, I am refernecing differnt columns on differnt sheets, for eample I am typing =A1 in column D and copying and pasting the whole column to have D match A.  The problem I am having is that some of the cells are blank in column A and need to stay

  • My startup disk is showing full.

    I ran omnidisk sweeper and it shows I only have 39GB of used space.  However, when I check the info on the startup disk it shows that I only have 300mb-5GB left depending on the day.  I have deleted all unnecessary files that I can.  I can't really f

  • Requirement of new Duty structure (CIN)

    Hi, For an expectional business case we have a requirement for following duty structure Duty                            Calculation Base Basic Excise(Ded)          ON BASIC Special Excise(Non ded)     ON BASIC AD Exise (non ded)                     F

  • How can i set a role that can't see the infoarea?

    HI: i want creat a role ,when use the role open the query , he can only see the report under the favorite and role,can't see the infoarea , how can setting the role's right?