Commit Log (Page 4 of 4)

back to main page

Pages: << Previous 1 2 3 4

Summary Period: 2003-07-24 to 2003-07-02 (Commits 1-43 of 343)

mdarcy
7/24/03 9:26 PM
fixed ogsi.gwsdl import copy problem in build file when building against ogsa-3.0 dist dir
1 lines of code changed in:
server/build.xml (+1 -1)

johnsone
7/24/03 6:16 AM
one more
5 lines of code changed in:
matlab/test_mplugin/testing/test.m (+5 -5)

johnsone
7/24/03 6:14 AM
add to repository (partial) MATLAB NTCP client and MATLAB Mplugin backend test
test_client/BasicTest.m and test_mplugin/eventloop.m can carry out a full
session talking through the server.
-- Propose, Execute, Cancel client methods not yet done.
-- Not yet tested on Windoze
-- not yet tested on separate machines
71 lines of code changed in:
matlab: NTCP_OpenSession.m (new 10), serialize.m (new 0), serialize_test.m (new 0), @cell/serialize.m (new 0), @char/serialize.m (new 0), @logical/serialize.m (new 0), @sparse/serialize.m (new 0), @struct/serialize.m (new 0), test_client/BasicTest.m (new 18)
matlab/@NTCP_Server: NTCP_CloseSession.m (new 0), NTCP_GetParam.m (new 0), NTCP_OpenSession.m (new 0), NTCP_Server.m (new 11), NTCP_SetParam.m (new 0), private/ntcpchar.m (new 0)
matlab/test_mplugin: eajLog.m (new 6), eventloop.m (new 21), eventloop_remote.m (new 0), fakeExecute.m (new 0), returnControlPoints.m (new 0), setparams.m (new 0)
matlab/test_mplugin/testing: eventloop_testthread.m (new 0), old_matlab_commands (new 0), test.m (new 5)

johnsone
7/24/03 4:08 AM
same as before, but retrieve the first one, not last
1 lines of code changed in:
server/src/org/nees/ntcp/server/impl/NtcpServerImpl.java (+1)

pearlman
7/24/03 4:00 AM
Once more, with feeling.
1 lines of code changed in:
server/src/org/nees/ntcp/server/impl/NtcpServerImpl.java (+1 -1)

pearlman
7/24/03 3:44 AM
Same change as before, but hopefully it will work this time.
5 lines of code changed in:
server/src/org/nees/ntcp/server/impl/NtcpServerImpl.java (+5 -4)

pearlman
7/24/03 3:07 AM
Sanity-check plugin getParam results.
7 lines of code changed in:
server/src/org/nees/ntcp/server/impl/NtcpServerImpl.java (+7 -3)

mdarcy
7/24/03 3:03 AM
fixed up server tests, did not renable all of them as there are still a few failing, they can be run individually in with junit though
48 lines of code changed in:
server/src/org/nees/ntcp/server: impl/NtcpServerImpl.java (+1 -1), util/NtcpHelper.java (+1 -1)
server/src/org/nees/ntcp/server/impl/test: PackageTests.java (+10), TimeoutTest.java (+9 -20), TransactionDataTest.java (+11 -15)
server/src/org/nees/ntcp/server/state/test: NtcpTestUtils.java (+8 -5), NtcpTransactionTest.java (+8 -32)

johnsone
7/24/03 2:46 AM
correct bug causing parameter returned by backend to be overridden by what the server had stored for it
4 lines of code changed in:
server/src/org/nees/ntcp/server/impl/NtcpServerImpl.java (+4 -3)

mdarcy
7/23/03 11:04 PM
oops, setting the default to BasicTestConfig
1 lines of code changed in:
server/test.properties (+1 -1)

