Hi,

I'm a Spring IDE newbie trying to use Spring IDE to link two spring beans (publisher and consumer) to a thin Websphere 6.1 client. I can link to the thin client using spring beans in a .bat file (outside of eclipse) but don't know how to configure Spring-IDE to run the beans internally - what do I launch? where do i go from here?

Here is the batch file
@echo off

call "%WAS_HOME%\bin\setupCmdline.bat"

set ED=".\lib"
set ED=%ED%;%WAS_EXT_DIRS%
set ED=%ED%;%WAS_HOME%\plugins
set ED=%ED%;%WAS_HOME%\java\lib
set ED=%ED%;%WAS_HOME%\java\jre\lib
set ED=%ED%;%WAS_HOME%\java\jre\lib\ext

"%JAVA_HOME%\bin\java" "-Djava.ext.dirs=%ED%" -cp "%WAS_CLASSPATH%;." neo.utilities.Spring.SpringMain spring-context/SimpleConsumer.xml

The bean files work using the batch file but I'm stymied on how to point the bean files to the thin client.

Thanks in advance
Monte