UCCX application user and password.

Hi Team ,
Is there any effect on configuration if i change username and password by using these commands?
utils reset_application_ui_administrator_name
utils reset_application_ui_administrator_password
Actually i don't know the username and password of application user of uccx even not in the cucm enduser.

show uccx appadmin administrators command is not available on 8.5.1 version ?
admin:show uccx
      show uccx cad*
      show uccx components
      show uccx dbcontents
      show uccx dbschema
      show uccx dbserver*
      show uccx dbtable*
      show uccx jtapi_client*
      show uccx license
      show uccx provider*
      show uccx recordings*
      show uccx servm*
      show uccx subcomponents
      show uccx tech*
      show uccx trace*
      show uccx version
admin:set uccx
      set uccx cad*
      set uccx provider*
      set uccx trace*

Similar Messages

  • Uccx application user and password.(urgent)

    Dear Team ,
    One of the client have forgot the username and password of the UCCX application.
    I tried to find in CUCM enduser but failed as there is no proper description for the UCCX.
    Can you please guide me ,how to find the uccx application user and password (i thinkg from cucm enduser).
    Thanks

    admin:show ucc
    admin:show uccx
          show uccx cad*
          show uccx components
          show uccx dbcontents
          show uccx dbschema
          show uccx dbserver*
          show uccx dbtable*
          show uccx jtapi_client*
          show uccx license
          show uccx provider*
          show uccx recordings*
          show uccx servm*
          show uccx subcomponents
          show uccx tech*
          show uccx trace*
          show uccx version
    admin:set uccx
          set uccx cad*
          set uccx provider*
          set uccx trace*

  • External Web Service - User and password in HTTP header

    Hi!
    How is it possible to add user and password in the HTTP header in a external web service call? 
    I have created a "Portal Service from WSDL file - Client side" with the wizard in SAP Developer Studio.  I following the Java Development Guide - Web Service Security, and use the <i>secured service connection</i>.  I have also created a new <i>System Landscape</i>, but should the new system be based on HTTP, my own PAR or what?
    How can I check that the user and password is added to the HTTP header or the SOAP envelope? Do I have to scan http traffic with a proxy as Paros or can I find the request sent from SAP EP in the logs?
    Cheers
    Asle

    Hello All,
    I have been struggling a bit while putting a reasonable security framework on a jax-rpc style web service. I'm using JWSDP1.2 to set up the webservice. I've tried to outline my problem below. Please correct me where I'm wrong.
    I've been through the Sun's WS tutorials, but they are not really clear on security. However, from them I surmised that there are two decent authentication techniques. HTTP Basic and mutual authentication (MA) . Both have their drawbacks though. HTTP Basic suffers from poor encryption while MA is a bit difficult to set up on both client and server sides. Another problem with MA is that there is no central repository for users/passwords.
    OK, what I would really like to do is use my own user database to verify users/passwords i.e. use a HTTP Basic like authentication (but at application level) but run it over SSL for encryption. It seems simple, but is it possible?
    Also, I have noted that when I use HTTP Basic on the service side, and use a java client, then setting username/password has no effect. In other words, I can always access the web-service, even with wrong username/password.
    Sorry for the long post. Hope someone can help. Thanks.

  • WebService in XI with user and password

    Hello,
    I´ve created a webservice in XI. When I call this webservice without user and password from an external tool (soapUI 1.7.5), the following error appears:
    +Logon Error Message
    Der Aufruf der URL http:... wurde aufgrund fehlerhafter Anmeldedaten abgebrochen.+
    (means: the call failed because of missing authorization)
    Ok, but where can I implement the user and passwort, that this webservice can be called automatically from an other application?
    Thanks for your assistence.
    Kind regards
    Martin

    Hi Huber,
    <b>but where can I implement the user and passwort, that this webservice can be called automatically from an other application?</b>
    open the WSDL  ....and in the left side (bottom) u can see option of user name and password...but i guess its not possible to login automaticaly.
    u have to provide the username and password evrytime....
    regards
    biplab

  • Problem in getting Portal Mapped user and password in Web Dynpro iView

    I am developing a webdynpro iview.My app need to read mapped user and password form a system in Portal runtime.
    I used the following codes in my Web Dynpro java program:
         IWDClientUser user = WDClientUser.getCurrentUser();
         IUser iuser = user.getSAPUser();
         IUserMappingService iums = (IUserMappingService)WDPortalUtils.getServiceReference(IUserMappingService.KEY );
    //     IUserMappingService iums = (IUserMappingService)
    //     PortalRuntime.getRuntimeResources().getService(IUserMappingService.KEY);
         IUserMappingData iumd = iums.getMappingData (systemalias, iuser);
         Map map = new HashMap ();
         iumd.enrich(map);
         String userid = (String)map.get( "user" );
         String pwd = (String)map.get ("mappedpassword");
    I've add a sharing references in project properties,the value is "PORTAL:sap.com/com.sapportals.portal.prt.service.usermapping.IUserMappingService"
    But when I run the iview on my Portal, it goes wrong, the message is:
    com.sap.engine.services.deploy.container.DeploymentException: Clusterwide exception: Failed to prepare application ''local/HomePage'' for startup. Reason= Clusterwide exception: Failed to start dependent library ''com.sapportals.portal.prt.service.usermapping.IUserMappingService'' of application ''local/HomePage''. Status of dependent component: STATUS_MISSING. Hint: Is the component deployed correctly on the engine?
        at com.sap.engine.services.webdynpro.WebDynproContainer.prepareStart(WebDynproContainer.java:1490)
        at com.sap.engine.services.deploy.server.application.StartTransaction.prepareCommon(StartTransaction.java:231)
        at com.sap.engine.services.deploy.server.application.StartTransaction.prepareLocal(StartTransaction.java:184)
        at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesLocal(ApplicationTransaction.java:365)
        at com.sap.engine.services.deploy.server.application.ParallelAdapter.runInTheSameThread(ParallelAdapter.java:117)
    Anybody can help me?And are there anyother methods can get mapped user and password of Portal systems in Web Dynpro JAVA.

    Hi Wayne,
          Did you added com.sap.security.api.jar to your webdynpro project. if not follow this steps.
    1. Right-click the project in Eclipse or SAP NetWeaver Developer Studio.
    2. Select Properties.
    3. Choose Java build path -> Libraries -> Add Variable -> Select variable WD_RUNTIME -> Extend -> com.sap.security -> lib -> com.sap.security.api.jar.
    I hope this should solve your problem.
    Regards, Suresh KB

  • URL in sender SOAP channel with user and password

    Hi Expert,
    I have developed SOAP to proxy scenario.The serder WSDL is generated by using sender agreement. In the WSDL we are using default below URL.
    http://host:port/XISOAPAdapter/MessageServlet?channel=party:service:channel
    But the client requirement is that he want SAP user and password also in above url.
    Is this possible in sender SOAP channel?
    Any body can please help me for above issue?
    Thanks.
    Edited by: darshana-PI on Feb 1, 2012 5:26 PM

    Thanks prateek,
    we have used HTTP plain adapter for this and used below link to call that interface in PI. And its working.
    http://server:port/sap/xi/adapter_plain?service=<xxx>&namespace=<xxx>&interface=<xxx>&sap-user=<xxx>&sap-password=<xxx>&qos=BE
    I can understand the security related problem, but that was the requirement for end application.
    Thanks,
    Darshana.

  • WebService Publication asks for user and password

    Hello,
    I have a WebService with No Authentication.
    The problem is that when I try to open the WSDL in the WebBrowser SAP asks for User and Password of the WebAS.
    I have tried to Consume the WS through a 3rd application and when I try to consume it user and password is needed and the WS has no authentication.
    I have read this topic:
    Roles for SOAMANAGER
    And the basis guy told me he has already done that configuration so If you know how to solve this problem I will be very grateful if you post it.
    Thanx in advanced.

    Hi,
    SAP Web Application Server requires a username and password. This makes sense. Even if your web service is has No Authentication, you still have to access the server.
    How to bypass this.....
    Try reading the link given above.

  • Proxy interface always request user and password

    Hi all,
    I have created a interface from R/3 Proxy -> XI -> RFC.
    The interface works fine, but I have a problem, whe I execute the interface in the SPROXY transaction and with a report, the system always request for me the SAP Web Application Server  user and password.
    How can solve it?
    Regards, RP

    All the configurations for your mails are previously done in the system. The issue has not been solved.
    I give you more details. When I do the conections test from SM59 the connection is ok, and not logging is requested. And interfaces with RFC adater works fine too.
    The issue is in the Sender call, the receiver call use a RFC Adapter and works. And if you fill the user and password the sender works fine.
    Thanks in advance.
    RP

  • Crystal needs user and password.

    When I run my program in the same laptop that I have devoloped my application I dont have problems, but when I try run the application in another laptop I have problems with user and password.
    In my application, into load event of my report I have read this sentence.
    report.SetDatabaseLogon(UsuarioSQL, ClaveSQL, MaquinaSQL, BaseDatosSQL, True)
    Any idea, please?
    Thanks in advance.

    "What version of Crystal Reports are you using? 10,5 Version
    What are you developing yoru application in? Visual Studio 2012."
    This is where your problem is.  Version 10.5 of the Crystal assemblies does not work with VS 2010 and above.  You need to do the following:
    1.  Uninstall your current version of the Crystal development tools.
    2.  Download the "Install Executable" of CR for VS SP 9 from here:  http://scn.sap.com/docs/DOC-7824
    3.  Install CR for VS.
    4.  Change all of the references in your project to point to the version 13.9.x assemblies.
    -Dell

  • Proxy settings with user and password

    How can I configure the proxy settings if our proxy requests user and password.

    We have a proxy configuration that requieres the input of an user and a password. If we try to update the Creator, we get the error 'Unable to connect to the Update Center Server. Check proxy settings ...'.
    If I remember well, the first time I tried the update feature, I think I got a pop up window to input the user and the password for the proxy. But now I get always the error message. If we shut down the proxy it works fine.
    Today I tried the 'GoogleSearch' demo application and the same problen occures.
    Thanks for information
    Guenther

  • External Application username and password

    Hi All,
    I need a specific requirement. When the user login to externa application first time, whether it stores this username password in any table or somewhere.. Actually i need external application username and password for other purpose. I need that in another application i.e. outside of the External Application. How to call that API to get that info. Is there any otherway to get that.
    I thought of doing that, with the use of ExternalPrincipal class, but for we need SSO username and password to instatiate that class. I got some info that, we cannnot get the SSO password. Is there any way to get SSO password. Please help me in this regard.. It is very urgent for me..
    Thanks
    Damodar

    The username and password for a particular external application is stored in the WWSSO_APPUSERINFO_T table in the ORASSO schema. The external application is referenced via the app_id, which corresponds to an external application identified in the WWSSO_APPLICATION_INFO_T table in the ORASSO schema.
    To get the ORASSO password in OID, use my GETPASS.CMD file found in my Knowledge Exchange. This file also extracts the passwords for PORTAL, ORASSO_PA and ORASSO_PS.
    HTH
    LLB

  • Linking to an OBIEE report without showing the user and password

    Hi!
    we are trying to access to an obiee report from an external portal (coded with php).
    The idea is that the user clicks on a link an gets the report in pdf format. For that purpose we are using this url:
    http://ttivobiee01:7001/analytics/saw.dll?Go&Path=/shared/Prueba/ogp_obi&Action=Print&P0=1&P1=eq&P2="Criteria"."Key"&P3=1402&NQuser=user&NQPassword=pass&format=pdf
    But this url is expossing OBIEE's user and password.
    In order to avoid this security issue we tried to do an wget of the url but it doesn't return the report. Instead we get an html, which seams to download the report chunk by chunk (using javaScript).
    The question is, is there any way that we could let our portal ussers access to an obbie report without expossing the user and password?
    I have been looking into oracle forums and have found this: OBIEE Go URL with password protected
    but we couldn't use this aproach due to security issues.
    Thanks!
    Nuria

    Hi!
    We have finally done this (and it works!)
    <?php
    $urlInforme='http://obi:7001/analytics/saw.dll?Go&Path=/shared/Prueba/ogp_obi&Action=Print&P0=1&P1=eq&P2="Criterios"."Clave oficial"&P3=1402&NQuser=user&NQPassword=pass&format=pdf';
    $ch = curl_init($urlInforme);
    $ckfile = tempnam ("./", "CURLCOOKIE");
    $ch = curl_init ($urlInforme);
    curl_setopt ($ch, CURLOPT_COOKIEJAR, $ckfile);
    curl_setopt ($ch, CURLOPT_RETURNTRANSFER, true);
    $output = curl_exec ($ch);
    $ch = curl_init ($urlInforme);
    curl_setopt ($ch, CURLOPT_COOKIEFILE, $ckfile);
    curl_setopt ($ch, CURLOPT_RETURNTRANSFER, true);
    $fp = fopen("salida.pdf", "w");
    curl_setopt($ch, CURLOPT_FILE, $fp);
    $output = curl_exec ($ch);
    curl_close($ch);
    fclose($fp);

  • I tried to upgrade the ios on the phone and I was asked for my icloud user and password. I don't remember these exactly and I tried several times with different options but unsuccessfully. I also forget my email used to configurate the phone.

    How i said on the question. I tried to upgrade the ios on the phone and I was asked for my icloud user and password. I don’t remember these exactly and I tried several times with different options but unsuccessfully. I also forget my email used to configurate the phone. I have the phone box and the bill. I sent you an email with my problem and attachments with the box informations, the bill and the reset request. What to do? You said to me:
    Your request comes from an unrecognized email domain. Apple accepts email requests only from email domains for Apple-authorized carriers.
    Please re-submit your request using your official carrier domain.
    but this email is authorized, what to do??
                                                                                                              respectfully, Beba

    If you have forgotten then these links are the only way to resolve
    http://www.apple.com/support/appleid/
    As long as you have owned the iPhone from new and your Apple id is the one used to activate when new
    OR have you recently purchased the iPhone secondhand ?

  • HT1600 I have an Apple TV 2nd Gen, iPad 2 and can't get the icon to appear when i swipe from left to right. What am I missing? I am able to get the 'Home sharing' 'user and password on my Mac.

    I have an Apple TV 2nd Gen, iPad 2 and can't get the icon to appear when i swipe from left to right. What am I missing?
    I am able to get the 'Home sharing' 'user and password on my Mac.
    Also using IPad 2 I am able to get the ITunes to accept the user name and same password as the Mac.
    However, the only way I can see the 'Home sharing; icon is in Music on the Ipad. When I tap on the Icon it asks for a password.
    When I give the same password, it is rejected.
    Help!!!!
    Jaxxdiggs

    Personally I think the iOS devices are poor at reconnecting  - Airplay establishes that a link is available but when the iPhone/iPad has been away from the house and rejoins the network i think AppleTV already thinks it's connected with a different IP address and fails to recognise it has joined the network again with new credentials.
    Something along those lines anyway.
    I find that a combination of restarting AppleTV, router and iOS device tends to fix it, but not for everyone.
    AC

  • User and Password for JMS-Adapter

    Hi all,
    when configuring JMS-Adapter e.g. for IBM MQSeries i do not find field where to specify the user and password for the MQ. We configure e.g. a receiver communication channel.
    In 2.0 JMS-Adapter we can put user and password like this
    JMS.QueueConnectionFactoryImpl.user=YTEST
    JMS.QueueConnectionFactoryImpl.password=<!%YTEST%!>
    in the property file. We can also hide the passwort with
    the mechanism of password token.
    How can this be done in JMS 3.0 Adpater? Is it possible?
    Thanks,
    Ly-Na Phu

    Oh, sorry. Now i see the field for user and passwort.
    Thanks,
    Ly-Na Phu