mdarcy
7/23/03 10:33 PM
added mechanism for specifying the TestConfig for the server BasicTest at config time via a test.properties file.
added two new test configs: MatlabTestConfig and ShorewesternTestConfig with appropriate parameters for each, based on input from Erik and Ravi.
fixed basic test so that the cancel() call would log any exception, allowing the test to continue
220 lines of code changed in:
server: build.xml (+1 -1), test.properties (new 1)
server/src/org/nees/ntcp/server/impl/test: BasicTest.java (+44 -4), BasicTestConfig.java (+2 -7), MatlabTestConfig.java (new 86), PackageTests.java (+4 -3), ShorewesternTestConfig.java (new 82)

mdarcy
7/23/03 4:51 PM
some more changes to test parameters based on Erik's input
2 lines of code changed in:
server/src/org/nees/ntcp/server/impl/test/BasicTestConfig.java (+2 -2)

mdarcy
7/23/03 2:49 PM
tweaked BasicTest parameters a little for Erik and Ravi's test cases
7 lines of code changed in:
server/src/org/nees/ntcp/server/impl/test/BasicTestConfig.java (+7 -6)

mdarcy
7/23/03 1:32 AM
added output SOAP message definitions back for all methods that did not have them - gets around wierd issue (or feature) with axis where methods invoked without output message handlers return immediately and execute asynchronously
now, each server method will properly block, regardless of return value, until the plugin either completes the underlying function or the client timeouts waiting for a response from the server
37 lines of code changed in:
server/schema/nees/ntcp/ntcp_server_port_type.gwsdl (+37 -1)

mdarcy
7/23/03 12:07 AM
fixed duplicated call to setUp when running test under Junit
3 lines of code changed in:
server/src/org/nees/ntcp/server/impl/test/BasicTest.java (+3 -3)

mdarcy
7/22/03 2:15 AM
added some more code to server to guard against nulls when parsing config
added Thread.sleep() to many DummyControlPlugin methods to simulate method invokation and timeouts
modified BasicTest to be a single test so that all methods are called in the proper order
89 lines of code changed in:
server/src/org/nees/ntcp/server/backend/test/DummyControlPlugin.java (+32 -3)
server/src/org/nees/ntcp/server/impl: NtcpServerImpl.java (+7 -6), test/BasicTest.java (+50 -33)

mdarcy
7/22/03 12:07 AM
added getConfigPropertyNames() method to ControlPluginFactory so that plugins can specify plugin specific properties for the server to look up in server-config.wsdd - any property name returned by the plugin in this call which matches an existing property in the server-config will be placed in the properties map parameter that is passed to the plugin factory's createInstance call
modified the server impl to lookup the additional config params now specified by the plugin
added mechanism in basic test so that a test config can specify which parameters to use for the get/set parameter tests - modified BasicTest to use the stiffness matrix parameter "K" as the sample parameter to use for get/set param tests
44 lines of code changed in:
server/src/org/nees/ntcp/server/impl/NtcpServerImpl.java (+18 -6)
server/src/org/nees/ntcp/server/backend: ControlPluginFactory.java (+10 -1), test/DummyControlFactory.java (+10 -1)
server/src/org/nees/ntcp/server/impl/test: BasicTest.java (+2 -2), BasicTestConfig.java (+3 -2), TestConfig.java (+1 -1)

pearlman
7/19/03 2:35 AM
Added markTerminated method (to be called by a plugin if a propose or
execute fails).
14 lines of code changed in:
server/src/org/nees/ntcp/server: backend/ControlPluginTransactionHandle.java (+5), state/NtcpTransaction.java (+9)

mdarcy
7/18/03 8:52 PM
fixed build file so that tests would be included in jar by default
2 lines of code changed in:
server: build.properties (+1 -1), build.xml (+1 -1)

mdarcy
7/18/03 8:37 PM
added getTransaction() and getParameters() findServiceData calls to NtcpHelper
updated basic test to reflect new functions in NtcpHelper
minor relocation of service properties lookup code in server impl
142 lines of code changed in:
server/src/org/nees/ntcp/server/util/NtcpHelper.java (+82 -4)
server/src/org/nees/ntcp/server/impl: NtcpServerImpl.java (+16 -20), test/BasicTest.java (+44 -1)

