Hi All,
Is it correct to assume that beforeChunk and afterChunk will always be called during retry processing?
Also, just want to confirm that if an exception is raised during write, than...
Type: Posts; User: dsklyut; Keyword(s):
Hi All,
Is it correct to assume that beforeChunk and afterChunk will always be called during retry processing?
Also, just want to confirm that if an exception is raised during write, than...
Christian,
Just pulled down 2.3.3.M2 and the problem still there. Will try to install into a clean workspace. And check back.
eclipse.buildId=2.3.3.201007151000-M2
java.version=1.6.0_20...
Here is one of the info from error view
eclipse.buildId=I20100608-0911
java.version=1.6.0_20
java.vendor=Apple Inc.
BootLoader constants: OS=macosx, ARCH=x86, WS=cocoa, NL=en_US
Framework...
Hi,
I managed to install sts into 3.6 following instructions pointed from the blog.
All is working great so far (including an update today).
One issue that I constantly see is:
With Lists you should try @Resource. @Autowired has issues with generified lists.
This might sound a bit silly - but is there a way to cleanly add/remove extra JobExecutionListeners to the job programmatically?
My use case is such:
OSGi dm-server. Bundle A - bunch of SI...
Sorry, misread your original query.
I would say it depends :)...
With OSGi you have to be careful with class space. So if there are any types in the headers or payload that might be specific...
Not sure if that will work for you, but try adding
Import-Template: *;version="0"
Have not tested that, but it "should" resolve to the highest version and get rid of the warnings.
You add a Import-Template that add a version to packages with warnings.
You can't disable warnings otherwise.
http://static.springsource.org/s2-bundlor/1.0.x/user-guide/html/ch05s02.html
If there is a bean with "errorChannel" (IntegrationContextUtils.ERROR_CHANNEL_BEAN_NAME) name defined in context, default error channel will not be created.
I think "_" is a tough choice - I have seen it used to designate "internal" header attributes previously.
Maybe "_si_" - this should be unique enough me thinks.
Created : http://jira.springframework.org/browse/INT-1082
I did not get a chance to debug through the logging code. I noticed that you are logging at the "error" level. dm-server root logger is at the warn level that is the reason I saw log output in the...
Hi,
SI 2.0.0.M3. Tried to set-up transformer with
@Transformer
public Resource transform(Object payload,
@Header(value = FileHeaders.FILENAME, required...
I should have mentioned that this is on 2.0.0.M3.
Just to be sure I understand this whole thing properly:
Gateway will create a temporary "replyMessageCorrelator" with the default replyChannel...
Hi Oleg,
Tried that already (bottom of the original post).
Get this exception:
Caused by: java.lang.IllegalStateException: Bridge handler requires an output channel
at...
Ok, you right :).
This is what I did in logback.xml:
<logger level="DEBUG" additivity="false" name="com.log.test">
<appender-ref ref="STDOUT"/>
<appender-ref...
Hi,
I have the following set-up:
<si:channel id="receiveChannel"/>
<si:channel id="replyChannel"/>
<si:gateway id="gateway" service-interface="...Gateway"
I think you should place your logback.xml into src/main/resources.
You have at the top of the maven project and it will never get included in the jar that maven generates.
Give that a try.
Have you tried modifying serviceability.xml? Is there some reason why you don't want to do it?
You can package your logback.xml in the root of your bundle and com.springsource.osgi.medic code...
What was the branch that 2.0.1 is based on in git? master or 2.0.x?
We needed to add few features that depend on kernel to the code and would like to port those with update.
How about this:
<bean id="broker" class="org.apache.activemq.xbean.XBeanBrokerService">
<property name="transportConnectorURIs">
<list>
...
With OSGi and activemq config, I found that using ActiveMQ schema causes more issues than benefit.
I believe it is using XBean, and xbean is trying to be a classloader when it grows up and does...
What do you mean by "simple web app"?
Did you create manifest.mf with imports necessary?
i.e....
You will need to add Import-Package headers to you MANIFEST.MF
Import-Package: org.slf4j
Make sure that logback, and slf4j are not included in WEB-INF/lib. Those libraries will be...