Webservice authentication: missing "domain" parameter

Hi,
we are using the LC 8.2 webservice component and need to authenticate with user, password and domain. Unfortunately the webservice component has no parameter for the "domain". How can we configure it that the authentication mechanism using the "domain" parameter works?
Thanks and regards,
Daniel

Try to prefix your domain name with the user name as like:
mydomain\myusername
Nith

Similar Messages

  • Missing Required Parameter 'from' for event 'open' -- InDesign CS3 Error

    Now that I've upgraded to OS 10.6, and I'm getting this weird error message (Missing Required Parameter 'from' for event 'open') when I open CERTAIN InDesign files by double-clicking on the icon. Other files open okay. Everything SEEMS to open okay when I open CS3 and go to FILE and OPEN.
    Anyone else having this problem? Any advice?

    I was having this problem too and then noticed that the files that would not open had special characters in the name, # or % for example.
    I changed the name to exclude these characters and they all opened just fine.
    If that doesn't work, it may be, if you use it, Suitcase Fusion. Extensis says that if your computer name is too long or also has special characters in it that it could be a problem in OSX 10.5 and later. Go into System Preferences/Sharing and edit your name to within 20 simple characters.
    I hope this helps.
    Message was edited by: Dyrian

  • FieldFixedLengths or fieldSeparator  is missing Mandatory parameter in XI

    Hi Guys,
    I'am new in SAP XI version 7 ...kindly guide me..my problem is an error return in Runtime workbench here it is:
    'CONTACTRECORD.fieldFixedLengths' or 'CONTACTRECORD.fieldSeparator' is missing Mandatory parameter 'CONTACTRECORD.fieldNames': no value found
    This is the actual scenario of ASC to XML
    1.Under integration directory , create communication channel named FILESENDER_02_EX1
    2. Source directory :
    actrinidad2\SAP\XI\Sender
    3.Values of Content Conversion Parameters
    Name                                                                Value
    CONTACTRECORD.FIELDSEPARATOR              ,
    CONTACTRECORD.ENDSEPARATOR              nl
    CONTACTRECORD.FIELDNAMES              FirstName,LastName
    4. Heres the content of the sample text file
    AVA
    TRINIDAD
    Please help..
    Thanks in advance
    aVaDuDz

    Hi,
    It seems you are using FCC to transfer payload.For this u need to specify filedSeperator in the FCC parameters to map fields to target also u must speify end seperator that distinguishes next line.
    Check below links.
    http://help.sap.com/saphelp_nw04/helpdata/en/2c/181077dd7d6b4ea6a8029b20bf7e55/content.htm
    Introduction to simple(File-XI-File)scenario and complete walk through for starters(Part1)
    Anatomy of Cool ...
    Regards
    --Pradeep

  • Applescript: missing required parameter "including hidden layers"

    I've used this script (below) for packaging files in InDesign CS3, but when I upgraded to CS4 I always get this message: "Missing required parameter 'including hidden layers' for event 'package'." Does anyone know how to include this and where it goes?
    Thanks.
    on run
    display dialog "Whoa Dude, I'm a Droplet so drop an InDesign file on me"
    end run
    on open draggedItems
    tell application "Finder"
    make new folder at alias "Macintosh HD:Users:Melanie:Documents:ScriptFiles:Packaged:" with properties {name:"_Folder"}
    end tell
    set folderPath to "Macintosh HD:Users:Melanie:Documents:ScriptFiles:Packaged:_Folder:"
    repeat with currentFile in draggedItems
    tell application "Adobe InDesign CS4"
    set openedfile to open (currentFile as alias)
    set theDoc to (document 1)
    tell document 1
    package to folderPath copying fonts yes copying linked graphics yes copying profiles no updating graphics yes ignore preflight errors yes creating report yes
    set fileName to (name of theDoc)
    set filepath to folderPath & fileName & ".pdf"
    export openedfile format "Adobe PDF" to filepath using "[Smallest File Size]"
    save openedfile
    close openedfile
    end tell
    tell application "Finder"
    set NewName to fileName & "_Folder"
    set name of folder folderPath to NewName
    end tell
    end tell
    end repeat
    end open
    ---------

    I don't use InDesign/CS4, but it seems clear that the 'package' command now has additional parameters that you're not including in the command.
    Since it's telling you that 'including hidden layers' is the parameter that's missing, just append it to the packagecommand, with either a 'yes' or a 'no' depending on what you want:
    package to folderPath copying fonts yes copying linked graphics yes copying profiles no updating graphics yes ignore preflight errors yes creating report yes including hidden layers no

  • Missing Mandatory Parameter

    Hello ,
    I am facing a problem in calling a stored procedure from OCI . It shows an error "Missing Mandatory Parameter". The Code Snippet is shown below:
    Stored Procedure
    CREATE OR REPLACE TYPE CHARARRAY AS TABLE OF VARCHAR2(100)
    CREATE OR REPLACE PACKAGE Test_Pkg
    AS
    -- Chararray keeps just VARCHARs
    TYPE chararray IS TABLE OF VARCHAR2(255) INDEX BY BINARY_INTEGER;
    -- Overloaded emp_report to use chararray as Argument
    PROCEDURE Test_report(L_out out chararray);
    PROCEDURE Test_report_in(L_in in chararray);
    END;
    CREATE OR REPLACE PACKAGE BODY Test_pkg
    AS
    PROCEDURE Test_report(L_out out chararray)
    is
    begin
    L_out(0) := '1000';
    L_out(1) := '1001';
    end;
    PROCEDURE Test_report_in(L_in in chararray)
    is
    begin
    dbms_output.put_line(L_in(0) || ' ' || L_in(1));
    end;
    end;
    The OCI Program Code Snippet is shown below:
    OCIType *names_ar_tdo;
    OCIColl names_ar = (OCIColl ) 0;
    OCIInd *indp = &ind;
    ret_code = OCIStmtPrepare(stmt_hdl, error_hdl, (text*)storedproc_str,
    strlen((char*)storedproc_str), OCI_NTV_SYNTAX, OCI_DEFAULT);
    ret_code = OCIDefineByPos(stmt_hdl, &defn_hdl1, error_hdl, (ub4) 1, (dvoid *) 0,
    (sb4) 0, SQLT_NTY, (dvoid *) 0, (ub2 *)0,
    (ub2 *)0, (ub4) OCI_DEFAULT);
    ret_code = OCITypeByName(env_hdl, error_hdl, service_hdl, (text*)"USER1", (ub4) strlen((const char *)"USER1"),
    (text*) "CHARARRAY",
    (ub4)9,
    (CONST text *) 0, (ub4) 0,
    OCI_DURATION_SESSION, OCI_TYPEGET_ALL,
    &names_ar_tdo);
    ret_code= OCIBindByName(stmt_hdl, &bnd1p, error_hdl, (text *) ":L_OUT",
    (sb4) -1, (dvoid *) 0,
    (sb4) 0, SQLT_NTY, (dvoid *) 0, (ub2 *)0, (ub2 *)0,
    (ub4) 0, (ub4*) 0, (ub4) OCI_DEFAULT);
    ret_code = OCIDefineObject(defn_hdl1, error_hdl, names_ar_tdo, (dvoid **) &names_ar, (ub4 *) 0, (dvoid **) &indp, (ub4 *) 0);
    ret_code= OCIBindObject(bnd1p, error_hdl, names_ar_tdo,
    (dvoid **) &names_ar, (ub4 *) 0,
    (dvoid **) &indp, (ub4 *) 0);
    ret_code = OCIStmtExecute(service_hdl, stmt_hdl, error_hdl,1,0,NULL,NULL,OCI_DEFAULT);
    Here while executing the OCIStmtExecute , It shows an error "Missing Mandatory Parameter" .
    Please kindly help me out from this problem. It would be very gratefull for me.
    Thanks in Advance
    Senthil

    UDAY,
    As you have been told already in the several other forums where you posted this same question:
    Oracle does not come with a default service name of "orcl" defined.
    You have also been told to use the "lsnrctl" command to see what services are defined.
    Have you done this?
    (You'll have to excuse me if this is not the answer you were wanting to hear.)
    Good Luck,
    Avi.

  • APPLET tag missing CODE parameter

    We are planning to use WebStart for our swing_apps deployment. At the moment we use applets with Plug-In 1.3.1_04
    I changed the html as follows:
    <OBJECT CODEBASE="http://java.sun.com/update/1.3.1/jinstall-1_3_1_04-win.cab"
    classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93" width="0" height="0">
    <PARAM NAME="app" VALUE="myServer/myWebApp/wsapps.jnlp">
         <PARAM NAME="back" VALUE="true">
         <!-- Alternate HTML for browsers which cannot instantiate the object -->
         Download Java Web Start
    </OBJECT>
    When loading the page from the server we get following error:
    "APPLET tag missing CODE parameter"
    When I load "myServer/myWebApp/wsapps.jnlp" directly from the browser, the application runs fine.
    any idea's?

    To have web start run your application, it just needs to open the JNLP file in the browser.
    You do not need the OBJECT tag since your are pointing it to a JNLP file and not an applet.
    just use an HREF to your JNLP file
    Run Application
    Dan

  • Getting an error message trying to open a file, "Missing required parameter 'from' for method "open'. What do I do?

    Getting an error message trying to open a file, "Missing required parameter 'from' for method "open'. I've tried opening in CC and CS5. What do I do? Can the file be salvaged?

    Try opening as a copy, and/or copying the file to a new location and try opening that.

  • Webservices Authentication in PI

    Dear friends,
      When we create Webservices in PI.Is therE any way to authenticate those webservices.can we provide security for Webservices.
    I wish to know webservices  authentication is Possible in PI.

    Hey
    You can check the following blog
    XI : Controlling access to Sensitive Interfaces
    Security: Access Control via Assigned Users
    Thanx
    Aamir
    Edited by: Aamir Suhail on Aug 19, 2008 4:52 PM

  • Webservice authentication using plaintext password

    Hi All,
    A basic question:
    For plaintext password authentication, where on the server, do I set what password and username should it against?
    Details:
    We are trying to configure Webservice authentication using plaintext password. Using Jdev 10.1.3.0.4 [constrained to use this], from WebServices editor, it adds the following lines in oracle-webservices.xml:
    <runtime enabled="security">
    <security>
    <inbound>
    <verify-username-token password-type="PLAINTEXT"
    require-nonce="false"
    require-created="false"/>
    </inbound>
    <outbound/>
    </security>
    </runtime>
    I am also able to see the username / password fields in the webservices UI.
    The question is: where on the server, do I set what password and username should it against?
    Any help would be appreciated
    Thanks

    Thanks indeed, Vinod. But my question still remains [perhaps what is obvious to you as expert, might not be obvious to me]. I have folllowed same steps and have achieved the results documented in this post. But where do I provide the correct password on the server side? Currently for any password that is supplied by the client, it allows the call to web services.
    Thanks again!

  • SMB printer authentication by domain credentials

    On our network, the Macs are set up to authenticate with Active Directory. Our printers are accessible through SMB shares from our Windows print server. Our help desk recently brought up an issue with this, though.
    When users first try to print to a printer, they are shown a prompt asking for their username and password (http://imgur.com/j6fp7). Mac OS X fills in their pretty username ("John Smith") instead of their domain username ("smith"). Users assume this is correct, try to authenticate, and then call the help desk when the printer doesn't print their stuff.
    As we've learned, the correct format for authentication is "DOMAIN\username", but since it's unintuitive, it almost always leads to a help desk call. Even worse, because the authentication isn't visibly rejected (the printer just won't print), the keychain will now store the user's incorrect credentials, leading to even more confusion. When you pile on our 270-day mandatory password reset policy, now the users' keychains have multiple sets of invalid credentials for the same printer, and they're calling back every several months about the same issue.
    There are several ways to approach this, but I'm not sure which would be best. I've been trying to Google up a solution, but no luck. Is there any way to get Mac OS X to show the prompt with the domain field instead (http://students.jccc.edu/documents/images/osx-smb_login.jpg)?

    Hello and welcome to Apple Discussions.
    I don't have a solution but a suggested workaround. Instead of using SMB to connect to the Windows shared printers, you could enable Unix Print Services on the Windows print server and then use LPR for the Mac print queues. This avoids the need for the Mac users to authenticate when printing.
    With the Mac client the LPR queue would consist of entering the Windows server name or IP address for the host name and the Windows printer share name for the LPR queue.

  • Missing URL parameter: IterationId

    Error:  Missing URL parameter: IterationId
    I get this error when I add a footer to my report.  Is there a fix?
    Report viewer 2010
    Visual Studio 2008 sp 1
    .Net 3.5
    Browser = firefox, have not tried ie.
    IIS = whatever ships with Windows 7 prof.
    Thanks,
    Sam

    (Apologies for bumping this old, old thread; it was the first hit in Google when searching for this problem myself, so I thought I'd post how I resolved my issue in case others stumble upon it.)
    Are you sure this is just from adding a footer?  I was getting this error message myself, and it was due to the Line control.  For whatever reason, the Line control tries to include a standard blank image right after it, but the URL is missing
    that parameter in FireFox and Chrome (but not IE, as far as I can tell). When I remove all the Line controls, the error goes away.  Make sure you don't have any Lines in your footer (or anywhere else on your report, for that matter.)

  • Error in Webservices Authentication from ADF Page

    Hi All,
    I have created an ADF page which calls secured web services deployed in another weblogic server.
    While running the ADF page from local host (weblogic server installed on my m/c) it is working fine and creating the connection to web services but when I deploy same ADF application to the development server it is not making the connection with web service and throwing below errors..
    I analyzed the issue and found that
    •     Connection from local host: while creating the data control for web services from jdeveloper, am providing some user credentials for http authentication, only then we can access the webservices.
    •     Connection from development instance: however these credentials are missing while making the connection to webservices from development instance. Probably these credentials are not getting passed/stored in the EAR file through which I am deploying the application.
    ERROR -
    [2011-03-10T02:41:41.051-08:00] [ManagedServerADF] [ERROR] [WSM-02054] [oracle.wsm.resources.policymanager] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: OracleSystemUser] [ecid: 0000IuVMrXxESOcLxis1yW1DUASn00000l,0] [APP: ADFMCOApproval] [arg: PolicyAccessService#oracle.wsm.policymanager.ejb.IStringPolicyAccessServiceRemote] Failure in looking up EJB component PolicyAccessService#oracle.wsm.policymanager.ejb.IStringPolicyAccessServiceRemote.
    [2011-03-10T02:41:41.053-08:00] [ManagedServerADF] [ERROR] [WSM-06108] [oracle.wsm.resources.policyaccess] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000IuVMrXxESOcLxis1yW1DUASn00000l,0] [APP: ADFMCOApproval] Error initializing the Oracle WSM Policy Resolver because incorrect configuration is passed: {0} {1}.
    [2011-03-10T02:41:43.560-08:00] [ManagedServerADF] [ERROR] [] [oracle.adf.model.connection.webservice] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000IuVMrXxESOcLxis1yW1DUASn00000l,0] [APP: ADFMCOApproval] Failed to execute a SAAJ interaction.
    javax.xml.ws.WebServiceException: javax.xml.soap.SOAPException: javax.xml.soap.SOAPException: Bad response: 401 Unauthorized
    Please help me in resolving this issue…
    Thanks,
    Shuchi

    Another way would be to update Your Credential Store.Using wlst, you can use something like:
    wls:/DefaultDomain/serverConfig> createCred(map="oracle.wsm.security",key="basic.credentials", user="USERNAME", password="PASSWORD", desc="User credentials key")
    This adds the key basic.credentials to the map oracle.wsm.security with the username as "USERNAME". This entry will be stored inside <your domain>/config/fmwconfig/cwallet.sso.
    Thanks,
    Vishal

  • Provide authenticated username as parameter to a business service in OSB 12c

    Dear OSB/OSB experts,
    I have the following issue:
    1. I have a web service that would accept username as a parameter in the SOAP request in order to do some internal authorization checks (filtering database rows, tables, etc.)
    2. I want to connect that web service as business service in OSB 12c
    3. The proxy service should NOT accept username as parameter
    4. The proxy service should be protected via OWSM policy for authentication (either against the WLS authentication providers or through SAML tokens validation)
    Based on the above is there any mechanism in the implementation of the proxy service to get the authenticated username from the security context and provide it as a parameter to the business service?
    The authentication policy could use SAML tokens between two WLS domains - one will be running the WLS where proxy service clients will be running and the other - for the SOA 12c.
    Many thanks in advance,
    Anatoli

    HI,
    u can use Conditional Branching
    http://docs.oracle.com/cd/E13159_01/osb/docs10gr3/userguide/modelingmessageflow.html#wp1061670
    Split join would be used in case u need to split your request and call your Business Service in Serial/parallel & then gather resposnes from multiple callouts to have single response
    http://docs.oracle.com/cd/E13159_01/osb/docs10gr3/userguide/splitjoin.html#wp1137258
    Abhinav

  • Webservice authentication failure

    Hi
    I have a webservice which need a userid and pwd for authentication purpose. I have configured these credential information in my communication channel. But my webservice team claims this authentication information is not available at http header (they are capturing the message that is going to webservice from XI throguh some java test tool)and that's why XI is unable to communicate with the webservice. Could you plz tell me how to send the authentication information in the header ??
    thanks
    kumar

    Hi Palanti,
    There are some information missing in your query. first which adapter are you using? Sender or receiver SOAP adapter? As you might be knowing, SOAP adapter is imperative for web services.
    If you are using a receiver SOAP adapter, then the user credentials can be entered while configuring the adapter itself.
    But, if you are using a sender SOAP adapter then you need to specify, which conversion parameters you are using?
    please elaborate your query for better help.
    Thanks,
    Varun

  • Bpel mail authentication missing ns_emails.xml config

    Hi all,
    I want to send a mail using Bpel and I noticed that the "auth login" was missing when sending the mail.(Saw this using a network monitor)
    My aoutgoing server setting look like this:
    <OutgoingServerSettings>
    <AuthenticationRequired>true</AuthenticationRequired>
    <SMTPHost>192.168.52.16</SMTPHost>
    <SMTPPort>25</SMTPPort>
    <UserName>[email protected]</UserName>
    <Password>********</Password>
    </OutgoingServerSettings>
    and I'm getting this error before the authentication required in the log:
    <2008-08-27 15:52:35,638> <ERROR> <collaxa.cube.services> <oracle.bpel.services.notification.queue.sender.QuartzPublisher::execute> ERROR message : javax.naming.NamingException: Not in an application scope - start OC4J with the -userThreads switch if using user-created threads
    <2008-08-27 15:52:35,638> <ERROR> <collaxa.cube.services> <oracle.bpel.services.notification.queue.sender.QuartzPublisher::execute>      at com.evermind.server.PreemptiveApplicationContext.getContext(PreemptiveApplicationContext.java:30)
    <2008-08-27 15:52:35,638> <ERROR> <collaxa.cube.services> <oracle.bpel.services.notification.queue.sender.QuartzPublisher::execute>      at com.evermind.naming.FilterContext.lookup(FilterContext.java:126)
    <2008-08-27 15:52:35,638> <ERROR> <collaxa.cube.services> <oracle.bpel.services.notification.queue.sender.QuartzPublisher::execute>      at com.evermind.server.PreemptiveApplicationContext.lookup(PreemptiveApplicationContext.java:42)
    <2008-08-27 15:52:35,638> <ERROR> <collaxa.cube.services> <oracle.bpel.services.notification.queue.sender.QuartzPublisher::execute>      at javax.naming.InitialContext.lookup(InitialContext.java:351)
    <2008-08-27 15:52:35,638> <ERROR> <collaxa.cube.services> <oracle.bpel.services.notification.queue.sender.QuartzPublisher::execute>      at oracle.bpel.services.notification.NotificationUtil.lookupLocalBean(NotificationUtil.java:362)
    <2008-08-27 15:52:35,638> <ERROR> <collaxa.cube.services> <oracle.bpel.services.notification.queue.sender.QuartzPublisher::execute>      at oracle.bpel.services.notification.queue.sender.QuartzPublisher.execute(QuartzPublisher.java:88)
    <2008-08-27 15:52:35,638> <ERROR> <collaxa.cube.services> <oracle.bpel.services.notification.queue.sender.QuartzPublisher::execute>      at org.quartz.core.JobRunShell.run(JobRunShell.java:191)
    <2008-08-27 15:52:35,638> <ERROR> <collaxa.cube.services> <oracle.bpel.services.notification.queue.sender.QuartzPublisher::execute>      at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:516)
    <2008-08-27 15:53:51,092> <ERROR> <collaxa.cube.services> <PCRuntimeException::<init>> Cannot connect to iAS Wireless notification webservice.
    <2008-08-27 15:53:51,092> <ERROR> <collaxa.cube.services> <PCRuntimeException::<init>> Cannot connect to iAS wireless notification webservice running at http://messenger.oracle.com/xms/webservices
    <2008-08-27 15:53:51,092> <ERROR> <collaxa.cube.services> <IASWDriver::loadSupportedChannels> Cannot connect to iAS Wireless notification webservice.
    <2008-08-27 15:53:51,092> <ERROR> <collaxa.cube.services> <IASWDriver::loadSupportedChannels> Cannot connect to iAS wireless notification webservice running at http://messenger.oracle.com/xms/webservices
    <2008-08-27 15:53:51,263> <ERROR> <collaxa.cube.services> <PCException::<init>> Error in sending e-mail message.
    <2008-08-27 15:53:51,263> <ERROR> <collaxa.cube.services> <PCException::<init>> Error in sending e-mail message.
    08/08/27 15:53:51 javax.mail.MessagingException: 530 authentication required for mail submission
    Can anyone help me!!!!
    Regards,
    Steven

    James,
    Thanks for the quick reply.
    The smtp server requires authentication. The username and password where all checked useing telnet.
    I'm 100% sure they are correct.
    The problem is that the "AUTH LOGIN" is never send. It looks like the java class is not reading the AuthenticationRequired correct.
    The strange part about the error is that the notification method is set to EMAIL.
    Do you have any other ideas?
    Regards,
    Steven