mdarcy
7/16/03 11:50 AM
added properties parameter to ControlPluginFactory
90 lines of code changed in:
server/src/org/nees/ntcp/server/backend: ControlPluginFactory.java (+10 -8), test/DummyControlFactory.java (+5 -2)
server/src/org/nees/ntcp/server/impl: NtcpServerImpl.java (+35 -3), test/PackageTests.java (+40 -34)

pawel
7/15/03 5:36 PM
more util code
7 lines of code changed in:
server/src/org/nees/ntcp/server/util/NtcpHelper.java (+7)

mdarcy
7/15/03 12:23 PM
reverted ControlPluginTransactionHandle and LocalControlPlugin interfaces to use vector return types and vector parameter types
modified corresponding server components and test components to reflect this change
removed NtcpParameterHelper and moved its functionality into NtcpHelper.java
added arrayToVector conversion helper routines for ControlPointType and ParameterType into NtcpHelper.java
83 lines of code changed in:
server/src/org/nees/ntcp/server/backend: ControlPluginTransactionHandle.java (+5 -3), LocalControlPlugin.java (+7 -10), test/DummyControlPlugin.java (+5 -4)
server/src/org/nees/ntcp/server/impl: NtcpServerImpl.java (+3 -3), test/BasicTestConfig.java (+6 -6)
server/src/org/nees/ntcp/server/state: NtcpTransaction.java (+25 -15), test/NtcpTransactionTest.java (+8 -5)
server/src/org/nees/ntcp/server/util: NtcpHelper.java (+24 -1), NtcpParameterHelper.java (del)

mdarcy
7/14/03 3:34 AM
integrated state machine code and backend code into server
added getParameter and setParameter to server PortType interface and NtcpHelper
modified BasicTest so that it would attempt only one propose->exec->cancel sequence
added "ntcpBackendFactory" parameter into ntcp server deployment descriptor in server-config.wsdd - this paramter specifies the FQ java class name of the backend factory to use, the server will attempt to locate and load this file at startup
changed LocalControlPlugin interfaces to use arrays of stub types rather than vector wrappers
added DummyControlFactory class for DummyControlPlugin test
428 lines of code changed in:
server: ntcp-server-config.wsdd (+1), schema/nees/ntcp/ntcp_server_port_type.gwsdl (+27 -2)
server/src/org/nees/ntcp/server: state/NtcpTransaction.java (+1 -1), util/NtcpHelper.java (+15)
server/src/org/nees/ntcp/server/backend: LocalControlPlugin.java (+10 -7), ServerStateAccessor.java (+3 -2)
server/src/org/nees/ntcp/server/backend/test: DummyControlFactory.java (new 45), DummyControlPlugin.java (+45 -15)
server/src/org/nees/ntcp/server/impl: NtcpServerImpl.java (+270 -26), test/BasicTest.java (+11 -27)

mdarcy
7/12/03 1:51 AM
fixed serialization issue for ParameterType complex type - minor gsdl change required - should not impact client(s) or plugins(s)
added convenience class for ParameterType
fixed up basic test
added simple compile-time configurable approach for testing - pretty much just another convenience class
286 lines of code changed in:
server/schema/nees/ntcp/ntcp_server_port_type.gwsdl (+9 -9)
server/src/org/nees/ntcp/server: backend/ControlPluginTransactionHandle.java (+3 -5), impl/NtcpServerImpl.java (+11 -7), state/NtcpTransaction.java (+29 -28)
server/src/org/nees/ntcp/server/impl/test: BasicTest.java (+59 -46), BasicTestConfig.java (new 86), TestConfig.java (new 32)
server/src/org/nees/ntcp/server/state/test: NtcpTestUtils.java (+31 -6), NtcpTransactionTest.java (+8 -19)
server/src/org/nees/ntcp/server/util: NtcpHelper.java (+18 -1), NtcpParameterHelper.java (new 0)

