summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Set up for JSON test.scottkurz2011-08-034-7/+5
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1153341 13f79535-47bb-0310-9956-ffa450edef68
* TUSCANY-3894. Add manifest updates.scottkurz2011-08-022-0/+2
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1153291 13f79535-47bb-0310-9956-ffa450edef68
* TUSCANY-3894. Enable some @Ignore(d) tests along with r1153285.scottkurz2011-08-025-22/+38
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1153290 13f79535-47bb-0310-9956-ffa450edef68
* TUSCANY-3894. Factor out introspection for same vs. different databindings ↵scottkurz2011-08-028-97/+161
| | | | | | on operation from DBRuntimeWireProcessor to new OperationDataBindingHelper util. Use this in DefaultLocalSCAReferenceBindingProvider to do a Mediator.copyXXX for same-databinding operations, while doing a Mediator.mediateXXX with a WSDL operation for different-databinding operations. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1153285 13f79535-47bb-0310-9956-ffa450edef68
* Correct comment to avoid confusionslaws2011-08-021-2/+4
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1153080 13f79535-47bb-0310-9956-ffa450edef68
* Switch cross-databinding test from SDO (which I can't get working) to DOM, ↵scottkurz2011-08-016-46/+43
| | | | | | but left tests @Ignore(d) git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1152925 13f79535-47bb-0310-9956-ffa450edef68
* TUSCANY-3894. Didn't mean to update POM with AXIOM dependency.scottkurz2011-07-291-6/+0
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1152096 13f79535-47bb-0310-9956-ffa450edef68
* TUSCANY-3894. Complete by ranking providers.scottkurz2011-07-292-2/+8
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1152095 13f79535-47bb-0310-9956-ffa450edef68
* Add a couple of missing license headersantelder2011-07-282-0/+36
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1151781 13f79535-47bb-0310-9956-ffa450edef68
* Update all the getting-started samples to not use an explicit relative ↵antelder2011-07-2810-10/+10
| | | | | | parent. I've tried this with both Maven v2 and v3 and there are no fatal build errors and it enables build the individual samples in issolation without a full tuscany checkout git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1151769 13f79535-47bb-0310-9956-ffa450edef68
* Add some text to the CHANGES fileantelder2011-07-281-0/+7
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1151764 13f79535-47bb-0310-9956-ffa450edef68
* TUSCANY-3894. Refactor WSDL InterfaceContract generation so it's only done ↵scottkurz2011-07-282-13/+20
| | | | | | if the BindingSCATransformer calls for it. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1151710 13f79535-47bb-0310-9956-ffa450edef68
* Fix the relative path in pom.xmlrfeng2011-07-274-4/+4
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1151669 13f79535-47bb-0310-9956-ffa450edef68
* Add a parser tool for DOM to avoid a JDK bug of deadlock (at ↵rfeng2011-07-273-10/+205
| | | | | | com.sun.org.apache.xerces.internal.impl.dv.DTDDVFactory.getInstance) git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1151663 13f79535-47bb-0310-9956-ffa450edef68
* Fix NPE which I think was just causing noise in the logs in the case of a ↵scottkurz2011-07-271-3/+3
| | | | | | 1-way operation, as we were hitting NPE in the response path but never needed to send a response anyway. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1151643 13f79535-47bb-0310-9956-ffa450edef68
* TUSCANY-3894. Add tests especially exercising binding-sca-runtime code ↵scottkurz2011-07-2717-0/+895
| | | | | | cross-classloader. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1151641 13f79535-47bb-0310-9956-ffa450edef68
* Add tuscany-base-runtime-pom dependency adjusting for new ↵scottkurz2011-07-271-2/+3
| | | | | | binding-sca-runtime impl. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1151640 13f79535-47bb-0310-9956-ffa450edef68
* Update release notes for beta3antelder2011-07-271-8/+3
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1151636 13f79535-47bb-0310-9956-ffa450edef68
* TUSCANY-3894. Refactor local sca binding so that the exact details of the ↵scottkurz2011-07-2712-63/+384
| | | | | | data copy can be plugged in via the BindingProviderFactory extension point, while keeping a core, base portion of the binding to do things like calculate whether to do the pass-by-reference optimization and establish other aspects of the invoker/interceptor chain. The data handling is factored into a BindingSCATransformer class. The default impl will continue to use MediatorImpl.copyXXX methods, and will use Java-serialization first then XML/JAXB-serialization. The second impl included uses XML serialization and calculates a WSDL interfaceContract. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1151632 13f79535-47bb-0310-9956-ffa450edef68
* Add license info in plain text files and update sample logic not to process ↵fmoga2011-07-274-6/+42
| | | | | | comments. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1151507 13f79535-47bb-0310-9956-ffa450edef68
* Remove RAT excludes for jQuery and plain text files.fmoga2011-07-271-10/+0
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1151489 13f79535-47bb-0310-9956-ffa450edef68
* Use Google CDN for jQuery. Other minor adjustments to samples.fmoga2011-07-2720-1319/+80
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1151487 13f79535-47bb-0310-9956-ffa450edef68
* Enable bare tests as well.scottkurz2011-07-271-6/+2
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1151481 13f79535-47bb-0310-9956-ffa450edef68
* Adjust equality check from == to equals() to accomodate different style of ↵scottkurz2011-07-271-1/+1
| | | | | | data transform in binding. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1151477 13f79535-47bb-0310-9956-ffa450edef68
* Fix bug in mapping data types like Java multidimensional arrays.scottkurz2011-07-271-128/+126
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1151476 13f79535-47bb-0310-9956-ffa450edef68
* Add rat excludes for jQuery and a plain text filefmoga2011-07-271-0/+10
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1151384 13f79535-47bb-0310-9956-ffa450edef68
* Fix license issues with WebSocketStatusfmoga2011-07-272-19/+19
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1151380 13f79535-47bb-0310-9956-ffa450edef68
* Missed an adjustment to wrapper calculation when adding code to handle ↵scottkurz2011-07-271-1/+1
| | | | | | multiple outputs. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1151321 13f79535-47bb-0310-9956-ffa450edef68
* Update CHANGES with my work.fmoga2011-07-261-0/+3
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1151290 13f79535-47bb-0310-9956-ffa450edef68
* Fix store sample groupId.fmoga2011-07-261-1/+1
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1151273 13f79535-47bb-0310-9956-ffa450edef68
* Change section name to match the other ones.fmoga2011-07-261-1/+1
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1151272 13f79535-47bb-0310-9956-ffa450edef68
* Update pom relationships to reflect the new samples.fmoga2011-07-2612-54/+35
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1151265 13f79535-47bb-0310-9956-ffa450edef68
* Update comet binding samples names.fmoga2011-07-2628-0/+0
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1151256 13f79535-47bb-0310-9956-ffa450edef68
* Add binding-websocket to tuscany-modules pom.xml.fmoga2011-07-261-0/+1
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1151255 13f79535-47bb-0310-9956-ffa450edef68
* Move the websocket binding to trunk.fmoga2011-07-2635-0/+1855
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1151250 13f79535-47bb-0310-9956-ffa450edef68
* Copy the learning-more pom.xml to trunk.fmoga2011-07-261-0/+60
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1151248 13f79535-47bb-0310-9956-ffa450edef68
* Move the websocket binding samples to trunk.fmoga2011-07-2650-0/+3131
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1151246 13f79535-47bb-0310-9956-ffa450edef68
* Move the comet binding samples to trunk.fmoga2011-07-2650-0/+3320
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1151245 13f79535-47bb-0310-9956-ffa450edef68
* Add some code to try to convert the wsdl string from the remote endpoint ↵antelder2011-07-263-24/+124
| | | | | | back into a WSDLInterfaceContract. This doesn't work properly and throws an InvalidWSDLException with some JDKs. Committing as-is to see if anyone has any ideas why git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1151203 13f79535-47bb-0310-9956-ffa450edef68
* Partial fix for TUSCANY-3901. Fix bug in DOMWrapperHandler.isInstance() ↵scottkurz2011-07-262-1/+164
| | | | | | method. Add ported wrapper handler testcase @Ignore(d) now since it will fail, showing there's more to do. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1151141 13f79535-47bb-0310-9956-ffa450edef68
* Include response typeantelder2011-07-251-1/+3
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1150588 13f79535-47bb-0310-9956-ffa450edef68
* Update sample READMEantelder2011-07-241-35/+10
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1150296 13f79535-47bb-0310-9956-ffa450edef68
* Update sample READMEantelder2011-07-241-6/+1
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1150295 13f79535-47bb-0310-9956-ffa450edef68
* Update sample READMEantelder2011-07-241-1/+1
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1150293 13f79535-47bb-0310-9956-ffa450edef68
* Update sample READMEantelder2011-07-241-16/+12
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1150292 13f79535-47bb-0310-9956-ffa450edef68
* Update sample READMEantelder2011-07-241-29/+21
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1150291 13f79535-47bb-0310-9956-ffa450edef68
* Update sample READMEantelder2011-07-241-12/+12
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1150290 13f79535-47bb-0310-9956-ffa450edef68
* Include all the samples in buildantelder2011-07-241-1/+7
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1150287 13f79535-47bb-0310-9956-ffa450edef68
* Add a sample for a zip contribution using a nested jarantelder2011-07-238-0/+364
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1150211 13f79535-47bb-0310-9956-ffa450edef68
* Update the JSONP binding to set the enpoint URI from the registered service ↵antelder2011-07-231-1/+4
| | | | | | servlet git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1150210 13f79535-47bb-0310-9956-ffa450edef68