Maybe you are looking for

  • Code for individual UR in 7.0

    Hi Gurus, In 3.5, I used to have a simple code in one of my individual update rules of a Keyfigure: IF COMM_STRUCTURE-/BIC/ZFLAG IS INITIAL. RESULT = 1. ELSE. RESULT = 0. ENDIF. I now have to write the same code in (another transformation) in 7.0. In

  • Java.rmi.ServerException: Missing port information

    when i call the service ,i got the error: run-test-client: [java] java.rmi.ServerException: Missing port information [java] at com.sun.xml.rpc.client.StreamingSender._raiseFault(StreamingS ender.java:382) [java] at com.sun.xml.rpc.client.StreamingSen

  • How to install bootcamp drivers on Windows 8?

    Hello, Today I decided to install Windows 8 onto my Mac Pro running 10.8.5 in order to play games on Steam.  I started BootCamp assistant and made a 65GB partition for Windows 8, and when I tried to install Windows I unchecked the top box (not sure w

  • Re:  Invalid username and password when logging onto Hyperion workspace

    Hi, I have installed Hyperion Reporting and Analysis services.When I attempt to log on to Workspace, I get the following message; 'You must supply a valid User Name and Password to log onto the system." I have tried using the admin and password as us

  • Software required to communicate with the ipod is not working error, help!!

    I've had my iPod nano for a while now, and it was working fine until I installed the new iTunes. Now, when I plug my nano in, iTunes won't start. Then, I open up iTunes, and it says "The software required to communicate with the iPod is not properly