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
*<servlet>*
*<servlet-name>report</servlet-name>*
*<servlet-class>path.to.class</servlet-class>*
*<security-role-ref>*
*<role-name>name</role-name>*
*<role-link>valid-users</role-link>*
*</security-role-ref>*
*</servlet>*
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š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>

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 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.

  • Deploying ear application - migrating from OC4j to Weblogic

    I am trying to migrate application from OC4J to weblogic server. Apart from usual differences in descriptors, structure of EAR etc. I came across unusual error:
    "both the remote home and remote component interface must be specified. Currently, only one of them is specified"
    It is about deploying session bean. Usual EJB3 stateless session bean with local and remote interface, deployed without any problem on OC4J and JBoss. Of course, I know home interfaces are something to do with EJB 2.1, but this is EJB3 application and, I guess, Weblogic has full support for it. Does it? :)
    Anyway, is there workaround? Or am I missing something? I don't have to tell you what problems we will be facing if I have to restructure whole application with dozens and hundreds of session beans.
    Thanks a lot!

    OK. I just want to make sure that there are no problems with the deployment descriptors.
    To pin point the problem do the following in JDeveloper:
    1. Create a simple EJB 3.0 session bean
    2. On that session bean create a Sample Java Client.
    3. Run the Session Bean
    4. Run the Client
    5. If both are running fine, compare the deployment descriptors from the sample and your real application.
    --olaf                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Problem in mapping after migration from 3.x to 7.x infosource

    HI Experts,
    I have a problem while mapping the data source 2lis_03_bf to info cube 0ic_cs01.
    we have a flow like this now after  migration done.
    Datasource->transfer rules->infosource->transformation->info cube
    Now we dont require infosource and its respetive transformation, we are going to map directly from data source to info cube.but we have routines available in info cube related transformation.i.e. coming from infosource to info cube .
    I would like to create a new transformation directly from Datasource to info cube but all the source fields are not available in target cube. How to map them.do i have to map all the target fields or i have to map according to the transfer rules target fields. what is the funda to make a transformation and mapping the source and target fields.
    Could anyone please through some light here..
    Thanks much in advance.

    sunil kumar wrote:
    Hi,
    >
    > As said above convert transfer rules to transformations (right click on transfer rules -> additional prop -> create transformation)
    >
    > Then right click on datasource -> Migrate
    >
    > After doing this, your datasource will be linked to Infocube directly with one transformations automatically.
    >
    > Regards,
    > Sunil
    Hi Sunil & Sravan,
    THanks for ur quick reply.As you said click on transfer rules and create transformation.As i can see in my system i have a transformation from data source to infosource .i.e. starting with RSDS_  and then another transformation from info source to info cube.i.e. starting with TRCS_  .  what i did was created a transformation by right click on info cube and by giving data source name as 2LIS_03_BF .this is a manual transformation i am mapping manually.Is this a correct way? Please tell me how to do it.
    as i have to do this immediately.
    Thanks in advance

  • Problem in Themes after Migrating from APEX 4.0 to 4.2

    Dear Friends,
    Recently we migrated from APEX 4.0 to 4.2. There were no errors during migration. But after migration we observed that any application with Simple Red (Theme No.1) and Scarlet (Theme 21) stopped working properly. i.e. Template button Red will not perform any task. Even changed the template of the button doesn't work.
    Can any one suggest steps to solve the problem?
    Thanks in Advance.
    Krunal

    Hi Prabodh,
    This is the error i am getting
    Timestamp: 11/30/2012 5:03:02 PM
    Error: TypeError: ((f.event.special[r.origType] || {}).handle || r.handler).apply is not a function
    Source File: http://testserver:8000/i/libraries/apex/minified/desktop_all.min.js?v=4.2.0.00.27
    Line: 3
    No i didn't modify any template.

  • Problems with saving after Migration on ApEx 2.2

    Hi,
    we migrated from HTMLDB 2.0 to ApEx 2.2.
    Now our end-users have problems.
    They want to save their changes and after pressing the change button an empty page appears.
    So they go back with the internet explorer back-button and press the save button again. Now the changes are saved in the database.
    Does anybody have the same problem?
    Is there a solution to fix this problem?
    Thank you in advance
    Ulrike

    Yes thank you very much. This is the solution.
    But it's a pitty that we have to change the CSV endcoding option for all our applications after migration manually.
    Kind regards Ulrike

  • Problem with rules after migration

    After migration of some mailboxes from Exchange 2007 to 2010 we have a problem managing rules. When trying to create or look at rules from OWA we get an Mapi error (See below). Also, When checking the problem user rules from Exchange Management
    Console "get-inboxrule -mailbox <User>", it fails with a Doctor Watson error (also below) Witch is similar to the one from OWA. 
    Any help would be much appreciated. 
    Mapi Error:
    MapiExceptionNotFound: Unable to query table rows. (hr=0x8004010f, ec=-2147221233) Diagnostic context: Lid: 55847 EMSMDBPOOL.EcPoolSessionDoRpc called [length=104] Lid: 43559 EMSMDBPOOL.EcPoolSessionDoRpc returned [ec=0x0][length=1366][latency=15] Lid: 23226 --- ROP Parse Start --- Lid: 27962 ROP: ropGetRulesTable [63] Lid: 27962 ROP: ropSetColumns [18] Lid: 27962 ROP: ropQueryRows [21] Lid: 31418 --- ROP Parse Done --- Lid: 55847 EMSMDBPOOL.EcPoolSessionDoRpc called [length=53] Lid: 43559 EMSMDBPOOL.EcPoolSessionDoRpc returned [ec=0x0][length=168][latency=0] Lid: 23226 --- ROP Parse Start --- Lid: 27962 ROP: ropLtidFromId [67] Lid: 17082 ROP Error: 0x8004010F Lid: 17505 Lid: 21921 StoreEc: 0x8004010F Lid: 27962 ROP: ropExtendedError [250] Lid: 1494 ---- Remote Context Beg ---- Lid: 26426 ROP: ropLtidFromId [67] Lid: 43747 dwParam: 0x5 Lid: 55653 StoreEc: 0x8004010F Lid: 1750 ---- Remote Context End ---- Lid: 26849 Lid: 21817 ROP Failure: 0x8004010F Lid: 30894 Lid: 24750 StoreEc: 0x8004010F Lid: 29358 Lid: 27950 StoreEc: 0x8004010F Lid: 32190 Lid: 21950 StoreEc: 0x8004010F Lid: 27070 Lid: 22974 StoreEc: 0x8004010F Lid: 18686 Lid: 1136 StoreEc: 0x8004010F Lid: 24318 Lid: 32510 StoreEc: 0x8004010F
    Doctor Watson:
    WARNING: An unexpected error has occurred and a Watson dump is being generated: MapiExceptionNotFound: Unable to query
    table rows. (hr=0x8004010f, ec=-2147221233)
    Diagnostic context:
    Lid: 55847 EMSMDBPOOL.EcPoolSessionDoRpc called [length=104]
    Lid: 43559 EMSMDBPOOL.EcPoolSessionDoRpc returned [ec=0x0][length=1366][latency=15]
    Lid: 23226 --- ROP Parse Start ---
    Lid: 27962 ROP: ropGetRulesTable [63]
    Lid: 27962 ROP: ropSetColumns [18]
    Lid: 27962 ROP: ropQueryRows [21]
    Lid: 31418 --- ROP Parse Done ---
    Lid: 55847 EMSMDBPOOL.EcPoolSessionDoRpc called [length=53]
    Lid: 43559 EMSMDBPOOL.EcPoolSessionDoRpc returned [ec=0x0][length=168][latency=0]
    Lid: 23226 --- ROP Parse Start ---
    Lid: 27962 ROP: ropLtidFromId [67]
    Lid: 17082 ROP Error: 0x8004010F
    Lid: 17505
    Lid: 21921 StoreEc: 0x8004010F
    Lid: 27962 ROP: ropExtendedError [250]
    Lid: 1494 ---- Remote Context Beg ----
    Lid: 26426 ROP: ropLtidFromId [67]
    Lid: 43747 dwParam: 0x5
    Lid: 55653 StoreEc: 0x8004010F
    Lid: 1750 ---- Remote Context End ----
    Lid: 26849
    Lid: 21817 ROP Failure: 0x8004010F
    Lid: 30894
    Lid: 24750 StoreEc: 0x8004010F
    Lid: 29358
    Lid: 27950 StoreEc: 0x8004010F
    Lid: 32190
    Lid: 21950 StoreEc: 0x8004010F
    Lid: 27070
    Lid: 22974 StoreEc: 0x8004010F
    Lid: 18686
    Lid: 1136 StoreEc: 0x8004010F
    Lid: 24318
    Lid: 32510 StoreEc: 0x8004010F
    MapiExceptionNotFound: Unable to query table rows. (hr=0x8004010f, ec=-2147221233)
    Diagnostic context:
    Lid: 55847 EMSMDBPOOL.EcPoolSessionDoRpc called [length=104]
    Lid: 43559 EMSMDBPOOL.EcPoolSessionDoRpc returned [ec=0x0][length=1366][latency=15]
    Lid: 23226 --- ROP Parse Start ---
    Lid: 27962 ROP: ropGetRulesTable [63]
    Lid: 27962 ROP: ropSetColumns [18]
    Lid: 27962 ROP: ropQueryRows [21]
    Lid: 31418 --- ROP Parse Done ---
    Lid: 55847 EMSMDBPOOL.EcPoolSessionDoRpc called [length=53]
    Lid: 43559 EMSMDBPOOL.EcPoolSessionDoRpc returned [ec=0x0][length=168][latency=0]
    Lid: 23226 --- ROP Parse Start ---
    Lid: 27962 ROP: ropLtidFromId [67]
    Lid: 17082 ROP Error: 0x8004010F
    Lid: 17505
    Lid: 21921 StoreEc: 0x8004010F
    Lid: 27962 ROP: ropExtendedError [250]
    Lid: 1494 ---- Remote Context Beg ----
    Lid: 26426 ROP: ropLtidFromId [67]
    Lid: 43747 dwParam: 0x5
    Lid: 55653 StoreEc: 0x8004010F
    Lid: 1750 ---- Remote Context End ----
    Lid: 26849
    Lid: 21817 ROP Failure: 0x8004010F
    Lid: 30894
    Lid: 24750 StoreEc: 0x8004010F
    Lid: 29358
    Lid: 27950 StoreEc: 0x8004010F
    Lid: 32190
    Lid: 21950 StoreEc: 0x8004010F
    Lid: 27070
    Lid: 22974 StoreEc: 0x8004010F
    Lid: 18686
    Lid: 1136 StoreEc: 0x8004010F
    Lid: 24318
    Lid: 32510 StoreEc: 0x8004010F
    + CategoryInfo : NotSpecified: (:) [Get-InboxRule], MapiExceptionNotFound
    + FullyQualifiedErrorId : Microsoft.Mapi.MapiExceptionNotFound,Microsoft.Exchange.Management.RecipientTasks.GetInb
    oxRule
    -FireLite

    Hi,FireLite,
    What kind of the migration?
    If it was cross forest or involved PST files then rules rarely come across correctly and should be recreated.
    If it was simply install Exchange 2010 and use move mailbox, then rules should have moved with the mailbox.And please provide more information like below:
    1)Does this rule problem happen to all moved mailboxes or just part of them?
    2)Would you please verify that you have successfully moved these problem mailbox?
    3)Can you manage the rule in outlook for them?Have you tried to create a new rule to see if it works for these mailbox in OWA or Outlook?
    Please try to move the mailbox back to Exchange 2007,then move it to another mailstore,after that migrate it again to Exchange 2010 to see if it works.
    And here are some resolved cases with similar error for your reference.
    http://social.technet.microsoft.com/Forums/en-US/exchange2010/thread/3c795b8f-0b60-4346-b8f1-eb8c4f9c9cb0
    http://social.technet.microsoft.com/Forums/en/exchangesvradminlegacy/thread/3cf2360f-0a4c-4c7e-87c9-6726e3dc34fd
    Regards,
    Sharon
    Sharon Shen
    TechNet Community Support
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question.

  • 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?

  • 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 locating files after migration from PC to Mac

    I have just migrated files from my PC to my Mac.  I have logged into the new user account but I finder is telling me there are no files located in the new user.
    It also doesnt appear that a "user" folder has been created for the new user which may be the problem.
    Thanks

    Depending on how you migrated the files, your 'old' Windows account should have been created on your MBP.
    How did you migrate the files? Using Migration Assitant? Mac or PC version?
    Clinton

  • 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.

  • 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.

  • 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

Maybe you are looking for