Photosmart 7520 Embedded Web Services Administrator log in and password

I have a Photosmart 7520 and I am trying to use Embedded Web Services to modify some settings.
When I do so a screen pops up asking me to enter the User and Password. I dont recall setting this up.
I have tried:
1. User: admin password: [blank]
2. User: admin password: admin
3. User: admin password: password
I repeated the same but typed in Admin instead of admin for the above 3 options. 
None of these work. I have searched everywhere for a solution but nothing.
I then tried to see if I could reset the printer into a state that is was in when I first unboxed it to start again. The only guidance on this for my printer is to turn the printer off by pushing the off button, unplugging it, waiting for a minute and starting again. That did not solve the issue either. The printer did not fully reset to the default when it was first unpacked and none of the above user password options worked.
There is nothing in the user manual on this.
Extremely frustrated having spent 3 hours of a Sunday trying to resolve this. Very poor!
This question was solved.
View Solution.

I am facing the same issue with my 7520. If you could send me that information I'd appreaciate it.

Similar Messages

  • The server at Mac OS X Server Web Services requires a username and password

    I am running SL Server 10.6.2, wiki works but when a person clicks an attached file in a wiki and then selects "open" they get a login popup with the notification The server at Mac OS X Server Web Services requires a username and password. It doesn't matter what they put into the login/pass it comes back. If they hit cancel then the document opens. If they click save then it saves with no issue. I can type in the admin login/pass of the server and it works. Does this mean the security settings to the location of the files is wrong? Any help is greatly appreciated!

    By the way they are using Internet Explorer 7 when opening these documents.

  • Unable to download object schema from Web services administration

    Hi,
    When I try to download generic/custom schema for Account/Contact/Campaign/Opportunity from Admin->web services administration , I get the following error:
    Schema file generation for the requested object in Web Services v2.0 is not currently supported in CRM On Demand.
    Why? I tried for some other objects as well, with the same result. How can I get the custom/generic schema for objects and how can I get the object model diagram for Oracle CRM OnDemand?
    Regards,

    Please post this question in the CRM On Demand Integration Development forum.

  • Java.lang.IllegalStateException 11g Web Services Administration

    Hello,
    When using Search 11g SES Web Services Administration,
    I get an error before it gives me the full xml of all the schedules (Code to Return All States of All Schedules). What is causing the java.lang.IllegalStateException: Stream already closed?
    I also want to narrow the results to give back only the status state property of all the schedules (Code to Narrow). When I try to narrow the results, it gives me no results, and an xml error. Is there an example on sending this in the List stateProperties argument for getAllStates(...)?
    Thanks
         /* getStatelessWebServiceClient, From SES Administration API Guide */
         private static AdminPortType getStatelessWebServiceClient(String webServiceURL) throws Exception
              AdminService adminService = new AdminService(
                        new URL( webServiceURL ),
                        new QName(
                                  "http://search.oracle.com/Admin",
                                  "AdminService"
              return adminService.getAdmin();
         /* Code to Return All States of All Schedules - Does give the results */
         String webServiceURL = "http://host:port/search/api/admin/AdminService";          
         AdminPortType adminPort = getStatelessWebServiceClient( webServiceURL );
         Credentials credentials = new Credentials();
         credentials.setUserName("username");
         credentials.setPassword("password");
         String xmlResults = adminPort.getAllStates("schedule", null, null, credentials, null, "en").getObjectXML();
         * Code to Return All States of All Schedules - Error */
         java.lang.IllegalStateException: Stream already closed
              at com.sun.xml.internal.org.jvnet.mimepull.DataHead$ReadMultiStream.fetch(DataHead.java:221)
              at com.sun.xml.internal.org.jvnet.mimepull.DataHead$ReadMultiStream.read(DataHead.java:196)
              at java.io.FilterInputStream.read(FilterInputStream.java:116)
              at java.io.PushbackInputStream.read(PushbackInputStream.java:169)
              at weblogic.xml.babel.reader.XmlReader$Utf8Reader.read(XmlReader.java:660)
              at weblogic.xml.babel.reader.XmlReader.read(XmlReader.java:496)
              at weblogic.xml.babel.scanner.ScannerState.read(ScannerState.java:400)
              at weblogic.xml.babel.scanner.ScannerState.expect(ScannerState.java:238)
              at weblogic.xml.babel.scanner.CloseTag.read(CloseTag.java:21)
              at weblogic.xml.babel.scanner.Scanner.startState(Scanner.java:256)
              at weblogic.xml.babel.scanner.Scanner.scan(Scanner.java:178)
              at weblogic.xml.babel.baseparser.BaseParser.accept(BaseParser.java:533)
              at weblogic.xml.babel.baseparser.CharDataElement.parse(CharDataElement.java:85)
              at weblogic.xml.babel.baseparser.BaseParser.parseElement(BaseParser.java:481)
              at weblogic.xml.babel.baseparser.BaseParser.parseSome(BaseParser.java:326)
              at weblogic.xml.stax.XMLStreamReaderBase.advance(XMLStreamReaderBase.java:195)
              at weblogic.xml.stax.XMLStreamReaderBase.next(XMLStreamReaderBase.java:237)
              at com.sun.xml.internal.ws.encoding.MtomCodec$MtomXMLStreamReaderEx.next(MtomCodec.java:462)
              at com.sun.xml.internal.bind.v2.runtime.unmarshaller.StAXStreamConnector.bridge(StAXStreamConnector.java:181)
              at com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallerImpl.unmarshal0(UnmarshallerImpl.java:349)
              at com.sun.xml.internal.bind.v2.runtime.BridgeImpl.unmarshal(BridgeImpl.java:109)
              at com.sun.xml.internal.bind.api.Bridge.unmarshal(Bridge.java:222)
              at com.sun.xml.internal.ws.client.sei.ResponseBuilder$DocLit.readResponse(ResponseBuilder.java:514)
              at com.sun.xml.internal.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:110)
              at com.sun.xml.internal.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:78)
              at com.sun.xml.internal.ws.client.sei.SEIStub.invoke(SEIStub.java:107)
              at $Proxy32.getAllStates(Unknown Source)
              at com...printCrawlersRunning(SESAdminTester.java:34)
              at com...SESAdminTester.main(SESAdminTester.java:126)
         amount read:0inputBufferSize50877overflow256
         /* Code to Narrow - Not Working*/
         String webServiceURL = "http://host:port/search/api/admin/AdminService";          
         AdminPortType adminPort = getStatelessWebServiceClient( webServiceURL );
         Credentials credentials = new Credentials();
         credentials.setUserName("username");
         credentials.setPassword("password");
         List<String> stateProperties = new ArrayList<String>();
         stateProperties.add("status");
         String xmlResults = adminPort.getAllStates("schedule", stateProperties, null, credentials, null, "en").getObjectXML();
         /* Code to Narrow - Error */
              java.lang.IllegalStateException: Stream already closed
              at com.sun.xml.internal.org.jvnet.mimepull.DataHead$ReadMultiStream.fetch(DataHead.java:221)
              at com.sun.xml.internal.org.jvnet.mimepull.DataHead$ReadMultiStream.read(DataHead.java:196)
              at java.io.FilterInputStream.read(FilterInputStream.java:116)
              at java.io.PushbackInputStream.read(PushbackInputStream.java:169)
              at weblogic.xml.babel.reader.XmlReader$Utf8Reader.read(XmlReader.java:660)
              at weblogic.xml.babel.reader.XmlReader.read(XmlReader.java:496)
              at weblogic.xml.babel.scanner.ScannerState.read(ScannerState.java:400)
              at weblogic.xml.babel.scanner.ScannerState.expect(ScannerState.java:238)
              at weblogic.xml.babel.scanner.CloseTag.read(CloseTag.java:21)
              at weblogic.xml.babel.scanner.Scanner.startState(Scanner.java:256)
              at weblogic.xml.babel.scanner.Scanner.scan(Scanner.java:178)
              at weblogic.xml.babel.baseparser.BaseParser.accept(BaseParser.java:533)
              at weblogic.xml.babel.baseparser.CharDataElement.parse(CharDataElement.java:91)
              at weblogic.xml.babel.baseparser.BaseParser.parseElement(BaseParser.java:481)
              at weblogic.xml.babel.baseparser.BaseParser.parseSome(BaseParser.java:326)
              at weblogic.xml.stax.XMLStreamReaderBase.advance(XMLStreamReaderBase.java:195)
              at weblogic.xml.stax.XMLStreamReaderBase.next(XMLStreamReaderBase.java:237)
              at com.sun.xml.internal.ws.encoding.MtomCodec$MtomXMLStreamReaderEx.next(MtomCodec.java:462)
              at com.sun.xml.internal.bind.v2.runtime.unmarshaller.StAXStreamConnector.bridge(StAXStreamConnector.java:181)
              at com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallerImpl.unmarshal0(UnmarshallerImpl.java:349)
              at com.sun.xml.internal.bind.v2.runtime.BridgeImpl.unmarshal(BridgeImpl.java:109)
              at com.sun.xml.internal.bind.api.Bridge.unmarshal(Bridge.java:222)
              at com.sun.xml.internal.ws.client.sei.ResponseBuilder$DocLit.readResponse(ResponseBuilder.java:514)
              at com.sun.xml.internal.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:110)
              at com.sun.xml.internal.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:78)
              at com.sun.xml.internal.ws.client.sei.SEIStub.invoke(SEIStub.java:107)
              at $Proxy32.getAllStates(Unknown Source)
              at com...SESAdminTester.printCrawlersRunning(SESAdminTester.java:40)
              at com...SESAdminTester.main(SESAdminTester.java:134)
         Error at line:447 col:78 Got character[0] expected a valid XML character
         amount read:0inputBufferSize19809overflow256
              at weblogic.xml.babel.scanner.ScannerState.checkedRead(ScannerState.java:628)
              at weblogic.xml.babel.scanner.CharData.read(CharData.java:65)
              at weblogic.xml.babel.scanner.Scanner.startState(Scanner.java:296)
              at weblogic.xml.babel.scanner.Scanner.scan(Scanner.java:178)
              at weblogic.xml.babel.baseparser.BaseParser.accept(BaseParser.java:533)
              at weblogic.xml.babel.baseparser.CharDataElement.parse(CharDataElement.java:91)
              at weblogic.xml.babel.baseparser.BaseParser.parseElement(BaseParser.java:481)
              at weblogic.xml.babel.baseparser.BaseParser.parseSome(BaseParser.java:326)
              at weblogic.xml.stax.XMLStreamReaderBase.advance(XMLStreamReaderBase.java:195)
              at weblogic.xml.stax.XMLStreamReaderBase.next(XMLStreamReaderBase.java:237)
              at com.sun.xml.internal.ws.encoding.MtomCodec$MtomXMLStreamReaderEx.next(MtomCodec.java:462)
              at com.sun.xml.internal.bind.v2.runtime.unmarshaller.StAXStreamConnector.bridge(StAXStreamConnector.java:181)
              at com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallerImpl.unmarshal0(UnmarshallerImpl.java:349)
              at com.sun.xml.internal.bind.v2.runtime.BridgeImpl.unmarshal(BridgeImpl.java:109)
              at com.sun.xml.internal.bind.api.Bridge.unmarshal(Bridge.java:222)
              at com.sun.xml.internal.ws.client.sei.ResponseBuilder$DocLit.readResponse(ResponseBuilder.java:514)
              at com.sun.xml.internal.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:110)
              at com.sun.xml.internal.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:78)
              at com.sun.xml.internal.ws.client.sei.SEIStub.invoke(SEIStub.java:107)
              at $Proxy32.getAllStates(Unknown Source)
              at com...SESAdminTester.printCrawlersRunning(SESAdminTester.java:40)
              at com...SESAdminTester.main(SESAdminTester.java:134)
         Caught unexpected run-time exception
         message = Failed to read a response: javax.xml.bind.UnmarshalException
         - with linked exception:
         [javax.xml.stream.XMLStreamException: Error at line:447 col:78  Got character[0] expected a valid XML character]
         stackTrace =
         com.sun.xml.internal.ws.encoding.soap.DeserializationException: Failed to read a response: javax.xml.bind.UnmarshalException
         - with linked exception:
         [javax.xml.stream.XMLStreamException: Error at line:447 col:78  Got character[0] expected a valid XML character]
              at com.sun.xml.internal.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:113)
              at com.sun.xml.internal.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:78)
              at com.sun.xml.internal.ws.client.sei.SEIStub.invoke(SEIStub.java:107)
              at $Proxy32.getAllStates(Unknown Source)
              at com...SESAdminTester.printCrawlersRunning(SESAdminTester.java:40)
              at com...SESAdminTester.main(SESAdminTester.java:134)
         Caused by: javax.xml.bind.UnmarshalException
         - with linked exception:
         [javax.xml.stream.XMLStreamException: Error at line:447 col:78  Got character[0] expected a valid XML character]
              at com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallerImpl.handleStreamException(UnmarshallerImpl.java:415)
              at com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallerImpl.unmarshal0(UnmarshallerImpl.java:351)
              at com.sun.xml.internal.bind.v2.runtime.BridgeImpl.unmarshal(BridgeImpl.java:109)
              at com.sun.xml.internal.bind.api.Bridge.unmarshal(Bridge.java:222)
              at com.sun.xml.internal.ws.client.sei.ResponseBuilder$DocLit.readResponse(ResponseBuilder.java:514)
              at com.sun.xml.internal.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:110)
              ... 5 more
         Caused by: javax.xml.stream.XMLStreamException: Error at line:447 col:78 Got character[0] expected a valid XML character
              at weblogic.xml.stax.XMLStreamReaderBase.advance(XMLStreamReaderBase.java:206)
              at weblogic.xml.stax.XMLStreamReaderBase.next(XMLStreamReaderBase.java:237)
              at com.sun.xml.internal.ws.encoding.MtomCodec$MtomXMLStreamReaderEx.next(MtomCodec.java:462)
              at com.sun.xml.internal.bind.v2.runtime.unmarshaller.StAXStreamConnector.bridge(StAXStreamConnector.java:181)
              at com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallerImpl.unmarshal0(UnmarshallerImpl.java:349)
              ... 9 more
         Caused by: Error at line:447 col:78 Got character[0] expected a valid XML character
              at weblogic.xml.babel.scanner.ScannerState.checkedRead(ScannerState.java:628)
              at weblogic.xml.babel.scanner.CharData.read(CharData.java:65)
              at weblogic.xml.babel.scanner.Scanner.startState(Scanner.java:296)
              at weblogic.xml.babel.scanner.Scanner.scan(Scanner.java:178)
              at weblogic.xml.babel.baseparser.BaseParser.accept(BaseParser.java:533)
              at weblogic.xml.babel.baseparser.CharDataElement.parse(CharDataElement.java:91)
              at weblogic.xml.babel.baseparser.BaseParser.parseElement(BaseParser.java:481)
              at weblogic.xml.babel.baseparser.BaseParser.parseSome(BaseParser.java:326)
              at weblogic.xml.stax.XMLStreamReaderBase.advance(XMLStreamReaderBase.java:195)
              ... 13 more

    Hi,
    I have the same problem with WLS 11g. Did you resolve the problem?

  • How to create A web services step by step and their uses

    How to create A web services step by step and their uses with their T-Codes
    pls dont send any links
    thank you
    Regards,
    Jagrut Bharatkumar Shukla

    Hi
    Use the Tcode <b>WFWS</b> to create the Web service
    enter the Transaction to whih you wants create the web service and save
    Regards
    Anji

  • Free - J2EE and Web Services Workshops by Oracle and TheServerSide

    Oracle and TheServerSide are pleased to invite you to a free SOA developer workshop. This one-day event includes technical sessions, an install fest, hands-on labs, and a hacker's contest. (Attendees must bring their own laptops to participate in the labs and contest.) Topics will include:
    * Overview of Service Oriented Architectures (SOA)
    Discover what it means to move to SOA and learn about key SOA technologies, including J2EE 1.4, Web Services, BPEL, EJB, JSP, and Struts.
    * Constructing the Services Layer
    Develop back-end business services using the latest J2EE technologies.
    * From Web Services to Business Processes
    Learn about key J2EE 1.4 technologies used to implement Web services, and find out how to build Web services-based business processes using the industry standard Business Process Execution Language (BPEL).
    * User Interfaces for SOA
    Use Struts and design patterns to bind business services to user interfaces.
    The hands-on labs take developers through the different stages of building an SOA based application. Developers must bring their own laptop to participate in the workshop, and they will get CDs with the software they need to develop and run the labs.
    Hacker’s Event - Social and Coding Competition
    Following the workshop, attendees will be treated to free pizza and beer and will have the opportunity to compete for additional prizes. Experts from TheServerSide will join the session to discuss SOA best practices.
    Oracle Developer Days are free, but space is limited, so register now.
    Locations, Dates, and registration at:
    http://www.oracle.com/go/?&Src=1587968&Act=43
    Here is what some developers had to say about the events that ran last year:
    http://otn.oracle.com/events/otnworkshop/testimonials.html

    Here are the cities and dates for this developer roadshow. The workshops in Redwood Shores and New York are almost full, the others have more seats available, so check out http://otn.oracle.com/odd and register soon.
    Redwood Shores, CA - 4 Aug
    New York, NY - 10 Aug
    Dallas, TX - 12 Aug
    Dearnborn, MI - 17 Aug
    Miami, FL - 19 Aug
    Denver, CO - 24 Aug
    Atlanta, GA - 26 Aug

  • J2EE and Web Services Workshops by Oracle and TheServerSide

    Oracle and TheServerSide are pleased to invite you to a free SOA developer workshop. This one-day event includes technical sessions, an install fest, hands-on labs, and a hacker's contest. (Attendees must bring their own laptops to participate in the labs and contest.) Topics will include:
    * Overview of Service Oriented Architectures (SOA)
    Discover what it means to move to SOA and learn about key SOA technologies, including J2EE 1.4, Web Services, BPEL, EJB, JSP, and Struts.
    * Constructing the Services Layer
    Develop back-end business services using the latest J2EE technologies.
    * From Web Services to Business Processes
    Learn about key J2EE 1.4 technologies used to implement Web services, and find out how to build Web services-based business processes using the industry standard Business Process Execution Language (BPEL).
    * User Interfaces for SOA
    Use Struts and design patterns to bind business services to user interfaces.
    The hands-on labs take developers through the different stages of building an SOA based application. Developers must bring their own laptop to participate in the workshop, and they will get CDs with the software they need to develop and run the labs.
    Hacker’s Event - Social and Coding Competition
    Following the workshop, attendees will be treated to free pizza and beer and will have the opportunity to compete for additional prizes. Experts from TheServerSide will join the session to discuss SOA best practices.
    Oracle Developer Days are free, but space is limited, so register now.
    Locations, Dates, and registration at:
    http://www.oracle.com/go/?&Src=1587968&Act=43
    Here is what some developers had to say about the events that ran last year:
    http://otn.oracle.com/events/otnworkshop/testimonials.html

    Here are the cities and dates for this developer roadshow. The workshops in Redwood Shores and New York are almost full, the others have more seats available, so check out http://otn.oracle.com/odd and register soon.
    Redwood Shores, CA - 4 Aug
    New York, NY - 10 Aug
    Dallas, TX - 12 Aug
    Dearnborn, MI - 17 Aug
    Miami, FL - 19 Aug
    Denver, CO - 24 Aug
    Atlanta, GA - 26 Aug

  • (261680070) Q SYNCH-11 How do my web service methods accees EJBs and java classes?

    A<SYNCH-11> How do my web service methods accees EJBs and java classes?
    A<SYNCH-11> It is simple to use java classes, just do it as you would ordinarily.
    The .jws file really contains a simple class so you can program with it in the same
    way that you would use a regular Java class.
    To use an EJB you can go and access it directly as you would with any EJB remote
    client (lookup home stub, create, etc) or if the EJB is deployed to WLS you can use
    a control to provide a very simple wrapper to the EJB. We will see this in detail
    on Thursday in the ADVC module.

    Futher information about the possibility of callback:
    It may be possible for a synchronous only web service (i.e. MS .net) to even paticipant
    in the callback functionality of asynchronous web services. If the client implements
    the appropriate methods for the callback but listens for them on a different port
    or binding than the SOAP request, then web service may be able to build a response
    if the client's "callback URL" is submitted as the beginning part of a conversation.
    Watch the BEA developer forum (http://dev2dev.bea.com) for more information about
    this approach and other tips and techniques for building web services.
    "Adam FitzGerald" <[email protected]> wrote:
    >
    Q<SYNCH-03> I heard that MS .net only implements synchrnonus method? If
    this is true.
    Does it means my async methods will only work with J2EE clients?
    A<SYNCH-03> I do not know the limitations of .net but let me point out that
    is very
    difficult to provide asynchronous web service method invocation (this is
    different
    from an asynchronous web service). HTTP as a general communication protocol
    is based
    on a request and response paradigm so your client libraries will mostly
    likely be
    expecting a response even if it is empty (check the asynchronous example
    from today
    to see that the start method still returns an empty response). You must
    distinguish
    this from the notion of an asynchronous web service which is a business
    operation
    that occurs on the server whose return value/result is not directly associated
    with
    building response to the client. An asynchronous web service can (and generally
    will)
    be started and stopped with web service operations that are invoked synchronously.
    Thus MS .net clients can still be client to WLS hosted web services.

  • Create a web service from java bean and map exceptions to SOAP faults

    Hi,
    We have to expose our Session stateless EJB3 as web services. I've tried to use annotations and jdev wizard "java bean to web service" and it works fine.
    Our problem now is that our methods can throw a business exception that contains a list of error message strings to be presented on the client.
    I did not find any way to use annotations to make it build a wsdl with soap fault mapped to our exception class. Neither I could to make the wizard to create wsdl with faults.
    As we are exposing already designed and implemented classes as web services, I think the bottom-top (java->wsdl) approach is better that top->botton (wsdl->java). Therefore, I'm looking for a possibility to generate the web services from the java beans and have the exception be mapped to a soap fault message.
    We are using jdev 10.1.3.1 and OAS 10.1.3.1., is there a way to map exceptions to soap faults using bottom->top approach?
    thank you

    A couple of links that may be of help:
    http://www.netbeans.org/servlets/ReadMsg?listName=nbj2ee&msgNo=1218
    My last question concerning web services:
    I have already written a session bean and I'd like to add some methods
    as a web service to it, how do I do that?
    Or I can only create another bean for a webservice and cannot modify the
    original one?You might create web service with existing sources and select you bean. New web services with appropriate lookup method will be generated.
    All web service method, that will be exposed in web service, you
    should add itself (Pop-up menu Web Service -> Add operation)
    http://usersguide.netbeans.org/files/documents/40/73/Chapter9-WebServices.pdf

  • I'm in Afghanistan with limited internet options. I have a wifi service plan I am signed up for however, a log in and password are required via browser log in, not a security key attached to the wifi. Please help...

    I'm in Afghanistan with limited internet options. I have a wifi service plan I am signed up for however, a log in and password are required via browser log in, not a security key attached to the wifi (like a hotel). Please help...

    the appletv will not be able to work on it's own
    you can use a computer or iphone acting the role of hotspot login using it's browser and getting internet access and then sharing it with the appletv
    so the appletv sees it as a wifi router it connects to

  • Administrator's name and password - unable to make changes

    I just bought my Macbook about two weeks ago, created a administrator name and password, and it worked just fine. However, for the past couple of days, I'm noticing that I cannot make any changes with Software Updates because when I type in the (CORRECT) name and password, the window says "You must type an administrator's name and password to make changes to Software Update. Please try again." Yes, I've BEEN typing the correct name/password. I've tried resetting the password which works fine, but when it comes to inputting it into a window, my macbook doesn't seem to read what I type in. Does anyone know what is going on here? Please help....

    Reply to maurobras.
    Seems to me that you have the lost admin problem.One of Leopard'd little ways I have experienced myself. That is the subject of many posts here. Situation (if I am correct in my supposition) is not that you have entered a wrong password, but that what you thought, and what had been till then, was a password of an administrator was not because Leopard had downgraded that user to a non admin.
    Look up ' lost administartor' or such in the postings. Put the Leopard install DVD into the machine when booted up.>>>Restart holding down C key. This boots from the install disk. Do not install but look into the menus for the 're set password' option.>>> Choose to re set the root password>>> Write down a good PW for root and write it down.>>>Reset the root password>>>Close the DVD and log in as root with said PW.>>>As root go to System Preferences>>Open the little lock and choose the account that should be an admin>>tick the little box 'allow to administer..'>>>log out of root>>>log in as admin>>open application Directory Utility>> choose to disable root (a safety procedure). You should find now in Sys Prefs that the account IS an admin. Some have found problems getting an option to disable in Directory Utility in that case there is a aTerminal command, disenable root, that works. Make sure of syntax in any Terminal command. Look up man disenable.

  • Appplications using "Administrator" user id and password in J2EE engine...

    All,
    We have a EP 7.0 with SPS 14. Our "Administrator" user id account gets locked every now and then.
    Eventhough if we unlock it or change the password using configtool, it works for sometime..but,again the "Administrator" user id account gets locked.
    Somewhere some application is still using the old password. So,no matter what password we use or we updated the password everywhere..it works for some time and again the its getting locked.
    Can anybody tell me how to find all the applications using "administrator" user id and password or the applications which requires administrator user id directly or indirectly.
    Is nwds and nwdi deployment uses the "administrator" uidpw ?
    Note: We have already tried with updating the password using configtool and updated the password all the places.it works for some time and it gets locked again..Please help..Thanks.

    to Michael Nicholls  
    Addy 365 posts:        
    We have already tried with updating the password using configtool and updated the password all the places
    Yes from log it looks like impossible to check, but you can determine immediately whether the blockage occurs after restart, or only at certain times of the launch of a job ....
    To Addy 365
    search after restart the lines in security log like
    LOGIN.FAILED, and  try to recheck ol RFC  from all other system's you have in your enterprise ....
    P.S. first check are you have any available RFC listeners in JCO RFC provider.
    To Michael Nicholls    in ABAP side we can check in sm21 from with terminal blocking occurs, why Why the same is not implemented in JAVA? Or for this need special tool like Wily Introscope ?
    Regards.

  • Won't accept administrator's name and password

    hi there,
    I just bought an imac 20 inch. Now it started up all good then I installed leopard and all seemed well, until I tried to software update. It asked for Admin name and password. I provided these and it just said 'You need to type an administrator's name and password to update', as if I didn't type anything at all.
    Now I know my admin and password I am typing are correct as I can log out and on. So my next step was to re-install, but then I cannot do this without typing in admin and password which it just acts as if I don't write anything. I then tried to do the original disks holding 'c' then go to the password changer in 'utilities'...but wouldn't you know it it just crashes every time I open!
    I am stuck and very frustrated... any help would be appreciated. I saw similar topics posted but none that really fit...please help. Thanks.....
    PS- leopard kept on freezing on installation.

    This same problem happened to me, all the sudden one day my mac decided to revert to the original standard root username and password which I obviously did not know. In order to change this:
    1) Activate single user mode on reboot as by pressing cmd + s as your computer starts up. Make sure you do it right away, and keep the keys pressed down.
    2) Where the cursor pops up, type exactly
    /sbin/mount - uw/
    3) When the next cursor pops up type exactly
    passwd
    4) Then you can type any password you want (now changing the root password to be what you want)
    Note you will not be able to see what you type, but the text is being recognized
    5)The computer asks for you to retype the password, retype it
    6) Type reboot
    Once the computer restarts you can navigate to system preferences>accounts> and then unlock the account (lock is located on the bottom left corner) using Username: root and the password you just set. Henceforth, you can appoint your account as the administrator. Hope it works!
    PS- Google is a wondrous troubleshooting tool everyone!!! (Have posted this response to many posts already)

  • HT4889 Question - administrator user name and password

    I have recently acquired an Imac to replace my elderly G4 and wish to transfer the G4 content to the Imac using Migration assistant.  The authentication box has opened on the G4 asking for my administrator user name and password but in a senior moment I find I cannot remember where they are.  Can anyone help me?

    Hello, peterandmo. 
    Thank you for visiting Apple Support Communities.
    Here are the steps that will walk you through changing an admin account password using another admin account.
    Resetting a user's password using an administrator account
    Important: Passwords for administrator accounts should not be blank.
    Log in with an administrator account. Tip: If you don't know the password of any administrator accounts, see "Resetting the original administrator account password" below.
    From the Apple menu choose System Preferences.
    From the View menu choose Users & Groups.
    Click the lock button if it appears locked; enter the administrator password.
    Select the name of the user whose password you want to change.
    Click the Reset Password button or the Change Password button.
    Enter a new password in both the New Password and Verify fields, and add a Password Hint if desired.
    Click the Reset Password button or the Change Password button.
    OS X: Changing or resetting an account password
    http://support.apple.com/kb/ht1274
    Cheers,
    Jason H.

  • I cannot log onto sites that require my log in and password. I get no error message, fire fox just goes back to the same empty log in screen. this problem is not limited to one site. I reloaded firefox with same results.

    When i type in my log in and password and enter, the site either returns to the blank screens or does nothing. This is not limited to one or two sites. all of my financial institutions, electric company, insurance companies, even trying to register here so that i could ask this questions. In this situation, when i hit the register button, nothing happend, its as iff the button is inactive. i had to go to IE to register and post this question. I just tried to enter my new log in and pw on the screen in fire fox and nothing happens. Some sites behave differently when i hit the submit or log in button. the information seems to be transmitted but the screen comes right back to the original log in screen with blank fields. there are no error instructions that something does not match or is missing. then i go to IE and it works.
    This started a few weeks ago. I cant identify anything that was added around that time but i tried a system restore and that did nothing. i deleted fire fox and downloaded the latest version 3.6.13 and it is still happening

    This issue can be caused by corrupted cookies.
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    * Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    * Tools > Options > Privacy > Cookies: "Show Cookies"
    *http://kb.mozillazine.org/Cookies

Maybe you are looking for