Error when trying to check on AT&T subscription status

I have a new iPad 3G and have already activated my AT&T 3G account for the first month and have used it successfully for several days now.
I'm trying to check my AT&T 3G usage for my account as I have done on previous days. However today when I select Settings -> Cellular Data -> View Account I get the following error message: "The device information was not received. Please close the page and reopen View Account (USIM9997)" I closed and reopened several times and rebooted the iPad too - all to no avail.
Help? Thanks.

I have another update. I waited until my data plan ran out and then visited an AT&T store to swap out the SIM card. Same problem. I didn't even leave the mall before I tested it and nothing changed.
Both Apple and AT&T thought something was wrong, and both agreed that their respective components should be replaced under warranty. However now that everything has been swapped out, I'm forced to conclude that this is simply the way that it works, despite the best advice and consultation from both Apple and AT&T. I'm guessing that something is being written to volatile memory when the SIM card is accessed for the first time that is being cleared when the iPad is being powered off. Until it is powered off, however, even Sleep mode retains the memory state. That's the only explanation that makes sense at this point.
Here's the test if someone wants to try it out on their own iPad:
1. Turn off the 3G antenna but be connected to a Wi-Fi network.
2. Check that the iPad knows the SIM information by either:
a) Settings->General->About and then you should be able to see your cellular number in that list, or
b) Settings->Cellular Data->View Account and you then should be able to sign on and check your AT&T 3G account even through a Wi-Fi only network
3. Now power off the iPad (not Sleep mode, a full power off).
4. Bring it back up and let it connect to the Wi-Fi network. The 3G should still be off of course.
5. Check that the iPad DOES NOT KNOW the SIM information by either:
a) Settings->General->About and then your cellular number should read as "Unknown"
b) Settings->Cellular Data->View Account and you then should NOT be able to check your account status. Instead you should get the error message "The device information was not received. Please close the page and reopen View Account (USIM9997)"
6. Turn 3G back on. Everything should go back to the way that it was originally.
Now, even if you turn off 3G, or even if you put the iPad into Sleep mode, it will remember the SIM information - until you power it off again, in which case the whole thing repeats.
Anyone care to run that experiment to test my hypothesis? If so, then when someone else stumbles across this problem in the future, we'll know the cause and Apple and AT&T can avoid replacing perfectly good equipment on a non-existent problem. Heck, they'll probably find the solution themselves just by Googling on "USIM9997" and running across this thread...
Thanks,
Ray

