Authentication error with shell=/usr/bin/bash

Hello there,
I'm comfortable with linux, but new with Arch Linux. Recently I completed an installation with success but I ran into a strange authentication error at login.
Before adding a user I verified the path of the bash shell and 'which bash' returned /usr/bin/bash.
So I added a user with shell /usr/bin/bash and the line in /etc/passwd reads similar to:
newuser:x:1000:100:His name:/home/newuser:/usr/bin/bash
With this line I get an authentication error from login
And when I change the shell to /bin/bash, the user is able to login with success.
I have found similar problem reports, but not this solution.
I hope to get some help with understanding this issue, to me it seems wrong to point the shell in /etc/passwd to a symbolic link.

Thank you very much, falconindy.
My first reaction is "But what if /usr becomes inaccessible", also /bin/sh is a symlink.
But I guess with rescue options from initramfs or live CD/usb, this is not a big issue anymore.
I have added /usr/bin/bash to /etc/shells.
Last edited by wilbert-vb (2013-05-18 12:55:45)

Similar Messages

  • /usr/bin/bash[34]: syntax error at line 40 : `set' unexpected

    Hi All
    I would like to install Oracle Database 11gR1 On Solaris 10
    When I run root.sh command, I confused to input path
    *# cd /home/oracle11/app/oracle11/product/11.1.0/db_1*
    *# ./root.sh*
    Running Oracle 11g root.sh script...
    The following environment variables are set as:
    ORACLE_OWNER= oracle11
    ORACLE_HOME=  /usr2/home/oracle11/app/oracle11/product/11.1.0/db_1
    *Enter the full pathname of the local bin directory: [usr/local/bin]:/usr/bin/bash*
    I have inputed "/usr/bin/bash"
    Now I can not run bash on Solaris 10.
    *# bash*
    bash[34]: syntax error at line 40 : `set' unexpected
    Please help me!
    Thankyou and best regards,
    thiensu2810

    Hi
    Output of "$ find /usr -name bash 2>/dev/null" is
    *# find /usr -name bash 2>/dev/null*
    */usr/bin/bash*
    *# less /usr/bin/bash*
    +###################################+
    +#+
    +# $Header: coraenv.sh 17-may-2007.08:31:33 jboyce Exp $ coraenv+
    +#+
    +# Copyright (c) 1987, 2007, Oracle. All rights reserved.+
    +#+
    +# This routine is used to condition a C shell user's environment+
    +# for access to an ORACLE database. It should be installed in+
    +# the system local bin directory.+
    +#+
    +# The user will be prompted for the database SID, unless the variable+
    +# ORAENV_ASK is set to NO, in which case the current value of ORACLE_SID+
    +# is used.+
    +# An asterisk '*' can be used to refer to the NULL SID.+
    +#+
    +# 'dbhome' is called to locate ORACLE_HOME for the SID. If+
    +# ORACLE_HOME cannot be located, the user will be prompted for it also.+
    +# The following environment variables are set:+
    +#+
    +# ORACLE_SID Oracle system identifier+
    +# ORACLE_HOME Top level directory of the Oracle system hierarchy+
    +# PATH Old ORACLE_HOME/bin removed, new one added+
    +# ORACLE_BASE Top level directory for storing data files and+
    +..................................+
    +.................................+
    else
    if (-e $ORABASE_EXEC) then
    if (-x $ORABASE_EXEC) then
    set BASEVAL=`$ORABASE_EXEC`
    setenv ORACLE_BASE $BASEVAL
    echo "The Oracle base for ORACLE_HOME=$ORACLE_HOME is $ORACLE_BASE"
    else
    echo "The $ORACLE_HOME/bin/orabase binary does not have execute privile
    ge"
    echo "for the current user, $USER.  Rerun the script after changing"
    echo "the permission of the mentioned executable."
    endif
    else
    setenv ORACLE_BASE $ORACLE_HOME
    echo "The Oracle base for ORACLE_HOME=$ORACLE_HOME is $ORACLE_BASE"
    endif
    endif
    +#+
    +# Install local modifications here+
    +#+
    thank,
    thiensu2810

  • PAM doesn't like /usr/bin/bash set as shell

    Can anyone explain why PAM is fine with /usr/bin/zsh set as login shell but not /usr/bin/bash.  For bash it must be set to /bin/bash.
    Should I file a bug report?
    Here is an example https://bbs.archlinux.org/viewtopic.php?pid=1454302
    By default the archiso has /usr/bin/zsh set as the root login shell.  Line 10: https://projects.archlinux.org/archiso. … irootfs.sh

    qwerty12 wrote:I haven't bothered testing this hypothesis, but my guess is that it is because /etc/shells has entries for both /bin/zsh and /usr/bin/zsh but only /bin/bash for bash.
    To test your hypothesis, I added /usr/bin/bash to /etc/shells and changed the login shell. 
    I was still blocked by PAM from logging in with ssh.

  • /usr/bin/bash runs a new shell where PS1 is not set

    When I execute the command bash in my terminal, it opens a new shell which properly reads all bashrc contents. But when I run /usr/bin/bash, then it is as if  $PS1 is not set and those parts in my bashrc that are supposed to used only for interactive shells are not read at all.
    The weird part is running which bash gives /usr/bin/bash. So, I'm not able to figure out why running bash and /usr/bin/bash produce different results. Also, although it appears as if $PS1 is not being set (based on reading of my bashrc), the prompt is still being set.
    Can anyone explain why this variation is happening?
    PS: Not sure if this matters, but my bashrc is not in the default location. It is in ~/.config/bash and I've modified my /etc/bash.bashrc to source the local bashrc from the custom location.
    Last edited by hashken (2015-04-15 13:19:03)

    Does the behaviour persist if you move .bashrc back to the conventional location?
    Yeah, the behaviour persists even after moving back bashrc.
    The contents of my /etc/bash.bashrc file:
    # /etc/bash.bashrc
    # If not running interactively, don't do anything
    if [[ ! $- != *i* ]]; then
    PS1='[\u@\h \W]\$ '
    PS2='> '
    PS3='> '
    PS4='+ '
    case ${TERM} in
    xterm*|rxvt*|Eterm|aterm|kterm|gnome*)
    PROMPT_COMMAND=${PROMPT_COMMAND:+$PROMPT_COMMAND; }'printf "\033]0;%s@%s:%s\007" "${USER}" "${HOSTNAME%%.*}" "${PWD/#$HOME/\~}"'
    screen)
    PROMPT_COMMAND=${PROMPT_COMMAND:+$PROMPT_COMMAND; }'printf "\033_%s@%s:%s\033\\" "${USER}" "${HOSTNAME%%.*}" "${PWD/#$HOME/\~}"'
    esac
    [ -r /usr/share/bash-completion/bash_completion ] && . /usr/share/bash-completion/bash_completion
    fi
    XDG_CONFIG_HOME=$HOME/.config
    XDG_CACHE_HOME=$HOME/.cache
    XDG_DATA_HOME=$HOME/.local/share
    if [ -f "$XDG_CONFIG_HOME/bash/bashrc" ] && [ "$0" = "bash" ]; then
    . "$XDG_CONFIG_HOME/bash/bashrc"
    fi
    if [ -f "$XDG_DATA_HOME/bash/history" ] && [ "$0" = "bash" ]; then
    HISTFILE="${XDG_DATA_HOME}/bash/history"
    fi
    The contents of my bashrc file:
    if [ -f $XDG_CONFIG_HOME/bash/xdg ]; then
    . $XDG_CONFIG_HOME/bash/xdg
    fi
    if [ -f $XDG_CONFIG_HOME/bash/private ]; then
    . $XDG_CONFIG_HOME/bash/private
    fi
    # If not running interactively, don't do anything else
    if [ -z "$PS1" ]; then
    PATH=$PATH:$HOME/bin/others
    return
    fi
    #test "$PS1" || return
    if [ -f $XDG_CONFIG_HOME/bash/colors ]; then
    . $XDG_CONFIG_HOME/bash/colors
    fi
    if [ -f $XDG_CONFIG_HOME/bash/general ]; then
    . $XDG_CONFIG_HOME/bash/general
    fi
    if [ -f $XDG_CONFIG_HOME/bash/aliases ]; then
    . $XDG_CONFIG_HOME/bash/aliases
    fi
    if [ -f $XDG_CONFIG_HOME/bash/functions ]; then
    . $XDG_CONFIG_HOME/bash/functions
    fi
    if [ -f $XDG_CONFIG_HOME/bash/completion ]; then
    . $XDG_CONFIG_HOME/bash/completion
    fi
    What makes you think $PS1 is not being set if the prompt is correct?
    Both bash/xdg and bash/private are getting sourced. But when I run /bin/bash, the other files (colors, general, aliases etc.) are not getting sourced. Since, I'm doing a $PS1 test before sourcing these files, I concluded that $PS1 is not being set.

  • Is /bin/sh must link to /usr/bin/bash?

    I'm building Arch Linux on embedded system which CPU is sh4.
    I found there is a problem of bash package.
    It creates /bin/sh as a symbolic link to /usr/bin/bash.
    But my /bin/sh is busybox.
    1. I'm wonder how could I keep /bin/sh to busybox's /bin/sh? Or, it could set on pacman.conf?
    2. Could my root account still use 'sh' as its shell? I wish busybox could still exist as the basement.
    3. Is makepkg or yaourt based on root's shell must be bash?

    Thank you Allan,
    I have this question is because /usr/bin/bash require many dynamic library and I just failed login my embedded system after upgrade bash with pacman -Udd option.
    Am I right of the following assumption (Sorry, I can not 100% understand your meaning, require double confirm.).
    1. I can keep my root's shell as /bin/sh (it's busybox version).
    2. I can config pacman to use /bin/bash for install (I've compiled brand new pacman)
    3. makepkg have forced to use /bin/bash for install
    BTW, I found it is required bash 4.0 (declare function)  My embedded system's original linux only provide bash 3.0.  So, it took me a while to prepare bash 4.0.
    Last edited by dlin (2013-01-31 06:42:22)

  • Patchadd command fails with message /usr/bin/split: Exhausted output file

    When adding a patch using patchadd command the error message is "/usr/bin/split: Exhausted output file names, aborting split"
    Pls help me........

    it is a custom patch for one of our softwares and its name is MDM_2012.089 and d complete o/p is
    Validating patches...
    Loading patches installed on the system...
    Done!
    Loading patches requested to install.
    Done!
    Checking patches that you specified for installation.
    Done!
    Approved patches will be installed in this order:
    MDM_2012.089
    Checking installed patches...
    Installing patch packages...
    /usr/bin/split: Exhausted output file names, aborting split
    pwd is /tmp as i have the patch in /tmp

  • Xcode error  "Command /Developer/usr/bin/gcc-4.2 failed with exit code 1  "

    Hello!
    This is one of my first posts on the Mac forum. I am a 13 -year-old learning to develop apps for the iPhone.
    Right now I am having a really annoying error with Xcode;
    I can't compile any code at all.
    I tried this post in the software 101 section with no result. Sorry if a seem a bit impatient...
    I am trying to use C and Objective-C command line projects....
    This is the error code I get with all my projects;
    Command /Developer/usr/bin/gcc-4.2 failed with exit code 1
    It's not an error in the code because even if I just do a project with the code int myInt = 5;
    Thanks if you can help!

    Can you please post your entire program, perhaps the one that simply contains int myInt = 5; ?
    When a new project is created, a main.c file is created with contents:
    #include <stdio.h>
    int main (int argc, const char * argv[]) {
    // insert code here...
    printf("Hello, World!\n");
    return 0;
    This should build without error by using the Build->Build menu option.
    Replacing the printf line with int myInt = 5; compiles and executes properly although it does very little.

  • Authentication error with sudo

    Hi there. I just tried using Carbon Copy Cloner (2.3) to clone my HD before updating to OS 10.4.9. I got this error: authentication error: sudo: /private/etc/sudoers is zero length
    I booted to my old cloned drive and repaired permissions and the hard drive with my system on it. I also created a new user with admin privileges and tried it, and got the same error. I don't think it's a CCC-specific error because I got the same error when I tried to use Preferential Treatment to check for corrupt preferences.
    Can anyone tell me how I might go about fixing this? I'm a longtime Mac user but don't know too much about Terminal and its uses. Help?
    G5 dual 2.0   Mac OS X (10.4.7)   2.5G RAM, Radeon X800 XT video card

    Thank you for looking, but I solved the problem by copying the sudoers file from my cloned drive back to my main drive. It was invisible, but File Buddy solved that problem.

  • Reciving mail via IMAP giving authentication error with valid details

    Hi all,
    Thanks to shannon,i changed the imap .. bt now error is with the connect method, the username,password,whcih iam passing as a parametre.Its giving error as authentication error, login failed.. but the username and password were corret..
    store.connect(Host,username,password);
    Host value iam passing is the server ipaddress,even i tried with 4 parameters including portas int type no use.
    Please ,help to cross over this bug.
    Thanks for you ll n advance.
    Regards,
    Chintu

    Sorry for this late post but this is what debug says:
    DEBUG: getProvider() returning javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Sun Microsystems, Inc]
    * OK [CAPABILITY IMAP4rev1 UIDPLUS CHILDREN NAMESPACE THREAD=ORDEREDSUBJECT THREAD=REFERENCES SORT QUOTA IDLE ACL ACL2=UNION STARTTLS] Courier-IMAP ready. Copyright 1998-2005 Double Precision, Inc. See COPYING for distribution information.
    A0 CAPABILITY
    * CAPABILITY IMAP4rev1 UIDPLUS CHILDREN NAMESPACE THREAD=ORDEREDSUBJECT THREAD=REFERENCES SORT QUOTA IDLE ACL ACL2=UNION STARTTLS
    A0 OK CAPABILITY completed
    A1 LOGIN user password
    A1 NO Login failed.
    Script threw exception: Sourced file: mail.java : Method Invocation store.connect : at Line: 11 : in file: mail.java : store .connect ( "host" , "user" , "password" )
    Target exception: javax.mail.AuthenticationFailedException: Login failed.
    javax.mail.AuthenticationFailedException: Login failed.
    at com.sun.mail.imap.IMAPStore.protocolConnect(IMAPStore.java:293)
    at javax.mail.Service.connect(Service.java:234)
    at javax.mail.Service.connect(Service.java:135)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at bsh.Reflect.invokeMethod(Unknown Source)
    at bsh.Reflect.invokeObjectMethod(Unknown Source)
    at bsh.Name.invokeMethod(Unknown Source)
    at bsh.BSHMethodInvocation.eval(Unknown Source)
    at bsh.BSHPrimaryExpression.eval(Unknown Source)
    at bsh.BSHPrimaryExpression.eval(Unknown Source)
    at bsh.Interpreter.eval(Unknown Source)
    at bsh.Interpreter.source(Unknown Source)
    at bsh.Interpreter.main(Unknown Source)

  • Authentication Error with portal Tools

    I'm using WLS 6.1 SP1 and Portal 4.0 SP1 on solaris.
    I've modified everything in my configuration files to work with Oracle 8.17 instead of Cloudscape. The database has been correctly created (I've followed all the items as described in the doc) with all the examples.
    The problem is that I cannot reach the 'stockportal' example. I'm getting the following exception :
    <Feb 4, 2002 4:32:29 PM WET> <Error> <HTTP> <[WebAppServletContext(2833966,stockportal,/stockportal)] Servlet failed with ServletException
    javax.servlet.ServletException: Received a null Portal object from the PortalManager.
    at com.bea.portal.appflow.servlets.internal.PortalWebflowServlet.setupPortalRequest(PortalWebflowServlet.java:194)
    at com.bea.portal.appflow.servlets.internal.PortalWebflowServlet.doGet(PortalWebflowServlet.java:99)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:265)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:200)
    at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:215)
    at weblogic.servlet.jsp.PageContextImpl.forward(PageContextImpl.java:112)
    at jsp_servlet.__index._jspService(__index.java:92)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:265)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:304)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:200)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:2459)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2039)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    >
    I thought no portal example was provided with Oracle database so I tried to create my own portal with 'portalTools' but when I enter the URL : http://<myServer>:<myPort>/portalTools
    I'm getting 403 error. The server does not send me any authentication form. The same occurs with any other Tools : p13nAppTools, portalTools or wlcsAppTools .
    Any Idea ?
    [att1.html]

    Laurent,
    I think you need to run a DataSync. You can either sync a "appname-project" directory (for server installs) or sync from the EBCC. If you run bin/win32/loadSampleData it will sync all the application for you.
    Sincerely,
    Daniel Selman
    "Laurent PAILLARD" <[email protected]> wrote in message news:[email protected]...
    I'm using WLS 6.1 SP1 and Portal 4.0 SP1 on solaris.
    I've modified everything in my configuration files to work with Oracle 8.17 instead of Cloudscape. The database has been correctly created (I've followed all the items as described in the doc) with all the examples.
    The problem is that I cannot reach the 'stockportal' example. I'm getting the following exception :
    <Feb 4, 2002 4:32:29 PM WET> <Error> <HTTP> <[WebAppServletContext(2833966,stockportal,/stockportal)] Servlet failed with ServletException
    javax.servlet.ServletException: Received a null Portal object from the PortalManager.
    at com.bea.portal.appflow.servlets.internal.PortalWebflowServlet.setupPortalRequest(PortalWebflowServlet.java:194)
    at com.bea.portal.appflow.servlets.internal.PortalWebflowServlet.doGet(PortalWebflowServlet.java:99)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:265)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:200)
    at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:215)
    at weblogic.servlet.jsp.PageContextImpl.forward(PageContextImpl.java:112)
    at jsp_servlet.__index._jspService(__index.java:92)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:265)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:304)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:200)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:2459)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2039)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    >
    I thought no portal example was provided with Oracle database so I tried to create my own portal with 'portalTools' but when I enter the URL : http://<myServer>:<myPort>/portalTools
    I'm getting 403 error. The server does not send me any authentication form. The same occurs with any other Tools : p13nAppTools, portalTools or wlcsAppTools .
    Any Idea ?
    [att1.html]

  • Authentication error with Open Intelligence Interface

    I'm currently trying to configure things to be able to use Oracle BI as an ODBC datasource.
    I've created a system DSN called DashboardTest and am currently just using the Administrator account with the same password.
    Connection string is: DSN=DashboardTest;&Uid=Administrator;&Pwd=Administrator
    but whenever I try to connect I'm getting the following error message:
    ERROR [08004] [NQODBC] [SQL_STATE: 08004] [nQSError: 10018] Access for the requested connection is refused.
    [nQSError: 43001] Authentication failed for in repository Star: invalid user/password.
    As far as I can tell I'm using the correct username and password, the DSN is set to use the standard port of 9703 (set in NQSConfig.ini file) and yet I'm still getting the error.
    The line Authentication failed for in repository Star: invalid user/password. has a blank space after Authentication failed for so it looks like it's possibly not getting the user from the connection string?
    Any suggestions how to resolve this?

    This was just done in a C# test harness for a proof of concept.
    I've just tried it in Excel using the Import External Data function and it connects to the datasource fine and produces the same results as I'm getting in BI Answers so I guess the DSN is set up correctly.
    My guess is that the connection string isn't correct, specifically the Uid and Pwd fields.
    These are what it would normally be for a standard ODBC DSN though and I can't find any documentation anywhere that tells me what else they could be?

  • "530 5.7.1 Client was not authenticated" Error with mail service

    Hi,
    I have some problem with Mail service with the Webspaces application. I have configured the Service (with MS Exchange server) with WebSpaces Application with the required IMAP, SMTP, External Application and LDAP Settings correctly. I opened the Mail Page and Logged in with the
    user credentials. I am able to see the incoming mails , But when I try to send a mail I am getting the following exception. For some reason, SMTP send is failing. I did the same IMAP and SMTP settings in MS Outlook and successfully sent the mail. what could be the problem? Please repond.
    oracle.webcenter.collab.mail.MailException: Failed to send the message with subject "Test". Further information: 530 5.7.1 Client was not authenticated
         at oracle.webcenter.collab.mail.MailSession.sendMessage(MailSession.java:864)
         at oracle.webcenter.collab.mail.view.backing.MessageHandler.sendMessage(MessageHandler.java:528)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.sun.el.parser.AstValue.invoke(AstValue.java:157)
         at com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:283)
         at org.apache.myfaces.trinidadinternal.taglib.util.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:53)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcastToMethodBinding(UIXComponentBase.java:1245)
         at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:183)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:87)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:298)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:91)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:87)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:87)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:298)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:91)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:81)
         at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:475)
         at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:756)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._invokeApplication(LifecycleImpl.java:673)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:273)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:165)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.portlet.client.adapter.adf.ADFPortletFilter.doFilter(ADFPortletFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.webcenter.webcenterapp.internal.view.webapp.WebCenterShellPageRedirectionFilter.doFilter(WebCenterShellPageRedirectionFilter.java:210)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:191)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.webcenter.webcenterapp.internal.view.webapp.WebCenterShellFilter.doFilter(WebCenterShellFilter.java:603)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.view.page.editor.webapp.WebCenterComposerFilter.doFilter(WebCenterComposerFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.share.http.ServletADFFilter.doFilter(ServletADFFilter.java:65)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:85)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:54)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:247)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:157)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:159)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.wls.JpsWlsFilter$1.run(JpsWlsFilter.java:96)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.wls.util.JpsWlsUtil.runJaasMode(JpsWlsUtil.java:146)
         at oracle.security.jps.wls.JpsWlsFilter.doFilter(JpsWlsFilter.java:140)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:70)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.webcenter.webcenterapp.internal.view.webapp.WebCenterLocaleWrapperFilter.processFilters(WebCenterLocaleWrapperFilter.java:256)
         at oracle.webcenter.webcenterapp.internal.view.webapp.WebCenterLocaleWrapperFilter.doFilter(WebCenterLocaleWrapperFilter.java:215)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:202)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3588)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2200)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2106)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1428)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: com.sun.mail.smtp.SMTPSendFailedException: 530 5.7.1 Client was not authenticated
         at com.sun.mail.smtp.SMTPTransport.issueSendCommand(SMTPTransport.java:1388)
         at com.sun.mail.smtp.SMTPTransport.mailFrom(SMTPTransport.java:959)
         at com.sun.mail.smtp.SMTPTransport.sendMessage(SMTPTransport.java:583)
         at oracle.webcenter.collab.mail.MailSession.sendMessage(MailSession.java:850)
    Edited by: indra_owc on Jan 9, 2010 6:14 PM

    The server probably wants you to use the STARTTLS command before you authenticate.
    See the com.sun.mail.smtp package javadocs for the property to set to enable that.

  • Authentication error with Yammer Data Source

    Hi,
    I want to show Yammer post in my Siena application (Beta 3). I have added Yammer data source by providing Client id (by registering app) and provided
    redirect URL as my organization Yammer page (https://www.yammer.com/******.com).
    However when I try any function it ask for credentials twice and give error “There was an error in retrieving sample data. Error : An error occurred
    during authentication”.
    Can you please let me know if I am missing something. I tried giving different redirect URLs
    (viz. http://bing.com), but same error.
    I tried solution suggested
    here but no luck .
    Regards,
    Omkar

    I get the same error.
    I want to use an Excel source for a financial report . This excel document has financial data for prevoius year and does not need refreshing.
    It has approximately 27200 rows and columns from A to M.
    Is there any solution to use this datasource
    I use WebI Rich Client for Business Objects XI 3.1 (EDGE)

  • User authentication error with Proxy Java Calling web Service in XI

    Hello,
    I have deploy a Web Service in SAP XI 3.0. within a SOAP sender adapter.
    I have also created the Proxy Java Class to access the webservice in the Developer Studio and a Plain Java Class (only with a method main) which uses the proxy classes to consume the web service.
    But when I launch the program a get the next error message:
    java.rmi.RemoteException: Service call exception; nested exception is:
         com.sap.engine.services.webservices.jaxrpc.exceptions.InvalidResponseCodeException: Invalid Response Code: (401) Unauthorized.
         at com.everis.serviciosweb.xi.MI_OUT_STATUSBindingStub.MI_OUT_STATUS(MI_OUT_STATUSBindingStub.java:73)
         at com.everis.llamadas.invocacionWSStatus.main(invocacionWSStatus.java:76)
    Caused by: com.sap.engine.services.webservices.jaxrpc.exceptions.InvalidResponseCodeException: Invalid Response Code: (401) Unauthorized.
         at com.sap.engine.services.webservices.jaxrpc.wsdl2java.soapbinding.MimeHttpBinding.handleResponseMessage
    Where MI_OUT_STATUSBindingStub is my Stub Class.
    I have tried to set USERNAME_PROPERTY and PASSWORD_PROPERTY at runtime from my Stub class to the values that I use to access SAP XI (Integration Repository & Integration Directory) but it still doesn't´t work.
    Have anyone a solution?
    Thanks.

    Hi,
        finally I have fixed it.
    The root of the problem was on the way that I proceed with the generation of wsdl in Integration Directory.
    The second step in the wizard for generation of wsdl ask for a url to call the web service and gives you an option to complete the url automatic. I have use this option and it have proposed my an url of type http://<host>:<port>/sap/xi/engine?entry=.......
    But the SOAP adapter call is in the form http://<host>:<port>/XISOAPAdapter/MessageServlet?channel=<party>:<business service>:<channel>
    So using this type of url in the generation of wsld solves all the problems.
    Regards,
    Antonio.

  • Error Message in xcode: Command /usr/bin/codesign failed with exit code 1

    I am attempting build my iPad application on my device and I have went though the provisioning and successfully created an App ID, provisioning, etc. and when i 'Build and go' i get this error message:
    *Command /usr/bin/codesign failed with exit code 1*
    The only thing that I could think of that might be causing this is that when I 'Build and Go' on my device it come up with this pop-up message from xcode twice:
    +codesign wants to sign using key "MY NAME" in your keychain.+
    +Do you want to allow access to this item?+
    Please Help.

    Hey jamez97,
    In Xcode, top left hand corner of the window. Access the drop down menu, make sure that you have;
    1) Set to run on the DEVICE
    2) Selected DEBUG
    3) Connected your device
    click build and run...adjusting these sometimes works when i have the same error as you.
    You should have also added your device the provisioning profile you made. If you haven't done this, you can do it via the iOS Devcentre --> provisioning portal -->launch assistant.
    Hope this helps...if it doesn't, post back and somebody else may be able to give you the solution.
    j
    Message was edited by: james_coleman01
    Message was edited by: james_coleman01

