Gary Russell
7d6babbacf
Documentation for recent features (serializable payloads, local-address, close option).
2010-05-31 17:53:55 +00:00
Gary Russell
5775fab7b1
INT-1151 Ensure server side of socket is closed whenever client closes (avoid CLOSE_WAIT status on sockets)
2010-05-31 17:51:36 +00:00
Gary Russell
c578fdbbc7
More "just in case" timeouts on test threads (server socket accept)
2010-05-31 14:44:28 +00:00
Gary Russell
1717984d80
Typo in schema comment for local-address
2010-05-31 14:19:58 +00:00
Gary Russell
0bd31e5fa2
Add socket timeouts to the test case sockets "just in case" something goes wrong, so we don't hang the test threads.
2010-05-31 13:58:24 +00:00
Gary Russell
7a139a10a7
TCP Outbound gateway - force socket close on error receiving response; eliminate stack traces from expected exceptions on buffer overflow tests
2010-05-30 20:23:15 +00:00
Gary Russell
ec81a83ef0
*Really* remove auto detection of interface to use.
2010-05-30 19:19:11 +00:00
Gary Russell
e76fb34ed4
@Ignore multicast tests; remove auto-detected interface from unicast tests
2010-05-30 19:12:42 +00:00
Gary Russell
9fef40f179
INT-1149 Support the specification of a network interface via local-address attribute on inbound endpoints and outbound UDP adapter. Docs to follow.
2010-05-30 18:54:50 +00:00
Gary Russell
4fa1483e42
INT-1150 Support java serialization over TCPNet* adapters and Simple TCP gateways.
2010-05-29 16:56:50 +00:00
Gary Russell
3b7696449b
INT-1146 close on inbound adapter should close socket regardless of success of channel send
2010-05-28 22:25:05 +00:00
Gary Russell
f6ac5c61bb
Fix timing problem on UDP test case (send before ready to receive)
2010-05-28 21:56:22 +00:00
Gary Russell
8119caa249
INT-1145 INT-1146 Add 'close' attribute to tcp gateways and inbound adapters
2010-05-28 21:55:36 +00:00
Chris Beams
af2eafabbe
more minor tweaks; still experience some issues with deploying loanshark to tomcat within STS
2010-05-28 18:13:24 +00:00
Chris Beams
e35037dedb
eclipse metadata changes after import into STS
2010-05-28 18:13:20 +00:00
Chris Beams
1ea7e22171
eliminated <repositories> section from parent pom; using non-central repos only when and where absolutely necessary, and documenting their necessity explicitly. project was built against an empty local maven repo with success.
2010-05-28 18:13:12 +00:00
Chris Beams
82515f8f1e
first fully working and integrated mvn install
2010-05-28 18:13:05 +00:00
Chris Beams
5c77f08fa9
now producing exact same assembly structure and content as M4 distribution zip. see src/assembly/distribution.xml and src/main/scripts/build-distribution.sh
2010-05-28 05:44:04 +00:00
Chris Beams
c709590c2d
added changelog, license, readme, and notice text files back to the project
2010-05-27 13:14:30 +00:00
Chris Beams
1ed1bbea6c
updated distributionManagement settings to prepare for mvn deploy
2010-05-27 13:14:24 +00:00
Chris Beams
ca29012d2b
removing and svn:ignoring .springBeans files
2010-05-27 07:38:12 +00:00
Mark Fisher
45eb7f6555
updated to 1.6 runtime
2010-05-26 20:55:44 +00:00
Chris Beams
5563c0b5af
adding missing src/(test|main)/resources directories with .svnignore files to avoid empty-dir-pruning by svn
2010-05-26 14:27:42 +00:00
Chris Beams
30faa186c9
updated svn:ignore on all modules to include 'target' directory
2010-05-26 14:21:17 +00:00
Josh Long
a6ed81ffbe
updated the pom.xml file
2010-05-26 03:33:24 +00:00
Chris Beams
d2dab0b7c0
added instruction to emit warnings on redundant casts
2010-05-25 23:18:36 +00:00
Chris Beams
e5219dfe8f
eliminated all compiler warnings throughout all projects
...
updated pom to emit compiler warnings so that any new ones become obvious
added serialVersionUID to classes that could reasonably need to be serialized (GenericMessage, MessageHeaders, etc)
@SuppressWarnings("serial") on all others
@SuppressWarnings("unused") on private static classes used as spring beans for testing (their methods never get called from java)
eliminated all redundant casting
introducted generics metadata where raw types were still being used
changed public API on several FactoryBeans (by adding <Type> information to 'implements FactoryBean' clause)
2010-05-25 23:18:25 +00:00
Chris Beams
8599343832
removing empty org.springframework.integration.* directories
2010-05-25 16:27:13 +00:00
Chris Beams
47b91dc7fd
removed all build.xml and ivy.xml files
2010-05-25 13:22:00 +00:00
Chris Beams
c08a7a657e
renamed modules org.springframework.integration.* -> spring-integration-*
...
@Ignore'd SimpleTcpNetOutboundGatewayTests#testOutboundClose() to avoid failure; this failure is correlated to the module name change, but hard to understand how it would be caused by it
2010-05-25 13:21:25 +00:00
Chris Beams
b97b2fb090
removed spring build artifacts and externals
2010-05-25 12:12:41 +00:00
Mark Fisher
41e55caf36
INT-1148 Added test for independent ThreadLocalChannel instances after changes in https://fisheye.springsource.org/changelog/spring-integration/?cs=3205
2010-05-24 19:08:23 +00:00
Chris Beams
d9123c968d
removed exclusion for PropertyPlaceholderConfigurer
2010-05-24 17:51:22 +00:00
Chris Beams
f1b9b1b51d
added spring-javadoc css for s2 green L&F; updated pom to reflect; removed old javadoc L&F
2010-05-24 17:51:21 +00:00
Gary Russell
0e2d4acd61
INT-1145 Remove timing hole in test case where the "server" had not yet closed the socket before we attempted to send the next message.
2010-05-24 17:08:30 +00:00
Mark Fisher
0fb845ed4d
made the ThreadLocalMessageHolder non-static
2010-05-24 15:57:50 +00:00
Mark Fisher
b90061bf47
updated POM descriptions to be consistent with 'Support'
2010-05-24 14:52:34 +00:00
Mark Fisher
57eddef9d9
renamed MultiMethodGatewayConfig to MultiMethodGatewayConfigTests
2010-05-24 14:50:39 +00:00
Gary Russell
89705c4fe0
INT-1145 Retry Write After Socket Close and Clean up Reader in o/b Gateway
2010-05-24 14:36:09 +00:00
Mark Fisher
a2c70f53fb
renamed RegexUtilsTest to RegexUtilsTests
2010-05-24 14:28:56 +00:00
Mark Fisher
9540eaf508
renamed AbstractReplyProducingMessageHandlerTest to AbstractReplyProducingMessageHandlerTests
2010-05-24 14:25:57 +00:00
Mark Fisher
00886c6f67
renamed AggregateMessageDeliveryExceptionTest to AggregateMessageDeliveryExceptionTests
2010-05-24 14:24:24 +00:00
Mark Fisher
ba7c600d7e
renamed ConstructorAutowireTest to ConstructorAutowireTests
2010-05-24 14:22:42 +00:00
Mark Fisher
9cf953c677
renamed AggregationResendTest to AggregationResendTests
2010-05-24 14:18:48 +00:00
Mark Fisher
25849540ae
renamed RecursiveLeafOnlyDirectoryScannerTest to RecursiveLeafOnlyDirectoryScannerTests
2010-05-24 14:15:46 +00:00
Mark Fisher
819ae54905
updated configuration of bean in separate test that depended on MockHandlerTests (just renamed from MockHandlerTest)
2010-05-24 14:04:01 +00:00
Mark Fisher
d8c1d01f3c
renamed MockHandlerTest to MockHandlerTests
2010-05-24 13:56:25 +00:00
Mark Fisher
c4167b1939
renamed PNamespaceTest to PNamespaceTests
2010-05-23 15:12:57 +00:00
Gary Russell
dfe7f06d5d
Change name in ip pom.xml from 'Spring Integration UDP Adapters' to 'Spring Integration TCP and UDP Support'
2010-05-22 20:23:30 +00:00
Chris Beams
57ab060e23
temporarily re-adding spring-integration-reference to keep the nightly ant build happy
2010-05-21 10:22:00 +00:00