How to configure basic authentication for external services

I have a BPM Project (11g) and within the composite I've added an external Web Service reference. This service uses basic authentication.
I would like to deploy the composite with the username and password already configured.
I have tried setting oracle.webservices.auth.username as a binding property and also as a property but neither seem to work. When the composite is deployed the basic authentication username is blank within Enterprise Manager.
It also resets after updating it manually during subsequent releases.
Any ideas?

hi Mahender,
Thanks for your posting!
For this issue, you could refer to this document and tutorials (Microsoft Antimalware Whitepaper ). And you need use the Azure Powershell (http://msdn.microsoft.com/en-us/library/azure/dn771718.aspx).
Regards,
Will
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey.

Similar Messages

  • HTTP Basic authentication for proxy service and its wsdl?

    Hello:
    For some reasons I needed to configure the HTTP basic authentication on a proxy service at OSB 11g. Everything was OK until I realized that, additionally to the authentication when calling the service, the OSB also asks for credentials when I try to get that proxy wsdl file.
    My requirements are to secure the proxy service when is called only, not when retrieving the wsdl.
    Is this possible to configure on OSB / WLS? How?
    Greetings!
    Edited by: user4483647 on 02-sep-2010 12:59
    Edited by: user4483647 on 02-sep-2010 13:25

    If I'm not wrong, Basic authentication is Transport level feature. So passing User/Password in SOAPHeader doesn't make sense. SOAP message can only be sent when you have a HTTP Connection open. During opening of HTTP connection User/Password is required for basic authentication.
    http://www.student.nada.kth.se/~d95-cro/j2eetutorial14/doc/Security7.html#wp156943
    Edited by: mneelapu on Apr 2, 2009 2:09 PM

  • Setting Basic Authentication for Web Service in WLS 6.1

    Hi,
    I am trying to set-up a Basic Username/Password authentication for a Web Service
    that is hosted in WLS 6.1.
    How do I go about doing that? Also once I get the username and password, how do
    I pass that info
    to the SOAP servlet to do the authentication? Can you give me some pointers on
    this?
    Thanks
    Madhu

    How do you want to do it? Through use of client.jar for the service or
    directly? Here is how I do it directly:
    String auth = "guest", pwd = "guest";
    URL url = new URL("http://localhost:7001");
    URL cmdURL = new URL(url.toString()+"/systemtest/TestWebService");
    HttpURLConnection conn = (HttpURLConnection) cmdURL.openConnection();
    String encAuth =
    new BASE64Encoder().encode((auth + ":" + pwd).getBytes());
    // BASE64Encode distributes long strings on multiple
    // lines; we don't like that, no siree
    int it = 0;
    while ((it = encAuth.indexOf('\n')) != -1
    || (it = encAuth.indexOf('\r')) != -1) {
    encAuth = encAuth.substring(0, it) +
    encAuth.substring(it + 1);
    conn.setRequestProperty("Authorization", "Basic " + encAuth);
    conn.setRequestProperty("Content-Type", "text/xml");
    conn.setRequestProperty("SOAPAction", cmdURL.toString());
    conn.setDoOutput(true);
    conn.setDoInput(true);
    conn.setUseCaches(false);
    OutputStream oStr = conn.getOutputStream();
    String cmd =
    "<?xml version=\"1.0\" ?>\n"
    + "<soap:Envelope xmlns:soap=\"http://schemas.xmls"
         + "oap.org/soap/envelope/\"><soap:Body>"
    + "<ping><arg0>false</arg0></ping>"
    + "</soap:Body></soap:Envelope>";
    oStr.write(cmd.getBytes());
    oStr.close();
    InputStream iStr = conn.getInputStream();
    byte[] buffer = new byte[1024];
    while (true) {
    int size = iStr.read(buffer);
    if (size == -1)
    break;
    System.out.println(new String(buffer, 0, size));
    ThorAAge

  • Basic Authentication for Web Services

    I have build Web Service according to the weblogic 6.1 examples
    successfully deploying the .ear file etc.
    Now I want to add security to the WebService uri.
    I have added a <web-resource-collection> tag to the web.xml file, but
    what should I put for the <url-pattern> ?
    Am I obliged to 'manually' add <servlet> tags to the web.xml file in
    order to add a security constraint to a WebService deployed thru a
    .ear ?
    Taking WebLogic's own statelessSession.Weather example, what is the
    minimum I need to add to the web.xml file to have basic authentication
    on the weatheruri ?
    Thanks,
    Adam

    Ok, now I'm confused.  Is this a Flex app (runs in the browser) or an AIR app?  This makes a difference because in the browser, Flash Player/Flex uses the browser's http mechanism for transport, while AIR implements it directly.  The original posted indicated some difference between Firefox and IE, which led me to believe it was a Flex browser app.  Difference between these two would make me think something was wrong with the server response, and the two browsers were passing it (the problem) back to Flash Player differently.
    Mark

  • How to configure Anti Malware for cloud Services

    Is there a way to enable Anti-malware monitoring of cloud service. With the latest release for enabling cloud service, should we still need to have power shell has start up for cloud Services and Power-shell will invoke XML template of anti malware.
    I could not be proper documentation of how to enable from Cloud Services solution perspective
    Here are the Some of the questions:
    Should i still need to have Power shell has startup and configure it for CSDEF file
    Where should i place xml template in cloud project, in the power shell, we need to give location of xml file, should xml file and power shell script should be @ same level i.e in the same directory
    If we enable Monitoring of Anti malware services for cloud services, we need to give storage account, is there a way where storage account pickup dynamically based on envrionment we are deploying. End of the day,I'm looking for automated way of setting
    Monitoring in Production and UAT envrionments
    Mahender

    hi Mahender,
    Thanks for your posting!
    For this issue, you could refer to this document and tutorials (Microsoft Antimalware Whitepaper ). And you need use the Azure Powershell (http://msdn.microsoft.com/en-us/library/azure/dn771718.aspx).
    Regards,
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Can we add Basic Authentication for Oracle Report 10g?

    As we know, Apache supports basic Authentication, and Oracle Report 10g bases on Apache, that means Oracle Report 10g supports Basic Authentication too?
    Can anyone tell me the steps on how to configure Basic Authentication for Oracle Report 10g?
    Thanks for your help in Advance!
    P.S.
    I tried to add the following content to the file "httpd.conf" under the directory "E:\OraHome_2\Apache\Apache\conf\" (I installed report under this folder), but it doesn't work well:
    <Directory "E:\OraHome_2\Apache\Apache\htdocs">
    AuthType Basic
    AuthName "Private Documentation Repository"
    AuthUserFile "C:\Program Files\Apache Software Foundation\Apache2.2\mypasswd"
    Require user yangsun
    </Directory>

    Answers at your duplicated thread --> Some inter view Questions Please give prefect answer  help me

  • How to set up and test the Basic Authentication for HTTP protocol

    Hi,
    I tried configuring the password based Basic Authentication for sending xml document using ebMS - HTTP protocol. I set username and password while configuring the transport server for both trading partners. I want to know, is that sufficient for basic authenticaton. When I open the URI http://localhost:7778/b2b/transportServlet, it is not asking any authentication (username/password). Please note that I have not used SSL certificate. Anyone please help me out to configure Basic authentication.

    Hi Ramesh,
    Thanks for ur response. Could you please tell me where to set the Additional Transport header : authtype-basic#realm=myRealm(in which property file). In enqueue code, I could see the following attributes
    queue
    msgID
    replyToMsgID
    from
    to
    eventName
    doctypeName
    doctypeRevision
    msgType
    payload
    attachment
    subscriber
    Is it possible to set username/password in the enqueue attributes?
    Do i need to add username/password and Transport header in the input XML and defined that elements in xsd?

  • How download  data of me2s   'po order for external  services: in cxcel'

    THIS IS sandipan. I am very new in this field . My requirement is when i am going  to me2s  t.code. then i am giving purchasing group , plant , Service Number as input. then it showing purchase doc . , item , porg , matl... , plant , crcy . It's ok. but after that when i am clicking  purchase order it displays Purchase order for external services : overview screen in a hiarirchical view  and no download option is available here.  I need to export the data of that screen to a excel sheet . how Is it possible ? please help me ...
    Moderator message: please do not open multiple threads for the same or similar issue.
    Edited by: Thomas Zloch on Jan 7, 2012 10:22 PM

    Hi
    T165A is used for 'Services Pricing'.
    Please note that for Services PO, you will have two pricing schema.
    1) At PO-Item Level : RM0000 (or whatever you define in schema determination in Purchasing ->Conditions IMG and assign in your vendor master)
    2) At service line level : Based on settings in T165A.
    If you check in Services level conditions screen and click on Analysis, you will find that ZS0001 is triggered.
    Best regards
    Ramki

  • How set  UserName and Password for HTTP Basic Authentication for a servlet

    Hi..
    How set UserName and Password for HTTP Basic Authentication for a servlet in JBoss server?
    Using Tomcat i can do it .(By setting roles in web.xml, and user credintails in tomcat-user.xml).
    But i dont know how do it in JBOSS..
    I am using Netbeans and Eclipse IDEs.. Can we do it by using them also!?
    Thank u

    Hi Raj,
    You can do this by creating a Login screen for the users and check the authentication of each user in PAI i.e. PROCESS AFTER INPUT.
    Store the user information in a database table and check the username and password when the user enters it.
    You can display password as *** also. For this double click on input box designed for password and goto Display tab. Select Invisible in the list and check it.
      CASE sy-ucomm.
        WHEN 'BACK'.
          LEAVE PROGRAM.
        WHEN <fcode for submit>.
          SELECT SINGLE uname pwd
           FROM <DB table>
           INTO (user, pass)
           WHERE username = user AND
                   password = passwd.
          IF sy-subrc = 0.
    <Go to next screen for further processing>
          ELSE.
    <Display Error message and exit>
          ENDIF.
      ENDCASE.
    Regards,
    Amit
    Message was edited by:
            Amit Kumar

  • Automated Runtime Configuration for External Services

    Hello,
    in relation to my bachelor thesis I was wondering if there is API or another way to set the backend systems destinations for external services dynamically and not by entering the information in CAF Runtime.
    Thanks,
    Petromil

    Hello Bonnie,
    Here is some documents which will help you to setup External Service Management.
    http://help.sap.com/bp_bblibrary/500/documentation/U42_BB_ConfigGuide_EN_BR.doc
    <a href="http://help.sap.com/bestpractices/BBLibrary/documentation/J24_BB_ConfigGuide_EN_UK.doc">SD/MM Services</a>
    Regard,
    Arif Mansuri

  • Billing for External Services to Customer

    Hi All,
    Please advice how to bill customer for External Services like civil work etc.
    My client uses services from external companies so if they have contract with customer for that,after completing the work they want to bill it to customer ,pls advice.
    Muzamil

    Muzamil,
    If you are using projects, you can create an external or service activity depending upon whether you are entitling the vendor to perform some work or a service. Once you create and release the network activity, a purchase requisition is created, which then will be converted into a purchase order by your purchasing department. The purchase requisition/order commitment will appear on the network activity (project) and when the vendor sends you a goods receipt/invoice (depending on configuration), your project receives the cost. Then, depending on how you are billing your customer, you could incorporate these costs also into your customer billing.
    If you need further explanation on billing, please write back with details about how you are billing your customers currently (if based on a project).
    Regards,
    Venkat.

  • Limit PO :Combination of GR/IR is not allowed for external services

    Hi,
    we are  working in  SRM40 sp09 & back end ECC.50
    In the Limit PO:
    we are able to create  Limit PO from a shopping cart.The follow on documents in ECC, it is creating a PO with Item category "B" and the "invoices" are only possible.
    The Issue:
    The Client wants the Confirmation/GR functionality to be enabled and the Invoices.
    but for  Limit PO, with follow on documents--"Confirmation" is checked, we have a error message—“combination of GR/IR is not allowed for external services".
    Is there any addition configuration or steps involved.
    Thanks and Regards,
    RK.

    Hi
    <b>Please go through the links below, which address the same issue -></b>
    Limit PO(Item category D instead of B)
    SRM: Item category B/D for limit PO
    Re: Problem with Unknown account assignment with limit order...reply soon...
    Do let me know.
    Regards
    - Atul

  • Default GL account (cost element) for external service contracts

    Hi everybody,
    question about GL being defaulted from contract for external services
    The requirement is to have GL (cost element) being defined per service sub item defaulting to work order. Account assignment is unknown,  because the costs might be settled later to cost center or AFE or else.
    You could default cost element either through material group (which doesn't enable cost element to contract) or with account assignment category 'K' or 'F'  which do not suit, cause the former requires cost center, that is unknown yet, whereas the latter requires assignment to order which doesn't make sense at all.  Theoretically, it could be done with acc assignment cat 'U' , but cost element is not enabled with that category..
    I was assuming that cost center which you are required to enter along with cost element while creating service sub item referring to some sort of internal accounting. The system also requires service sub item acc assignment category being aligned with requisition (which is 'F') and would in fact create PR referrencing actual work order number. But still, doesn't it make sense having contract referencing another order.. Also, we don't use default values for PM ext operation data.
    So, the question is how to accomplish the requirement with Unknown assignment category? what is the point of defining cost center in the contract in given circumstances? Is there any work around exists?
    Thanks in advance
    Sergey

    Hi,
    Try this: IMG -> Plant Maintenance and Customer Service -> Maintenance and Service Processing -> Maintenance and Service Orders -> Functions and Settings for Order Types -> Create Default Value Profiles for External Procurement.
    After that assign it to order type: Default Values for Task List Data and Profile Assignments.
    Regards,
    Rogério Reis

  • Inspection lot for external service

    Hi Gajesh/ Sujit/shyamal/ all
    we are planning to use service master for external vendor's service, i have couple of questions
    please share your experience, if anyone of you come across this kind of requirement
    1. is it possible to create an inspection lot for external service?
    2. we want to capture / validate the vendor's external service, weather it is accepted or not? sometime we need to enter quantitative value also
    3. is there any setting or config for assign /create inspection lot for service master?
    what I know is without material master we cannot create inspection lot but i don't know about service master.
    thanks
    Sami

    Gajesh,
    thanks for quick response.
    2 business req. are as follows
    1.  vendror is performing periodic service, MM side external service order (service contract/PO)created, bsaed on thatPO vendors performing service.
    service entry sheet they are capturing man hours and date of service.
    business wants quality of service to be captured in QM inspectiion lot.
    2. production order ---> routing -- operation ---> vendor & service PO number  assigned external work --> now inspetion lot will be created for that material/production order.
    how can we link service master, service entry sheet and inspection lot?
    how to map for this req.?
    again is't possible to create inspection lot for service master?(without material master)if your answer is yes, then where/how can we assign inspection type ? which inspection type?
    thanks
    Sami

  • Configuring Kerberos authentication for SSRS in native mode - SSRS 2008 R2-2012

    Hi,
    I've a SSRS native mode installation on a server and a SSAS installation on another server.
    In order to configure the Kerberos authentication for SSRS native mode, I need to register one SPN for the report server service, one SPN for SSAS service and to configure SSRS to use the negotiate authentication type, isn't it?
    Thanks

    Hi pscorca,
    If we have applications that only use Kerberos authentication and we are using RSWindowsNegotiate AuthenticationType, we must create a Service Principal Name (SPN) for the Report Server service if we configure it to run as a domain user account.
    Before setting up constrained delegation, we must register a
    Service Principle Name (SPN) for the Analysis Services instance. We will need the Analysis Services SPN when configuring Kerberos constrained delegation for middle tier services.
    There is a document about Enabling Kerberos Authentication for Reporting Services, you can refer to it.
    http://blogs.technet.com/b/rob/archive/2011/11/23/enabling-kerberos-authentication-for-reporting-services.aspx
    Hoe this helps.
    Regards,
    Alisa Tang
    Alisa Tang
    TechNet Community Support

Maybe you are looking for

  • Not playing correctly in itunes

    hi, I'm having some trouble with itunes that has only started today. I try to play songs and upon double clicking they do not begin to play, even when clicking the play button at the top still no reaction. All of these songs now appear to have "album

  • IP addresses are going to be changed for SharePoint farm servers(App, WFE, DB)

    Hello, We had multiple SharePoint Farms, and we would like to changes the IP address of all the servers in farm(because of changing the Datacenter). will I get any issues, if, how can I take it forward. Need suggestions. Thank You NARLA

  • [Solved] how to write german "umlaute" on US keyboard?

    Hi, I am German, but I use an US-keyboard since it I like it better for writing code. Is there a simple way to map key-combinations to "Umlaute". e.g. like o+windows-key for an "ö". I'd be happy with a sollution for thunderbird but in case there is a

  • Sperat full name by the second capital letter to first and last name

    hi guys, I'm facing a problem in sperating a name like " GeorgeWashington " to be " George Washington" . I'v told there is a function to make space before the second capital letter. Please help

  • Cannot select photos to attach

    Recently while trying to attach photos on facebook I wasn't able to select the photo(s) from my iPhoto.  I've search forums on a solution with no such luck.  Now I notice I can't select them when trying to attach to an email also.  I can go into each