Maybe you are looking for

  • SAP GUI only black after Upgrade

    Hi I upgraded from 7.10 to 7.2. After the upgrade I only get a black sceen where the SAP GUI should be. I can only see some text and when I'm in a text box I just see a red squere representing the input area. I have tried to uninstall the gui and ins

  • BAPI_BUPA_SEARCH - MAXSEL

    I have an RFC that does business partner search using BAPI_BUPA_SEARCH. I want the ability to restrict the number of business partner retrieved. The bapi has a structure OTHERS. In it there  is is a field MAXSEL. I specify 20 for MAXSEL in BAPI signa

  • XIUSER - Service users role/profile at R/3 system

    All, Currently, we have the following scenarios 1) IDoc to XI to 3rd Party System 2) 3rd Party System to XI to R/3 RFC 3) R/3 RFC to XI to 3rd Party System These scenarios are working using service user XIUSER with SAP_ALL, SAP_NEW access at R/3. I w

  • Generic extraction - Delta Update

    I am creating a generic extractor to extract PM confirmations data from AFRU table. I need to make it delta enable. how do I decide which field to use for delta relevant check? any ideas?

  • Installing NW Developer Studio on Windows 64bit

    Hello, Can the Developer Studio run on windows vista (64 bits)? One of the requirements from the installation guide (Installation Guide ‒ SAP NetWeaver Developer Studio 7.1 SP3) is: "Microsoft Windows XP Professional SP2 (or higher)(32-bit)" And ther