Error connecting to JServer/EJB

Hi all,
I've successfully deployed a BC4J Application Module as EJB Session Bean into Oracle8i 8.1.6. The test on this Application Module works fine.
The client code that calls the EJB is:
package ricercalista.client;
import java.util.Hashtable;
import javax.naming.*;
import oracle.jbo.*;
import ricercalista.client.ejb.LoginModuleEJBClient;
import oracle.jbo.client.remote.ejb.*;
import oracle.jbo.common.remote.*;
import oracle.jbo.common.remote.ejb.*;
import ricercalista.common.ejb.*;
import ricercalista.common.*;
public class LoginClient {
final String AMDefName = "ricercalista.LoginModule";
final String username = "omero";
final String password = "omero";
final String dbUrl = "jdbc:oracle:thin:omero/omero@localhost:1521:OMERO";
public LoginClient() {
try {
Hashtable env = new Hashtable(10);
env.put(Context.INITIAL_CONTEXT_FACTORY, JboContext.JBO_CONTEXT_FACTORY);
env.put(JboContext.DEPLOY_PLATFORM, JboContext.PLATFORM_ORACLE8I);
env.put(JboContext.SECURITY_PRINCIPAL, username);
env.put(JboContext.SECURITY_CREDENTIALS, password);
env.put(JboContext.HOST_NAME, "bacco08.csr.unibo.it");
env.put(JboContext.CONNECTION_PORT, "2481");
env.put(JboContext.ORACLE_SID, "OMERO");
env.put(JboContext.APPLICATION_PATH, "test/omero/ejb");
Context ic = new InitialContext(env);
LoginModuleHome home = (LoginModuleHome) ic.lookup(AMDefName);
LoginModuleEJBClient myejb = (LoginModuleEJBClient) home.create();
myejb.getTransaction().connect(dbUrl, username, password);
myejb.setUser("turronic", "chris");
System.out.println((String) myejb.getCognome());
System.out.println((String) myejb.getNome());
ricercalista.UserProfile up = myejb.getUserProfile();
for (int i = 0; i < up.size(); i++) {
System.out.println("dominio = " + up.getCodeDomain(i) + " grado = " + up.getInterestDegree(i));
myejb.getTransaction().disconnect();
myejb.remove();
catch (java.rmi.RemoteException re) {
System.out.println("Remote exception in creating " + AMDefName);
re.printStackTrace();
catch (javax.ejb.CreateException ce) {
System.out.println("Unable to create ejb " + AMDefName);
ce.printStackTrace();
catch (NamingException ne) {
System.out.println("Unable to find application " + AMDefName);
ne.printStackTrace();
catch (oracle.jbo.ApplicationModuleCreateException e) {
System.out.println("Unable to create application module " + AMDefName);
e.printStackTrace();
public static void main(String[] args) {
new LoginClient();
When I run this client, an error occurs on the statement:
LoginModuleHome home = (LoginModuleHome) ic.lookup(AMDefName);
The error is:
System Error: javax.naming.NamingException: Unknown reasons. Root exception is java.lang.ClassNotFoundException: ricercalista.common.ejb.LoginModuleHomeHelper
System Error: void oracle.jbo.client.remote.corba.aurora.AuroraApplicationModuleHome.initRemoteHome() (AuroraApplicationModuleHome.java:167)
System Error: void oracle.jbo.client.remote.corba.aurora.AuroraApplicationModuleHome.<init>(oracle.jbo.JboContext, java.lang.String) (AuroraApplicationModuleHome.java:75)
System Error: oracle.jbo.common.JboHome oracle.jbo.client.remote.corba.aurora.AuroraInitialContext.createJboHome(java.lang.String) (AuroraInitialContext.java:47)
System Error: java.lang.Object oracle.jbo.common.JboInitialContext.lookup(java.lang.String) (JboInitialContext.java:72)
System Error: java.lang.Object javax.naming.InitialContext.lookup(java.lang.String) (InitialContext.java:349)
System Error: void ricercalista.client.LoginClient.<init>() (LoginClient.java:51)
System Error: void ricercalista.client.LoginClient.main(java.lang.String[]) (LoginClient.java:89)
Have you ever got this error? Is the client code right?
Thanks a lot!

java.lang.ClassNotFoundException:ricercalista.common.ejb.LoginModuleHomeHelper
It's saying Call Not Found and I'm guessing that ricercalista.common.ejb.LoginModuleHomeHelper
is your class? Did your classes(jar file) get to the server in the right place? to be found? Is the Classpath set?
I'm not a EJB programmer though.

Similar Messages

  • Error connecting to an EJB 3.0 Remote on OC4J 10.1.3.2 from Tomcat

    Hi, I want to connect to a Remote Session Bean running on the OC4J 10.1.3 and it doesn´t work.
    I have connected to it from a java standalone application using:
    public static void main(String [] args) {
    try {
    final Context context = getInitialContext();
    SessionEJB sessionEJB = (SessionEJB)context.lookup("java:comp/env/ejb/SessionEJB");
    System.out.println(sessionEJB.mergeEntity(""));
    System.out.println( "hola" );
    } catch (Exception ex) {
    ex.printStackTrace();
    private static Context getInitialContext() throws NamingException {
    Hashtable env = new Hashtable();
    // Standalone OC4J connection details
    env.put( Context.INITIAL_CONTEXT_FACTORY, "oracle.j2ee.naming.ApplicationClientInitialContextFactory" );
    env.put( Context.SECURITY_PRINCIPAL, "oc4jadmin" );
    env.put( Context.SECURITY_CREDENTIALS, "passw" );
    env.put(Context.PROVIDER_URL, "ormi://localhost:23791/ejb3jar");
    return new InitialContext( env );
    with this application-client.xml file:
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <application-client xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/application-client_1_4.xsd" version="1.4" xmlns="http://java.sun.com/xml/ns/j2ee">
    <display-name>Model-app-client</display-name>
    <ejb-ref>
    <ejb-ref-name>ejb/SessionEJB</ejb-ref-name>
    <ejb-ref-type>Session</ejb-ref-type>
    <remote>ar.com.eds.ejb3.model.SessionEJB</remote>
    <ejb-link>SessionEJB</ejb-link>
    </ejb-ref>
    thats works fine, but when I try to use the same solution from a jsf proyect running on a Tomcat 5.5.20, it fails with this error:
    Caused by: java.lang.RuntimeException: Error while creating home.
         at ar.com.mcd.fawkes.ui.locator.EJB3Locator.get(EJB3Locator.java:32)
         at ar.com.mcd.fawkes.ui.locator.ServiceLocator$1.get(ServiceLocator.java:12)
         at net.sf.opentranquera.web.jsf.locator.ServiceLocatorBean.get(ServiceLocatorBean.java:42)
         at com.sun.faces.el.PropertyResolverImpl.getValue(PropertyResolverImpl.java:79)
         at com.sun.faces.el.impl.ArraySuffix.evaluate(ArraySuffix.java:187)
         at com.sun.faces.el.impl.ComplexValue.evaluate(ComplexValue.java:171)
         at com.sun.faces.el.impl.ExpressionEvaluatorImpl.evaluate(ExpressionEvaluatorImpl.java:263)
         at com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:160)
         ... 80 more
    Caused by: javax.naming.NameNotFoundException: Name ejb is not bound in this Context
         at org.apache.naming.NamingContext.lookup(NamingContext.java:769)
         at org.apache.naming.NamingContext.lookup(NamingContext.java:139)
         at org.apache.naming.NamingContext.lookup(NamingContext.java:780)
         at org.apache.naming.NamingContext.lookup(NamingContext.java:139)
         at org.apache.naming.NamingContext.lookup(NamingContext.java:780)
         at org.apache.naming.NamingContext.lookup(NamingContext.java:152)
         at org.apache.naming.SelectorContext.lookup(SelectorContext.java:136)
         at javax.naming.InitialContext.lookup(Unknown Source)
         at ar.com.mcd.fawkes.ui.locator.EJB3Locator.get(EJB3Locator.java:28)
         ... 87 more
    Could you please help me with any tip?
    Mauricio
    Message was edited by:
    Mauricio

    Hi, Rick
    Thanks for your help.
    I deleted de application-client.xml file, added the following lines to the web.xml file:
         <ejb-ref>
              <ejb-ref-name>ejb/SessionEJB</ejb-ref-name>
              <ejb-ref-type>Session</ejb-ref-type>
              <remote>ar.com.eds.ejb3.model.SessionEJB</remote>
         </ejb-ref>
    and now I´m using oracle.j2ee.rmi.RMIInitialContextFactory
    there is no error, and it doesn´t throw any exception but the following line returns null.
    SessionEJB sessionEJB = (SessionEJB)context.lookup("java:comp/env/ejb/SessionEJB");
    Its seems the lookup method finds the remote ejb because it doesn´t fail, but it returns null.
    Any idea what is wrong?
    Mauricio.

  • Error when connecting Applet to EJB

    Hi,
    I have an Applet that I try to connect to an EJB, but without success.
    To pinpoint the problem, I took the client-side code of the example ...examples\ejb\basic\BeanManaged
    and made an AWT Applet out of it.
    I seem to trap some error when I call the getInitialContext() when trying to find the Home interface.
    Nothing happens in my code (ie. the Applet) after I enter this part of the code. It is a it hard to say
    where it stops, since I do not get all output. It seems to die when I am trying to instantiate the
    Context-object or the AccountHome object. Maybe I just have a Classpath error.
    When running the BeanManaged as a Java Application, everything is working fine.
    Does anyone have any experience in these matters ?
    I am using WL 5.1.0 (no SP-s), JDK 1.2.2
    Regards, Erik

    Thanks for you answer Jos, but honestly I don't know what I should do then, since I can't get data from database through the applet.
    I have read some articles that we can get data from database through the applet (they use tomcat too). I have followed what the article said, but I still get the error.
    Do you have any idea Jos? Thank you very much for your nice attention
    Warmnest regards,
    Vijay

  • Removing an IIOP User connection to an EJB on JServer

    I am writing an application using a servlet engine to connect to an EJB in JServer. I am not using connection pooling because each user will be logging in with their database username. When the session times out on the servlet, I would like to clean up the connection, and release the EBJ/IIOP connection. Is there a preferred method to do this, or should I let JServer time out?
    Thanks
    Ken

    The beans have session lifetime and will be removed/cleaned up when the session is deleted.
    The session is constructed when the first JNDI lookup (on InitialContext) to an object (EJB in your case) of a given database instance is made. The session is deleted when there are :
    a) no connections to the session
    -and-
    b) the EJB timeout has expired.
    The timeout only starts ticking when there are no connections to the session.

  • Connecting to an ejb from another appserver

    Hello,
    I need to connect to an EJB running on a company's REMOTE Weblogic
    appserver. I have done so using normal class files but now I wish to use an
    EJB to do so. I am using Jboss but am getting errors from Jboss saying that
    it cannot find certain files. Should I be able to connect to the remote
    Weblogic server simply by giving JBOSS the url/t3 of it? This is what I am
    doing in the JBOSS deployed ejb:
    Properties properties = new Properties();
    properties.put(Context.INITIAL_CONTEXT_FACTORY,
    "weblogic.jndi.WLInitialContextFactory");
    properties.put(Context.PROVIDER_URL, "t3://xxx.xxx.xx.xx");
    InitialContext ctx = new InitialContext(properties);
    should I just be using JBOSS context factory in my bean code or do I need
    weblogic's? Doing this the way I am above, Jboss says it cannot find
    "weblogic.jndi.WLInitialContextFactory". So I jared up the parent directory
    inserting it into jboss and the next time it told me it couldn't find
    com.java.util.collections.ArrayList. So I jarred up the com directory from
    weblogic and gave jboss access to it. I now get a classnotfound for a class
    which IS contained in the com directory which is now available to Jboss.
    This tells me that I am going about this THE WRONG WAY. If anyone can help
    or point me to a tutorial telling me how I can use another appserver to
    connect to a remote Weblogic Server I would greatly appreciate it.
    Troy Harris

    Easier said then done (getting the higher ups to spend money on an expensive
    ejb server right now).
    Thanks,
    Troy Harris
    "Rob Woollen" <[email protected]> wrote in message
    news:[email protected]..
    No, you would need the weblogic classes on the client-side. You'd be
    better off developing your ejb in wls.
    -- Rob
    Troy Lejuan Harris wrote:
    Hello,
    I need to connect to an EJB running on a company's REMOTE Weblogic
    appserver. I have done so using normal class files but now I wish to
    use an
    EJB to do so. I am using Jboss but am getting errors from Jboss sayingthat
    it cannot find certain files. Should I be able to connect to the remote
    Weblogic server simply by giving JBOSS the url/t3 of it? This is what Iam
    doing in the JBOSS deployed ejb:
    Properties properties = new Properties();
    properties.put(Context.INITIAL_CONTEXT_FACTORY,
    "weblogic.jndi.WLInitialContextFactory");
    properties.put(Context.PROVIDER_URL, "t3://xxx.xxx.xx.xx");
    InitialContext ctx = new InitialContext(properties);
    should I just be using JBOSS context factory in my bean code or do Ineed
    weblogic's? Doing this the way I am above, Jboss says it cannot find
    "weblogic.jndi.WLInitialContextFactory". So I jared up the parentdirectory
    inserting it into jboss and the next time it told me it couldn't find
    com.java.util.collections.ArrayList. So I jarred up the com directoryfrom
    weblogic and gave jboss access to it. I now get a classnotfound for aclass
    which IS contained in the com directory which is now available to Jboss.
    This tells me that I am going about this THE WRONG WAY. If anyone canhelp
    or point me to a tutorial telling me how I can use another appserver to
    connect to a remote Weblogic Server I would greatly appreciate it.
    Troy Harris

  • Connecting to an EJB using an standalone client

    I'm trying to connect to an ejb deployed on my Application server (not standalone). But i always get the exception: javax.naming.AuthenticationException: No such domain/application
    To make sure everyting was ok, i followed the recipe described in: http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=232123.1
    But get same exception: C:\Servers\oc4j\j2ee\home>java -jar applicationlauncher.jar ormi://fsddappt01:3101/LOTTO_TEST_APP/client1.jar admin welcome 1
    Error: Lookup error: javax.naming.AuthenticationException: No such domain/application: LOTTO_TEST_APP; nested exception is:
    javax.naming.AuthenticationException: No such domain/application: LOTTO_TEST_APP
    Anyone has any suggestion on what's the problem?
    Cant find any topics on internet describing this error :-(
    Oeyvin J.

    Same error.
    The real application (web and ejb's) are running on the same OC4J instance. The Web client are accessing the ejb's on port 3101, so i think this is the correct rmi port.
    The server is a part of an infrastructure that are running on the same server, the server is one of two ApplicationServers that the infrastructure (farm) is controlling.
    each server has an instance name, the server i was deplying to has name instance2. Maybe i have to give a reference to to the instance?

  • Linux client - cannot connect to JServer

    Server with database - Oracle 8.1.7 on Windows 2000
    Client - Linux RedHat 7.2
    When I trying to connect to JServer using sess_sh:
    sess_sh -u arseniy -p mypasswd -s sess_iiop://199.58.1.113:2481:orcl
    I get this error message:
    javax.naming.CommunicationException: Unknown service: :session1 [Root exception is javax.naming.CommunicationException: Unknown service: 199.58.1.113:2481:orcl]
    When I try to use DBAStudio, I get something like this:
    VDJSERVER-1516: Failed to get a new JServer session.Unknown service::OEM0
    The most incomprehensible thing is that if I reboot my client to Windows 2000, it works, in other words - the file LISTENER.ORA on the server seems to be correct.
    So why I cannot work with JServer under Linux!?
    Thank you in advance...

    I uninstalled the
    http://support.microsoft.com/kb/2574819
    and it resumed working for me as well as I had exactly the same issue here.
    there is a point though: removing this KB removes the UDP connection capability of RDP 8.0; arguably the most significant breakthrough the RDP 8 has to offer. shouldn't it be addresses and the problem handled in a better way?
    if RDS Team claim that they've brought all the "adaptive network", "adaptive graphics" , "WAN enhancement" and etc to Windows 7 with the RDP 8 update(see links below), then shouldn't it be as available and as glitch-free as
    it is with a windows 8 VM?
    basically it is unacceptable to force the client to turn off the "automatic determine" feature ; either manually or through the RD-ConnectionBroker tweak of the following link (Jeroen Link):
    http://support.microsoft.com/kb/2863663
    because if it is a supported feature, it has to be supported without IFs and BUTs. this is definitely a bug that needs to be addresses.
    RDP 8 for windows 7 links:
    http://support.microsoft.com/kb/2592687
    http://blogs.msdn.com/b/rds/archive/2012/10/09/remote-desktop-protocol-8-0-update-for-windows-7-sp1-enabling-a-great-wan-user-experience-for-windows-7-sp1-virtual-desktops.aspx
    another thing I noticed : with RDP 8 features enabled, you don't get the event ID 2 as this link suggests anymore:
    http://technet.microsoft.com/en-us/library/ff817587
    maybe you'll get event 34 as this one says. but I am not quite sure:
    http://social.technet.microsoft.com/wiki/contents/articles/16652.remotefx-vgpu-setup-and-configuration-guide-for-windows-server-2012.aspx
    P.S. I am using 2012R2 Hyper-V and it does have this problem as well, so I don't think that compatibility roll up update will help.

  • IFS very slow and giving error message in jserv.log

    Getting the error message in jserv.log
    =public
    [05/06/2001 08:08:51:181] (EMERGENCY) ajp12[1]: cannot scan servlet headers (50
    0)
    [05/06/2001 08:08:51:182] (ERROR) an error returned handling request via protoco
    l "ajpv12"
    I have tried changing a lot of stuff in both the jserv.properties, jserv.conf, zone.properties and in IFS configuration files .

    If possible, connect to your router with Ethernet and turn off Wi-Fi. Any difference?

  • UnExpected error occured while creating ejb container

    Hey, I am trying to deploy a new bean that I just wrote with a bean that has already been written. My bean is the News bean, the existing bean is the PPSO bean.
    when I deploy, I get the following exception:
    [26/Feb/2004:11:22:42] SEVERE ( 2104): LDR5004: UnExpected error occured while creating ejb container
    java.lang.ClassNotFoundException: com.pragmatics.ppcig.model.ejb.NewsBean_LocalHomeImpl
         at com.iplanet.ias.loader.EJBClassLoader.findClass(EJBClassLoader.java:457)
         at com.iplanet.ias.loader.EJBClassLoader.loadClass(EJBClassLoader.java:585)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
         at com.sun.ejb.containers.BaseContainer.initializeHome(BaseContainer.java:426)
         at com.sun.ejb.containers.EntityContainer.initializeHome(EntityContainer.java:355)
         at com.sun.ejb.containers.ContainerFactoryImpl.createContainer(ContainerFactoryImpl.java:230)
         at com.iplanet.ias.server.AbstractLoader.loadEjbs(AbstractLoader.java:345)
         at com.iplanet.ias.server.ApplicationLoader.load(ApplicationLoader.java:81)
         at com.iplanet.ias.server.ApplicationManager.applicationDeployed(ApplicationManager.java:134)
         at com.iplanet.ias.server.ApplicationManager.applicationDeployed(ApplicationManager.java:110)
         at com.iplanet.ias.server.ApplicationManager.applicationDeployed(ApplicationManager.java:294)
         at com.iplanet.ias.admin.event.AdminEventMulticaster.invokeApplicationDeployEventListener(AdminEventMulticaster.java:424)
         at com.iplanet.ias.admin.event.AdminEventMulticaster.handleApplicationDeployEvent(AdminEventMulticaster.java:408)
         at com.iplanet.ias.admin.event.AdminEventMulticaster.processEvent(AdminEventMulticaster.java:291)
         at com.iplanet.ias.admin.event.AdminEventMulticaster.multicastEvent(AdminEventMulticaster.java:99)
         at com.iplanet.ias.admin.server.core.channel.AdminChannelServer.sendNotification(AdminChannelServer.java:84)
         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 sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:261)
         at sun.rmi.transport.Transport$1.run(Transport.java:148)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.rmi.transport.Transport.serviceCall(Transport.java:144)
         at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:460)
         at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:701)
         at java.lang.Thread.run(Thread.java:534)
    here are pieces of my deployment descriptor:
    <entity>
              <description>PPSO EJB</description>
              <display-name>PPSO EJB</display-name>
              <ejb-name>PPSO</ejb-name>
              <local-home>com.pragmatics.ppcig.model.ejb.PPSOLocalHome</local-home>
              <local>com.pragmatics.ppcig.model.ejb.PPSOLocal</local>
              <ejb-class>com.pragmatics.ppcig.model.ejb.PPSOBean</ejb-class>
              <persistence-type>Bean</persistence-type>
              <prim-key-class>java.lang.String</prim-key-class>
              <reentrant>False</reentrant>
              <env-entry>
    // - select statements here that don't apply - //
    </entity>
         <entity>
              <description>News EJB</description>
              <display-name>News EJB</display-name>
              <ejb-name>News</ejb-name>
              <local-home>com.pragmatics.ppcig.model.ejb.NewsLocalHome</local-home>
              <local>com.pragmatics.ppcig.model.ejb.NewsLocal</local>
              <ejb-class>com.pragmatics.ppcig.model.ejb.NewsBean</ejb-class>
              <persistence-type>Bean</persistence-type>
              <prim-key-class>java.lang.String</prim-key-class>
              <reentrant>False</reentrant>
              <resource-ref>
                   <res-ref-name>jdbc/ppcigDS</res-ref-name>
                   <res-type>javax.sql.DataSource</res-type>
                   <res-auth>Container</res-auth>
                   <res-sharing-scope>Shareable</res-sharing-scope>
              </resource-ref>
         </entity>
    Any ideas what is causing this error?
    Thanks!

    Hi shanu, thanks for your reply,
    Yes I configured the JMS Objects in my AS before deploying the MDB.
    I set
    - a Queue: RFIDLocatorQueue
    - a connection Factory: RFIDLocatorConnectionFactory
    - and a Physical destination for my logical queue called: RFIDLocatorPhysicalQueue
    The latter was linked to the RFIDLocatorQueue by putting RFIDLocatorPhysicalQueue in the name parameter of the RFIDLocatorQueue.
    Is there maybe something else I forgot to configure ?
    thanks a lot

  • Error connecting to the SAP SRV on Windows 2008 Server platform

    Hi All
    We have a problem with one of our clients they bought a new sbs windows server 2008 and we loaded sql 2005 and sap b1 SP01 PL07.
    When we did the SBO install we experience connection issues and we created odbc connection on the server using named pipes and tcp/ip (used both server name and Ip address).
    We also configured the server in configuration manager and we managed to login and solved the slow system connection issue. We also created odbc connection on the client machines. (Machine are on a workgroup and users have administration access on all machines),we also installed native client on all machines.
    After the first batch of client installs we managed to have connection, they were other computers which were left out during the first client install and now the client want to do the remaining machines connected to SBO. On every machine that we install now we get the same error :-
    *Connection failed:
    SQLState:'08001'
    SQl Server error:10060
    [Microsoft][SQL Native Client] TCP Provider: A connection attempt failed because the connected party didnot properly repsond after a period of time, or established connection failed because connected host has failed to respond.
    Connectioin failed:
    SQLState:'HYT00'
    SQL Server Error:0
    [Microsoft][SQL Native Client]Login timeout expired
    Connection failed:
    SQLState:'08001'
    SQL Server Error: 10060
    [Microsoft][SQL Native client] An error has occurred while establishing a connection to the server. When connecting to the sql server 2005, this failure may be cause by the that*
    Please help as most user who need access can't login and they are the main users.
    rgds,
    Bongani Dlamini

    Hi Eric,
    yes we are using Windows 2008 SBS for the SAP EHP4 FOR SAP ERP 6.0/NW7.01 installation.
    we tried to create the key but it says access is denied.
    Actual thing is we got the server with Windows 2008 server 64 bit SBS (standard FE) with Domain Controller (DC) configuration.
    We have removed the DC using dcpromo to convert into Wokgroup and tried the SAP installation.
    I hope you got the idea and please let me know any further suggestions or it is the problem with the license.
    Thanks & Regards,
    Prabhu Reddy.

  • Data import from EBS failed via FDMEE in fdm . Getting error message as "Error connecting to AIF URL.

    FDM Data import from EBS failed via FDMEE after roll back the 11.1.2.3.500 patch . Getting below error message in ERPI Adapter log.
    *** clsGetFinData.fExecuteDataRule @ 2/18/2015 5:36:17 AM ***
    PeriodKey = 5/31/2013 12:00:00 AM
    PriorPeriodKey = 4/30/2013 12:00:00 AM
    Rule Name = 6001
    Execution Mode = FULLREFRESH
    System.Runtime.InteropServices.COMException (0x80040209): Error connecting to AIF URL.
    at Oracle.Erpi.ErpiFdmCommon.ExecuteRule(String userName, String ssoToken, String ruleName, String executionMode, String priorPeriodKey, String periodKey, String& loadId)
    at fdmERPIfinE1.clsGetFinData.fExecuteDataRule(String strERPIUserID, String strDataRuleName, String strExecutionMode, String strPeriodKey, String strPriorPeriodKey)
    Any help Please?
    Thanks

    Hi
    Getting this error in ErpiIntergrator0.log . ODI session ID were not generated in ODI / FDMEE. If I import from FDMEE its importing data from EBS.
    <[ServletContext@809342788[app:AIF module:aif path:/aif spec-version:2.5 version:11.1.2.0]] Servlet failed with Exception
    java.lang.RuntimeException
    at com.hyperion.aif.servlet.FDMRuleServlet.doPost(FDMRuleServlet.java:76)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    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:301)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:27)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:324)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)
    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:163)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3730)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3696)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

