You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by Anshul Asthana <an...@yahoo.com> on 2011/12/09 19:52:40 UTC

Tomcat 6.0 configuration with Adobe LiveCycle DS ES 3.0 Server

 Hi,
 
   I want to Configure my Web Server(Tomcat 6.0) so that it can communicate with Adobe LiveCycle DS ES 3.0 Server. I want to know how I can configure my WebServer Tomcat 6.0. for this.
 
Your early response will be appreciated. 
 
Thanking You,
Anshul Asthana

Re: Tomcat 6.0 configuration with Adobe LiveCycle DS ES 3.0 Server

Posted by Pid <pi...@pidster.com>.
On 17/12/2011 22:33, Tim Watts wrote:
> On Sun, 2011-12-18 at 01:11 +0530, Anshul Asthana wrote:
>>
>>
>>
>> ________________________________
>>
>> From: André Warnier <aw...@ice-sa.com>
>> To: Tomcat Users List <us...@tomcat.apache.org> 
>> Sent: Saturday, 17 December 2011 6:03 PM
>> Subject: Re: Tomcat 6.0 configuration with Adobe LiveCycle DS ES 3.0
>> Server
>>
>>
>>     I have written a simple web application to accept Name using Flex
>> SDK 3.2 HttpService and send it to my web application running on
>> Tomcat 6.0 WebServer. We are Using Flex with LiveCycle DS ES 3.0  to
>> communicate Web Server(Tomcat 6.0). Am able to accept input in flex
>> code but the problem is when trying to send data from Flex client to
>> Tomcat WebServer application, it does not work.
>>
>> Both LifeCycle DS ES 3.0 and WebServer Tomcat 6.0 are running on same
>> machine.
>>
>> LiveCycle DS ES 3.0  uses port no - 8400
>> WebServer Tomcat 6.0 uses port no - 8000
>>
>> LiveCycle DS ES 3.0 uses two configuration files :- 
>> a. services-config.xml
>> b. proxy-config.xml
>>
>> WebServer Tommcat 6.0 uses one configuration files :-
>> a. web.xml

That's not even close to true.