pearlman
7/11/03 7:10 PM
Noticed that TimeoutTest.testTransactionTimeout() wouldn't work as
expected (the server rejects proposals if the transaction timeout is
earlier than the propose timeout, or the state timeout ("rememberedUntil")
is earlier than the transaction timeout. Fixed it and threw in some
additional tests.
102 lines of code changed in:
server/src/org/nees/ntcp/server/impl/test: OutOfSyncTest.java (+28 -1), TimeoutTest.java (+74 -15)

pawel
7/11/03 1:43 PM
fixed last commit
5 lines of code changed in:
server/src/org/nees/ntcp/server/backend/ServerStateAccessor.java (+5 -18)

pawel
7/11/03 1:32 PM
removed old data types
0 lines of code changed in:
server/src/org/nees/ntcp/server/impl: ControlPoint.java (del), NtcpParameter.java (del)

mdarcy
7/10/03 1:40 AM
fixed basic test so that it uses ControlPointType that actually has some parameters
serialization/deserialization successful
added log4j.properties file
71 lines of code changed in:
server: log4j.properties (new 42), src/org/nees/ntcp/server/impl/test/BasicTest.java (+29 -14)

mdarcy
7/9/03 3:38 AM
minor schema changes
updated NtcpHelper and test cases to reflect schema changes
basic test case runs and fails as expected
serialization/deserialization of complex types appears to be working in the basic test, but is not thoroughly tested in other places
850 lines of code changed in:
server/schema/nees/ntcp/ntcp_server_port_type.gwsdl (+53 -69)
server/src/org/nees/ntcp/server: impl/NtcpServerImpl.java (+18 -37), state/NtcpTransaction.java (+7 -5), util/NtcpHelper.java (+104 -123)
server/src/org/nees/ntcp/server/backend: ControlPluginTransactionHandle.java (+1 -1), LocalControlPlugin.java (+49 -49)
server/src/org/nees/ntcp/server/impl/test: BasicTest.java (+96 -185), OutOfSyncTest.java (+118 -130), PackageTests.java (+3 -2), TimeoutTest.java (+138 -131), TransactionDataTest.java (+151 -133)
server/src/org/nees/ntcp/server/state/test: NtcpControlPointTest.java (+21 -13), NtcpTestUtils.java (+16 -11), NtcpTransactionTableTest.java (+13 -6), NtcpTransactionTest.java (+62 -40)

pearlman
7/8/03 11:22 PM
Change getProposeRequestorCredentials to getProposerCredentials.
1 lines of code changed in:
server/src/org/nees/ntcp/server/state/NtcpTransaction.java (+1 -1)

pearlman
7/8/03 11:18 PM
Have setResultingcontrolPoints throw an exception. Also some cosmetic changes:
rename getProposeRequestorCredentials to getProposerCredentials and clean up
some of the comments.
26 lines of code changed in:
server/src/org/nees/ntcp/server/backend/ControlPluginTransactionHandle.java (+26 -13)

pawel
7/8/03 3:34 PM
added cpoint and parameter
67 lines of code changed in:
server/src/org/nees/ntcp/server/backend/LocalControlPlugin.java (+49 -46)
server/src/org/nees/ntcp/server/impl: ControlPoint.java (+18 -2), NtcpParameter.java (new 0)

pearlman
7/7/03 8:58 PM
Made NtcpTransactionTest implement ...backend.ControlPluginTransactionHandle.
Added more test cases.
174 lines of code changed in:
server/src/org/nees/ntcp/server/state: NtcpTransaction.java (+19 -9), README (+8 -4)
server/src/org/nees/ntcp/server/state/test: NtcpControlPointTableTest.java (new 44), NtcpTransactionTableTest.java (+86), NtcpTransactionTest.java (+17 -10)

mdarcy
7/7/03 8:31 PM
added basic working ntcp server skeleton impl
relocated schema gwsdl file to schema/nees/ntcp for cleaner deployment
added build targets into build file: jar, gar, deployGar, undeploy, test, toUnix
ran toUnix to remove windows carriage returns in some files
895 lines of code changed in:
server: build.xml (+186 -24), ntcp-server-config.wsdd (new 21), schema/ntcp_server_port_type.gwsdl (del)
server/schema/nees/ntcp: NStoPkg.properties.NTCP (new 4), ntcp_server_port_type.gwsdl (new 268)
server/src/org/nees/ntcp/server: impl/NtcpServerImpl.java (new 143), util/NtcpHelper.java (+4 -3)
server/src/org/nees/ntcp/server/backend: LocalControlPlugin.java (+46 -46), LocalPolicyPlugin.java (+76 -76), PluginInvocationReturnValue.java (+122 -122), ServerStateAccessor.java (+25 -25)

pawel
7/7/03 2:43 PM
added openSession and closeSession to backend; execute returns void
19 lines of code changed in:
server/src/org/nees/ntcp/server/backend: LocalControlPlugin.java (+12 -2), test/DummyControlPlugin.java (+7 -2)

pearlman
7/7/03 5:30 AM
Moved the actual table access stuff to Underlying(*)Table.
51 lines of code changed in:
server/src/org/nees/ntcp/server/state: NtcpControlPointTable.java (+5 -3), NtcpTransactionTable.java (+4 -3), UnderlyingHashTable.java (new 24), UnderlyingTable.java (new 18)

pearlman
7/7/03 4:34 AM
Added classes to handle transaction and control point state.
1206 lines of code changed in:
server/src/org/nees/ntcp/server/state: DuplicateTransactionNameException.java (new 12), NtcpControlPoint.java (new 66), NtcpControlPointTable.java (new 38), NtcpState.java (new 9), NtcpTransaction.java (new 258), NtcpTransactionTable.java (new 80), README (new 34)
server/src/org/nees/ntcp/server/state/test: NtcpControlPointTest.java (new 141), NtcpTestUtils.java (new 42), NtcpTransactionTableTest.java (new 80), NtcpTransactionTest.java (new 446)

pearlman
7/7/03 3:47 AM
- Changed OpenSession to take arbitrary parameters.
- In transaction service data, added transactionExecutionBeginTime and
transactionExecutionTerminationTime.
- Renamed ControlPointParameterType to ControlPointGeomParameterType, and
moved extensibility element from that type to ControlPointType.
- In propose arguments, made stepNumber optional.
11 lines of code changed in:
server/schema/ntcp_server_port_type.gwsdl (+11 -16)

pawel
7/2/03 3:11 PM
added sources of backend (plugin) interface
2262 lines of code changed in:
server: build.xml (+13), lib/junit.jar (new 819)
server/src/org/nees/ntcp/server: impl/ControlPoint.java (new 2), util/NtcpHelper.java (new 135)
server/src/org/nees/ntcp/server/backend: ControlPluginException.java (new 27), ControlPluginFactory.java (new 19), ControlPluginTransactionHandle.java (new 27), ControlPluginTransactionListener.java (new 15), LocalControlPlugin.java (new 36), LocalPolicyPlugin.java (new 76), LocalPolicyPluginTransactionHandle.java (new 26), PluginInvocationReturnValue.java (new 122), ServerStateAccessor.java (new 25), test/DummyControlPlugin.java (new 40)
server/src/org/nees/ntcp/server/impl/test: BasicTest.java (new 204), OutOfSyncTest.java (new 149), PackageTests.java (new 45), TestServer.java (new 185), TimeoutTest.java (new 148), TransactionDataTest.java (new 149)

pawel
7/2/03 10:34 AM
added reference service data definition to the schema.
65 lines of code changed in:
server: build.properties (+1 -1), schema/ntcp_server_port_type.gwsdl (+64 -1)

pawel
7/2/03 10:01 AM
added parameter types to methods in the schema
79 lines of code changed in:
server/schema/ntcp_server_port_type.gwsdl (+79 -75)

pawel
7/2/03 8:08 AM
Initial revision
162 lines of code changed in:
server: build.properties (new 1), build.xml (new 86), schema/ntcp_server_port_type.gwsdl (new 75)

Pages: << Previous 1 2 3 4


Generated by StatCvs v0.1.3