Maybe you are looking for

  • Webservice proxy with fds2

    Hello all, I am struggling with fds2 and currently fail to use a proxy for my webservice. Maybe I also misunderstand something, cause what I want to do is I want to use the fds/webservice as proxy to gather the calls and forward it to another webserv

  • Hp pavilion amd graphics driver not found

    hi i have a hp pavilion dm4-2100ex and it has 2 display adapters intel and amd but now i notice the amd catalyst is gone and when i checked display adapters in device manager the only one left there is intel. i tried installing the amd graphics but w

  • Questions on SSRS migration options.

    Greetings. I've done some googling and still have some questions on SSRS migrations. I need to migrate three windows 2003/ 2005 SSRS instances to a windows 2008R2/ SSRS 2012 instance. I was eyeballing the Installation Wizard referenced here. Per this

  • Why is iTunes is duplicating files in the "Music" folder on Windows Vista?

    I've always kept my music in mp3 format in my Windows Vista "Music" folder. When I drag a particular album to itunes, it imports it and I'm able to add to my iphone. It appears itunes is making a second 'itunes copy' of the album in the itunes- music

  • HT1918 Why do you need my credit card information when I purchase songs from an already purchased Itunes gift card?

    Why do you need my credit card information when I purchase songs from an already purchased Itunes gift card?  If I cannot purchase goods with the prepuchased gift cards, then the card is useless and I want my money back.