Similar Messages

  • Error when trying to Check in to Development

    Hi All,
    When I tried to checkin its showing the following error:
    com.sap.cms.util.exception.CMSUnexpectedException: cannot load file: /usr/sap/JTrans/CMS/inbox/SAPPCUIGP09P_1-20001215.SCA Error: Could not extract file META-INF/SAP_MANIFEST.MF from archive /usr/sap/JTrans/CMS/inbox/SAPPCUIGP09P_1-20001215.SCAAdditional error message is:/usr/sap/JTrans/CMS/extract/200709070531410367_sap.comSAPPCUI_GPMAIN_ERP05PAT_C~20070723103506/META-INF/SAP_MANIFEST.MF (No such file or directory)
    Thanks in Advance
    Sarath

    Hi
    We had the same problem and I guess the same cause.
    Check the permissions of the folder /usr/sap/JTrans/CMS/extract/
    we run our NWDI system on Linux so we had to ensure that our runas-User has full access to this folder.
    Consider that the runas-User(/process-User or whatever) tries to extract (=write) the SCA file to /usr/sap/JTrans/CMS/extract/ . That's the reason why full access is needed.
    Hope this solves your problem too.
    Best regards
    Klaudio
    Edited by: Klaudio Gospic on Sep 6, 2011 10:52 AM

  • Getting an error when trying to check for update for my iPad

    On the iPad itself, there is no option such as 'update' in the general tab under settings. So I connected the iPad to my computer and on iTunes, whenever I click for 'Check for Update' I get an error message that says:
    The iPad software update server could not be contacted
    Make sure your network setting are correct and your network connection is active, or try again later
    My network is absolutely fine and I have been trying since almost 2 days now.

    If you would like help from these user forums then saying what the error message was would be useful.

  • Error when trying to check an array

    hi  i am trying to make a game that the score is calculated based on which objects you pick up from the stage. I am having trouble outputting them to the stage.
    I have assigned the symbols from the library using the code below:               
    public function newObject(e:Event)
                                                    var goodObjects:Array = ["WordObject1"];
                                                    var badObjects:Array = ["WordObject2"];
                                                    if (Math.random() < .5)
                                                                    var r:int = Math.floor(Math.random()*goodObjects.length);
                                                                    var classRef:Class = getDefinitionByName(goodObjects[r]) as Class;
                                                                    var newObject:MovieClip = new classRef();
                                                                    newObject.typestr = "good";
                                                    } else
                                                                    r = Math.floor(Math.random()*badObjects.length);
                                                                    classRef = getDefinitionByName(badObjects[r]) as Class;
                                                                    newObject = new classRef();
                                                                    newObject.typestr = "bad";
                                                    newObject.x = Math.random();
                                                    addChild(newObject);
                                                    objects.push(newObject);
                                                    placeWords();
    I then try to display these on the stage using the following code:
    // create random Word objects
                                    public function placeWords() {
                                                    objects = new Array();
                                                    for(var i:int=0;i<numWordObjects;i++) {
                                                                    // loop forever
                                                                    while (true) {
                                                                                    // random location
                                                                                    var x:Number = Math.floor(Math.random()*mapRect.width)+mapRect.x;
                                                                                    var y:Number = Math.floor(Math.random()*mapRect.height)+mapRect.y;
                                                                                    // check all blocks to see if it is over any
                                                                                    var isOnBlock:Boolean = false;
                                                                                    for(var j:int=0;j<blocks.length;j++) {
                                                                                                     if (blocks[j].hitTestPoint(x+gamesprite.x,y+gamesprite.y)) {
                                                                                                                     isOnBlock = true;
                                                                                                                     break;
                                                                                    // not over any, so use location
                                                                                    if (!isOnBlock) {
                                                                                                     newObject.x = x;
                                                                                                     newObject.y = y;
                                                                                                     newObject.gotoAndStop(Math.floor(Math.random()*1)+1);
                                                                                                     gamesprite.addChild(newObject);
                                                                                                     objects.splice(newObject);
                                                                                                     break;
    I get 3 errors,
    Line 119
    1119: Access of possibly undefined property x through a reference with static type Function.
    Line 120
    1119: Access of possibly undefined property y through a reference with static type Function.
    Line 122
    1067: Implicit coercion of a value of type Function to an unrelated type flash.display:DisplayObject.
    any help much appreicated.
    regards
    James

    public function newObject(.... <-- newObject is a function. You're using it like a variable on those lines, e.g. newObject.x = x; You can't do that.
    newObject = new classRef(); <--- very bad to use a variable name that is the same as a function that exists. Change the name of that variable and the compiler won't be confused. Make sure you even have scope access to the variable in the other function as well. I don't see you obtaining a reference to the variable 'newObject' by getting it off the display list or you creating any new variable in that function at all with that name, so naturally flash thinks 'newObject' means the function, not a variable.

  • Connection error when trying to check for purchases

    I recently purchased a season pass and I have not been able to check my purchases. I have gone into my login page and clicked the download now button but again I recieve a error stating that it cannot connect to the store to download them. This has been going on for a week or so and in the past I have been able to download things and this is very frustrating. I have disabled all of my firewall setting and unintalled my spyware software and antivirus software and it did nothing. I cannot think of anything else to do. Please anyone help.

    I am having the same issue with my Itunes and Mac. I have about 19 items ready to download and it will not connect. If I purchase anything other than pre-purchased music, or season passes, I have no issues. It is a bit annoying.

  • An Active Directory error 0x51 occurred when trying to check the suitability of server

    We have several exchange administrators and two exchange 2010 servers and one exchange 2007 server. I am getting the following error message
    when opening up Exchange Management Console on one of the exchange 2010 server. 
    "An Active Directory error 0x51 occurred when trying to check the suitability of server 'dc101.domain.local'. Error: 'Active directory
    response: The LDAP server is unavailable.' 
    dc101 does not exist anymore. I tried changing the Configuration Domain Controller by manually specify a domain controller but get the exact
    same error message and also gets an empty list when selecting the domain. Other administrators who logs into to the same server do not get this error message. 
    If I open the exchange management console on another exchange server, it works without problem. Is there a setting somewhere I need to change
    to point it to the correct domain controller using power shell?

    I fixed it for myself.
    Organization Configuration->Modify Configuration Domain Controller->select Use a default domain controller
     

  • Getting "The operation couldn't be completed. (NSURLErrorDomain error -1100.)" when trying to check for software updates

    Does anyone know how to resolve this problem?  I get "The operation couldn’t be completed. (NSURLErrorDomain error -1100.)" when trying to check for softward updates on my iMac.  I have the latest version of Mountain Lion installed.

    Apparently a server overload > NSURLErrorDomain error -1100
    Try again later.

  • Anyone else getting a timed out error message when trying to check for updates via the app store software on a desktop?

    anyone else getting a timed out error message when trying to check for updates via the app store software on a desktop?

    Hi, couple of things to try...
    Anonymous
    Post subject: NSURLErrorDomain error -1100 in OS X 10.8
    If you check for software updates using the App Store in OS X 10.8 and get "NSURLErrorDomain error -1100" the problem may be with your Software Update preferences. This is particularly likely if you were using a custom Apple Software Update server. To solve the problem, quit the App Store, move the following two files (if present) to the trash, restart, and only then rerun App Store updates:
    /Library/Preferences/com.apple.SoftwareUpdate.plist
    /Library/Preferences/com.apple.SoftwareUpdate.plist.lockfile
    http://x704.net/bbs/viewtopic.php?f=12&t=6130
    I was recently trying to upgrade to mountain lion through the app store.  I have unreliable Internet from a cable company whom I will not name, but we all know who they are.  My Internet dropped while downloading the upgrade.  Once I went through the notorious unplug the modem/router and plugged it back in to gain Internet connectivity again, I could not resume. No matter what I did, the app store kept displaying "an error occurred." I am hoping that those with the same issue read this first to save them hours of skimming through the Internet to find a solution.  Here are the steps to take:
    1. Make sure you have reestablished Internet connection
    2. Chances are you got frustrated when you tried to resume/unpause the download and clicked the "X" to the left.  If so, select the "Store" drop-down menu from the App Store and select "View My Account." There should be an option to unhide your purchase.  You know what to do.
    3. There is also an option to  reset all warnings for buying and downloading under "View My Account." Do this, click "Done," sign out of the App Store and quit the App Store.
    4. Open the Preferences in safari and select Privacy.  Select "Remove All Website Data."  Just do it.
    5. Launch the app store and sign in.
    6. Now, if you "Check for Unfinished Downloads" everything works peachy.
    I hope this helps.  Not much I can do for your Internet connection though.
    JonEz15...
    https://discussions.apple.com/thread/4697970?tstart=120

  • HT4623 error message 1032 mf when trying to check new mail plus no alert bell

    why am i getting wrong pw and error message 1032 mf when trying to check mail plus no alert bell

    Try the suggestion that chat2chuck97 suggested here -> I constantly get MFMessageErrorDomain error 1032 when accessing my email on iPad, what is the solution?
    chat2chuck97 wrote:
    Ok, I just found another site that had step by step. You:
    Delete your email account in settings (mail, contacts, calendars)
    Go to safari and clear history and cookies
    Go back and re enter email account details in mail, contact, calendar settings)
    This actually worked for me,
    NOTE: you must clear everything before re-entering your email account. That's what I didn't do last time, so probably why it didn't work first time round.
    Hope it works for you too.

  • Error when trying to access the RBAC User editor and Message tracking

    Hi,
    I am getting an error when trying to access the RBAC User editor and Message tracking on the Web Mgmt interface. I verified that the admin account trying to access is in the Organization Management group and has the correct Role Assignment Policy applied.
    I searched through this thread below and saw that matching the msExchRoleLink and msExchUserLink attributes fixed the issue. 
    https://social.technet.microsoft.com/Forums/exchange/en-US/fc568cc6-8691-4127-b70b-bcc82f9b1f7f/first-2010-cas-server-no-administrator-rights-emc-permissions-gone?forum=exchange2010
    However I have another environment where this is not the case and works just fine; the msExchUserLink attribute has a value of CN=Organization Management,OU=Microsoft Exchange Security Groups,DC=Domain,DC=Local which is different as per the issue outlined in
    the above thread so I am not convinced that this will work and also don’t want to blindly edit something in adsiedit without being sure.
    I then checked the event logs on the server and saw the below error logged;
    Current user: 'Domain/Server Services Accounts/administrator'
    Request for URL 'https://server.domain.com/ecp/default.aspx?p=AdminDeliveryReports&exsvurl=1' failed with the following error:
    System.Web.HttpUnhandledException: Exception of type 'System.Web.HttpUnhandledException' was thrown. ---> Microsoft.Exchange.Management.ControlPanel.UrlNotFoundOrNoAccessException: The page may not be available or you might not have permission to open the
    page. Please contact your administrator for the required credentials. For new credentials to take effect, you have to close this window and log on again.
       at Microsoft.Exchange.Management.ControlPanel._Default.CreateNavTree()
       at Microsoft.Exchange.Management.ControlPanel._Default.OnLoad(EventArgs e)
       at System.Web.UI.Control.LoadRecursive()
       at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
       --- End of inner exception stack trace ---
       at System.Web.UI.Page.HandleError(Exception e)
       at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
       at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
       at System.Web.UI.Page.ProcessRequest()
       at System.Web.UI.Page.ProcessRequest(HttpContext context)
       at ASP.default_aspx.ProcessRequest(HttpContext context)
       at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
       at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
    Microsoft.Exchange.Management.ControlPanel.UrlNotFoundOrNoAccessException: The page may not be available or you might not have permission to open the page. Please contact your administrator for the required credentials. For new credentials to take effect, you
    have to close this window and log on again.
       at Microsoft.Exchange.Management.ControlPanel._Default.CreateNavTree()
       at Microsoft.Exchange.Management.ControlPanel._Default.OnLoad(EventArgs e)
       at System.Web.UI.Control.LoadRecursive()
       at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    I then had a look at the IIS permissions for ecp and owa. The account did not have permissions so I added them there but still got the same error. I’ve also tried all of the above with a newly-created account but still got the same issue.
    Any ideas as to what the above event log is specifically referring to?

    Hi,
    From your description, I would like to clarify the following thing:
    If you want to search message tracking logs, the account you use should be a member of the role groups below:
    Organization Management role group, Records Management role group, Recipient Management role group.
    Hope this can be helpful to you.
    Best regards,
    Amy Wang
    TechNet Community Support

  • I keep receiving security errors when trying to open a pdf.

    I keep receiving a security error when trying to run my javascript program, the function previously worked, but now creates an error after I entered the addWaterMark function. I have put my whole code below for my script.
    The basic function is to load a text file into an array which has the path and file location, open the document, add a watermark, save the file, close the file, then repeat for the next array position.
    I am using Acrobat Standard so I am unable to debug using the console, therefore I am struggling to understand what I am doing wrong. I will point out that I am not a fluent programmer, only have a basic knowledge of programming.
    Code
    app.addSubMenu(
      cName:"Extras",
      cParent:"Edit"
    app.addMenuItem(
      cName:"Import File",
      cParent:"Extras",
      cExec:"main()"
    function main()
      var fileCount = 0
      var listOfFiles = []
      listOfFiles = importData()
      amountOfFiles = listOfFiles.length
      for (var i =0; i<listOfFiles.length; i++)   //calculates amount of entries in the array listOfFiles
      newFile = openFile(listOfFiles[i]) //Opens current file
      var d = app.activeDocs; //Gets current document title name 
      addWater(d[0]);
      app.execMenuItem("Save");
      for( var x in d ) d[x].closeDoc();
    function addWater(myName)
    { app.alert("watermark",0);
      myName.addWatermarkFromText(
      cText: "OBSOLETE",
      cFont: "Arial",
      nFontSize:36,
      aColor: color.red,
      nOpacity: 0.5
    //function SaveFile saves the current file but with an addition of WM to the filename
    saveFile = app.trustedFunction(function(currentDoc, currentFileName)
      { app.alert("savefile",0);
      app.beginPriv();
      currentDoc.saveAs(currentFileName);
      app.endPriv();
    //function openFile which opens the file named in the variable currentFilename
    openFile = app.trustedFunction(function(currentFileName)
      {app.alert("openfile" + currentFileName,0);
      app.beginPriv();
      app.openDoc(currentFileName);
      app.endPriv();
    //importData function imports the paths and filenames contained in the list.txt located on the desktop
    importData = app.trustedFunction(function()
      {app.alert("import",0);
      app.beginPriv();
      cFilePath = "/C/Users/103019944/Desktop/File_List.txt";
      var stmData = util.readFileIntoStream(cFilePath);
      var cData = util.stringFromStream(stmData);
      var cMsg = cData;
      var fileArray = cMsg.split("\r\n");
      for (var i =0; i<fileArray.length; i++)
      return(fileArray);
      app.endPriv();

    I have found the error, you are quite correct I had an extra letter in the filename, I thought I'd checked this but just shows that sattention to detail is the key.
    The script works perfectly now, thanks you for your help, really appreciated.
    Thanks again
    Ben

  • Error when trying to create a JCO Destination

    Hi
    I receives the following error when trying to creat a JCO Destination, clicking on the button in the host:port/webdynpro/dispatcher/sap.com/tcwdtools/Explorer
    I get the following error:
    Error stacktrace:
    java.lang.NullPointerException
         at com.sap.tc.webdynpro.serverimpl.wdc.sl.SystemLandscapeFactory.checkStatus(SystemLandscapeFactory.java:880)
         at com.sap.tc.webdynpro.services.sal.sl.api.WDSystemLandscape.checkStatus(WDSystemLandscape.java:469)
         at com.sap.tc.webdynpro.tools.sld.NameDefinition.updateJCODestinations(NameDefinition.java:272)
         at com.sap.tc.webdynpro.tools.sld.NameDefinition.updateNavigation(NameDefinition.java:237)
         at com.sap.tc.webdynpro.tools.sld.NameDefinition.wdDoInit(NameDefinition.java:144)
         at com.sap.tc.webdynpro.tools.sld.wdp.InternalNameDefinition.wdDoInit(InternalNameDefinition.java:223)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingView.doInit(DelegatingView.java:61)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.initController(Controller.java:215)
         at com.sap.tc.webdynpro.progmodel.view.View.initController(View.java:274)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.getView(ViewManager.java:540)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.bind(ViewManager.java:398)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.getView(ViewManager.java:555)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.bindRoot(ViewManager.java:422)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.init(ViewManager.java:130)
         at com.sap.tc.webdynpro.progmodel.view.InterfaceView.initController(InterfaceView.java:43)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.getView(ViewManager.java:540)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.bind(ViewManager.java:398)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.makeVisible(ViewManager.java:620)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.performNavigation(ViewManager.java:263)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.navigate(ClientApplication.java:740)
         at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.handleActionEvent(WebDynproMainTask.java:350)
         at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.execute(WebDynproMainTask.java:640)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:59)
         at com.sap.tc.webdynpro.clientserver.cal.ClientManager.doProcessing(ClientManager.java:251)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doWebDynproProcessing(DispatcherServlet.java:154)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:116)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:55)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:391)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:265)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:345)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:323)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:865)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:240)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:37)
         at com.sap.engine.core.cluster.impl6.session.UnorderedChannel$MessageRunner.run(UnorderedChannel.java:71)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:94)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:162)
    Any ideas?
    Regards
    Kay-Arne

    Hi,
    Have you configured your SLD? Check JCO Destination error out or search for "com.sap.tc.webdynpro.serverimpl.wdc.sl.SystemLandscapeFactory.checkStatus" in the SDN forums.
    Best regards,
    Vladimir

  • Propagation error when trying to download inventory from server

    Hi there,
    Has anyone seen the following error when trying to download an inventory from the server.:
    Buildfile: C:\bea10.3\user_projects\workspaces\RST\RSTPropagation\21102009\propbuild.xml
    import:
    BUILD FAILED
    C:\bea10.3\user_projects\workspaces\RST\RSTPropagation\21102009\propbuild.xml:39: The propagation servlet returned a failure response: The [Download] operation is halting due to the following failure: null
    Additional Information:
    The propagation servlet returned the following log information found in [C:\DOCUME~1\myuser\LOCALS~1\Temp\onlineDownload__D21_H11_M8_S11.log]:
    INFO (Oct 21, 2009 11:08:11 AM SAST): Verbose logging has been disabled on the server.
    INFO (Oct 21, 2009 11:08:11 AM SAST): The propagation servlet is starting the [Download] operation.
    INFO (Oct 21, 2009 11:08:11 AM SAST): The modifier [allowMaintenanceModeDisabled] with a value of [true] will be used for this operation.
    INFO (Oct 21, 2009 11:08:11 AM SAST): Validating that current user is in the Admin role...SUCCESS
    ERROR (Oct 21, 2009 11:08:11 AM SAST): Validating that Maintenance Mode is enabled...FAILURE
    ERROR (Oct 21, 2009 11:08:11 AM SAST): Maintenance Mode has not been enabled on the server. With Maintenance Mode disabled it is possible for users to modify the application. This may cause problems for propagation.
    WARNING (Oct 21, 2009 11:08:11 AM SAST): Because the modifier [allowMaintenanceModeDisabled] was enabled this validation failure will be ignored and the operation will proceed. However, users will still be able to make modifications to the application, which could lead to missing data and unexpected propagation errors.
    WARNING (Oct 21, 2009 11:08:11 AM SAST): The temporary directory on the server used by propagation is [portal/bea10.3/user_projects/domains/RSTDomain/servers/wl_nstf/tmp/_WL_user/RSTEar/7v9j6d/public] with a length of [99] bytes. It is recommended that you shorten this path to avoid path length related failures. See the propagation documentation on how to specify the inventoryWorkingFolder context-param for the propagation servlet.
    INFO (Oct 21, 2009 11:08:19 AM SAST): Validating that LDAP and RDBMS security resources are in sync...SUCCESS
    INFO (Oct 21, 2009 11:08:19 AM SAST): Writing the inventory file to the servers file system at [{0}].
    ERROR (Oct 21, 2009 11:08:23 AM SAST): The [Download] operation is halting due to the following failure: null
    Total time: 14 seconds
    Please let me know if you have any ideas because "The [Download] operation is halting due to the following failure: null" means nothing to me.
    Please note changing the maintenace mode makes no difference.

    Please enable Verbose Logging on the propagation servlet
    http://download.oracle.com/docs/cd/E13155_01/wlp/docs103/prodOps/propToolAdvanced.html#wp1071690
    and check the logs on the server, they might give a clue

  • Error when trying to access a form through https

    Hi,
    I'm facing this error when trying to access a form through https, i'm using OAS10g 10.1.2.3 over linux, it has webutil configured and is working perfectly with https
    I'm accessing the form through webcache.
    the error:
    Java Plug-in 1.6.0_37
    Usar versión JRE 1.6.0_37-b06 Java HotSpot(TM) Client VM
    Directorio local del usuario = C:\Users\Carlos
    c:   borrar ventana de consola
    f:   finalizar objetos en la cola de finalización
    g:   liberación de recursos
    h:   presentar este mensaje de ayuda
    l:   volcar lista del cargador de clases
    m:   imprimir sintaxis de memoria
    o:   activar registro
    q:   ocultar consola
    r:   recargar configuración de norma
    s:   volcar propiedades del sistema y de despliegue
    t:   volcar lista de subprocesos
    v:   volcar pila de subprocesos
    x:   borrar antememoria del cargador de clases
    0-5: establecer nivel de rastreo en <n>
    cargar: clase oracle.forms.webutil.common.RegisterWebUtil no encontrada.
    java.lang.ClassNotFoundException: oracle.forms.webutil.common.RegisterWebUtil
         at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass0(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager.createApplet(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Excepción: java.lang.ClassNotFoundException: oracle.forms.webutil.common.RegisterWebUtil
    cargar: clase oracle.forms.engine.Main no encontrada.
    java.lang.ClassNotFoundException: oracle.forms.engine.Main
         at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass0(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager.createApplet(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Excepción: java.lang.ClassNotFoundException: oracle.forms.engine.Mainwhat could be the reason it can not find the webutil libraries with https ?? i tried erasing the java's cache but still the same error :(
    Regards
    Carlos

    I got it, i only had to check the option 'Use SSL 2.0 compatible ClientHello format' from the java's control panel advanced tab.
    Metalink's note: 787739.1
    :)

  • Error when trying to create XUSER information for SAPServiceSID

    Hi all,
    I am getting the following error when trying to create the XUSER information for the SAPServiceSID user on a WINDOWS/MAXDB 7.9 install..  Does anyone know a FIX for this?
    >xuser -c .\SAPServiceSID -U c -u CONTROL,P@ssw0rd -d SID -n HOSTNAME -S INTERNAL -t 0 -I 0 set
    FATAL: Close xuser entry failed: could not write USER data [1307]
    I am running the command as the SIDADM user. 
    I have tried the solutions in the following notes without success:
    39642
    1542818
    39439
    1875264
    1409913
    Thanks!

    Hi Jayson,
    Try this.
    Solution
    Add the "Administrators" group under:
    Control Panel
    -> All Control Panel Items
       -> Administrative Tools
          -> Local Security Policy
             -> Local Policies
                -> User Rights Assignment
                  -> Take ownership of files or other objects
    You check you command and modify.
    xuser.exe -c Hostname\SAPServiceSID -U DEFAULT -u Username, Password -d SID -n Hostname -S Schema_Name -t 0 -I 0 set'
    Regards,
    V Srinivasan

Maybe you are looking for

  • PDF as multiple text boxes

    When I open up a pdf that was written in hebrew to edit it. It shows up as a whole bunch of little text boxes instead of one big paragraph has anyone ever encountered such a problem?

  • Users Accessing All Files - 2 Accounts

    Hi everyone, My wife and I share the same iMac for work. On occasion, when one of us tries to to open a file created by the other user we get a -5000 error, which is "access denied". I know about setting up a shared folder, but I would like the entir

  • Change the document's language to French when iWork and Mac OS are both EN

    How can I do that? It's driving me mad, Keynote is underlining every single word of French I type because it is looking them up in the English dictionary. In Pages, I can do this manually when needed (although it's a major pain and has to be redone f

  • Text to speech conversion

    i am workign with oracle /dev and i want my text in field to be converted into speech. can i do this? i ev developed a queue managemnt systema nd i want teh token number and counter be spoken by the system when appear on teh screen. is it possible? p

  • USB printer, Airport Extreme, can set up printer but it won't print

    I have an Epson 6600 connected to the AEX via USB. I can see the printer from my Macs and add it just fine but when I send something to it nothing happens. No activity light, no printing or communication error, nothing. Its like the file just goes to