Author: jochen
Date: Tue Sep 4 12:28:37 2007
New Revision: 572781
URL: http://svn.apache.org/viewvc?rev=572781&view=rev
Log:
The XmlRpcCommonsTransport is now always declaring its entities as repeatable.
Submitted-By: Póka Balázs ([EMAIL PROTECTED])
Modified:
webservices/xmlrpc/trunk/client/pom.xml
webservices/xmlrpc/trunk/client/src/main/java/org/apache/xmlrpc/client/XmlRpcCommonsTransport.java
webservices/xmlrpc/trunk/common/pom.xml
webservices/xmlrpc/trunk/pom.xml
webservices/xmlrpc/trunk/server/pom.xml
webservices/xmlrpc/trunk/src/changes/changes.xml
webservices/xmlrpc/trunk/tests/pom.xml
Modified: webservices/xmlrpc/trunk/client/pom.xml
URL:
http://svn.apache.org/viewvc/webservices/xmlrpc/trunk/client/pom.xml?rev=572781&r1=572780&r2=572781&view=diff
==============================================================================
--- webservices/xmlrpc/trunk/client/pom.xml (original)
+++ webservices/xmlrpc/trunk/client/pom.xml Tue Sep 4 12:28:37 2007
@@ -4,7 +4,7 @@
<parent>
<groupId>org.apache.xmlrpc</groupId>
<artifactId>xmlrpc</artifactId>
- <version>3.1</version>
+ <version>3.1.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>xmlrpc-client</artifactId>
Modified:
webservices/xmlrpc/trunk/client/src/main/java/org/apache/xmlrpc/client/XmlRpcCommonsTransport.java
URL:
http://svn.apache.org/viewvc/webservices/xmlrpc/trunk/client/src/main/java/org/apache/xmlrpc/client/XmlRpcCommonsTransport.java?rev=572781&r1=572780&r2=572781&view=diff
==============================================================================
---
webservices/xmlrpc/trunk/client/src/main/java/org/apache/xmlrpc/client/XmlRpcCommonsTransport.java
(original)
+++
webservices/xmlrpc/trunk/client/src/main/java/org/apache/xmlrpc/client/XmlRpcCommonsTransport.java
Tue Sep 4 12:28:37 2007
@@ -185,7 +185,7 @@
protected void writeRequest(final ReqWriter pWriter) throws
XmlRpcException {
method.setRequestEntity(new RequestEntity(){
- public boolean isRepeatable() { return contentLength !=
-1; }
+ public boolean isRepeatable() { return true; }
public void writeRequest(OutputStream pOut) throws
IOException {
try {
/* Make sure, that the socket is not closed by replacing
it with our
Modified: webservices/xmlrpc/trunk/common/pom.xml
URL:
http://svn.apache.org/viewvc/webservices/xmlrpc/trunk/common/pom.xml?rev=572781&r1=572780&r2=572781&view=diff
==============================================================================
--- webservices/xmlrpc/trunk/common/pom.xml (original)
+++ webservices/xmlrpc/trunk/common/pom.xml Tue Sep 4 12:28:37 2007
@@ -4,7 +4,7 @@
<parent>
<groupId>org.apache.xmlrpc</groupId>
<artifactId>xmlrpc</artifactId>
- <version>3.1</version>
+ <version>3.1.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>xmlrpc-common</artifactId>
Modified: webservices/xmlrpc/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/webservices/xmlrpc/trunk/pom.xml?rev=572781&r1=572780&r2=572781&view=diff
==============================================================================
--- webservices/xmlrpc/trunk/pom.xml (original)
+++ webservices/xmlrpc/trunk/pom.xml Tue Sep 4 12:28:37 2007
@@ -12,7 +12,7 @@
<groupId>org.apache.xmlrpc</groupId>
<artifactId>xmlrpc</artifactId>
<name>Apache XML-RPC</name>
- <version>3.1</version>
+ <version>3.1.1-SNAPSHOT</version>
<description>
Apache XML-RPC is a Java implementation of XML-RPC, a popular protocol
that uses XML over HTTP to
implement remote procedure calls. Compared to SOAP, or JAX-RPC, it is
stable, much simpler and easier to handle.
@@ -122,6 +122,10 @@
<contributor>
<name>Gamaliel Amaudruz</name>
<email>[EMAIL PROTECTED]</email>
+ </contributor>
+ <contributor>
+ <name>Póka Balázs</name>
+ <email>[EMAIL PROTECTED]</email>
</contributor>
<contributor>
<name>Alan Burlison</name>
Modified: webservices/xmlrpc/trunk/server/pom.xml
URL:
http://svn.apache.org/viewvc/webservices/xmlrpc/trunk/server/pom.xml?rev=572781&r1=572780&r2=572781&view=diff
==============================================================================
--- webservices/xmlrpc/trunk/server/pom.xml (original)
+++ webservices/xmlrpc/trunk/server/pom.xml Tue Sep 4 12:28:37 2007
@@ -4,7 +4,7 @@
<parent>
<groupId>org.apache.xmlrpc</groupId>
<artifactId>xmlrpc</artifactId>
- <version>3.1</version>
+ <version>3.1.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>xmlrpc-server</artifactId>
Modified: webservices/xmlrpc/trunk/src/changes/changes.xml
URL:
http://svn.apache.org/viewvc/webservices/xmlrpc/trunk/src/changes/changes.xml?rev=572781&r1=572780&r2=572781&view=diff
==============================================================================
--- webservices/xmlrpc/trunk/src/changes/changes.xml (original)
+++ webservices/xmlrpc/trunk/src/changes/changes.xml Tue Sep 4 12:28:37 2007
@@ -3,6 +3,10 @@
<title>Changes in Apache XML-RPC</title>
</properties>
<body>
+ <release version="3.1.1-SNAPSHOT" date="Not yet released">
+ <action dev="jochen" type="fix" due-to="Póka Balázs"
due-to-email="[EMAIL PROTECTED]">
+ </action>
+ </release>
<release version="3.1" date="2007-Aug-31">
<action dev="jochen" type="add">
Introduced the "enabledForExceptions" property.
Modified: webservices/xmlrpc/trunk/tests/pom.xml
URL:
http://svn.apache.org/viewvc/webservices/xmlrpc/trunk/tests/pom.xml?rev=572781&r1=572780&r2=572781&view=diff
==============================================================================
--- webservices/xmlrpc/trunk/tests/pom.xml (original)
+++ webservices/xmlrpc/trunk/tests/pom.xml Tue Sep 4 12:28:37 2007
@@ -4,7 +4,7 @@
<parent>
<groupId>org.apache.xmlrpc</groupId>
<artifactId>xmlrpc</artifactId>
- <version>3.1</version>
+ <version>3.1.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>xmlrpc-tests</artifactId>