  • TCP active open: Failed connect()    Error: Connection timed out SMTP

    Hi,
    Messaging server version is,
    ./imsimta version
    Sun Java(tm) System Messaging Server 6.2-6.01 (built Apr 3 2006)
    libimta.so 6.2-6.01 (built 11:20:35, Apr 3 2006)
    SunOS bglbbmr1-a-fixed 5.9 Generic_118558-28 sun4u sparc SUNW,Sun-Fire-V440
    17-Dec-2008 10:47:40.08 1730.8e.741
    tcp_local Q 4 [email protected] rfc822;[email protected] [email protected] /mta/queue/queue/tcp_local/013/ZUg0i1t9I0ZG~.00 <[email protected]>; TCP active open: Failed connect() Error: Connection timed out SMTP/xyz.my-domain.in
    I have been getting this above error on my mail server from last
    4-5 days. I am getting complaints from end users that the users can't
    send any mails using Outlook but I did check with my test user I can
    send mail by using webmail.
    The Failed MX lookup Errors also getting in my logs the error detail given bellow.
    17-Dec-2008 10:47:39.65 1730.91.737
    tcp_local - Y TCP|0.0.0.0||209.85.143.114|25 SMTP/airtelmail.in/aspmx.l.google.com
    17-Dec-2008 10:47:39.92 1754.41.255
    tcp_notify - Y SMTP/infomedia18.in/infomedia18.in
    17-Dec-2008 10:47:39.92 1754.41.256
    tcp_notify Q 7 rfc822;[email protected] [email protected] /mta/queue/queue/tcp_notify/017/ZXg0i1t3U_ZoD.00 <[email protected]>; Failed MX lookup; try again later
    17-Dec-2008 10:47:39.94 1754.41.257
    tcp_notify Q 6 rfc822;[email protected] [email protected] /mta/queue/queue/tcp_notify/010/ZXg0i1t3U_ZoF.00 <0KBZ003MRGU7MQ30@my-domain> Failed MX lookup; try again later
    I tried stopping and starting msg service using stop-msg and start-msg to sort out this above problem but no result. :(
    When I do check the tcp_local queue it has been growing every day as well the tcp_notification queue also.
    /opt/SUNWmsgsr/sbin/imsimta qm su
    Messages
    Channel Queued Size (Kb) Oldest
    tcp_notify 10741 1080610.61 16 Dec, 00:59:24
    tcp_local 8334 733849.31 15 Dec, 00:19:00
    tcp_lmtpcn 0 0.00
    tcp_be 0 0.00
    reprocess 0 0.00
    process 0 0.00
    conversion 0 0.00
    Totals 19075 1814459.92
    This queues are increasing day by day.
    One more thing is that I cant see a service/channel called CONVERSION running on my server when i do use this command.
    ps -aef | grep conversion
    root 6144 6000 0 11:14:28 pts/1 0:00 grep conversion
    When i try to start it using imsimta qm utility, output shows as
    qm.maint>; start conversion
    QM-I-STARTED, channel was not stopped
    qm.maint>;
    Later I stopped and started conversion channel
    qm.maint>; stop conversion
    QM-I-STOPPED, channel stopped
    qm.maint>; start conversion
    QM-I-STARTED, channel started
    qm.maint>;
    I can see that on other servers the conversion channel is running and few msges are in queue. I do have other servers which running the same messaging server. But I am not getting why don't on this server. Where both servers having the same configuration.
    Please, help me to sort out this issue.
    Thanks in advance....
    BSK

    Thanks Mr. Shane,
    The server which is running conversion channel.
    ps -eaf|grep conversion
    mailserv 16824 8472 3 17:08:11 ? 0:48 /opt/SUNWmsgsr/lib/conversion
    mailserv 28728 8472 0 17:17:30 ? 0:00 /opt/SUNWmsgsr/lib/conversion
    root 1057 26387 0 17:18:12 pts/1 0:00 grep conversion
    more /opt/SUNWmsgsr/config/conversions
    in-channel=*; in-type=application; in-subtype=*; in-disposition=*;
    parameter-symbol-0=NAME; parameter-copy-0=*;
    dparameter-symbol-0=FILENAME; dparameter-copy-0=*;
    message-header-file=2; original-header-file=1;
    override-header-file=1; override-option-file=1;
    command="/opt/SUNWmsgsr/private/virusscan.sh"
    in-channel=*; in-type=x-zip-compressed; in-subtype=*; in-disposition=*;
    parameter-symbol-0=NAME; parameter-copy-0=*;
    dparameter-symbol-0=FILENAME; dparameter-copy-0=*;
    message-header-file=2; original-header-file=1;
    override-header-file=1; override-option-file=1;
    command="/opt/SUNWmsgsr/private/virusscan.sh"
    in-channel=*; in-type=image; in-subtype=*; in-disposition=*;
    parameter-symbol-0=NAME; parameter-copy-0=*;
    dparameter-symbol-0=FILENAME; dparameter-copy-0=*;
    message-header-file=2; original-header-file=1;
    override-header-file=1; override-option-file=1;
    command="/opt/SUNWmsgsr/private/virusscan.sh"
    in-channel=*; in-type=audio; in-subtype=*; in-disposition=*;
    parameter-symbol-0=NAME; parameter-copy-0=*;
    dparameter-symbol-0=FILENAME; dparameter-copy-0=*;
    message-header-file=2; original-header-file=1;
    override-header-file=1; override-option-file=1;
    command="/opt/SUNWmsgsr/private/virusscan.sh"
    in-channel=*; in-type=video; in-subtype=*; in-disposition=*;
    parameter-symbol-0=NAME; parameter-copy-0=*;
    dparameter-symbol-0=FILENAME; dparameter-copy-0=*;
    message-header-file=2; original-header-file=1;
    override-header-file=1; override-option-file=1;
    command="/opt/SUNWmsgsr/private/virusscan.sh"
    Following entry from /opt/SUNWmsgsr/lib/config-templates/imta_tailor
    IMTA_CONVERSION_FILE=<msg.RootPathUNIX>/config/conversions
    The server which doesnt show running conversion channel
    #more /opt/SUNWmsgsr/config/conversions
    !in-channel=*; in-type=*; in-subtype=*; in-disposition=*;
    ! parameter-symbol-0=NAME; parameter-copy-0=*;
    ! dparameter-symbol-0=FILENAME; dparameter-copy-0=*;
    ! message-header-file=2; original-header-file=1;
    ! override-header-file=1; override-option-file=1;
    ! command="/opt/SUNWmsgsr/private/virusscan.sh"
    in-channel=*; in-type=application; in-subtype=*; in-disposition=*;
    parameter-symbol-0=NAME; parameter-copy-0=*;
    dparameter-symbol-0=FILENAME; dparameter-copy-0=*;
    message-header-file=2; original-header-file=1;
    override-header-file=1; override-option-file=1;
    command="/opt/SUNWmsgsr/private/virusscan.sh"
    in-channel=*; in-type=x-zip-compressed; in-subtype=*; in-disposition=*;
    parameter-symbol-0=NAME; parameter-copy-0=*;
    dparameter-symbol-0=FILENAME; dparameter-copy-0=*;
    message-header-file=2; original-header-file=1;
    override-header-file=1; override-option-file=1;
    command="/opt/SUNWmsgsr/private/virusscan.sh"
    in-channel=*; in-type=image; in-subtype=*; in-disposition=*;
    parameter-symbol-0=NAME; parameter-copy-0=*;
    dparameter-symbol-0=FILENAME; dparameter-copy-0=*;
    message-header-file=2; original-header-file=1;
    override-header-file=1; override-option-file=1;
    command="/opt/SUNWmsgsr/private/virusscan.sh"
    in-channel=*; in-type=audio; in-subtype=*; in-disposition=*;
    parameter-symbol-0=NAME; parameter-copy-0=*;
    dparameter-symbol-0=FILENAME; dparameter-copy-0=*;
    message-header-file=2; original-header-file=1;
    override-header-file=1; override-option-file=1;
    command="/opt/SUNWmsgsr/private/virusscan.sh"
    in-channel=*; in-type=video; in-subtype=*; in-disposition=*;
    parameter-symbol-0=NAME; parameter-copy-0=*;
    dparameter-symbol-0=FILENAME; dparameter-copy-0=*;
    message-header-file=2; original-header-file=1;
    override-header-file=1; override-option-file=1;
    command="/opt/SUNWmsgsr/private/virusscan.sh"
    Following entry from /opt/SUNWmsgsr/lib/config-templates/imta_tailor
    IMTA_CONVERSION_FILE=<msg.RootPathUNIX>/config/conversions
    Is this above information u r asking?
    As u wrote erlier, the conversion channel works some times and some times doesn't work.
    Thanks lot...
    BSKADAM

  • Error Connecting to database URL jdbc:oracle:oci:@rmsdbtst as user rms13 java.lang.Exception:UnsatisfiedLinkError encountered when using the Oracle driver

    Trying to Install RMS application 13.2.2 and I get past the pre-installation checks and when I get to the Data Source details and enter the data source details with the check box checked to validate the schema/Test Data Source I get the following error:
    Error Connecting to database URL jdbc:oracle:oci:@rmsdbtst as user rms13 java.lang.Exception:UnsatisfiedLinkError encountered when using the Oracle driver. Please check that the library path is set up properly or switch to the JDBC thin client oracle/jdbc/driver/T2CConnection.getLibraryVersioNumber()
    Checks performed:
    RMS Application code location and directory contents:
    [oracle@test-rms-app application]$ pwd
    /binary_files/STAGING_DIR/rms/application
    [oracle@test-rms-app application]$ ls -ltr
    total 144
    -rw-r--r-- 1 oracle oinstall   272 Dec 7  2010 version.properties
    -rw-r--r-- 1 oracle oinstall   405 Jan 16 2011 expected-object-counts.properties
    -rw-r--r-- 1 oracle oinstall   892 May 13 2011 ant.install.properties.sample
    -rw-r--r-- 1 oracle oinstall 64004 Jun  6  2011 build.xml
    drwxr-xr-x 9 oracle oinstall  4096 Jun 16 2011 rms13
    drwxr-xr-x 3 oracle oinstall  4096 Jun 16 2011 installer-resources
    drwxr-xr-x 3 oracle oinstall  4096 Jun 16 2011 antinstall
    drwxr-xr-x 2 oracle oinstall  4096 Jun 16 2011 ant-ext
    drwxr-xr-x 5 oracle oinstall  4096 Jun 16 2011 ant
    -rw-r--r-- 1 oracle oinstall 11324 Dec 18 09:18 antinstall-config.xml.ORIG
    -rwxr-xr-x 1 oracle oinstall  4249 Dec 18 10:01 install.sh
    drwxr-xr-x 4 oracle oinstall  4096 Dec 18 10:06 common
    -rw-r--r-- 1 oracle oinstall 16244 Dec 19 10:37 antinstall-config.xml
    -rw-r--r-- 1 oracle oinstall   689 Dec 19 10:37 ant.install.log
    [oracle@test-rms-app application]$
    Application installation:
    [oracle@test-rms-app application]$ ./install.sh
    THIS IS the driver directory
    Verified $ORACLE_SID.
    Verified SQL*Plus exists.
    Verified write permissions.
    Verified formsweb.cfg read permissions.
    Verified Registry.dat read permissions.
    Verified Java version 1.4.2.x or greater. Java version - 1.6.0
    Verified Tk2Motif.rgb settings.
    Verified frmcmp_batch.sh status.
    WARNING: Oracle Enterprise Linux not detected.  Some components may not install properly.
    Verified $DISPLAY - 172.16.129.82:0.0.
    This installer will ask for your "My Oracle Support" credentials.
    Preparing installer. This may take a few moments.
    Your internet connection type is: NONE
    Integrating My Oracle Support into the product installer workflow...
         [move] Moving 1 file to /binary_files/STAGING_DIR/rms/application
    Installer preparation complete.
    MW_HOME=/u01/app/oracle/Middleware/NewMiddleware1034
    ORACLE_HOME=/u01/app/oracle/Middleware/NewMiddleware1034/as_1
    ORACLE_INSTANCE=/u01/app/oracle/Middleware/NewMiddleware1034/asinst_1
    DOMAIN_HOME=/u01/app/oracle/Middleware/NewMiddleware1034/user_projects/domains/rmsClassDomain
    WLS_INSTANCE=WLS_FORMS
    ORACLE_SID=rmsdbtst
    JAVA_HOME=/u01/app/oracle/jrockit-jdk1.6.0_45-R28.2.7-4.1.0
    Launching installer...
    To make sure I have connectivity from the app server to the database (on a database server) here are the steps followed:
    [oracle@test-rms-app application]$ tnsping rmsdbtst
    TNS Ping Utility for Linux: Version 11.1.0.7.0 - Production on 19-DEC-2013 10:41:40
    Copyright (c) 1997, 2008, Oracle.  All rights reserved.
    Used parameter files:
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = test-rms-db.vonmaur.vmc)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SID = rmsdbtst)))
    OK (0 msec)
    [oracle@test-rms-app application]$
    [oracle@test-rms-app application]$ sqlplus rms13@rmsdbtst
    SQL*Plus: Release 11.1.0.7.0 - Production on Thu Dec 19 10:46:18 2013
    Copyright (c) 1982, 2008, Oracle.  All rights reserved.
    Enter password:
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> exit
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    [oracle@test-rms-app application]$
    [oracle@test-rms-app application]$ ping test-rms-db
    PING test-rms-db.vonmaur.vmc (192.168.1.140) 56(84) bytes of data.
    64 bytes from test-rms-db.vonmaur.vmc (192.168.1.140): icmp_seq=1 ttl=64 time=0.599 ms
    64 bytes from test-rms-db.vonmaur.vmc (192.168.1.140): icmp_seq=2 ttl=64 time=0.168 ms
    64 bytes from test-rms-db.vonmaur.vmc (192.168.1.140): icmp_seq=3 ttl=64 time=0.132 ms
    64 bytes from test-rms-db.vonmaur.vmc (192.168.1.140): icmp_seq=4 ttl=64 time=0.158 ms
    64 bytes from test-rms-db.vonmaur.vmc (192.168.1.140): icmp_seq=5 ttl=64 time=0.135 ms
    --- test-rms-db.vonmaur.vmc ping statistics ---
    5 packets transmitted, 5 received, 0% packet loss, time 4001ms
    rtt min/avg/max/mdev = 0.132/0.238/0.599/0.181 ms
    [oracle@test-rms-app application]$
    [oracle@test-rms-app application]$ uname -a
    Linux test-rms-app.vonmaur.vmc 2.6.18-128.el5 #1 SMP Wed Jan 21 08:45:05 EST 2009 x86_64 x86_64 x86_64 GNU/Linux
    [oracle@test-rms-app application]$
    [oracle@test-rms-app application]$ cat /etc/*-release
    Enterprise Linux Enterprise Linux Server release 5.3 (Carthage)
    Red Hat Enterprise Linux Server release 5.3 (Tikanga)
    [oracle@test-rms-app application]$
    The database is created and all the batch file scripts have been successfully deployed.  Now working on the application server.  The  Weblogic server is installed and 11g forms and reports are installed successfully.
    Any help would be helpful.
    Thanks,
    Ram.

    Please check MOS Notes:
    FAQ: RWMS 13.2 Installation and Configuration (Doc ID 1307639.1)

  • CCM.LOG Showing Errors Connecting to Server (Error 5 - Access Denied) to \\\admin$ Share

    Hi All!
    We are encountering what I think would be a normal error in most cases if a client is unavailable or offline.  During client push, we are receiving errors connecting to a NULL value in the log (\\\admin$) as opposed to an actual client:
    Under normal circumstances, the log should read as follows:
     Attempting to connect to administrative share
    \\<machine_name>\admin$ using <Client Push Account>.
    What we are running into is a repeating error (with some processed CCR records in between) that shows as follows:
    ~ Doing Account Cleanup Operation .... SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:14 AM 8612 (0x21A4)
    ~ Processing domain DOMAIN1 SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:14 AM 8612 (0x21A4)
    ~ Trying each entry in the SMS Client Remote Installation account list SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:14 AM 8612 (0x21A4)
    ~ Attempting to connect to administrative share '\\\admin$' using account 'DOMAIN3\clientpush_service_account' SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:15 AM 8612 (0x21A4)
    ~ WNetAddConnection2 failed (LOGON32_LOGON_NEW_CREDENTIALS) using account DOMAIN3\clientpush_service_account (000004b3) SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:15 AM 8612 (0x21A4)
    ~ WNetAddConnection2 failed (LOGON32_LOGON_INTERACTIVE) using account DOMAIN3\clientpush_service_account (000004b3) SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:15 AM 8612 (0x21A4)
    ~ Attempting to connect to administrative share '\\\admin$' using account 'DOMAIN2\clientpush_service_account' SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:15 AM 8612 (0x21A4)
    ~ WNetAddConnection2 failed (LOGON32_LOGON_NEW_CREDENTIALS) using account DOMAIN2\clientpush_service_account (000004b3) SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:15 AM 8612 (0x21A4)
    ~ WNetAddConnection2 failed (LOGON32_LOGON_INTERACTIVE) using account DOMAIN2\clientpush_service_account (000004b3) SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:15 AM 8612 (0x21A4)
    ~ Attempting to connect to administrative share '\\\admin$' using account 'DOMAIN1\clientpush_service_account' SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:15 AM 8612 (0x21A4)
    ~ WNetAddConnection2 failed (LOGON32_LOGON_NEW_CREDENTIALS) using account DOMAIN1\clientpush_service_account (000004b3) SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:15 AM 8612 (0x21A4)
    ~ LogonUser failed (LOGON32_LOGON_INTERACTIVE) using account DOMAIN1\clientpush_service_account (00000775) SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:15 AM 8612 (0x21A4)
    ~ Attempting to connect to administrative share '\\\admin$' using machine account. SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:15 AM 8612 (0x21A4)
    ~ Failed to get token for current process (5) SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:15 AM 8612 (0x21A4)
    ~ ERROR: Failed to connect to the \\\admin$ share using account 'Machine Account' SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:15 AM 8612 (0x21A4)
    ~ Failed to connect to Server. Error 5 SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:15 AM 8612 (0x21A4)
    ~ Processing domain DOMAIN2 SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:15 AM 8612 (0x21A4)
    ~ Trying each entry in the SMS Client Remote Installation account list SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:15 AM 8612 (0x21A4)
    ~ Attempting to connect to administrative share '\\\admin$' using account 'DOMAIN3\clientpush_service_account' SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:15 AM 8612 (0x21A4)
    ~ WNetAddConnection2 failed (LOGON32_LOGON_NEW_CREDENTIALS) using account DOMAIN3\clientpush_service_account (000004b3) SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:15 AM 8612 (0x21A4)
    ~ WNetAddConnection2 failed (LOGON32_LOGON_INTERACTIVE) using account DOMAIN3\clientpush_service_account (000004b3) SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:15 AM 8612 (0x21A4)
    ~ Attempting to connect to administrative share '\\\admin$' using account 'DOMAIN2\clientpush_service_account' SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:15 AM 8612 (0x21A4)
    ~ WNetAddConnection2 failed (LOGON32_LOGON_NEW_CREDENTIALS) using account DOMAIN2\clientpush_service_account (000004b3) SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:15 AM 8612 (0x21A4)
    ~ WNetAddConnection2 failed (LOGON32_LOGON_INTERACTIVE) using account DOMAIN2\clientpush_service_account (000004b3) SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:15 AM 8612 (0x21A4)
    ~ Attempting to connect to administrative share '\\\admin$' using account 'DOMAIN1\clientpush_service_account' SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:15 AM 8612 (0x21A4)
    ~ WNetAddConnection2 failed (LOGON32_LOGON_NEW_CREDENTIALS) using account DOMAIN1\clientpush_service_account (000004b3) SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:15 AM 8612 (0x21A4)
    ~ LogonUser failed (LOGON32_LOGON_INTERACTIVE) using account DOMAIN1\clientpush_service_account (00000775) SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:15 AM 8612 (0x21A4)
    ~ Attempting to connect to administrative share '\\\admin$' using machine account. SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:15 AM 8612 (0x21A4)
    ~ Failed to get token for current process (5) SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:15 AM 8612 (0x21A4)
    ~ ERROR: Failed to connect to the \\\admin$ share using account 'Machine Account' SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:15 AM 8612 (0x21A4)
    ~ Failed to connect to Server. Error 5 SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:15 AM 8612 (0x21A4)
    ~ Processing domain DOMAIN3 SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:15 AM 8612 (0x21A4)
    ~ Trying each entry in the SMS Client Remote Installation account list SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:15 AM 8612 (0x21A4)
    ~ Attempting to connect to administrative share '\\\admin$' using account 'DOMAIN3\clientpush_service_account' SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:15 AM 8612 (0x21A4)
    ~ WNetAddConnection2 failed (LOGON32_LOGON_NEW_CREDENTIALS) using account DOMAIN3\clientpush_service_account (000004b3) SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:15 AM 8612 (0x21A4)
    ~ WNetAddConnection2 failed (LOGON32_LOGON_INTERACTIVE) using account DOMAIN3\clientpush_service_account (000004b3) SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:15 AM 8612 (0x21A4)
    ~ Attempting to connect to administrative share '\\\admin$' using account 'DOMAIN2\clientpush_service_account' SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:15 AM 8612 (0x21A4)
    ~ WNetAddConnection2 failed (LOGON32_LOGON_NEW_CREDENTIALS) using account DOMAIN2\clientpush_service_account (000004b3) SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:15 AM 8612 (0x21A4)
    ~ WNetAddConnection2 failed (LOGON32_LOGON_INTERACTIVE) using account DOMAIN2\clientpush_service_account (000004b3) SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:15 AM 8612 (0x21A4)
    ~ Attempting to connect to administrative share '\\\admin$' using account 'DOMAIN1\clientpush_service_account' SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:15 AM 8612 (0x21A4)
    ~ WNetAddConnection2 failed (LOGON32_LOGON_NEW_CREDENTIALS) using account DOMAIN1\clientpush_service_account (000004b3) SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:15 AM 8612 (0x21A4)
    ~ LogonUser failed (LOGON32_LOGON_INTERACTIVE) using account DOMAIN1\clientpush_service_account (00000775) SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:15 AM 8612 (0x21A4)
    ~ Attempting to connect to administrative share '\\\admin$' using machine account. SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:15 AM 8612 (0x21A4)
    ~ Failed to get token for current process (5) SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:15 AM 8612 (0x21A4)
    ~ ERROR: Failed to connect to the \\\admin$ share using account 'Machine Account' SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:15 AM 8612 (0x21A4)
    ~ Failed to connect to Server. Error 5 SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:15 AM 8612 (0x21A4)
    ~ Account Cleanup Operation Completed successfully. SMS_CLIENT_CONFIG_MANAGER 10/2/2013 10:46:15 AM 8612 (0x21A4)
    We have Three Domains (Domain1, Domain2, and Domain3) with service accounts specified in the Client Push Installation Client properties. 
    I don't know if there is an entry (or entries) in the SCCM database that are NULL or blank that is generating these errors. 
    \\\admin$ indicates, to me, that there is a missing machine name that should follow the two \\ and before the \admin$.  Obviously we aren't going to be able to connect to a machine with no name (hence the Failed to Connect to Server.  Error
    5). 
    Is there a way to clean the database of these empty records and fix this recurring error?  It repeats every 15 minutes.
    Thank you!

    Yes, I know this is an old post, but I’m trying to clean them up.
    I would review the CM07 console to see if there are any device without a netbios name. It will be these device that are cause you problems.
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ

  • OEDQ 11 - error.connection.externaldatasource - While trying to export excel file into local drive

    Team I am trying to export a dataset as a excel spreadsheet on to my local drive. when I ever I try to run the Export I am getting error.connection.externaldatasource error message.
    Even I tried creating a excel file in my local and point that file in EDQ - Data Stores connection , still getting the same error message.
    Please help.
    Thanks!
    BG

    Also useful to understand:
    - Is it a server-side or client-side data store?
    - Is it an XLS or an XLSX file you are trying to write?
    - What's the data volume?

Maybe you are looking for

  • Froze on black screen and power button does not work

    my sons ipod touch is stuck on a black screen when plugged into the computer got a spinning wheel and will not connect now spinning wheel will not go away the power button does not work so can not reset it manually any suggestions would be appreciate

  • Switching from Mac to Windows with no CD

    Yes, I too fell in love at first sight with the nano, and will be giving my mini to my boyfriend (who got it for me in the first place). He uses PCs and Windows. I did a search on reformatting the mini from Mac to Windows but all the answers seemed t

  • SSRS 2012 - Windows Server 2012 R2 issue with OLEDB Connection String

    Hoping someone can help. As stated above, we are running SQL Server 2012 with SP1 on Windows Server 2012 R2. When I create a Data Source as follows in Reporting Services, I receive the following error message. Any thoughts on why this fails? The same

  • Urgent : Branch too large ??

    I have the following error in a jsp and i don't understand what it means. Error 500 Message : Server caught unhandled exception from servlet [JSP 1.1 Processor]: Unable to compile class for JSPC:\Websphere\WAServer\temp\default_host\TerrealAppWebApp\

  • Weblogic-sturts problem

    hi, anybody help me how to solve this.could anybody tell the suggestion plz. when i start weblogic and during stuts mapping i am getting error like this. /removeFormBean, type=org.apache.struts.actions.RemoveFormBeanAction]) Pop org.apache.struts.act