butek 02/02/19 07:37:12
Modified:java/test/wsdl Wsdl2javaTestSuite.xml
java/test/wsdl/literal SalesRankNPrice_ServiceTestCase.java
java/test/wsdl/roundtrip RoundtripTestServiceTestCase.java
Removed: java/test/wsdl/roundtrip Roundtrip.wsdl
Log
butek 02/02/20 05:55:20
Modified:java/src/org/apache/axis/client Stub.java
java/src/org/apache/axis/wsdl/toJava JavaStubWriter.java
Log:
Added set/getTimeout to stubs since we've got those methods on Call.
Revision ChangesPath
1.4 +15 -0
butek 02/02/20 06:11:17
Modified:java/src/org/apache/axis/client Service.java
Log:
These fields are made transient for Serializable use.
Revision ChangesPath
1.43 +3 -3 xml-axis/java/src/org/apache/axis/client/Service.java
Index: Service.java
butek 02/02/20 08:49:53
Modified:java/src/org/apache/axis/client Stub.java
java/src/org/apache/axis/wsdl/toJava JavaStubWriter.java
Log:
Make type mapping registration in the stubs thread safe.
Revision ChangesPath
1.5 +16 -0 xml-axis/java/src
butek 02/02/21 06:33:58
Modified:java/src/org/apache/axis/deployment/wsdd
WSDDTypeMapping.java
Log:
Fix a bug and be consistent. Use the class loader everywhere Class.forName is
used. Contributed by Greg Truty.
Revision ChangesPath
1.24
butek 02/02/21 11:11:27
Modified:java/test/wsdl/interop3/groupE/client
InteropTestListServiceTestCase.java
Log:
List is a bean. It is translated to WSDL as:
Note the tag (NOT ). means there'
butek 02/02/22 10:51:50
Modified:java/test/wsdl Wsdl2javaTestSuite.xml
java/test/wsdl/interop3 Import2TestCase.java
Log:
Added interop round 3 absolute import2 test.
Revision ChangesPath
1.78 +40 -0 xml-axis/java/test/wsdl
butek 02/02/27 10:42:58
Modified:java/src/org/apache/axis/wsdl SkeletonImpl.java
java/src/org/apache/axis/wsdl/toJava JavaSkelWriter.java
Log:
Added per-operation meta info to generated skeletons:
- soapAction
- input/output namespaces
Scenario:
- Start
butek 02/02/27 14:08:34
Modified:java/test/wsdl/clash VerifyFilesTestCase.java clash.wsdl
Log:
Now that Glen/Tom are getting doc/lit working, the clash test, which has
a doc/lit binding, doesn't work. It was pure luck that it worked before.
For the short term I'
butek 02/02/27 14:57:42
Modified:java/test/wsdl Wsdl2javaTestSuite.xml
Log:
The interop3 import tests should be getting info from the skeletons.
Revision ChangesPath
1.82 +3 -0 xml-axis/java/test/wsdl/Wsdl2javaTestSuite.xml
Index: Wsdl2javaTestSuite.xml
butek 02/02/28 11:19:23
Modified:java/src/org/apache/axis/wsdl/toJava
JavaComplexTypeWriter.java
Log:
equal fix.
Revision ChangesPath
1.14 +1 -1
xml-axis/java/src/org/apache/axis/wsdl/toJava/JavaComplexTypeWriter.java
Index
butek 02/02/28 11:33:19
Modified:java/test/wsdl/interop3/groupE/client
InteropTestDocLitServiceTestCase.java
Log:
fix a compile error.
Revision ChangesPath
1.4 +1 -1
xml-axis/java/test/wsdl/interop3/groupE/client
butek 02/02/28 11:35:07
Modified:java/src/org/apache/axis/wsdl/toJava JavaSkelWriter.java
Log:
If soapAction/input namespace/output namespace were null, the string "null"
would be generated in the WSDL.
Revision ChangesPath
1.16 +15 -6
xml-axi
butek 02/02/28 12:05:14
Added: java/test/wsdl/interop3 test.properties
Interop3TestCase.java
Log:
This test case takes a properties file. The keys are test names, the values
are the URL that test should run against.
Revision ChangesPath
butek 02/03/04 06:22:48
Modified:java/src/org/apache/axis/utils resources.properties
java/src/org/apache/axis/wsdl WSDL2Java.java
java/src/org/apache/axis/wsdl/toJava Emitter.java
Log:
Last week Sam added programmatic support to WSDL2Java for
butek 02/03/04 06:27:38
Modified:java/src/org/apache/axis/wsdl/toJava Emitter.java
Log:
OOPS! I left in some debug statements.
Revision ChangesPath
1.23 +0 -3 xml-axis/java/src/org/apache/axis/wsdl/toJava/Emitter.java
Index: Emitter.java
butek 02/03/05 06:52:06
Modified:java/src/org/apache/axis/utils resources.properties
java/src/org/apache/axis/wsdl WSDL2Java.java
java/src/org/apache/axis/wsdl/toJava Emitter.java
JavaBindingWriter.java JavaDefinitionWriter.java
butek 02/03/05 06:52:53
Modified:java/test/wsdl Wsdl2javaAntTask.java Wsdl2javaTestSuite.xml
java/test/wsdl/interop3/groupE Interop3GroupE.xml
Log:
Cleaned up WSDL2Java behavior of --skeleton/--skeletonDeploy
- --skeleton is now --server-side
- --skeletonDeploy
butek 02/03/06 12:34:17
Modified:java/src/org/apache/axis SimpleChain.java
java/src/org/apache/axis/client AxisClient.java Call.java
Log:
I got rid of some of the ignorable exceptions from the functional-tests. I only went
after the biggest offender - the
butek 02/03/06 15:39:17
Modified:java/src/org/apache/axis/handlers JWSProcessor.java
java/src/org/apache/axis/providers/java JavaProvider.java
java/src/org/apache/axis/transport/http
SimpleAxisServer.java
Log:
I got rid of the
butek 02/03/07 08:14:54
Modified:java/docs user-guide.html
Log:
WSDL2Java updates.
Revision ChangesPath
1.38 +511 -185 xml-axis/java/docs/user-guide.html
Index: user-guide.html
===
RCS file
butek 02/03/08 07:57:17
Modified:java/src/org/apache/axis/wsdl/toJava
JavaServiceImplWriter.java
Log:
Make sure escaped characters in the WSDL address stay escaped in the Java string.
Revision ChangesPath
1.7 +3 -1
xml-axis/java
butek 02/03/08 09:27:08
Modified:java/src/org/apache/axis/client Call.java
Log:
Update the properties comments.
Revision ChangesPath
1.90 +13 -5 xml-axis/java/src/org/apache/axis/client/Call.java
Index: Call.java
butek 02/03/08 15:12:56
Modified:java/docs user-guide.html
java/samples/userguide/example3 Client.java
Log:
Round 2 of User's Guide updates.
Revision ChangesPath
1.39 +35 -37xml-axis/java/docs/user-guide.html
Index: user-guide
butek 02/03/09 12:14:02
Modified:java/docs user-guide.html
java/samples/userguide/example5 Client.java
Log:
Round 3 of User's Guide updates.
Revision ChangesPath
1.40 +255 -201 xml-axis/java/docs/user-guide.html
Index: user-guide
butek 02/03/09 14:12:48
Modified:java/src/org/apache/axis MessageContext.java
Log:
It seems necessary that service and targetService both be assigned at the
same time, but it was possible before this fix (samples/userguide/example4)
for service to have a value but
butek 02/03/11 06:51:36
Modified:java/docs user-guide.html
java/src/org/apache/axis/utils resources.properties
java/src/org/apache/axis/wsdl WSDL2Java.java
Log:
WSDL2Java --skeletonDeploy used to require --server-side. Now it assumes
it, so you
butek 02/03/12 08:34:54
Modified:java/src/org/apache/axis/wsdl/toJava JavaWriter.java
Log:
Change generated comments from //-style to javadoc-style.
Revision ChangesPath
1.7 +3 -1 xml-axis/java/src/org/apache/axis/wsdl/toJava/JavaWriter.java
Index
butek 02/03/12 09:44:16
Modified:java axis.properties build.xml
java/docs developers-guide.html user-guide.html
Added: java/lib excalibur-cli.LICENSE excalibur-cli.jar
Removed: java/lib clutil.LICENSE clutil.jar
Log:
Excalibur changed their
butek 02/03/12 11:20:01
Modified:java TODO.txt
Log:
Added a "MUST DO FOR BETA 1" section.
Revision ChangesPath
1.18 +9 -0 xml-axis/java/TODO.txt
Index: TODO.txt
===
RCS f
butek 02/03/12 12:45:05
Modified:java/test/wsdl/datatypes DataTypesTestCase.java
Log:
Fixed the test to work with the actual generated files.
Revision ChangesPath
1.2 +12 -12xml-axis/java/test/wsdl/datatypes/DataTypesTestCase.java
Index
butek 02/03/12 13:01:51
Modified:java build.xml axis.properties
Log:
Backing out the excalibur-cli changes.
Revision ChangesPath
1.123 +5 -5 xml-axis/java/build.xml
Index: build.xml
butek 02/03/12 13:03:16
Modified:java/docs user-guide.html developers-guide.html
Log:
Backing out the excalibur-cli changes (forgot to update the docs).
Revision ChangesPath
1.43 +1 -1 xml-axis/java/docs/user-guide.html
Index: user-guide.html
butek 02/03/12 13:25:53
Added: java/lib clutil.LICENSE clutil.jar
Removed: java/lib excalibur-cli.LICENSE excalibur-cli.jar
Log:
Sheesh! Backing out my changes, I forgot these! Time to hang it up for the day!
Revision ChangesPath
1.3 +0 -0 xml
butek 02/03/12 13:29:15
Modified:java TODO.txt
Log:
Doug's issue #2 is fixed.
Revision ChangesPath
1.19 +0 -1 xml-axis/java/TODO.txt
Index: TODO.txt
===
RCS file: /home/cvs/xml
butek 02/03/13 08:48:40
Modified:java/src/org/apache/axis/wsdl/fromJava Emitter.java
Log:
Java2WSDL -p option didn't work.
Revision ChangesPath
1.23 +1 -1 xml-axis/java/src/org/apache/axis/wsdl/fromJava/Emitter.java
Index: Emitter
butek 02/03/13 09:06:33
Modified:java/samples/userguide/example2 CalcClient.java
Log:
Fixed the sample.
Revision ChangesPath
1.9 +1 -0 xml-axis/java/samples/userguide/example2/CalcClient.java
Index: CalcClient.java
butek 02/03/13 09:09:59
Modified:java/docs user-guide.html
Log:
Added jaxrpc.jar to the user doc.
Revision ChangesPath
1.44 +1 -0 xml-axis/java/docs/user-guide.html
Index: user-guide.html
butek 02/03/14 07:05:50
Modified:java/samples/proxy deploy.wsdd
Log:
Fixed a sample. Bug caught by Chris Haddad.
Revision ChangesPath
1.3 +1 -1 xml-axis/java/samples/proxy/deploy.wsdd
Index: deploy.wsdd
butek 02/03/14 08:04:09
Modified:java TODO.txt
java/docs user-guide.html
Log:
2 user's guide updates:
- final set of published interfaces
- more complete explanation of SDI name (from portType vs binding)
updated the TODO list.
Revision Ch
butek 02/03/14 08:21:33
Modified:java/src/org/apache/axis/wsdl/toJava
JavaComplexTypeWriter.java
Log:
(Reported by Nuno Guerreiro - [EMAIL PROTECTED] - on axis-user.)
For minOccurs/maxOccurs fields, a method is generated of the form
public void
butek 02/03/14 11:16:42
Modified:java/docs user-guide.html
Log:
Bad link in User's Guide found by Shashank Shankar - [EMAIL PROTECTED]
Revision ChangesPath
1.46 +1 -1 xml-axis/java/docs/user-guide.html
Index: user-guide
butek 02/03/14 17:14:11
Modified:java/src/org/apache/axis Message.java
NoEndPointException.java Part.java SOAPPart.java
java/src/org/apache/axis/attachments AttachmentUtils.java
AttachmentsImpl.java
butek 02/03/15 05:40:08
Modified:java TODO.txt release-notes.html
Log:
Updated release-notes and put the last X in the TODO list for the beta.
Revision ChangesPath
1.24 +1 -1 xml-axis/java/TODO.txt
Index: TODO.txt
butek 02/03/15 09:15:52
Modified:java/src/org/apache/axis/client Call.java
java/src/org/apache/axis/utils resources.properties
java/test/outparams TestOutParams.java
Log:
An addendum to Glen's change which was: if addParameters was called
butek 02/03/15 09:35:50
Modified:java build.xml
Log:
I'm about to create Beta 1, so build.xml should reflect that...
Revision ChangesPath
1.125 +1 -1 xml-axis/java/build.xml
Index: buil
butek 02/03/19 07:42:02
Modified:java axis.properties build.xml
java/docs developers-guide.html user-guide.html
java/samples/addr readme
java/src/org/apache/axis/wsdl Java2WSDL.java WSDL2Java.java
java/src/org/apache
butek 02/03/20 05:36:47
Modified:java/src/org/apache/axis/utils resources.properties
java/src/org/apache/axis/wsdl/toJava SymbolTable.java
Log:
Throw a useful exception if the use attribute is missing from a
soap:operation. It used to throw NullPointerException
butek 02/03/20 08:48:25
xml-axis/java/test/wsdl/getPort - New directory
butek 02/03/21 06:13:18
Modified:java/src/org/apache/axis/transport/http AxisServlet.java
Log:
Remove deprecation warning.
Revision ChangesPath
1.89 +1 -2
xml-axis/java/src/org/apache/axis/transport/http/AxisServlet.java
Index: AxisServlet.java
butek 02/03/21 06:28:53
Modified:java/src/org/apache/axis/wsdl/toJava
JavaServiceImplWriter.java JavaDeployWriter.java
Log:
Added getPort(Class) to generated Services. (one more step toward
JAX-RPC) Note: this is still unimplemented in
butek 02/03/21 06:30:26
Modified:java/test/wsdl Wsdl2javaTestSuite.xml
Added: java/test/wsdl/getPort GetPortTestCase.java getPort.wsdl
Log:
Test for new getPort(Class) methods.
Revision ChangesPath
1.89 +7 -0 xml-axis/java/test/wsdl
butek 02/03/21 06:42:41
Modified:java/src/org/apache/axis/utils resources.properties
Log:
Oops! Forgot the resources.properties fixes for the Service.getPort(Class)
additions.
Revision ChangesPath
1.80 +8 -1 xml-axis/java/src/org/apache/axis/utils
butek 02/03/21 08:07:43
Modified:java/src/javax/xml/rpc Call.java
java/src/org/apache/axis MessageContext.java
java/src/org/apache/axis/client Call.java Stub.java
java/src/org/apache/axis/transport/http HTTPConstants.java
Log:
JAX-RPC
butek 02/03/21 08:19:09
Modified:java/src/org/apache/axis/transport/http AxisServlet.java
Log:
I backed out my 'fix' to get rid of a deprecation warning. I also added a
comment to make sure no-one else does what I just did.
Revision ChangesPath
1.90
butek 02/03/21 08:30:40
Modified:java/src/org/apache/axis/client Stub.java
Log:
Oops. Reality didn't match the deprecation comment. (Thanks, Glyn.)
Revision ChangesPath
1.7 +1 -1 xml-axis/java/src/org/apache/axis/client/Stub.java
Index: Stub
butek 02/03/22 12:41:48
Modified:java/samples/addr readme
Log:
Updated the samples addr readme file. Actually, this is a rather lazy update.
Since the list of files in the lib dir keep changing, it's easiest to simply say
"all the jars in the lib directory"
butek 02/03/22 18:16:47
Modified:java/test/RPCDispatch TestSerializedRPC.java
Log:
Fixed a compile failure.
Revision ChangesPath
1.29 +2 -1 xml-axis/java/test/RPCDispatch/TestSerializedRPC.java
Index: TestSerializedRPC.java
butek 02/03/22 18:18:18
Modified:java/src/javax/xml/rpc Call.java
java/src/org/apache/axis/client Call.java
java/src/org/apache/axis/description ParameterDesc.java
Log:
Brought the Call interface/object up to JAX-RPC 0.8 snuff.
Next I have to
butek 02/03/26 08:09:45
Modified:java/src/org/apache/axis/wsdl/fromJava Emitter.java
Namespaces.java
Log:
A few days ago Java2WSDL -p option didn't work. I fixed Emitter so it did.
But that fix broke Java2WSDL for classes in the default (no
butek 02/03/26 14:34:23
Modified:java TODO.txt
java/src/javax/xml/rpc Service.java
java/src/org/apache/axis/client Service.java
Log:
I brought the javax.xml.rpc.Service interface up to JAX-RPC 0.8 snuff. The
implementation still needs work
butek 02/03/27 05:35:56
Modified:java TODO.txt
java/src/javax/xml/rpc Stub.java
java/src/org/apache/axis/client Stub.java
Log:
I brought the Stub interface/implementation up to JAX-RPC 0.8 snuff, which
meant simply moving the standard property
butek 02/03/27 08:46:57
Modified:java TODO.txt
java/docs user-guide.html
java/samples/attachments EchoAttachment.java
java/samples/bidbuy TestClient.java v3.java
java/samples/echo EchoService.java
butek 02/03/27 10:17:43
Modified:java TODO.txt
java/src/javax/xml/rpc ServiceFactory.java
java/src/org/apache/axis/client ServiceFactory.java
Log:
I've updated javax.xml.rpc.ServiceFactory to JAX-RPC 0.8 and ch
butek 02/03/27 10:36:48
Modified:java TODO.txt
java/src/javax/xml/rpc JAXRPCException.java
ServiceException.java
java/test/wsdl/getPort GetPortTestCase.java
Log:
ServiceException/JAXRPCException.getCause changed to
butek 02/03/27 10:57:22
Removed: java/src/javax/xml/rpc FaultException.java
Log:
FaultException is really old. No one should have been using it for months,
so it's gone.
butek 02/03/27 12:24:06
Modified:java TODO.txt
java/src/javax/xml/rpc JAXRPCException.java
ParameterMode.java ServiceException.java
java/src/javax/xml/rpc/encoding TypeMapping.java
butek 02/03/28 05:33:25
Modified:java/src/org/apache/axis/wsdl/toJava JavaStubWriter.java
Log:
Fixed bugzilla report 7311. Scenario:
- Java method throws java.lang.Exception
- Java2WSDL creates a fault and message called Exception
- WSDL2Java created Exception class
butek 02/03/28 07:21:47
Modified:java/src/org/apache/axis/wsdl/fromJava ClassRep.java
Emitter.java MethodRep.java
Log:
Fixed bugzilla report #7049. Java2WSDL did not produce proper WSDL
for overloaded Java methods. It needed to give the input/output
butek 02/03/28 12:29:48
Modified:java TODO.txt
java/src/javax/xml/rpc/handler Handler.java
HandlerChain.java HandlerInfo.java
HandlerRegistry.java
Log:
Updated javax.xml.rpc.handler interfaces/class to JAX-RPC 0.8
butek 02/03/28 12:37:12
Modified:java/src/javax/xml/rpc/handler/soap SOAPMessageContext.java
Log:
Updated javax.xml.rpc.handler.soap.SOAPMessageContext to JAX-RPC 0.8.
Revision ChangesPath
1.2 +4 -25
xml-axis/java/src/javax/xml/rpc/handler/soap
butek 02/03/31 15:09:34
Modified:java/samples/echo EchoServiceBindingStub.java
TestClient.java
java/src/javax/xml/rpc/holders Holder.java
java/src/org/apache/axis/encoding
DefaultTypeMappingImpl.java
butek 02/04/01 06:42:18
Modified:java/samples/echo EchoService.java
EchoServiceBindingStub.java
EchoServicePortType.java TestClient.java
Log:
Oops! When I changed the mapping of xsd:dateTime from java.util.Date to
butek 02/04/01 12:11:00
Modified:java/test/encoding TestDeser2001.java
Log:
Fixed TestDeser2001 so that it works in any time zone.
Revision ChangesPath
1.10 +22 -1 xml-axis/java/test/encoding/TestDeser2001.java
Index: TestDeser2001.java
butek 02/04/01 16:29:36
Modified:java/test/wsdl Wsdl2javaTestSuite.xml
Removed: java/test/wsdl/multithread AddressBook.wsdl
Log:
Clean up multithread test case. It depends on the address book sample,
but the server was created from AddressBook.wsdl in the multithread
butek 02/04/02 14:05:19
Modified:java/src/javax/xml/rpc/namespace QName.java
java/src/org/apache/axis AxisFault.java Constants.java
java/src/org/apache/axis/deployment/v2dd V2DDMap.java
java/src/org/apache/axis/encoding
butek 02/04/03 07:28:36
Modified:java/samples/bidbuy PurchaseOrder.java TestClient.java
java/test/wsdl/roundtrip RoundtripPortType.java
RoundtripTestServiceTestCase.java
RoundtripTestSoapBindingImpl.java
butek 02/04/03 08:29:53
Modified:java/samples/bidbuy v3.java
Log:
One sample - bidbuy -still used the old mapping of xsd:dateTime to Date
which I changed to Calendar. (I missed this one file).
Revision ChangesPath
1.20 +2 -2 xml-axis/java/samples/bidbuy
butek 02/04/03 10:04:00
Modified:java/src/org/apache/axis/wsdl/toJava SymbolTable.java
Log:
There was a bug in WSDL2Java such that it couldn't always find local
imported files. Thanks to Jason Blumenkrantz ([EMAIL PROTECTED])
for the fix.
Revision Changes
butek 02/04/03 11:11:38
Modified:java/src/org/apache/axis/wsdl/toJava SymbolTable.java
Log:
Oops! Didn't properly apply Jason's fix. ([EMAIL PROTECTED]).
Revision ChangesPath
1.51 +3 -1 xml-axis/java/src/org/apache/axis/wsdl/toJava/Symbol
butek 02/04/04 06:35:35
Modified:java TODO.txt
java/src/javax/xml/rpc/server ServiceLifecycle.java
java/src/javax/xml/rpc/soap SOAPFault.java
SOAPHeaderFault.java
Added: java/src/javax/xml/rpc/server
butek 02/04/04 12:45:27
Modified:java TODO.txt
java/src/org/apache/axis/client ServiceFactory.java
Log:
Start implementing some of the unimplemented JAX-RPC stuff. Here's an
easy one, but one I'll need for the JAX-RPC compliant sample(s).
butek 02/04/04 19:36:00
Modified:java/docs user-guide.html
Log:
A few documentation bugs found by Mark Volkmann ([EMAIL PROTECTED]).
Revision ChangesPath
1.52 +9 -6 xml-axis/java/docs/user-guide.html
Index: user-guide.html
butek 02/04/05 09:42:18
xml-axis/java/samples/jaxrpc - New directory
butek 02/04/05 09:51:30
Modified:java/samples/stock GetQuote1.java
java/src/org/apache/axis/client ServiceFactory.java
java/test/functional FunctionalTests.java
Added: java/samples/jaxrpc GetQuote1.java
java/test/functional
butek 02/04/08 07:35:13
Modified:java/samples/jaxrpc GetQuote1.java
java/samples/stock GetInfo.java
java/test/functional TestJAXRPCSamples.java
Added: java/samples/jaxrpc GetInfo.java
Log:
More JAX-RPC compliant sample work:
- added GetInfo
butek 02/04/08 08:43:14
Modified:java/src/org/apache/axis/encoding
SerializationContextImpl.java
java/src/org/apache/axis/encoding/ser
SimpleDeserializer.java
Log:
Slight performance improvement suggested by Richard
butek 02/04/08 10:33:53
Modified:java/src/org/apache/axis/wsdl/toJava SymbolTable.java
java/test/wsdl Wsdl2javaTestSuite.xml
Added: java/test/wsdl/_import ImportMessagesXSDImport.wsdl
Log:
Fixed Bugzilla bug #7744: WSDL2Java does not work properly if
butek 02/04/08 16:18:45
Modified:java/src/org/apache/axis/wsdl/toJava JavaImplWriter.java
java/test/wsdl/types ComprehensiveTypes.wsdl
VerifyTestCase.java
Log:
Bugzilla 7577 said: "[wsdl2java] - Impl class do not compile when having
butek 02/04/09 08:41:30
Modified:java/src/org/apache/axis/client Service.java
java/src/org/apache/axis/deployment/wsdd
WSDDDeployableItem.java
java/src/org/apache/axis/encoding/ser MapSerializer.java
butek 02/04/09 09:58:18
Modified:java/samples/bidbuy deploy.wsdd
java/samples/stock deploy.wsdd
java/src/org/apache/axis/utils resources.properties
Log:
Bugzill 7296 said the comments in samples/stock/deploy.wsdd were old.
I fixed this, samples
butek 02/04/10 06:55:45
Added: java/samples/jaxrpc README
Log:
Add a README to samples/jaxrpc.
Revision ChangesPath
1.1 xml-axis/java/samples/jaxrpc/README
Index: README
butek 02/04/11 06:30:55
Modified:java/src/org/apache/axis/utils resources.properties
java/src/org/apache/axis/wsdl/toJava SymbolTable.java
Log:
Move checkForUndefined so that it checks each imported WSDL file for
things undefined within it. We used to get a
butek 02/04/11 07:57:23
Modified:java/docs user-guide.html
Log:
A couple simple fixes provided by Didier Guillon ([EMAIL PROTECTED]).
Revision ChangesPath
1.53 +1 -1 xml-axis/java/docs/user-guide.html
Index: user-guide.html
butek 02/04/11 09:17:55
Modified:java/src/org/apache/axis/encoding
DefaultTypeMappingImpl.java
Log:
Date interop still wasn't working. We changed the javaType fields when
we registered the various dates, but we forgot to change the (de)serial
butek 02/04/12 07:04:44
Modified:java TODO.txt
Log:
Another work item...
Revision ChangesPath
1.40 +4 -0 xml-axis/java/TODO.txt
Index: TODO.txt
===
RCS file: /home/cvs/xml-axis/java
butek 02/04/12 15:36:53
Modified:java/src/org/apache/axis/client AxisClientProxy.java
Call.java Service.java
Added: java/test/wsdl/types DynamicProxyTestCase.java
Log:
A few more small steps to dynamic proxyhood. I've added the beginnings
butek 02/04/15 08:34:22
Modified:java/test build_functional_tests.xml
Log:
Builds were succeeding even though we had functional-test failures!
Revision ChangesPath
1.39 +1 -1 xml-axis/java/test/build_functional_tests.xml
Index
butek 02/04/16 12:47:25
Modified:java TODO.txt
Log:
First cut of Beta 2 must-do list.
Revision ChangesPath
1.41 +8 -0 xml-axis/java/TODO.txt
Index: TODO.txt
===
RCS file: /home/cvs
butek 02/04/18 06:50:42
Modified:java TODO.txt
java/test/wsdl Wsdl2javaTestSuite.xml
java/test/wsdl/multibinding VerifyFilesTestCase.java
Log:
Make half the WSDL tests skeleton tests and half non-skeleton tests. This
is just a quick compromise
1 - 100 of 563 matches
Mail list logo