>> I have worked with Adobe and they have helped me configure LiveCycle
>> DS ES 3.0.
>>
>> I have Installed Flex Debugger and it gives follwoing error message
>> when trying to communicate with Tomcat 6.0 WebServer:-
>>
>> [RPC Fault faultString="Send failed"
>> faultCode="Client.Error.MessageSend"
>> faultDetail="Channel.Connect.Failed error NetConnection.Call.Failed:
>> HTTP: Status 404: url:
>> 'http://localhost:8400/JLCAPP/messagebroker/amf'"]
> 
> I'm no flex expert but, it looks to me like your flex app is getting a
> 404 (not found) trying to connect to a LifeCycle server service.  I
> noticed your web.xml has the messagebroker configured in Tomcat.
> Perhaps that belongs in LifeCycle instead?  
> 
> To be honest, you're going to get precious little help here.  It looks
> to me like your basic problem, at this point, is in understanding how
> LifeCycle RPC works not Tomcat.  I suggest you engage the support forums
> there.  And/Or go through the tutorials (again).

Has the OP actually deployed their application?  A 404 might suggest
otherwise.

Have they edited the tomcat/conf/web.xml instead of the one in their
application?

A number of other similar questions spring to mind...


p


>> 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\AsyncRequest.as:103]
>>  at mx.messaging::ChannelSet/faultPendingSends()[C:\autobuild\3.2.0
>> \frameworks\projects\rpc\src\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\messaging\Channel.as:997]
>>  at mx.messaging.channels::PollingChannel/connectFailed()[C:\autobuild
>> \3.2.0\frameworks\projects\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]
>>  
>> Am providing you with the configuration file that am using at Tomcat
>> Webserver namely web.xml.
>>
>> web.xml
>> -----------
>>
>> <?xml version="1.0" encoding="UTF-8"?>
>> <web-app xmlns="http://java.sun.com/xml/ns/javaee"
>> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.5"
>> xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
>> http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
>>  
>>    <!-- MessageBroker Servlet -->
>>    <!-- Http Flex Session attribute and binding listener support -->
>>    
>>     <listener>
>>
>> <listener-class>flex.messaging.HttpFlexSession</listener-class>
>>     </listener>
>>    <servlet>
>>     <servlet-name>action</servlet-name>
>>
>> <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
>>     <init-param>
>>       <param-name>config</param-name>
>>       <param-value>/WEB-INF/struts-config.xml</param-value>
>>     </init-param>
>>  
>>    <init-param>
>>       <param-name>debug</param-name>
>>       <param-value>3</param-value>
>>    </init-param>
>>    <init-param>
>>       <param-name>detail</param-name>
>>       <param-value>3</param-value>
>>     </init-param>
>>     <load-on-startup>1</load-on-startup>
>>   </servlet>
>>   
>>    <servlet>
>>   <servlet-name>MessageBrokerServlet</servlet-name>
>>   <servlet-class>flex.messaging.MessageBrokerServlet</servlet-class>
>>   
>>    <init-param>
>>     <param-name>services.configuration.file</param-name>
>>     <param-value>/WEB-INF/flex/services-config.xml</param-value>
>>    </init-param>
>>   <load-on-startup>1</load-on-startup>
>>     </servlet>
>>   
>>   <servlet-mapping>
>>     <servlet-name>action</servlet-name>
>>     <url-pattern>*.do</url-pattern>
>>   </servlet-mapping>
>>   
>>   <servlet-mapping>
>>     <servlet-name>MessageBrokerServlet</servlet-name>
>>     <url-pattern>/messagebroker/*</url-pattern>
>>   </servlet-mapping>
>>   
>>   <welcome-file-list>
>>     <welcome-file>hello.html</welcome-file>
>>   </welcome-file-list>
>> </web-app>
>>
>> The problem is that connection is not getting established between
>> LiveCycle DS ES 3.0 and Tomcat 6.0 WebServer. Am not able to figure
>> out what configuration settings are wrong at my Tomcat 6.0 WebServer
>> that is denying the connection between the two servers.
>>
>> Hope this explains the problem am facing. In case you need any more
>> information please let me know. 
>>
>> Regards,
>> Anshul.
>>
>> Anshul Asthana wrote:
>> ...
>>
>>> Subject: Re: Tomcat 6.0 configuration with Adobe LiveCycle DS ES 3.0
>> Server
>>>
>>> I want to configure Tomcat 6.0  with Adobe LiveCycle DS ES 3.0
>> Server so that both can communicate with each other. What are the
>> steps and settings I need to configure and How to configure them in
>> Tomcat 6.0.
>>>
>>> Tomcat 6.0 uses port no - 8000.
>>> Adobe LiveCycle DS ES 3.0 Server uses port no - 8400.
>>>
>>> Regards,
>>> Anshul
>>
>> Anshul,
>>
>> 1) on this list, it is preferred if you write your answers directly
>> below the question, and not on top.  That makes the flow of the
>> conversation easier to follow (rather than having to jump up and down
>> trying to figure out what is answering what).
>>
>> 2) your question/statement, as phrased above, does not mean anything.
>>
>> You have two pieces of software, Tomcat and the Adobe thing (which on
>> this list we don't know much about).
>> Both are running, apparently.
>> And each one of them opens a listening port, apparently.
>>
>> But these two servers will not "communicate" unless some application
>> in one of them decides to establish some communication with the other
>> one, in order to "do something".
>> Or do you just expect them to start saying "Hello" to eachother and
>> start talking about the weather on the WWW ?
>>
>> So what exactly are you trying to achieve, what have you tried, and
>> what does not work as you expect ?
>>
>>
>>
>> Hi André,
> 


-- 

[key:62590808]


Re: Tomcat 6.0 configuration with Adobe LiveCycle DS ES 3.0 Server

Posted by Tim Watts <ti...@cliftonfarm.org>.
On Sun, 2011-12-18 at 01:11 +0530, Anshul Asthana wrote:
> 
> 
> 
> ________________________________
> 
> From: André Warnier <aw...@ice-sa.com>
> To: Tomcat Users List <us...@tomcat.apache.org> 
> Sent: Saturday, 17 December 2011 6:03 PM
> Subject: Re: Tomcat 6.0 configuration with Adobe LiveCycle DS ES 3.0
> Server
> 
> 
>     I have written a simple web application to accept Name using Flex
> SDK 3.2 HttpService and send it to my web application running on
> Tomcat 6.0 WebServer. We are Using Flex with LiveCycle DS ES 3.0  to
> communicate Web Server(Tomcat 6.0). Am able to accept input in flex
> code but the problem is when trying to send data from Flex client to
> Tomcat WebServer application, it does not work.
> 
> Both LifeCycle DS ES 3.0 and WebServer Tomcat 6.0 are running on same
> machine.
> 
> LiveCycle DS ES 3.0  uses port no - 8400
> WebServer Tomcat 6.0 uses port no - 8000
> 
> LiveCycle DS ES 3.0 uses two configuration files :- 
> a. services-config.xml
> b. proxy-config.xml
> 
> WebServer Tommcat 6.0 uses one configuration files :-
> a. web.xml
> 
> 
> I have worked with Adobe and they have helped me configure LiveCycle
> DS ES 3.0.
> 
> I have Installed Flex Debugger and it gives follwoing error message
> when trying to communicate with Tomcat 6.0 WebServer:-
> 
> [RPC Fault faultString="Send failed"
> faultCode="Client.Error.MessageSend"
> faultDetail="Channel.Connect.Failed error NetConnection.Call.Failed:
> HTTP: Status 404: url:
> 'http://localhost:8400/JLCAPP/messagebroker/amf'"]

I'm no flex expert but, it looks to me like your flex app is getting a
404 (not found) trying to connect to a LifeCycle server service.  I
noticed your web.xml has the messagebroker configured in Tomcat.
Perhaps that belongs in LifeCycle instead?  

To be honest, you're going to get precious little help here.  It looks
to me like your basic problem, at this point, is in understanding how
LifeCycle RPC works not Tomcat.  I suggest you engage the support forums
there.  And/Or go through the tutorials (again).


>  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\AsyncRequest.as:103]
>  at mx.messaging::ChannelSet/faultPendingSends()[C:\autobuild\3.2.0
> \frameworks\projects\rpc\src\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\messaging\Channel.as:997]
>  at mx.messaging.channels::PollingChannel/connectFailed()[C:\autobuild
> \3.2.0\frameworks\projects\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]
>  
> Am providing you with the configuration file that am using at Tomcat
> Webserver namely web.xml.
> 
> web.xml
> -----------
> 
> <?xml version="1.0" encoding="UTF-8"?>
> <web-app xmlns="http://java.sun.com/xml/ns/javaee"
> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.5"
> xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
> http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
>  
>    <!-- MessageBroker Servlet -->
>    <!-- Http Flex Session attribute and binding listener support -->
>    
>     <listener>
> 
> <listener-class>flex.messaging.HttpFlexSession</listener-class>
>     </listener>
>    <servlet>
>     <servlet-name>action</servlet-name>
> 
> <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
>     <init-param>
>       <param-name>config</param-name>
>       <param-value>/WEB-INF/struts-config.xml</param-value>
>     </init-param>
>  
>    <init-param>
>       <param-name>debug</param-name>
>       <param-value>3</param-value>
>    </init-param>
>    <init-param>
>       <param-name>detail</param-name>
>       <param-value>3</param-value>
>     </init-param>
>     <load-on-startup>1</load-on-startup>
>   </servlet>
>   
>    <servlet>
>   <servlet-name>MessageBrokerServlet</servlet-name>
>   <servlet-class>flex.messaging.MessageBrokerServlet</servlet-class>
>   
>    <init-param>
>     <param-name>services.configuration.file</param-name>
>     <param-value>/WEB-INF/flex/services-config.xml</param-value>
>    </init-param>
>   <load-on-startup>1</load-on-startup>
>     </servlet>
>   
>   <servlet-mapping>
>     <servlet-name>action</servlet-name>
>     <url-pattern>*.do</url-pattern>
>   </servlet-mapping>
>   
>   <servlet-mapping>
>     <servlet-name>MessageBrokerServlet</servlet-name>
>     <url-pattern>/messagebroker/*</url-pattern>
>   </servlet-mapping>
>   
>   <welcome-file-list>
>     <welcome-file>hello.html</welcome-file>
>   </welcome-file-list>
> </web-app>
> 
> The problem is that connection is not getting established between
> LiveCycle DS ES 3.0 and Tomcat 6.0 WebServer. Am not able to figure
> out what configuration settings are wrong at my Tomcat 6.0 WebServer
> that is denying the connection between the two servers.
> 
> Hope this explains the problem am facing. In case you need any more
> information please let me know. 
> 
> Regards,
> Anshul.
> 
> Anshul Asthana wrote:
> ...
> 
> > Subject: Re: Tomcat 6.0 configuration with Adobe LiveCycle DS ES 3.0
> Server
> > 
> > I want to configure Tomcat 6.0  with Adobe LiveCycle DS ES 3.0
> Server so that both can communicate with each other. What are the
> steps and settings I need to configure and How to configure them in
> Tomcat 6.0.
> > 
> > Tomcat 6.0 uses port no - 8000.
> > Adobe LiveCycle DS ES 3.0 Server uses port no - 8400.
> > 
> > Regards,
> > Anshul
> 
> Anshul,
> 
> 1) on this list, it is preferred if you write your answers directly
> below the question, and not on top.  That makes the flow of the
> conversation easier to follow (rather than having to jump up and down
> trying to figure out what is answering what).
> 
> 2) your question/statement, as phrased above, does not mean anything.
> 
> You have two pieces of software, Tomcat and the Adobe thing (which on
> this list we don't know much about).
> Both are running, apparently.
> And each one of them opens a listening port, apparently.
> 
> But these two servers will not "communicate" unless some application
> in one of them decides to establish some communication with the other
> one, in order to "do something".
> Or do you just expect them to start saying "Hello" to eachother and
> start talking about the weather on the WWW ?
> 
> So what exactly are you trying to achieve, what have you tried, and
> what does not work as you expect ?
> 
> 
> 
> Hi André,


Re: Tomcat 6.0 configuration with Adobe LiveCycle DS ES 3.0 Server

Posted by Anshul Asthana <an...@yahoo.com>.



________________________________

From: André Warnier <aw...@ice-sa.com>
To: Tomcat Users List <us...@tomcat.apache.org> 
Sent: Saturday, 17 December 2011 6:03 PM
Subject: Re: Tomcat 6.0 configuration with Adobe LiveCycle DS ES 3.0 Server


    I have written a simple web application to accept Name using Flex SDK 3.2 HttpService and send it to my web application running on Tomcat 6.0 WebServer. We are Using Flex with LiveCycle DS ES 3.0  to communicate Web Server(Tomcat 6.0). Am able to accept input in flex code but the problem is when trying to send data from Flex client to Tomcat WebServer application, it does not work.

Both LifeCycle DS ES 3.0 and WebServer Tomcat 6.0 are running on same machine.

LiveCycle DS ES 3.0  uses port no - 8400
WebServer Tomcat 6.0 uses port no - 8000

LiveCycle DS ES 3.0 uses two configuration files :- 
a. services-config.xml
b. proxy-config.xml

WebServer Tommcat 6.0 uses one configuration files :-
a. web.xml


I have worked with Adobe and they have helped me configure LiveCycle DS ES 3.0.

I have Installed Flex Debugger and it gives follwoing error message when trying to communicate with Tomcat 6.0 WebServer:-

[RPC Fault faultString="Send failed" faultCode="Client.Error.MessageSend" faultDetail="Channel.Connect.Failed error NetConnection.Call.Failed: HTTP: Status 404: url: 'http://localhost:8400/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\AsyncRequest.as:103]
 at mx.messaging::ChannelSet/faultPendingSends()[C:\autobuild\3.2.0\frameworks\projects\rpc\src\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\messaging\Channel.as:997]
 at mx.messaging.channels::PollingChannel/connectFailed()[C:\autobuild\3.2.0\frameworks\projects\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]
 
Am providing you with the configuration file that am using at Tomcat Webserver namely web.xml.

web.xml
-----------

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.5" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee   http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
 
   <!-- MessageBroker Servlet -->
   <!-- Http Flex Session attribute and binding listener support -->
   
    <listener>
        <listener-class>flex.messaging.HttpFlexSession</listener-class>
    </listener>
   <servlet>
    <servlet-name>action</servlet-name>
    <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
    <init-param>
      <param-name>config</param-name>
      <param-value>/WEB-INF/struts-config.xml</param-value>
    </init-param>
 
   <init-param>
      <param-name>debug</param-name>
      <param-value>3</param-value>
   </init-param>
   <init-param>
      <param-name>detail</param-name>
      <param-value>3</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
  </servlet>
  
   <servlet>
  <servlet-name>MessageBrokerServlet</servlet-name>
  <servlet-class>flex.messaging.MessageBrokerServlet</servlet-class>
  
   <init-param>
    <param-name>services.configuration.file</param-name>
    <param-value>/WEB-INF/flex/services-config.xml</param-value>
   </init-param>
  <load-on-startup>1</load-on-startup>
    </servlet>
  
  <servlet-mapping>
    <servlet-name>action</servlet-name>
    <url-pattern>*.do</url-pattern>
  </servlet-mapping>
  
  <servlet-mapping>
    <servlet-name>MessageBrokerServlet</servlet-name>
    <url-pattern>/messagebroker/*</url-pattern>
  </servlet-mapping>
  
  <welcome-file-list>
    <welcome-file>hello.html</welcome-file>
  </welcome-file-list>
</web-app>

The problem is that connection is not getting established between LiveCycle DS ES 3.0 and Tomcat 6.0 WebServer. Am not able to figure out what configuration settings are wrong at my Tomcat 6.0 WebServer that is denying the connection between the two servers.

Hope this explains the problem am facing. In case you need any more information please let me know. 

Regards,
Anshul.

Anshul Asthana wrote:
...

> Subject: Re: Tomcat 6.0 configuration with Adobe LiveCycle DS ES 3.0 Server
> 
> I want to configure Tomcat 6.0  with Adobe LiveCycle DS ES 3.0 Server so that both can communicate with each other. What are the steps and settings I need to configure and How to configure them in Tomcat 6.0.
> 
> Tomcat 6.0 uses port no - 8000.
> Adobe LiveCycle DS ES 3.0 Server uses port no - 8400.
> 
> Regards,
> Anshul

Anshul,

1) on this list, it is preferred if you write your answers directly below the question, and not on top.  That makes the flow of the conversation easier to follow (rather than having to jump up and down trying to figure out what is answering what).

2) your question/statement, as phrased above, does not mean anything.

You have two pieces of software, Tomcat and the Adobe thing (which on this list we don't know much about).
Both are running, apparently.
And each one of them opens a listening port, apparently.

But these two servers will not "communicate" unless some application in one of them decides to establish some communication with the other one, in order to "do something".
Or do you just expect them to start saying "Hello" to eachother and start talking about the weather on the WWW ?

So what exactly are you trying to achieve, what have you tried, and what does not work as you expect ?



Hi André,

Re: Tomcat 6.0 configuration with Adobe LiveCycle DS ES 3.0 Server

Posted by André Warnier <aw...@ice-sa.com>.
Anshul Asthana wrote:
...

> Subject: Re: Tomcat 6.0 configuration with Adobe LiveCycle DS ES 3.0 Server
> 
> I want to configure Tomcat 6.0  with Adobe LiveCycle DS ES 3.0 Server so that both can communicate with each other. What are the steps and settings I need to configure and How to configure them in Tomcat 6.0.
> 
> Tomcat 6.0 uses port no - 8000.
> Adobe LiveCycle DS ES 3.0 Server uses port no - 8400.
> 
> Regards,
> Anshul

Anshul,

1) on this list, it is preferred if you write your answers directly below the question, 
and not on top.  That makes the flow of the conversation easier to follow (rather than 
having to jump up and down trying to figure out what is answering what).

2) your question/statement, as phrased above, does not mean anything.

You have two pieces of software, Tomcat and the Adobe thing (which on this list we don't 
know much about).
Both are running, apparently.
And each one of them opens a listening port, apparently.

But these two servers will not "communicate" unless some application in one of them 
decides to establish some communication with the other one, in order to "do something".
Or do you just expect them to start saying "Hello" to eachother and start talking about 
the weather on the WWW ?

So what exactly are you trying to achieve, what have you tried, and what does not work as 
you expect ?




---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org
For additional commands, e-mail: users-help@tomcat.apache.org


Re: Tomcat 6.0 configuration with Adobe LiveCycle DS ES 3.0 Server

Posted by Anshul Asthana <an...@yahoo.com>.



________________________________

From: Pid <pi...@pidster.com>
To: Tomcat Users List <us...@tomcat.apache.org> 
Sent: Friday, 16 December 2011 1:27 AM
Subject: Re: Tomcat 6.0 configuration with Adobe LiveCycle DS ES 3.0 Server

I want to configure Tomcat 6.0  with Adobe LiveCycle DS ES 3.0 Server so that both can communicate with each other. What are the steps and settings I need to configure and How to configure them in Tomcat 6.0.

Tomcat 6.0 uses port no - 8000.
Adobe LiveCycle DS ES 3.0 Server uses port no - 8400.

Regards,
Anshul
On 14 December 2011 22:40, Anshul Asthana <an...@yahoo.com> wrote:
>
>
> From: Pid <pi...@pidster.com>
> To: Anshul Asthana <an...@yahoo.com>
> Sent: Monday, 12 December 2011 4:46 AM
>
> Subject: Re: Tomcat 6.0 configuration with Adobe LiveCycle DS ES 3.0 Server
>
> On 11/12/2011 20:05, Anshul Asthana wrote:
>>
>>
>> *From:* Pid <pi...@pidster.com>
>> *To:* Tomcat Users List <us...@tomcat.apache.org>
>> *Sent:* Sunday, 11 December 2011 4:15 AM
>> *Subject:* Re: Tomcat 6.0 configuration with Adobe LiveCycle DS ES 3.0
>> Server
>>
>> On 10/12/2011 19:36, Anshul Asthana wrote:
>>>
>>>
>>>
>>>
>>> ________________________________
>>>
>>> From: Pid <pid@pidster.com <ma...@pidster.com>>
>>> To: Anshul Asthana <anshul.asthana@yahoo.com
>> <ma...@yahoo.com>>
>>> Sent: Saturday, 10 December 2011 2:26 PM
>>> Subject: Re: Tomcat 6.0 configuration with Adobe LiveCycle DS ES 3.0
>> Server
>>>
>>>
>>> I have gone through the document. Hope we can begin with our goal.
>>>
>>> Regards,
>>> Anshul.
>>>
>>>
>>>
>>>
>>> On 09/12/2011 23:29, Anshul Asthana wrote:
>>>
>>> Please don't top-post.  Put your reply below the question.
>>>
>>>
>>>> *From:* Pid <pid@pidster.com <ma...@pidster.com>>
>>>> *To:* Tomcat Users List <users@tomcat.apache.org
>> <ma...@tomcat.apache.org>>
>>>> *Sent:* Saturday, 10 December 2011 4:36 AM
>>>> *Subject:* Re: Tomcat 6.0 configuration with Adobe LiveCycle DS ES 3.0
>>>> Server
>>>>
>>>> On 09/12/2011 18:52, Anshul Asthana wrote:
>>>>>  Hi,
>>>>>
>>>>>    I want to Configure my Web Server(Tomcat 6.0) so that it can
>>>> communicate with Adobe LiveCycle DS ES 3.0 Server. I want to know how I
>>>> can configure my WebServer Tomcat 6.0. for this.
>>>>>
>>>>> Your early response will be appreciated.
>>>>
>>>> Sorry I couldn't respond sooner.  Could you please read the following
>>>> document:
>>>>
>>>> j.mp/smrtqu
>>>>
>>>>
>>>> Let us know once you've done so & we can begin the next step in the
>> process.
>>>
>>>> Where can I find
>>>>
>>>> j.mp/smrtqu
>>>>
>>>> Regards,
>>>> Anshul
>>>
>>>
>>> My apologies, I neglected to add the 'http://', for your convenience,
>>> here it is:
>>>
>>> http://j.mp/smrtqu
>>>
>>>
>>> p
>>
>> Oops, I should have thought and understood that.
>>
>> I have gone through the document. Hope we can begin with our goal.
>>
>> Regards,
>> Anshul.
>>
>>
>>
>> Yeah...
>>
>> Please also just reply to the mailing list.
>>
>>
>> p
>>
>> Hope we can begin now...
>
>
> Yes.  I think we're ready to begin.
>
>
> p
>
>
> --
>
> [key:62590808]
>
> Am still waitinng for you to begin!!!

Begin what? I'm waiting for you to ask a question.

Please just send email to the Tomcat mailing list.


p

-- 
pidster.com

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org
For additional commands, e-mail: users-help@tomcat.apache.org

Re: Tomcat 6.0 configuration with Adobe LiveCycle DS ES 3.0 Server

Posted by Pid <pi...@pidster.com>.
On 14 December 2011 22:40, Anshul Asthana <an...@yahoo.com> wrote:
>
>
> From: Pid <pi...@pidster.com>
> To: Anshul Asthana <an...@yahoo.com>
> Sent: Monday, 12 December 2011 4:46 AM
>
> Subject: Re: Tomcat 6.0 configuration with Adobe LiveCycle DS ES 3.0 Server
>
> On 11/12/2011 20:05, Anshul Asthana wrote:
>>
>>
>> *From:* Pid <pi...@pidster.com>
>> *To:* Tomcat Users List <us...@tomcat.apache.org>
>> *Sent:* Sunday, 11 December 2011 4:15 AM
>> *Subject:* Re: Tomcat 6.0 configuration with Adobe LiveCycle DS ES 3.0
>> Server
>>
>> On 10/12/2011 19:36, Anshul Asthana wrote:
>>>
>>>
>>>
>>>
>>> ________________________________
>>>
>>> From: Pid <pid@pidster.com <ma...@pidster.com>>
>>> To: Anshul Asthana <anshul.asthana@yahoo.com
>> <ma...@yahoo.com>>
>>> Sent: Saturday, 10 December 2011 2:26 PM
>>> Subject: Re: Tomcat 6.0 configuration with Adobe LiveCycle DS ES 3.0
>> Server
>>>
>>>
>>> I have gone through the document. Hope we can begin with our goal.
>>>
>>> Regards,
>>> Anshul.
>>>
>>>
>>>
>>>
>>> On 09/12/2011 23:29, Anshul Asthana wrote:
>>>
>>> Please don't top-post.  Put your reply below the question.
>>>
>>>
>>>> *From:* Pid <pid@pidster.com <ma...@pidster.com>>
>>>> *To:* Tomcat Users List <users@tomcat.apache.org
>> <ma...@tomcat.apache.org>>
>>>> *Sent:* Saturday, 10 December 2011 4:36 AM
>>>> *Subject:* Re: Tomcat 6.0 configuration with Adobe LiveCycle DS ES 3.0
>>>> Server
>>>>
>>>> On 09/12/2011 18:52, Anshul Asthana wrote:
>>>>>  Hi,
>>>>>
>>>>>    I want to Configure my Web Server(Tomcat 6.0) so that it can
>>>> communicate with Adobe LiveCycle DS ES 3.0 Server. I want to know how I
>>>> can configure my WebServer Tomcat 6.0. for this.
>>>>>
>>>>> Your early response will be appreciated.
>>>>
>>>> Sorry I couldn't respond sooner.  Could you please read the following
>>>> document:
>>>>
>>>> j.mp/smrtqu
>>>>
>>>>
>>>> Let us know once you've done so & we can begin the next step in the
>> process.
>>>
>>>> Where can I find
>>>>
>>>> j.mp/smrtqu
>>>>
>>>> Regards,
>>>> Anshul
>>>
>>>
>>> My apologies, I neglected to add the 'http://', for your convenience,
>>> here it is:
>>>
>>> http://j.mp/smrtqu
>>>
>>>
>>> p
>>
>> Oops, I should have thought and understood that.
>>
>> I have gone through the document. Hope we can begin with our goal.
>>
>> Regards,
>> Anshul.
>>
>>
>>
>> Yeah...
>>
>> Please also just reply to the mailing list.
>>
>>
>> p
>>
>> Hope we can begin now...
>
>
> Yes.  I think we're ready to begin.
>
>
> p
>
>
> --
>
> [key:62590808]
>
> Am still waitinng for you to begin!!!

Begin what? I'm waiting for you to ask a question.

Please just send email to the Tomcat mailing list.


p

-- 
pidster.com

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org
For additional commands, e-mail: users-help@tomcat.apache.org


Re: Tomcat 6.0 configuration with Adobe LiveCycle DS ES 3.0 Server

Posted by Anshul Asthana <an...@yahoo.com>.



________________________________

From: Pid <pi...@pidster.com>
To: Tomcat Users List <us...@tomcat.apache.org> 
Sent: Sunday, 11 December 2011 4:15 AM
Subject: Re: Tomcat 6.0 configuration with Adobe LiveCycle DS ES 3.0 Server


Regards,
Anshul







On 10/12/2011 19:36, Anshul Asthana wrote:
> 
> 
> 
> 
> ________________________________
> 
> From: Pid <pi...@pidster.com>
> To: Anshul Asthana <an...@yahoo.com> 
> Sent: Saturday, 10 December 2011 2:26 PM
> Subject: Re: Tomcat 6.0 configuration with Adobe LiveCycle DS ES 3.0 Server
> 
> 
> I have gone through the document. Hope we can begin with our goal.
> 
> Regards,
> Anshul.
> 
> 
> 
> 
> On 09/12/2011 23:29, Anshul Asthana wrote:
> 
> Please don't top-post.  Put your reply below the question.
> 
> 
>> *From:* Pid <pi...@pidster.com>
>> *To:* Tomcat Users List <us...@tomcat.apache.org>
>> *Sent:* Saturday, 10 December 2011 4:36 AM
>> *Subject:* Re: Tomcat 6.0 configuration with Adobe LiveCycle DS ES 3.0
>> Server
>>
>> On 09/12/2011 18:52, Anshul Asthana wrote:
>>>  Hi,
>>>
>>>    I want to Configure my Web Server(Tomcat 6.0) so that it can
>> communicate with Adobe LiveCycle DS ES 3.0 Server. I want to know how I
>> can configure my WebServer Tomcat 6.0. for this.
>>>
>>> Your early response will be appreciated.
>>
>> Sorry I couldn't respond sooner.  Could you please read the following
>> document:
>>
>> j.mp/smrtqu
>>
>>
>> Let us know once you've done so & we can begin the next step in the process.
> 
>> Where can I find
>>  
>> j.mp/smrtqu
>>
>> Regards,
>> Anshul
> 
> 
> My apologies, I neglected to add the 'http://', for your convenience,
> here it is:
> 
> http://j.mp/smrtqu
> 
> 
> p

Oops, I should have thought and understood that.

I have gone through the document. Hope we can begin with our goal.

Regards,
Anshul.



Yeah...

Please also just reply to the mailing list.


p

Hope we can begin now...

Re: [sidebar] Re: Tomcat 6.0 configuration with Adobe LiveCycle DS ES 3.0 Server

Posted by Pid <pi...@pidster.com>.
On 10/12/2011 23:39, Tim Watts wrote:
> On Sat, 2011-12-10 at 22:45 +0000, Pid wrote:
>> Yeah...
>>
>> Please also just reply to the mailing list.
>>
> Are you referring to this (cough, cough):
>
> 	http://catb.org/~esr/faqs/smart-questions.html#easyreply

:D


> (your Reply-To points to your email not the list).

I can't set the mailing list address as my reply-to, or everyone else I
email will get directed here...

In this reply, I have tried to *unset* the reply-to field in my Gmail
account settings...


p




-- 

[key:62590808]


[sidebar] Re: Tomcat 6.0 configuration with Adobe LiveCycle DS ES 3.0 Server

Posted by Tim Watts <ti...@cliftonfarm.org>.
On Sat, 2011-12-10 at 22:45 +0000, Pid wrote:
> Yeah...
> 
> Please also just reply to the mailing list.
> 
Are you referring to this (cough, cough):

	http://catb.org/~esr/faqs/smart-questions.html#easyreply

(your Reply-To points to your email not the list).

> 
> p
> 
> 
> 
> 
> 
> 
> 


Re: Tomcat 6.0 configuration with Adobe LiveCycle DS ES 3.0 Server

Posted by Pid <pi...@pidster.com>.
On 10/12/2011 19:36, Anshul Asthana wrote:
> 
> 
> 
> 
> ________________________________
> 
> From: Pid <pi...@pidster.com>
> To: Anshul Asthana <an...@yahoo.com> 
> Sent: Saturday, 10 December 2011 2:26 PM
> Subject: Re: Tomcat 6.0 configuration with Adobe LiveCycle DS ES 3.0 Server
> 
> 
> I have gone through the document. Hope we can begin with our goal.
> 
> Regards,
> Anshul.
> 
> 
> 
> 
> On 09/12/2011 23:29, Anshul Asthana wrote:
> 
> Please don't top-post.  Put your reply below the question.
> 
> 
>> *From:* Pid <pi...@pidster.com>
>> *To:* Tomcat Users List <us...@tomcat.apache.org>
>> *Sent:* Saturday, 10 December 2011 4:36 AM
>> *Subject:* Re: Tomcat 6.0 configuration with Adobe LiveCycle DS ES 3.0
>> Server
>>
>> On 09/12/2011 18:52, Anshul Asthana wrote:
>>>   Hi,
>>>
>>>     I want to Configure my Web Server(Tomcat 6.0) so that it can
>> communicate with Adobe LiveCycle DS ES 3.0 Server. I want to know how I
>> can configure my WebServer Tomcat 6.0. for this.
>>>
>>> Your early response will be appreciated.
>>
>> Sorry I couldn't respond sooner.  Could you please read the following
>> document:
>>
>> j.mp/smrtqu
>>
>>
>> Let us know once you've done so & we can begin the next step in the process.
> 
>> Where can I find
>>   
>> j.mp/smrtqu
>>
>> Regards,
>> Anshul
> 
> 
> My apologies, I neglected to add the 'http://', for your convenience,
> here it is:
> 
> http://j.mp/smrtqu
> 
> 
> p

Oops, I should have thought and understood that.

I have gone through the document. Hope we can begin with our goal.

Regards,
Anshul.



Yeah...

Please also just reply to the mailing list.


p








Re: Tomcat 6.0 configuration with Adobe LiveCycle DS ES 3.0 Server

Posted by Anshul Asthana <an...@yahoo.com>.

Where can I find 
 
j.mp/smrtqu

Regards,
Anshul

________________________________
From: Pid <pi...@pidster.com>
To: Tomcat Users List <us...@tomcat.apache.org> 
Sent: Saturday, 10 December 2011 4:36 AM
Subject: Re: Tomcat 6.0 configuration with Adobe LiveCycle DS ES 3.0 Server

On 09/12/2011 18:52, Anshul Asthana wrote:
>  Hi,
>  
>    I want to Configure my Web Server(Tomcat 6.0) so that it can communicate with Adobe LiveCycle DS ES 3.0 Server. I want to know how I can configure my WebServer Tomcat 6.0. for this.
>  
> Your early response will be appreciated. 

Sorry I couldn't respond sooner.  Could you please read the following
document:

j.mp/smrtqu


Let us know once you've done so & we can begin the next step in the process.


p


-- 

[key:62590808]

Re: Tomcat 6.0 configuration with Adobe LiveCycle DS ES 3.0 Server

Posted by Pid <pi...@pidster.com>.
On 09/12/2011 18:52, Anshul Asthana wrote:
>  Hi,
>  
>    I want to Configure my Web Server(Tomcat 6.0) so that it can communicate with Adobe LiveCycle DS ES 3.0 Server. I want to know how I can configure my WebServer Tomcat 6.0. for this.
>  
> Your early response will be appreciated. 

Sorry I couldn't respond sooner.  Could you please read the following
document:

 j.mp/smrtqu


Let us know once you've done so & we can begin the next step in the process.


p


-- 

[key:62590808]