LifeCycle DS ES communication with Tomcat WebServer

Hi,
    I have written a simple program to accept Name using Flex SDK 3.2 HttpService in Flex builder 3. Using LifeCycle DS ES to communicate with struts 1.2 on Web Server(Tomcat 5.0). My flex code runs and Struts code runs independently. The problem is when trying to send data from client to Server, it does not work. Below given are my client ans Server side code. Copy of services-config.xml & proxy-config.xml is same on both client side and server side. Please help me to run this code.
Client Side
========
hello.mxml
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
<mx:Script>
<![CDATA[
  public function hello1():void{
   HelloCall.send();
]]>
</mx:Script>
<mx:HTTPService id= "HelloCall" destination= "myHello">
    <mx:request xmlns= " ">
            <name>  {nameInput.text}</name>
    </mx:request>
</mx:HTTPService>
<mx:Label x= "312" y= "47" text= "Enter Name" fontSize= "20" />
<mx:TextInput id= "nameInput" x="260" y= "104" fontSize= "20" />
<mx:Button x= "301" y= "186" label= "Submit" fontSize= "20" click= "hello1();" />
<mx:Label x= "312" y= "285" text= "{HelloCall.lastResult.jlc.message}" fontSize= "20" />
</mx:Application>
Server-Side
============
proxy-config.xml
<?xml version="1.0" encoding="UTF-8"?>
<service id="proxy-service"
    class="flex.messaging.services.HTTPProxyService">
    <properties>
        <connection-manager>
            <max-total-connections>100</max-total-connections>
            <default-max-connections-per-host>2</default-max-connections-per-host>
        </connection-manager>
        <allow-lax-ssl>true</allow-lax-ssl>
    </properties>
    <adapters>
        <adapter-definition id="http-proxy" class="flex.messaging.services.http.HTTPProxyAdapter" default="true"/>
        <adapter-definition id="soap-proxy" class="flex.messaging.services.http.SOAPProxyAdapter"/>
    </adapters>
    <default-channels>
        <channel ref="my-http"/>
        <channel ref="my-amf"/>
    </default-channels>
<destination id="myHello">
    <properties>
         <url>/http://localhost:8000/JLCAPP/hello.jsp</url>
    </properties>
</destination>
</service>
struts-config.xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.2//EN" "http://struts.apache.org/dtds/struts-config_1_2.dtd">
<struts-config> 
  <form-beans>
       <form-bean name= "helloForm" type= "org.apache.struts.action.DynaActionForm">
              <form-property name= "name" type="java.lang.String" />
       </form-bean>
   </form-beans>
  <global-forwards>
  <forward name= "success" path= "/index.jsp" />
  </global-forwards>
<action-mappings>
    <action path= "/hello" name= "helloForm" type="com.jlcindia.struts.HelloAction" input= "/hello.html" />
</action-mappings>
  <message-resources parameter="com.jlcindia.struts.ApplicationResources" />
</struts-config>
services-config.xml
<?xml version="1.0" encoding="UTF-8"?>
<services-config>
    <services>
        <service-include file-path="remoting-config.xml" />
        <service-include file-path="proxy-config.xml" />
        <service-include file-path="messaging-config.xml" />
        <service-include file-path="data-management-config.xml" />
        <service class="fiber.data.services.ModelDeploymentService" id="model-deploy-service" />
        <!--
     Application level default channels. Application level default channels are
     necessary when a dynamic destination is being used by a service component
     and no ChannelSet has been defined for the service component. In that case,
     application level default channels will be used to contact the destination.
        -->  
        <default-channels>
           <channel ref="my-rtmp"/>
        </default-channels>
    </services>
    <security>
  <login-command class="flex.messaging.security.TomcatLoginCommand" server="Tomcat"/>       
        <!-- Uncomment the correct app server
        <login-command class="flex.messaging.security.JRunLoginCommand" server="JRun"/>
        <login-command class="flex.messaging.security.WeblogicLoginCommand" server="Weblogic"/>
        <login-command class="flex.messaging.security.WebSphereLoginCommand" server="WebSphere"/>
        -->
        <security-constraint id="basic-read-access">
            <auth-method>Basic</auth-method>
            <roles>
                <role>guests</role>
                <role>accountants</role>
                <role>employees</role>
                <role>managers</role>
            </roles>
        </security-constraint>
    </security>
    <!-- Socket servers that NIO endpoints all share -->
    <servers>
        <server id="my-nio-server" class="flex.messaging.socketserver.SocketServer">
        </server>
        <!--
        <server id="secure-nio-server" class="flex.messaging.socketserver.SocketServer">
            <properties>
                <keystore-file>{context.root}/WEB-INF/flex/localhost.keystore</keystore-file>
                <keystore-password>changeit</keystore-password>
            </properties>
        </server>
        -->
    </servers>
    <channels>
        <!-- Servlet Based endpoints -->
        <channel-definition id="my-amf" class="mx.messaging.channels.AMFChannel">
            <endpoint url="http://localhost:8400/JLCAPP/messagebroker/amf" class="flex.messaging.endpoints.AMFEndpoint"/>
            <properties>
                <polling-enabled>false</polling-enabled>
            </properties>
        </channel-definition>
        <channel-definition id="my-polling-amf" class="mx.messaging.channels.AMFChannel">
            <endpoint url="http://localhost:8400/JLCAPP/messagebroker/amfpolling" class="flex.messaging.endpoints.AMFEndpoint"/>
            <properties>
                <polling-enabled>true</polling-enabled>
                <polling-interval-seconds>8</polling-interval-seconds>
            </properties>
        </channel-definition>
        <channel-definition id="my-http" class="mx.messaging.channels.HTTPChannel">
            <endpoint url="http://{server.name}:{server.port}/{context.root}/messagebroker/http" class="flex.messaging.endpoints.HTTPEndpoint"/>
        </channel-definition>
        <!-- Secure Servlet-based endpoints -->
        <channel-definition id="my-secure-amf" class="mx.messaging.channels.SecureAMFChannel">
            <endpoint url="https://{server.name}:{server.port}/{context.root}/messagebroker/amfsecure" class="flex.messaging.endpoints.SecureAMFEndpoint"/>
            <properties>
                <!--HTTPS requests on some browsers do not work when pragma "no-cache" are set-->
                <add-no-cache-headers>false</add-no-cache-headers>
            </properties>
        </channel-definition>
        <channel-definition id="my-secure-http" class="mx.messaging.channels.SecureHTTPChannel">
            <endpoint url="https://{server.name}:{server.port}/{context.root}/messagebroker/httpsecure" class="flex.messaging.endpoints.SecureHTTPEndpoint"/>
            <properties>
             <!--HTTPS requests on some browsers do not work when pragma "no-cache" are set-->
                <add-no-cache-headers>false</add-no-cache-headers>
            </properties>
        </channel-definition>
        <!-- NIO based endpoints -->
        <channel-definition id="my-rtmp" class="mx.messaging.channels.RTMPChannel">
            <endpoint url="rtmp://{server.name}:2048" class="flex.messaging.endpoints.RTMPEndpoint"/>
            <properties>
                <idle-timeout-minutes>20</idle-timeout-minutes>
                <!-- for deployment on WebSphere, must be mapped to a WorkManager available in the web application's jndi context.
                <websphere-workmanager-jndi-name>java:comp/env/wm/MessagingWorkManager</websphere-workman ager-jndi-name>
                -->
            </properties>
        </channel-definition>
        <channel-definition id="my-nio-amf" class="mx.messaging.channels.AMFChannel">
            <endpoint url="http://{server.name}:2888/nioamf" class="flex.messaging.endpoints.NIOAMFEndpoint"/>
            <server ref="my-nio-server"/>
            <properties>
                <polling-enabled>false</polling-enabled>
            </properties>
        </channel-definition>
        <channel-definition id="my-nio-amf-poll" class="mx.messaging.channels.AMFChannel">
            <endpoint url="http://{server.name}:2888/nioamfpoll" class="flex.messaging.endpoints.NIOAMFEndpoint"/>
            <server ref="my-nio-server"/>
            <properties>
                <polling-enabled>true</polling-enabled>
                <polling-interval-millis>3000</polling-interval-millis>
            </properties>
        </channel-definition>
        <channel-definition id="my-nio-http" class="mx.messaging.channels.HTTPChannel">
            <endpoint url="http://{server.name}:2888/niohttp" class="flex.messaging.endpoints.NIOHTTPEndpoint"/>
            <server ref="my-nio-server"/>
            <properties>
                <polling-enabled>false</polling-enabled>
            </properties>
        </channel-definition>
        <!-- Secure NIO based endpoints -->
        <!--
        <channel-definition id="secure-nio-amf" class="mx.messaging.channels.SecureAMFChannel">
            <endpoint url="https://{server.name}:2443/securenioamf" class="flex.messaging.endpoints.SecureNIOAMFEndpoint"/>
            <server ref="secure-nio-server"/>
            <properties>
                <polling-enabled>false</polling-enabled>
            </properties>
        </channel-definition>
        <channel-definition id="secure-nio-http" class="mx.messaging.channels.SecureHTTPChannel">
            <endpoint url="https://{server.name}:2443/secureniohttp" class="flex.messaging.endpoints.SecureNIOHTTPEndpoint"/>
            <server ref="secure-nio-server"/>
            <properties>
                <polling-enabled>false</polling-enabled>
            </properties>
        </channel-definition>
        -->
    </channels>
    <logging>
        <target class="flex.messaging.log.ConsoleTarget" level="Debug">
            <properties>
                <prefix>[LCDS] </prefix>
                <includeDate>false</includeDate>
                <includeTime>false</includeTime>
                <includeLevel>false</includeLevel>
                <includeCategory>false</includeCategory>
            </properties>
            <filters>
                <pattern>Endpoint.*</pattern>
                <pattern>Service.*</pattern>
                <pattern>Configuration</pattern>
                <pattern>SocketServer.*</pattern>
            </filters>
        </target>
    </logging>
    <system>
        <redeploy>
            <enabled>true</enabled>
            <watch-interval>20</watch-interval>
            <watch-file>{context.root}/WEB-INF/flex/services-config.xml</watch-file>
            <watch-file>{context.root}/WEB-INF/flex/proxy-config.xml</watch-file>
            <watch-file>{context.root}/WEB-INF/flex/remoting-config.xml</watch-file>
            <watch-file>{context.root}/WEB-INF/flex/messaging-config.xml</watch-file>
            <watch-file>{context.root}/WEB-INF/flex/data-management-config.xml</watch-file>
            <touch-file>{context.root}/WEB-INF/web.xml</touch-file>
        </redeploy>
    </system>
</services-config>
HelloAction.java
package com.jlcindia.struts;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.struts.action.*;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;
import org.apache.struts.action.DynaActionForm;
import java.io.PrintWriter;
public class HelloAction extends Action{
public ActionForward execute(ActionMapping am,ActionForm af,HttpServletRequest req,HttpServletResponse res) throws Exception {
    System.out.println("Hi am here");
    DynaActionForm daf= (DynaActionForm)af;
    String name= daf.get("name").toString();
    String msg= "Hello!"+ name + "Welcome to JLC FLex LCDS with HttpService";
    res.setContentType("text/html");
    PrintWriter out= res.getWriter();
    out.println("<message>" + msg + "</message>");
    out.close();
    return am.findForward("success");
Any Help will be appriciated.

Hi Rohit,
I am running both LiveCycle DS ES 3.0 and WebServer Tomcat on the same machine. I made changes in services-congig.xml and now the channels are configured as follows on both client end and server end :-
services-config.xml
   <!-- Servlet Based endpoints -->
        <channel-definition id="my-amf" class="mx.messaging.channels.AMFChannel">
            <endpoint url="http://localhost:8000/JLCAPP/messagebroker/amf" class="flex.messaging.endpoints.AMFEndpoint"/>
            <properties>
                <polling-enabled>false</polling-enabled>
            </properties>
        </channel-definition>
        <channel-definition id="my-polling-amf" class="mx.messaging.channels.AMFChannel">
            <endpoint url="http://localhost:8000/JLCAPP/messagebroker/amfpolling" class="flex.messaging.endpoints.AMFEndpoint"/>
            <properties>
                <polling-enabled>true</polling-enabled>
                <polling-interval-seconds>8</polling-interval-seconds>
            </properties>
        </channel-definition>
        <channel-definition id="my-http" class="mx.messaging.channels.HTTPChannel">
            <endpoint url="http://localhost:8000/JLCAPP/messagebroker/http" class="flex.messaging.endpoints.HTTPEndpoint"/>
        </channel-definition>
However i am still getting following debug message :-
[RPC Fault faultString="Send failed" faultCode="Client.Error.MessageSend" faultDetail="Channel.Connect.Failed error NetConnection.Call.Failed: HTTP: Status 404: url:
'http://localhost:8000/JLCAPP/messagebroker/amf'"]
at mx.rpc::AbstractInvoker/http://www.adobe.com/2006/flex/mx/internal::faultHandler()[C:\autobuild\3.2.0
\frameworks\projects\rpc\src\mx\rpc\AbstractInvoker.as:220]
at mx.rpc::Responder/fault()[C:\autobuild\3.2.0\frameworks\projects\rpc\src\mx\rpc\Responder .as:53]
at mx.rpc::AsyncRequest/fault()[C:\autobuild\3.2.0\frameworks\projects\rpc\src\mx\rpc\AsyncR equest.as:103]
at mx.messaging::ChannelSet/faultPendingSends()[C:\autobuild\3.2.0\frameworks\projects\rpc\s rc\mx\messaging\ChannelSet.as:1482]
at mx.messaging::ChannelSet/channelFaultHandler()[C:\autobuild\3.2.0\frameworks\projects\rpc \src\mx\messaging\ChannelSet.as:975]
at flash.events::EventDispatcher/dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent()
at mx.messaging::Channel/connectFailed()[C:\autobuild\3.2.0\frameworks\projects\rpc\src\mx\m essaging\Channel.as:997]
at mx.messaging.channels::PollingChannel/connectFailed()[C:\autobuild\3.2.0\frameworks\proje cts\rpc\src\mx\messaging\channels\PollingChannel.as:354]
at mx.messaging.channels::AMFChannel/statusHandler()[C:\autobuild\3.2.0\frameworks\projects\ rpc\src\mx\messaging\channels\AMFChannel.as:390]
My current hello.jsp code is given below :-
hello.jsp
<%@ taglib uri= "/WEB-INF/struts-html.tld" prefix="html" %>
<html>
<body>
<br> <html:form action="/hello.do">
<h1> Name :  </h1><br/>
<html:text property ="name" /><br/>
<html:submit value= "Show" /> <br/>
</html:form>
</body>
</html>
Is hello.jsp required at server end, as URL specified in proxy-config.xml should directly invoke Action class in my Tomcat WebServer?
My WebServer Tomcat Server log shows following :-
[LCDS]Adobe LiveCycle Data Services: 3.0.0.254255
[LCDS]Server 'my-nio-server' of type 'flex.messaging.socketserver.SocketServer' created.
[LCDS]Endpoint 'my-nio-amf-poll' created with security: None
at URL: http://localhost:2888/nioamfpoll
[LCDS]Endpoint 'my-rtmp' created with security: None
at URL: rtmp://localhost:2048
[LCDS]Endpoint 'my-http' created with security: None
at URL: http://localhost:8000/JLCAPP/messagebroker/http
[LCDS]Endpoint 'my-polling-amf' created with security: None
at URL: http://localhost:8000/JLCAPP/messagebroker/amfpolling
[LCDS]Endpoint 'my-nio-http' created with security: None
at URL: http://localhost:2888/niohttp
[LCDS]Endpoint 'my-amf' created with security: None
at URL: http://localhost:8000/JLCAPP/messagebroker/amf
[LCDS]Endpoint 'my-nio-amf' created with security: None
at URL: http://localhost:2888/nioamf
[LCDS]Endpoint 'my-secure-http' created with security: None
at URL: https://{server.name}:{server.port}/{context.root}/messagebroker/httpsecure
[LCDS]Endpoint 'my-secure-amf' created with security: None
at URL: https://{server.name}:{server.port}/{context.root}/messagebroker/amfsecure
[LCDS]MessageBroker id: __default__ classLoader is: the MessageBroker's class loader and the context class loader (classLoader hashCode: 31966667 (parent hashCode:
7043360 (parent system))
[LCDS]Starting Adobe LiveCycle Data Services: 3.0.0.254255 Developer License
[LCDS]NIOAMFEndpoint 'my-nio-amf-poll' has started and is using server 'my-nio-server'.
[LCDS]SocketServer 'my-rtmp-SocketServer' is starting.
[LCDS]SocketServer 'my-rtmp-SocketServer' is using an assigned executor of type: flex.messaging.util.concurrent.DefaultThreadPoolExecutor
[LCDS]SocketServer 'my-rtmp-SocketServer' has determined the default thread priority for its executor to be 5.
[LCDS]Reactor 'Reactor1' for SocketServer 'my-rtmp-SocketServer' is starting.
[LCDS]Reactor 'Reactor1' for SocketServer 'my-rtmp-SocketServer' has started and is running at priority 5.
[LCDS]Reactor 'Reactor2' for SocketServer 'my-rtmp-SocketServer' is starting.
[LCDS]Reactor 'Reactor2' for SocketServer 'my-rtmp-SocketServer' has started and is running at priority 5.
[LCDS]Acceptor 'Acceptor1' for SocketServer 'my-rtmp-SocketServer' is starting.
[LCDS]Acceptor 'Acceptor1' for SocketServer 'my-rtmp-SocketServer' has successfully bound '/0.0.0.0:2048' to accept new client connections.
[LCDS]Acceptor 'Acceptor1' for SocketServer 'my-rtmp-SocketServer' has started and is running at priority 5.
[LCDS]SocketServer 'my-rtmp-SocketServer' has started.
[LCDS]NIOHTTPEndpoint 'my-nio-http' has started and is using server 'my-nio-server'.
[LCDS]NIOAMFEndpoint 'my-nio-amf' has started and is using server 'my-nio-server'.
[LCDS]SocketServer 'my-nio-server' is starting.
[LCDS]SocketServer 'my-nio-server' is using an assigned executor of type: flex.messaging.util.concurrent.DefaultThreadPoolExecutor
[LCDS]SocketServer 'my-nio-server' has determined the default thread priority for its executor to be 5.
[LCDS]Reactor 'Reactor1' for SocketServer 'my-nio-server' is starting.
[LCDS]Reactor 'Reactor1' for SocketServer 'my-nio-server' has started and is running at priority 5.
[LCDS]Reactor 'Reactor2' for SocketServer 'my-nio-server' is starting.
[LCDS]Reactor 'Reactor2' for SocketServer 'my-nio-server' has started and is running at priority 5.
[LCDS]Acceptor 'Acceptor1' for SocketServer 'my-nio-server' is starting.
[LCDS]Acceptor 'Acceptor1' for SocketServer 'my-nio-server' has successfully bound '/0.0.0.0:2888' to accept new client connections.
[LCDS]Acceptor 'Acceptor1' for SocketServer 'my-nio-server' has started and is running at priority 5.
[LCDS]SocketServer 'my-nio-server' has started.
See if this picks the point of failure!!

Similar Messages

  • An error occured while communicating with the web server

    hi Experts
    Im having a problem with bpc when i try to send data in an input schedule
    message error prompt
    "an error occured while communicating with the webserver"
    Any body encounters this?
    Thanks

    Hi,
    I am from support team, so this is the method how I troubleshoot this kind of issue.
    First, I would like to say that this error message in BPC for Excel is a very common error, and it means nothing. Please move on the following steps:
    1. Reproduce the issue again.
    2. Logon to ABAP side, go to RSA1. Enter OBJECT=UJ* and SUBOBJECT=UJQ.
    Note: UJQ means query related. The same, you can use UJD to filter all Data Manager's activity.
    3. Under UJQ, you will find the log, which you reproduced in step 1. It must be shown as Red. Double-click it. See what the error message is.
    4. Besides the error, right-side, you will see a Details button. Click on it, and another window with MDX Statement will show up.
    5. Copy the MDX statement out for next usage.
    6. Go to another T-code MDXTEST (this is a test tool for MDX statement).
    7. Copy the MDX statement into MDXTEST, and run it. (find the run button at above).
    What is the error message?
    Based on my experience, if this is a Time out error, related to MDX Paser, you can try note:
    1032461 MDX parser does not start
    If not, it must be a specific error. Need to check further, accordingly.

  • Developing webservices using Java SE6 and Tomcat Webserver

    Hi All,
    I am trying to develop a webservice using Java SE6 Beeta SDK with Tomcat webserver. I read somewhere in the Sun site and it says JAXWS2.0 is fully packaged with JAVA SE 6 SDK? If this is correct then what are all the remining packages(jar files present in JWSDP2.0) required to develop and publish the webservice.
    I does the setup as follows.
    - Install the Java SE6 SDK Beeta available.
    - Install Tomcat 5.17 webserver.
    - Started the webserver by setting java_home as SDK6.
    I am not able to publish the webservice with this setup
    Do i need to place any other package present in JWSDP2.0 in Tomcat_home/common/lib ?
    I used the same example present in JWSDP2.0 package.
    Please guide me regarding this?
    Thanks In Advance,
    Mohan

    Any ideas on how this could be achieved.Have you looked at the Unofficial Web Start FAQ at the Lopica site?
    - Gerald
    PS: You might wonna also consider posting your question to the Java Web Start developers group at Yahoo! See http://groups.yahoo.com/group/webstart

  • Help DSCC agent not communicating with AppServer or Tomcat?!

    Installing Directory Server Enterprise Edition 6.3 From Zip Distribution on system running Solaris10 11/08.
    Cannot get DSCC to work with either AppServer or Tomcat.
    Both AppServer & Tomcat deploy DSEE WAR file and I can look at things that I have manually registered via command line. Cacao agent is running it is just not communicating with AppServer or Tomcat so it cannot commit any actions such as starting and stopping directory instances or creating new directories instances within the web app.
    Is this a bug that occurs only when doing a new install using the Zip Distribution?
    The Error message I get regardless if Appserver or Tomcat is:
    "Could not contact the DSCC agent on <server>. Use the command cacaoadm to check that the DSCC agent is installed and running on port 11169."
    I changed to port 11169 because it had a conflict on default port 11162.
    Output from cacaoadm & dsccsetup commands is follows:
    root@dsee:/ $ /local/dsee6/cacao_2/usr/lib/cacao/bin/cacaoadm status
    default instance is DISABLED at system startup.
    Smf monitoring process:
    8423
    8424
    Uptime: 0 day(s), 0:47
    root@dsee:/ $ /local/dsee6/cacao_2/usr/lib/cacao/bin/cacaoadm list-params
    snmp-adaptor-port=11161
    snmp-adaptor-trap-port=11162
    jmxmp-connector-port=11169
    commandstream-adaptor-port=11163
    rmi-registry-port=11164
    secure-webserver-port=11165
    java-flags=-Xms4M -Xmx128M -Dcom.sun.management.jmxremote -Dfile.encoding=utf-8
    java-home=/local/jre
    jdmk-home=/local/dsee6/private
    nss-lib-home=/local/dsee6/private/lib
    nss-tools-home=/local/dsee6/bin
    retries=4
    enable-instrumentation=false
    network-bind-address=0.0.0.0
    root@dsee:/ $ /local/dscc6/bin/dsccsetup status -v
    ## /local/webconsole/usr/sbin/smreg/smreg is MISSING
    ## /local/webconsole/usr/sbin/smcwebserver/smcwebserver is MISSING
    ## /local/dscc6/dccapp is present
    Sun Java (TM) Web Console is not installed
    ## /local/dsee6/cacao_2/usr/lib/cacao/bin/cacaoadm is present
    ## /local/dsee6/cacao_2/.configured is present
    ## /local/dscc6/lib/jar/nquickmodule.jar is present
    ## Running /local/dsee6/cacao_2/usr/lib/cacao/bin/cacaoadm list-modules -r
    DSCC Agent is registered in Cacao
    ## Running /local/dsee6/cacao_2/usr/lib/cacao/bin/cacaoadm status
    ## Running /local/dsee6/cacao_2/usr/lib/cacao/bin/cacaoadm list-modules
    ## Running /local/dsee6/cacao_2/usr/lib/cacao/bin/cacaoadm get-param network-bind-address
    ## Running /local/dsee6/cacao_2/usr/lib/cacao/bin/cacaoadm get-param jmxmp-connector-port
    Cacao uses a custom port number (11169)
    ## /local/ds6/bin/dsadm is present
    DSCC Registry has been created
    Path of DSCC registry is /local/var/dscc6/dcc/ads
    Port of DSCC registry is 3998
    Any work around or ideas on how to get DSCC working?
    Thanks!

    I started over and installed Glassfish and everything just worked. After the fact I think the real problem was related to the server.policy file. I think this was the problem because using the default appserver 8.2 that comes with Solaris has a different path and I got this same error when tried using tomcat also. When installing glassfish it uses this default path as in the server.policy example as follows so it just worked.
    Add the following lines in the {install-dir}/domains/domain1/config/server.policy file
    // Permissions for Directory Service Control Center
    grant codeBase "file:${com.sun.aas.instanceRoot}/applications/j2ee-modules/DSCC/-"
    permission java.security.AllPermission;
    Hope this helps some as I was really stuck and confused at the time and just started playing with the stuff. Growing pains. Thanks to those that replied.
    Thanks!
    Wences

  • Error in communicating with Group Administration Server

    Hello everyone, i am requesting your help for an issue with LMS 4.2.5
    When i browse to Admin-> Group Management -> Fault.
    I get the following:
    OGS Server Error
    Error
    Error in communicating with Group Administration Server.
    It may be down or not yet up. Please make sure that the Group Administration Server is up and running, then refresh the page.
    here is the pdshow output
    pdshow
            Process= ESS
            State  = Program started - No mgt msgs received
            Pid    = 5536
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:13:21
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= EssMonitor
            State  = Running normally
            Pid    = 5567
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:13:25
            Stop   = Not applicable
            Core   = Not applicable
            Info   = ESS is fully up now !
            Process= EventFramework
            State  = Program started - No mgt msgs received
            Pid    = 5584
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:13:26
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= SyslogCollector
            State  = Running normally
            Pid    = 5585
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:13:26
            Stop   = Not applicable
            Core   = Not applicable
            Info   = SyslogCollector Started at Fri Oct 31 14:13:28 CST 2014
            Process= RMEDbEngine
            State  = Program started - No mgt msgs received
            Pid    = 5586
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:13:26
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= FHDbEngine
            State  = Program started - No mgt msgs received
            Pid    = 5663
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:13:30
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= EPMDbEngine
            State  = Program started - No mgt msgs received
            Pid    = 5696
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:13:34
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= EPMServer
            State  = Running normally
            Pid    = 5729
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:13:38
            Stop   = Not applicable
            Core   = Not applicable
            Info   = EPMServer is up and running
            Process= AdapterServer
            State  = Program started - No mgt msgs received
            Pid    = 5748
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:13:42
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= AdapterServer1
            State  = Program started - No mgt msgs received
            Pid    = 5749
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:13:42
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= FHServer
            State  = Running normally
            Pid    = 5750
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:13:42
            Stop   = Not applicable
            Core   = Not applicable
            Info   = FHServer started.
            Process= INVDbEngine
            State  = Program started - No mgt msgs received
            Pid    = 5751
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:13:42
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= PMServer
            State  = Running normally
            Pid    = 5936
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:13:46
            Stop   = Not applicable
            Core   = Not applicable
            Info   = PMServer is up and running
            Process= IpmDbEngine
            State  = Program started - No mgt msgs received
            Pid    = 5960
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:13:50
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= UPMDbEngine
            State  = Program started - No mgt msgs received
            Pid    = 5993
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:13:54
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= UPMDbMonitor
            State  = Running normally
            Pid    = 6026
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:13:58
            Stop   = Not applicable
            Core   = Not applicable
            Info   = DbMonitor Running Normally.
            Process= ANIDbEngine
            State  = Program started - No mgt msgs received
            Pid    = 6027
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:13:59
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= MACUHIC
            State  = Running normally
            Pid    = 6055
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:14:03
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Started.
            Process= UTLITE
            State  = Running normally
            Pid    = 6056
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:14:03
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Started.
            Process= FDRewinder
            State  = Never started
            Pid    = 0
            RC     = 0
            Signo  = 0
            Start  = N/A
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Not applicable,
            Process= CmfDbEngine
            State  = Program started - No mgt msgs received
            Pid    = 6057
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:14:03
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= CmfDbMonitor
            State  = Running normally
            Pid    = 6183
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:14:08
            Stop   = Not applicable
            Core   = Not applicable
            Info   = DbMonitor Running Normally.
            Process= DfmBroker
            State  = Running normally
            Pid    = 6190
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:14:09
            Stop   = Not applicable
            Core   = Not applicable
            Info   = DfmBroker is running normally
            Process= DfmServer
            State  = Running normally
            Pid    = 6322
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:14:13
            Stop   = Not applicable
            Core   = Not applicable
            Info   = DfmServer initialized OK.
            Process= DfmServer1
            State  = Running normally
            Pid    = 6323
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:14:13
            Stop   = Not applicable
            Core   = Not applicable
            Info   = DfmServer1 initialized OK.
            Process= DFMLogServer
            State  = Program started - No mgt msgs received
            Pid    = 6324
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:14:13
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= DFMCTMStartup
            State  = Administrator has shut down this server
            Pid    = 0
            RC     = 0
            Signo  = 0
            Start  = 11/03/14 11:55:05
            Stop   = 11/03/14 11:55:05
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= FHPurgeTask
            State  = Transient terminated
            Pid    = 0
            RC     = 0
            Signo  = 0
            Start  = 11/03/14 00:00:00
            Stop   = 11/03/14 00:00:44
            Core   = Not applicable
            Info   = DPS Task FHPurgeTask completed at Mon Nov 03 00:00:44 CST 2014. For status check Job Browser UI.
            Process= DFMMultiProcLogger
            State  = Program started - No mgt msgs received
            Pid    = 6327
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:14:13
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= CSDiscovery
            State  = Never started
            Pid    = 0
            RC     = 0
            Signo  = 0
            Start  = N/A
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Not applicable,
            Process= DCRDevicePoll
            State  = Transient terminated
            Pid    = 0
            RC     = 0
            Signo  = 0
            Start  = 11/03/14 09:15:02
            Stop   = 11/03/14 09:15:50
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= CSRegistryServer
            State  = Running normally
            Pid    = 6328
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:14:13
            Stop   = Not applicable
            Core   = Not applicable
            Info   = CSRegistryServer is running
            Process= Tomcat
            State  = Program started - No mgt msgs received
            Pid    = 6330
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:14:13
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= TomcatMonitor
            State  = Running normally
            Pid    = 6670
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:14:17
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Tomcat Server up
            Process= Apache
            State  = Running normally
            Pid    = 7183
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:02
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Web Server initialized ok.
            Process= DCRServer
            State  = Running normally
            Pid    = 7204
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:06
            Stop   = Not applicable
            Core   = Not applicable
            Info   = DCRServer is up and running
            Process= CMFOGSServer
            State  = Program started - No mgt msgs received
            Pid    = 7257
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:12
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= TISServer
            State  = Program started - No mgt msgs received
            Pid    = 7258
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:12
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= DFMOGSServer
            State  = Program started - No mgt msgs received
            Pid    = 7323
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:16
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= NOSServer
            State  = Running normally
            Pid    = 7375
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:20
            Stop   = Not applicable
            Core   = Not applicable
            Info   = NOSServer is up and running
            Process= PTMServer
            State  = Running normally
            Pid    = 7376
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:20
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Started Successfully
            Process= InventoryCollector
            State  = Running normally
            Pid    = 7377
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:20
            Stop   = Not applicable
            Core   = Not applicable
            Info   = InventoryCollector is up and running
            Process= Interactor
            State  = Program started - No mgt msgs received
            Pid    = 7496
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:24
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= InventoryCollector1
            State  = Program started - No mgt msgs received
            Pid    = 7497
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:24
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= Interactor1
            State  = Program started - No mgt msgs received
            Pid    = 7589
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:28
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= UPMProcess
            State  = Running normally
            Pid    = 7590
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:28
            Stop   = Not applicable
            Core   = Not applicable
            Info   = UPMProcess started successfully.
            Process= UTManager
            State  = Running normally
            Pid    = 7591
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:28
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Started.
            Process= EssentialsDM
            State  = Running normally
            Pid    = 7592
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:28
            Stop   = Not applicable
            Core   = Not applicable
            Info   = RME Device Management started.
            Process= ICServer
            State  = Running normally
            Pid    = 7730
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:31
            Stop   = Not applicable
            Core   = Not applicable
            Info   = ICServer started.
            Process= EnergyWise
            State  = Running normally
            Pid    = 7923
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:35
            Stop   = Not applicable
            Core   = Not applicable
            Info   = EnergyWise Process is running normally Fri Oct 31 14:16:45 CST 2014
            Process= PMCOGSServer
            State  = Program started - No mgt msgs received
            Pid    = 7924
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:35
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= ConfigMgmtServer
            State  = Running normally
            Pid    = 7925
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:35
            Stop   = Not applicable
            Core   = Not applicable
            Info   = DCMA is running normally Fri Oct 31 14:17:02 CST 2014
            Process= ConfigUtilityService
            State  = Running normally
            Pid    = 7926
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:35
            Stop   = Not applicable
            Core   = Not applicable
            Info   = ConfigUtilityService started.
            Process= CAAMServer
            State  = Running normally
            Pid    = 7927
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:35
            Stop   = Not applicable
            Core   = Not applicable
            Info   = CAAMServer started.
            Process= VNMServer
            State  = Program started - No mgt msgs received
            Pid    = 7928
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:35
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= WlseUHIC
            State  = Running normally
            Pid    = 7929
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:35
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Started.
            Process= IPMOGSServer
            State  = Program started - No mgt msgs received
            Pid    = 7940
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:35
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= TopoServer
            State  = Program started - No mgt msgs received
            Pid    = 7941
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:35
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= LicenseServer
            State  = Program started - No mgt msgs received
            Pid    = 7942
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:35
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= NameServer
            State  = Program started - No mgt msgs received
            Pid    = 7946
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:35
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= NameServiceMonitor
            State  = Program started - No mgt msgs received
            Pid    = 8205
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:39
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= EDS
            State  = Running normally
            Pid    = 8290
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:43
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Initialization complete
            Process= ANIServer
            State  = Running with busy flag set
            Pid    = 8768
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:17:14
            Stop   = Not applicable
            Core   = Not applicable
            Info   = ANIServer started.
            Process= UTMajorAcquisition
            State  = Transient terminated
            Pid    = 0
            RC     = 0
            Signo  = 0
            Start  = 11/03/14 10:00:00
            Stop   = 11/03/14 10:14:13
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= EDS-GCF
            State  = Running normally
            Pid    = 8807
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:17:18
            Stop   = Not applicable
            Core   = Not applicable
            Info   = GCF Initialization complete at Fri Oct 31 14:17:53 CST 2014
            Process= jrm
            State  = Running normally
            Pid    = 8808
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:17:18
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= DataPurge
            State  = Administrator has shut down this server
            Pid    = 0
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:18:12
            Stop   = 10/31/14 14:19:11
            Core   = Not applicable
            Info   = DataPurge initialization completed at Fri Oct 31 14:19:11 CST 2014.
            Process= IPMProcess
            State  = Program started - No mgt msgs received
            Pid    = 9155
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:18:12
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= CTMJrmServer
            State  = Running normally
            Pid    = 9156
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:18:12
            Stop   = Not applicable
            Core   = Not applicable
            Info   = CTMJrmServer started.
            Process= SyslogAnalyzer
            State  = Running normally
            Pid    = 9246
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:18:23
            Stop   = Not applicable
            Core   = Not applicable
            Info   = SyslogAnalyzerService Started at Fri Oct 31 14:18:35 CST 2014
            Process= ChangeAudit
            State  = Program started - No mgt msgs received
            Pid    = 9247
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:18:23
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= 1014
            State  = Never started
            Pid    = 0
            RC     = 0
            Signo  = 0
            Start  = N/A
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Not applicable,
            Process= 1965
            State  = Never started
            Pid    = 0
            RC     = 0
            Signo  = 0
            Start  = N/A
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Not applicable,
            Process= 1964
            State  = Never started
            Pid    = 0
            RC     = 0
            Signo  = 0
            Start  = N/A
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Not applicable,
            Process= 2360
            State  = Never started
            Pid    = 0
            RC     = 0
            Signo  = 0
            Start  = N/A
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Not applicable,
            Process= 3056
            State  = Never started
            Pid    = 0
            RC     = 0
            Signo  = 0
            Start  = N/A
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Not applicable,
            Process= 3104
            State  = Never started
            Pid    = 0
            RC     = 0
            Signo  = 0
            Start  = N/A
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Not applicable,
            Process= 1001
            State  = Never started
            Pid    = 0
            RC     = 0
            Signo  = 0
            Start  = N/A
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Not applicable,
            Process= 3177
            State  = Never started
            Pid    = 0
            RC     = 0
            Signo  = 0
            Start  = N/A
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Not applicable,
            Process= 3206
            State  = Never started
            Pid    = 0
            RC     = 0
            Signo  = 0
            Start  = N/A
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Not applicable,
            Process= 1015
            State  = Never started
            Pid    = 0
            RC     = 0
            Signo  = 0
            Start  = N/A
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Not applicable,
            Process= 1524
            State  = Program started - No mgt msgs received
            Pid    = 21804
            RC     = 0
            Signo  = 0
            Start  = 11/02/14 19:00:00
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= 3306
            State  = Program started - No mgt msgs received
            Pid    = 17433
            RC     = 0
            Signo  = 0
            Start  = 11/03/14 11:37:17
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= 1005
            State  = Running normally
            Pid    = 19289
            RC     = 0
            Signo  = 0
            Start  = 11/03/14 12:00:00
            Stop   = Not applicable
            Core   = Not applicable
            Info   = 1005 started.
            Process= diskWatcher
            State  = Program started - No mgt msgs received
            Pid    = 9249
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:18:23
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
    Thanks in advance for your help.
    Best regards.

    Also when i click the alarms bar that is sitting in the bottom right i got these in DFMOGSServer.log
    [ Thu Nov 06  15:25:37 CST 2014 ] ERROR  com.cisco.nm.xms.ogs.kilner10.KilnerEventConsolidator makeEvent  - MAKE CONSOLIDATED_DFMOGS_EVENT: 9 data:
    [ Thu Nov 06  15:25:46 CST 2014 ] FATAL  com.cisco.nm.xms.ogs.server.OGSServer main  - Exception while OGS Server start up: CTMRegistryClient::addNewURNEntry  URN : ogs_server_urn ErrMsg : URN already in use
    com.cisco.nm.xms.ogs.util.OGSException: CTMRegistryClient::addNewURNEntry  URN : ogs_server_urn ErrMsg : URN already in use
            at com.cisco.nm.xms.ogs.server.OGSImpl.publishURN(OGSImpl.java:1396)
            at com.cisco.nm.xms.ogs.server.OGSServer.main(OGSServer.java:73)
    [ Thu Nov 06  15:31:54 CST 2014 ] ERROR  com.cisco.nm.cuom.eventmon.webapp.GroupUserImpl isUserInTable  -
    java.lang.NullPointerException
            at com.cisco.nm.trx.epm.providers.persistence.ResultSetWrapper.next(Unknown Source)
            at com.cisco.nm.cuom.eventmon.webapp.GroupUserImpl.isUserInTable(GroupUserImpl.java:171)
            at com.cisco.nm.cuom.eventmon.webapp.GroupUserImpl.processCommand(GroupUserImpl.java:61)
            at com.cisco.nm.cuom.eventmon.webapp.AbstractCommandProcessor.execute(AbstractCommandProcessor.java:94)
            at com.cisco.nm.cuom.eventmon.webapp.EventMonitoringServlet.doPost(EventMonitoringServlet.java:202)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:637)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
            at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
            at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
            at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
            at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
            at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
            at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:103)
            at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
            at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293)
            at org.apache.jk.server.JkCoyoteHandler.invoke(JkCoyoteHandler.java:190)
            at org.apache.jk.common.HandlerRequest.invoke(HandlerRequest.java:311)
            at org.apache.jk.common.ChannelSocket.invoke(ChannelSocket.java:776)
            at org.apache.jk.common.ChannelSocket.processConnection(ChannelSocket.java:705)
            at org.apache.jk.common.ChannelSocket$SocketConnection.runIt(ChannelSocket.java:898)
            at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:690)
            at java.lang.Thread.run(Thread.java:662)
    [ Thu Nov 06  15:31:54 CST 2014 ] ERROR  com.cisco.nm.cuom.eventmon.api.impl.HbmDBManager executeQuery  - ExecuteQuery, returnList is empty or NULL, []
    [ Thu Nov 06  15:31:55 CST 2014 ] ERROR  com.cisco.nm.cuom.eventmon.api.impl.HbmDBManager executeQuery  - ExecuteQuery, returnList is empty or NULL, []
    [ Thu Nov 06  15:31:55 CST 2014 ] ERROR  com.cisco.nm.cuom.eventmon.api.impl.GroupManager getDevicesForNonOGSGroup  - getDevicesForNonOGSGroup() called with Unreachable Devices
    [ Thu Nov 06  15:31:55 CST 2014 ] ERROR  com.cisco.nm.cuom.eventmon.api.impl.GroupManager getDevicesForNonOGSGroup  - getDevicesForNonOGSGroup() Got 9 devices from TIS
    [ Thu Nov 06  15:31:55 CST 2014 ] ERROR  com.cisco.nm.cuom.eventmon.api.impl.GroupManager getDevicesForNonOGSGroup  - getDevicesForNonOGSGroup() called with Unmanaged Devices
    [ Thu Nov 06  15:31:55 CST 2014 ] ERROR  com.cisco.nm.cuom.eventmon.api.impl.GroupManager getDevicesForNonOGSGroup  - getDevicesForNonOGSGroup() called with Suspended Devices
    [ Thu Nov 06  15:31:55 CST 2014 ] ERROR  com.cisco.nm.cuom.eventmon.api.impl.GroupManager getDevicesForNonOGSGroup  - getDevicesForNonOGSGroup() Got 0 devices from TIS
    [ Thu Nov 06  15:31:55 CST 2014 ] ERROR  com.cisco.nm.cuom.eventmon.webapp.GroupUserImpl isUserInTable  -
    java.lang.NullPointerException
            at com.cisco.nm.trx.epm.providers.persistence.ResultSetWrapper.next(Unknown Source)
            at com.cisco.nm.cuom.eventmon.webapp.GroupUserImpl.isUserInTable(GroupUserImpl.java:171)
            at com.cisco.nm.cuom.eventmon.webapp.GroupUserImpl.processCommand(GroupUserImpl.java:61)
            at com.cisco.nm.cuom.eventmon.webapp.AbstractCommandProcessor.execute(AbstractCommandProcessor.java:94)
            at com.cisco.nm.cuom.eventmon.webapp.EventMonitoringServlet.doPost(EventMonitoringServlet.java:202)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:637)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
            at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
            at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
            at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
            at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
            at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
            at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:103)
            at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
            at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293)
            at org.apache.jk.server.JkCoyoteHandler.invoke(JkCoyoteHandler.java:190)
            at org.apache.jk.common.HandlerRequest.invoke(HandlerRequest.java:311)
            at org.apache.jk.common.ChannelSocket.invoke(ChannelSocket.java:776)
            at org.apache.jk.common.ChannelSocket.processConnection(ChannelSocket.java:705)
            at org.apache.jk.common.ChannelSocket$SocketConnection.runIt(ChannelSocket.java:898)
            at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:690)
            at java.lang.Thread.run(Thread.java:662)
    [ Thu Nov 06  15:31:55 CST 2014 ] ERROR  com.cisco.nm.cuom.eventmon.webapp.GroupUserImpl isUserInTable  -
    java.lang.NullPointerException
            at com.cisco.nm.trx.epm.providers.persistence.ResultSetWrapper.next(Unknown Source)
            at com.cisco.nm.cuom.eventmon.webapp.GroupUserImpl.isUserInTable(GroupUserImpl.java:171)
            at com.cisco.nm.cuom.eventmon.webapp.GroupUserImpl.processCommand(GroupUserImpl.java:61)
            at com.cisco.nm.cuom.eventmon.webapp.AbstractCommandProcessor.execute(AbstractCommandProcessor.java:94)
            at com.cisco.nm.cuom.eventmon.webapp.EventMonitoringServlet.doPost(EventMonitoringServlet.java:202)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:637)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
            at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
            at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
            at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
            at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
            at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
            at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:103)
            at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
            at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293)
            at org.apache.jk.server.JkCoyoteHandler.invoke(JkCoyoteHandler.java:190)
            at org.apache.jk.common.HandlerRequest.invoke(HandlerRequest.java:311)
            at org.apache.jk.common.ChannelSocket.invoke(ChannelSocket.java:776)
            at org.apache.jk.common.ChannelSocket.processConnection(ChannelSocket.java:705)
            at org.apache.jk.common.ChannelSocket$SocketConnection.runIt(ChannelSocket.java:898)
            at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:690)
            at java.lang.Thread.run(Thread.java:662)
    [ Thu Nov 06  15:32:05 CST 2014 ] ERROR  com.cisco.nm.cuom.eventmon.api.impl.HbmDBManager executeQuery  - ExecuteQuery, returnList is empty or NULL, []
    [ Thu Nov 06  15:32:05 CST 2014 ] ERROR  com.cisco.nm.cuom.eventmon.api.impl.HbmDBManager executeQuery  - ExecuteQuery, returnList is empty or NULL, []
    [ Thu Nov 06  15:32:05 CST 2014 ] ERROR  com.cisco.nm.cuom.eventmon.api.impl.HbmDBManager executeQuery  - ExecuteQuery, returnList is empty or NULL, []
    [ Thu Nov 06  15:32:05 CST 2014 ] ERROR  com.cisco.nm.cuom.eventmon.api.impl.HbmDBManager executeQuery  - ExecuteQuery, returnList is empty or NULL, []
    [ Thu Nov 06  15:32:05 CST 2014 ] ERROR  com.cisco.nm.cuom.eventmon.api.impl.HbmDBManager executeQuery  - ExecuteQuery, returnList is empty or NULL, []
    [ Thu Nov 06  15:32:05 CST 2014 ] ERROR  com.cisco.nm.cuom.eventmon.api.impl.HbmDBManager executeQuery  - ExecuteQuery, returnList is empty or NULL, []
    [ Thu Nov 06  15:32:05 CST 2014 ] ERROR  com.cisco.nm.cuom.eventmon.api.impl.HbmDBManager executeQuery  - ExecuteQuery, returnList is empty or NULL, []
    [ Thu Nov 06  15:32:05 CST 2014 ] ERROR  com.cisco.nm.cuom.eventmon.api.impl.HbmDBManager executeQuery  - ExecuteQuery, returnList is empty or NULL, []
    [ Thu Nov 06  15:32:05 CST 2014 ] ERROR  com.cisco.nm.cuom.eventmon.api.impl.HbmDBManager executeQuery  - ExecuteQuery, returnList is empty or NULL, []
    Don´t know much about databases, but it seems im missing some important tables or data

  • Error in Communicating with DCR Server LMS 4.0

    I´m receiving this error when I try do add a device in isolated form or by discovery:
    Error in communicating with DCR Server.
    DCR Server may be down. Please start the DCR Server and then refresh the page.
    I am using windows 2008 standard server RC1 SP1, and CiscoWorks LMS 4.0.
    I had applied all of patches includes.
    The DCRserver is running. ( I did restart it)

    You're using Windows 2008 RC1 (a release candidate version)?  LMS is only supported on the final shipping version of Windows 2008, and not yet on R2.
    If you're running on the final version of 2008 server, post the output of the pdshow command as well as the dcr.log, DCRServer.log, NMSROOT/MDC/tomcat/logs/stdout.log and stderr.log.

  • WebDAv with Iplanet Webserver 4.1

    Hi,
    I want use Webdav with Iplanet Webserver 4.1 for publication . It's
    possible ?
    Regards,
    herve

    I tried this with apache slide.
    With no luck.
    I think the problem was due to not being able to configure a servlet to
    receive the http request for the urls from the web dav root.
    For example.
    http://mserver/dav
    may be the root
    then you would have a file at
    http://mserver/dav/files/etc
    I could not configure the servlet in the rules.properties file to say
    /dav/* is servlets WebdavServlet.
    However you can do this with tomcat and I hope now that iWS 6.0 supports the
    web.xml for deploying servlets that you now will be able to do this.
    If you get this working I would like to know how you did it.
    Warwick
    "herve Merdrignac" <[email protected]> wrote in message
    news:[email protected]..
    Hi,
    I want use Webdav with Iplanet Webserver 4.1 for publication . It's
    possible ?
    Regards,
    herve

  • JSP: work with TomCat 5.5.9 and NOT work with TomCat 6.0.16

    Hi all,
    I'm Antony and I have a problem with a .JSP page of my server.
    In my server there are 2 users: "u1" and "u2"; there are 2 TomCat, version 5.5.9 and version 6.0.16. There is Apache WebServer version 2. The 2 TomCat servers have the same configuration files: server.xml and web.xml (in the dir /conf of the main server's root). They not work simultaneously.
    When the user "root" launch the TomCat 5.5.9 all work fine: the server will show correctly the JSP pages of "u1" and the pages of "u2".
    When the user "root" launch the TomCat 6.0.16 the JSP pages of "u1" work fine but the JSP pages of "u2" not work: it seems that there are problems with the path where the server want to search the pages of u2.
    In the server.xml there is this code (for the handle of u2's site):
    <Host name="u2site.com" appBase="/home/u2/public_html/">
      <Alias>www.u2site.com</Alias>
      <Context path="" reloadable="false" docBase="/home/u2/public_html/" debug="0"/>
              <Context path="/manager" debug="0" privileged="true"
                  docBase="/usr/local/jakarta/tomcat/server/webapps/manager">
              </Context>
    </Host>and this code (for the u1's site)
    <Host name="u1site.com" appBase="/home/u1/public_html/">
      <Context path="" reloadable="false" docBase="/home/u1/public_html" debug="1"/>
              <Context path="/manager" debug="0" privileged="true"
                  docBase="/usr/local/jakarta/tomcat/server/webapps/manager">
              </Context>
    </Host>The problems with the JSP pages of u2 are one of the following:
    org.apache.jasper.JasperException: /login2.jsp(4,0) The value for the useBean class attribute com.u2.beans.access.Autenticator is invalid.and this one that appear with the pages that have the inclusion of another JSP page
    /u2page.jsp(3,0) File "/../support/_formatting.jsp" not foundI think that the TomCat know how to find the page that the browser request to Apache WebServer (and that the webserver request to Tomcat by the connector) 'cause for pages that haven't inclusion or call to method in packages all work fine...but the TomCat have problems to locate the pages included or the method located in a JAR (the jars are located in WEB-INF/lib/ of the u2's site).
    How I can resolve this problem with TomCat 6.0.16? I repeat that with TomCat 5.5.9 all work fine...same configuration!
    Any ideas?
    Thank you very much,
    Antony.

    Hi stevejluke, 'cause in the page "/supporto/_formatting.jsp" there are only the definition of some variables it's normal that the output at the browser it's a blank page.
    The problem it's that Tomcat 6.0.16 cannot know how "navigate" the pages beginning from one...it know where is the "x.jsp" page requested directly by Apache WebServer, where is "y.jsp" request directly by Apache, where is "z.jsp" requested directly by Apache but if "x.jsp" request, includes, "y.jsp" Tomcat cannot know where "y.jsp" is located. There is some file where I can "say" this to Tomcat?
    The page "/mostre/elenco_mostre.jsp" includes directly the "/supporto/_formatting.jsp".
    Another thing: in /mostre/elenco_mostre.jsp there is an inclusion directive for /supporto/_formatting.jsp that is so:
    <%@ include file="../supporto/_formatting.jsp"%>you can see that the included file is "../supporto/_formatting.jsp" and NOT "/../supporto/_formatting.jsp"...the "/" at the begin of the path is included by Tomcat!
    In the catalina.out there are this lines, when the page is called:
    Jul 6, 2008 3:15:00 AM org.apache.catalina.core.StandardWrapperValve invoke
    SEVERE: Servlet.service() for servlet jsp threw exception
    org.apache.jasper.JasperException: /elenco_mostre.jsp(3,0) File "/../supporto/_formatting.jsp" not found
      In catalina.out before server start there are this lines:
    Jul 6, 2008 1:43:49 AM org.apache.tomcat.util.digester.SetPropertiesRule begin
    WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'debug' to '1' did not find a matching property.
    Jul 6, 2008 1:43:49 AM org.apache.tomcat.util.digester.SetPropertiesRule begin
    WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'debug' to '0' did not find a matching property.
    Jul 6, 2008 1:43:49 AM org.apache.tomcat.util.digester.SetPropertiesRule begin
    WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'debug' to '1' did not find a matching property.
    Jul 6, 2008 1:43:49 AM org.apache.tomcat.util.digester.SetPropertiesRule begin
    WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'debug' to '0' did not find a matching property.
    Jul 6, 2008 1:43:49 AM org.apache.tomcat.util.digester.SetPropertiesRule begin
    WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'debug' to '1' did not find a matching property.
    Jul 6, 2008 1:43:49 AM org.apache.tomcat.util.digester.SetPropertiesRule begin
    WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'debug' to '0' did not find a matching property.
    Jul 6, 2008 1:43:49 AM org.apache.tomcat.util.digester.SetPropertiesRule begin
    WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'debug' to '1' did not find a matching property.
    Jul 6, 2008 1:43:49 AM org.apache.tomcat.util.digester.SetPropertiesRule begin
    WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'debug' to '0' did not find a matching property.
    Jul 6, 2008 1:43:49 AM org.apache.tomcat.util.digester.SetPropertiesRule begin
    WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'debug' to '1' did not find a matching property.
    Jul 6, 2008 1:43:49 AM org.apache.tomcat.util.digester.SetPropertiesRule begin
    WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'debug' to '0' did not find a matching property.
    Jul 6, 2008 1:43:49 AM org.apache.tomcat.util.digester.SetPropertiesRule begin
    WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'debug' to '1' did not find a matching property.
    Jul 6, 2008 1:43:49 AM org.apache.tomcat.util.digester.SetPropertiesRule begin
    WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'debug' to '0' did not find a matching property.
    Jul 6, 2008 1:43:49 AM org.apache.tomcat.util.digester.SetPropertiesRule begin
    WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'debug' to '0' did not find a matching property.
    Jul 6, 2008 1:43:49 AM org.apache.tomcat.util.digester.SetPropertiesRule begin
    WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'debug' to '0' did not find a matching property.
    Jul 6, 2008 1:43:49 AM org.apache.catalina.startup.Catalina load
    INFO: Initialization processed in 358 ms
    Jul 6, 2008 1:43:49 AM org.apache.catalina.core.StandardService start
    INFO: Starting service Catalina
    Jul 6, 2008 1:43:49 AM org.apache.catalina.core.StandardEngine start
    INFO: Starting Servlet Engine: Apache Tomcat/6.0.16
    Jul 6, 2008 1:43:52 AM org.apache.jk.server.JkMain start
    INFO: Jk running ID=0 time=0/23  config=null
    Jul 6, 2008 1:43:52 AM org.apache.catalina.connector.MapperListener registerEngine
    WARNING: Unknown default host: localhost
    Jul 6, 2008 1:43:52 AM org.apache.catalina.startup.Catalina start
    INFO: Server startup in 2512 msThe file "web.xml" is located in "$Tomcat_home/conf" and it's:
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <web-app xmlns="http://java.sun.com/xml/ns/j2ee"
        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/web-app_2_4.xsd" version="2.4">
      <servlet>
        <servlet-name>jsp</servlet-name>
        <servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class>
        <init-param>
          <param-name>fork</param-name>
          <param-value>false</param-value>
        </init-param>
        <init-param>
          <param-name>xpoweredBy</param-name>
          <param-value>false</param-value>
        </init-param>
        <load-on-startup>3</load-on-startup>
      </servlet>
      <servlet-mapping>
        <servlet-name>jsp</servlet-name>
        <url-pattern>*.jsp</url-pattern>
      </servlet-mapping>
      <servlet-mapping>
        <servlet-name>jsp</servlet-name>
        <url-pattern>*.jspx</url-pattern>
      </servlet-mapping>
      <session-config>
        <session-timeout>30</session-timeout>
      </session-config>
      <welcome-file-list>
        <welcome-file>index.html</welcome-file>
        <welcome-file>index.jsp</welcome-file>
      </welcome-file-list>
    </web-app>there are not web.xml file in /WEB-INF/ of the web application.
    Maybe the problem it's that Tomcat want the conf file in "Server/Service/Engine/Host/Context" ? I must move the block HOST of the server.xml file in this path?
    Good Sunday and thank you!
    Antony.

  • SAP BI Client tools are not communicating with BO server

    Hi Experts,
    We've recently installed BI 4.1 . We're having few issues:
    1. When client is installed on different machine then it is not communicating with server. We've already tried few things like untick auto assign from Request server and manually assign static port but it didn't work .
    2. Our BO Server is running on AWS Cloud.
    3. Client is communicating when installed on server machine.
    4. Could you please help our how to resolve this error.
    5. CMC and BI launch pad are installed on server side as they're web browser tool and we need to install these on client machine as well. Qns is Do we need to install them or provide just URL link? If just URL like where to get these URL links.
    6. We can't see SAP Lumira and SAP Dashboard on Service market place to install. Where we can find these software on Service maket place?
    7. Could someone please send screenshot to install Dashboard, Lumira, Analysis office and Crystal report enterprise and crystal report 2013.
    8. Do we need to install all these on client machine?
    9. Could you please give me software list which should be installed on client machine?
    10. As i know there is life cycle management tool but it is not even available from server side not even on client side. Could you please recommend how it can be installed??
    Thanks in advance.

    1. When client is installed on different machine then it is not communicating with server. We've already tried few things like untick auto assign from Request server and manually assign static port but it didn't work .
    Could you confirm that you are able to ping the BO server from Client machine. Also use telnet command from commandline of  CMD in client machine. It will help to confirm that port communication is successful. Use ipaddress:cmsport for the system while logging into the client software. Update the hosts file entries at client machine with BO server name and ip address. Create an exception for BO installation location at client machine and check the results
    2. Our BO Server is running on AWS Cloud.
    3. Client is communicating when installed on server machine.
    4. Could you please help our how to resolve this error.
    5. CMC and BI launch pad are installed on server side as they're web browser tool and we need to install these on client machine as well. Qns is Do we need to install them or provide just URL link? If just URL like where to get these URL links.
    Check on the server side first where your web server is installed (I am assuming tomcat in your scenario). Use http://serverame:8080/BOE/BI and http://servername:8080/BOE/CMC (8080 is default port. If it has been changed use the correct port).
    If its working well. Perform the same activity using ipaddress:8080 at server. Next chek whether using the same URL you are able to get BILaunchPad and CMC pages and able to login from the same.
    6. We can't see SAP Lumira and SAP Dashboard on Service market place to install. Where we can find these software on Service maket place (https://service.sap.com)?
    Software and downloads-->Installations and Upgrades
    - D" SBOP DASHBOARDS (XCELSIUS)
    7. Could someone please send screenshot to install Dashboard, Lumira, Analysis office and Crystal report enterprise and crystal report 2013.
    Look into the admin guide for installation pre-requisites. These are available at Analytics Knowledge Center
    We have a drop down for all products. Look for the guide and proceed with the installation.
    8. Do we need to install all these on client machine?
    Dashboard,Lumira,analysis office, CRE and CR2013 are client tools and hence need to be installed on client machine.
    We also have CRS 2013 which is a server software and has to be downloaded from service market place. The li
    9. Could you please give me software list which should be installed on client machine?
    These vary according to user requirements. Check with developers for their softwares needed
    10. As i know there is life cycle management tool but it is not even available from server side not even on client side. Could you please recommend how it can be installed??
    In BI4.1 LCM comes by default. It is a server application. You can find it in CMC named as Promotion management and version management.
    Use the admin guide and installation guide for all of the above. It will help you.

  • Servlet Communication with Java WebStart

    Hi there,
    we have an application that works fine with Java WebStart whenever we start it in a local area network. But from outside the LAN the application cannot communicate to it's servlets. I use the codebase IP address with the servlet runner's port (http://<codebase IP>:port/) as URL for servlet communication, but the application's request never reaches the servlets.
    My question is now, if anyone had the same or a similar problem with servlet communication using Java WebStart, or if anyone knows, if that might be a problem with proxy configuration.
    The servlet runner we use, is JServ from Sun (JSDK2.0) and the webserver where it is running on is not behind a firewall or a proxy, but the client PC with the web start application is.
    Thanks,
    Katja

    Thank you for your early reply. But I think, that's not the problem.
    I get no security error and the webserver is identified the same way it is in the jnlp file. Also my application is not running in the Sandbox. My assumption is, that the http-request to the servlet does not go through the proxy server between my PC and the PC the servletrunner is running on.
    I wonder if I have to configure my application to use a proxy server for communication with the servlets instead of the direct http-request to the servlet runner?

  • Is it possible to connect OJDBC14.JAR with tomcat?!

    Hello,
    I�m using tomcat and receiving the error bellow ...
    I�m using ojdbc14.jar and I configured the tomcat like this:
    URL: jdbc:oracle:thin:@localhost:1521:xe
    Class: oracle.jdbc.driver.OracleDriver
    There is no problem to visit pages that only show the result of searches... So the problem happend when i try to visit the pages that creates or updates a data base register...
    What is the problem?! Is it possible to connect tomcat and oracleXE DB using ojdbc14.jar?!?
    Please someone....help me
    Gustavo Callou
    HTTP Status 500 -
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    com.sun.rave.web.ui.appbase.ApplicationException: org.apache.jasper.JasperException: java.lang.RuntimeException: java.sql.SQLException: handle de instru��o n�o foi executado: getMetaData
         com.sun.rave.web.ui.appbase.faces.ViewHandlerImpl.destroy(ViewHandlerImpl.java:601)
         com.sun.rave.web.ui.appbase.faces.ViewHandlerImpl.renderView(ViewHandlerImpl.java:316)
         com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:87)
         com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:221)
         com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:117)
         javax.faces.webapp.FacesServlet.service(FacesServlet.java:198)
         com.sun.rave.web.ui.util.UploadFilter.doFilter(UploadFilter.java:194)
    note The full stack trace of the root cause is available in the Apache Tomcat/5.5.17 logs.
    Apache Tomcat/5.5.17

    Hi,
    the problem is that is I little bit dificult to debug with tomcat...
    I have already read:
    http://forum.sun.com/jive/thread.jspa?forumID=123&threadID=63633
    and the marco�s blogs on:
    http://blogs.sun.com/marcoscorner/entry/creator_2_ea_webapps_and
    So I concluded that it is possible to use the ojdbc14.jar of oracle, but I still receiving the getMetaData erro... what am i supose to do?!
    Is it possible to someone send me some example that works fine?!
    Bellow there is a code example that i use to update the data of one row...
    In the development It works fine... but with tomcat using the OJDBC14.jar does not... I�m receiving this:
    com.sun.rave.web.ui.appbase.ApplicationException: org.apache.jasper.JasperException: java.lang.RuntimeException: java.sql.SQLException: handle de instru��o n�o foi executado: getMetaData
    How can I change my code to does not receive this erro anymore with tomcat using OJDBC14.jar version 10.2.0.1.0?!
    public void prerender() {
    try {
    getSessionBean1().getTb_setorRowSet().setObject(1,
    getRequestBean1().getCodigoSetor());
    tb_setorDataProvider.refresh();
    } catch (Exception e) {
    error("Cannot read tracks for " +
    getRequestBean1().getCodigoSetor() +
    ": " + e.getMessage());
    log("Cannot read tracks for " +
    getRequestBean1().getCodigoSetor() + ": ", e);
    public void destroy() {
    tb_setorDataProvider.close();
    public String btn_salvar_action() {
    try {
    tb_setorDataProvider.commitChanges();
    log("update: changes committed");
    info("Opera\347\343o Salva");
    } catch(Exception e) {
    log("update: cannot commit changes ", e);
    error("Cannot commit changes: " + e.getMessage());
    return null;
    Please Marco or anyone help me!!!
    Thanks
    Gustavo

  • Netbeans 5.0 bundled with tomcat

    I cant run a simple web app with tomcat because it wants a username and password. But i've tried changing the tomcat-user.xml file to "manager" role. I'm lost.
    Thanks

    look in this directory:
    C:\Documents and Settings\Owner\.netbeans\5.5beta2\config\J2EE\InstalledServers
    ** Owner will be your windows user name
    find a file named .nbattrs
    Inside that file may have your default admin username and password.
    It is an xml file and look for the section like the following:
        <fileobject name="Tomcat_instance">
            <attr name="admin_port" stringvalue="8025"/>
            <attr name="debug_type" stringvalue="SEL_debuggingType_shared"/>
            <attr name="displayName" stringvalue="Bundled Tomcat (5.5.17)"/>
            <attr name="httpportnumber" stringvalue="8084"/>
            <attr name="instance_id" stringvalue="tomcat55"/>
            <attr name="password" stringvalue="H56E5wNS"/>
            <attr name="timestamp" stringvalue="1153304925000"/>
            <attr name="url" stringvalue="tomcat55:home=$bundled_home:base=$bundled_base"/>
           <attr name="username" stringvalue="ide"/>
        </fileobject>If you still have problems, I suggest you subscribe to the nb-users mailing list and ask there.
    http://www.netbeans.org/community/lists/top.html
    JJ

  • Communication with other domain

    Hi,
    An internal application (.exe developed in Delphi) at a
    clients server (
    no webserver) can communicate ( JSON protocol) with other
    applications, also web based.
    While testing the AS2 / AS3 classes ( from
    http://www.json.org ) in the Flash
    IDE (ctrl-enter) their was no problem. I made a connection on a
    static IP-adres with open port and could send/recieve json-objects.
    So far so good.
    When publishing it for a html page, the trouble began. The
    known security problem.
    Is there a solution?
    We don't know where to put the crossdomain.xml because there
    is no root! There is just an application listening to an open port
    on a static IP adres.
    Just a single executable listening to an open port if a
    request is comming in so it can send an answer.
    Is there a solution?
    How does the flash player finds out if a crossdomain.xml is
    avalable?
    Does it send a request also? Is it ok to generate a
    crossdomain.xml on the fly on that request?
    Help us please!

    I think I understood the following:
    - Cards have a special applet called Card Manager (or Security Domain) for example to load and delete other applets
    - Communication with the Card Manager goes over a secure channel with specific keysThat is correct
    Questions:
    - Are these keys 'open' so they can be used for every card of the same type?Development cards generally have know keys that can be used. When you go into production, your cards will have a unique (each card in fact will have its own key)
    - Are these keys set by the factory and maybe reset by a distributor?Both. The card issue can also set the keys before sending the card out. Check the GlobalPlatform Key Management System specification from the GP website for more details on key management.
    WrappedCommand --> 80 CA006600
    Response <-- 664C734A0607...(I'll post all bytes if necessary)...9000Can you provide the full response from the card?
    Can I somehow check if my Card is already blocked (too much failed attempts?) without waisting another attempt?No. If you have exceeded the tries your next INIT UPDATE will fail. You should have 10 per card with the JCOP cards from memory. Some Gemalto cards lock after 5.
    Cheers,
    Shane

  • Websphere MQ with tomcat

    Hi All,
    Can any one help me how to configure the websphereMQ with tomcat server. Is it possible to integrate the MQ with a webserver like tomcat other than application servers. I tried to run the websphereMQ as standalone but i am failed to run it for asynchronous messaging.
    please help.
    thans in advance,
    Sridhar Reddy .R

    Have a look at
    http://wiki.apache.org/tomcat/HowTo#head-b45c4c0b8c57d9efa1e9c5342650d5e534f55cfa

  • HTTP2302 error  with tomcat and linux environment

    We are using Sun Java(TM) System Web Server 7.0 with Tomcat 6.0.14 in Linux environment. We are frequently facing "Service Unavailable error" in the frontend . while verifying the logs we found the details as below :
    could you guinde what could be issue here ?
    In Webserver log the following error thrown many times
    func_exec reports: HTTP2302: Function jk_service aborted the request without setting the status code
    We are using the tomcat connector nsapi_redirector-1.2.26-sjsws6.1sp11.so in our environment
    nsapi.log
    [Thu Nov 19 06:22:11.602 2009] [20843:4074314640] [debug] jk_open_socket::jk_connect.c (448): socket TCP_NODELAY set to On
    [Thu Nov 19 06:22:11.602 2009] [20843:4074314640] [debug] jk_open_socket::jk_connect.c (548): trying to connect socket 30 to 160.254.92.190:8051
    [Thu Nov 19 06:22:11.602 2009] [20843:4074314640] [info] jk_open_socket::jk_connect.c (566): connect to 160.254.92.190:8051 failed (errno=111)
    [Thu Nov 19 06:22:11.602 2009] [20843:4074314640] [info] ajp_connect_to_endpoint::jk_ajp_common.c (869): Failed opening socket to (160.254.92.190:8051) (errno=111)
    [Thu Nov 19 06:22:11.602 2009] [20843:4074314640] [error] ajp_send_request::jk_ajp_common.c (1359): (ajp13) connecting to backend failed. Tomcat is probably not started or is listening on the wrong port (errno=111)
    [Thu Nov 19 06:22:11.602 2009] [20843:4074314640] [info] ajp_service::jk_ajp_common.c (2186): (ajp13) sending request to tomcat failed (recoverable), because of error during request sending (attempt=2)
    [Thu Nov 19 06:22:11.602 2009] [20843:4074314640] [error] ajp_service::jk_ajp_common.c (2204): (ajp13) Connecting to tomcat failed. Tomcat is probably not started or is listening on the wrong port
    [Thu Nov 19 06:22:11.602 2009] [20843:4074314640] [error] jk_service::jk_nsapi_plugin.c (398): service() failed with http error 503
    [Thu Nov 19 06:22:11.602 2009] [20843:4074314640] [debug] ajp_reset_endpoint::jk_ajp_common.c (691): (ajp13) resetting endpoint with sd = 4294967295 (socket shutdown)
    [Thu Nov 19 06:22:11.602 2009] [20843:4074314640] [debug] ajp_done::jk_ajp_common.c (2522): recycling connection pool slot=0 for worker ajp13
    h1. Obj.conf
    <Object name="default">
    AuthTrans fn="match-browser" browser="*MSIE*" ssl-unclean-shutdown="true"
    <If $uri =~ '^/$'>
    NameTrans fn="redirect" from="/" url="http://wikitest.pershing.com/confluence/" code="301"
    </If>
    NameTrans fn="assign-name" from="/confluence/*" name="servlet"
    PathCheck fn="uri-clean"
    PathCheck fn="check-acl" acl="default"
    PathCheck fn="find-pathinfo"
    PathCheck fn="find-index" index-names="index.html,home.html,index.jsp"
    ObjectType fn="type-by-extension"
    ObjectType fn="force-type" type="text/plain"
    Service method="(GET|HEAD|POST)" type="*~magnus-internal/*" fn="send-file"
    Service method="TRACE" fn="service-trace"
    AddLog fn="flex-log"
    </Object>
    <Object name="j2ee">
    Service fn="service-j2ee" method="*"
    </Object>
    <Object name="es-internal">
    PathCheck fn="check-acl" acl="es-internal"
    </Object>
    <Object name="cgi">
    ObjectType fn="force-type" type="magnus-internal/cgi"
    Service fn="send-cgi"
    </Object>
    <Object name="send-precompressed">
    PathCheck fn="find-compressed"
    </Object>
    <Object name="compress-on-demand">
    Output fn="insert-filter" filter="http-compression"
    </Object>
    <Object name="servlet">
    ObjectType fn="force-type" type="text/html"
    Service fn="jk_service" worker="ajp13"
    </Object>

    Hi, The reason tomcat had to be used is that the software is bundled with tomcat. Hence we are in the following configuration:
    -Sun Web Server 7.0 update 5
    -Tomcat 6, Using JRE1.6
    -The server runs Linux.
    -As for the tomcat web server plugin, the 32-bit tomcat connector is downloaded from http://archive.apache.org/dist/tomcat/tomcat-connectors/jk/binaries/solaris/jk-1.2.26/sparc/
    With this configuration. seems when we refresh a page quickly, we get "service unavailable error". But if we only put web contents, the issue does not exist. Looks like the issue resides in the plugin....
    Any help is greatly appreciated

Maybe you are looking for

  • Fiscal Year End change

    Our current Fiscal Year variant is April – March. However we have now been bought by a different company and the fiscal year end needs to change to Jan-Dec. Therefore this year will be a shortened year. I have a couple of questions: I can see in SPRO

  • My Mac Book Pro wouldn't start after memory update

    I updated my 27" Imac memory up to 16 GB, so I was encouraged to do the same with my Mac Book Pro after watching the video and instructions. However My Mac Book Pro wouldn't start afterwards. It is driving me crazy. Please if someone can help me on t

  • Scanning no longer works with Mavericks (Samsung CLX-6220FX)

    With Mountain Lion I had no problem with the printer. In 10.8 I installed it by going to Printers & Scanners, clicking the plus sign and then clicking Samsung CLX-6220 Series. Then Apple software update would install the required driver automatically

  • How do you convert .mov to .mpeg or .wmv?! please help!!!

    i made a video and put it up on YouTube.com, and tons of people have emailed me saying they want to download it. however, the only format i can put it in is .mov and .mp4 and windows computers can't play these formants.....at least i don't think they

  • Curve 9300 not getting detected on blackberry desktop software

    Dear All, I am using Blackberry Curve 9300 with OS 5.0.0.832. Desktop software version is 7.1.0.41. Since last 10 days, the handset is not getting detected on desktop software. Same is getting detected on Windows XP OS and also getting charged. Reque