You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by fu...@apache.org on 2006/07/25 13:49:39 UTC

svn commit: r425375 - in /incubator/felix/trunk/org.apache.felix.upnp.basedriver: ./ src/main/java/org/apache/felix/upnp/basedriver/importer/core/upnp/ src/main/resources/debug/META-INF/ src/main/resources/debug/lib/ src/main/resources/release/META-INF...

Author: furfari
Date: Tue Jul 25 04:49:38 2006
New Revision: 425375

URL: http://svn.apache.org/viewvc?rev=425375&view=rev
Log:
Created a new patch for Cyberlink library in order to handle UPnP Invalid_Args Exception (Felix-67).
The method setArgumentValues() in Action class should be deprecated. The new methods setInArgumentValues and setOutArgumentValues have been added.

Added:
    incubator/felix/trunk/org.apache.felix.upnp.basedriver/src/main/resources/debug/lib/cyberlink-1.7.1-patched-debug.jar   (with props)
    incubator/felix/trunk/org.apache.felix.upnp.basedriver/src/main/resources/release/lib/cyberlink-1.7.1-patched-release.jar   (with props)
Modified:
    incubator/felix/trunk/org.apache.felix.upnp.basedriver/pom.xml
    incubator/felix/trunk/org.apache.felix.upnp.basedriver/src/main/java/org/apache/felix/upnp/basedriver/importer/core/upnp/UPnPActionImpl.java
    incubator/felix/trunk/org.apache.felix.upnp.basedriver/src/main/resources/debug/META-INF/Manifest.mf
    incubator/felix/trunk/org.apache.felix.upnp.basedriver/src/main/resources/release/META-INF/Manifest.mf

Modified: incubator/felix/trunk/org.apache.felix.upnp.basedriver/pom.xml
URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.apache.felix.upnp.basedriver/pom.xml?rev=425375&r1=425374&r2=425375&view=diff
==============================================================================
--- incubator/felix/trunk/org.apache.felix.upnp.basedriver/pom.xml (original)
+++ incubator/felix/trunk/org.apache.felix.upnp.basedriver/pom.xml Tue Jul 25 04:49:38 2006
@@ -41,7 +41,7 @@
     <dependency>
       <groupId>org-cybergarage</groupId>
       <artifactId>cyberlink-upnp-patched</artifactId>
-      <version>1.7.0</version>
+      <version>1.7.1</version>
       <scope>provided</scope>
     </dependency>
   </dependencies>
@@ -61,7 +61,6 @@
                	A Bundle implementation of the UPnP Service Specification R4 (not yet)
             </bundleDescription>
             <bundleSymbolicName>org.apache.felix.upnp.basedriver</bundleSymbolicName>
-		<!-- <bundleClassPath>.,lib/cyberlink-1.7-patched-release.jar</bundleClassPath> -->
 		<bundleActivator>org.apache.felix.upnp.basedriver.Activator</bundleActivator>
             <importPackage>
 			org.w3c.dom,javax.xml.parsers,org.xml.sax,org.osgi.framework;specification-version=1.3,org.osgi.service.device;specification-version=1.1,org.osgi.service.upnp;specification-version=1.1,org.osgi.service.log;specification-version=1.3,org.apache.felix.upnp.extra.util;specification-version=1.0,org.apache.felix.upnp.extra.controller;specification-version=1.0

Modified: incubator/felix/trunk/org.apache.felix.upnp.basedriver/src/main/java/org/apache/felix/upnp/basedriver/importer/core/upnp/UPnPActionImpl.java
URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.apache.felix.upnp.basedriver/src/main/java/org/apache/felix/upnp/basedriver/importer/core/upnp/UPnPActionImpl.java?rev=425375&r1=425374&r2=425375&view=diff
==============================================================================
--- incubator/felix/trunk/org.apache.felix.upnp.basedriver/src/main/java/org/apache/felix/upnp/basedriver/importer/core/upnp/UPnPActionImpl.java (original)
+++ incubator/felix/trunk/org.apache.felix.upnp.basedriver/src/main/java/org/apache/felix/upnp/basedriver/importer/core/upnp/UPnPActionImpl.java Tue Jul 25 04:49:38 2006
@@ -143,7 +143,7 @@
 			//setting the value related to the input argument
 			argument.setValue(Converter.toString(args.get(argumentName),upnpType));
 		}
-		act.setArgumentValues(argsList);
+		act.setInArgumentValues(argsList); 
 		if(act.postControlAction()==true){
 			//TODO check what happen if I don't have any output argument
 			Properties outDic=new Properties();

Modified: incubator/felix/trunk/org.apache.felix.upnp.basedriver/src/main/resources/debug/META-INF/Manifest.mf
URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.apache.felix.upnp.basedriver/src/main/resources/debug/META-INF/Manifest.mf?rev=425375&r1=425374&r2=425375&view=diff
==============================================================================
--- incubator/felix/trunk/org.apache.felix.upnp.basedriver/src/main/resources/debug/META-INF/Manifest.mf (original)
+++ incubator/felix/trunk/org.apache.felix.upnp.basedriver/src/main/resources/debug/META-INF/Manifest.mf Tue Jul 25 04:49:38 2006
@@ -1,5 +1,5 @@
 Manifest-Version: 1.0
-Bundle-ClassPath: .,lib/cyberlink-1.7-patched-debug.jar
+Bundle-ClassPath: .,lib/cyberlink-1.7.1-patched-debug.jar
 Bundle-Author: Matteo Demuru <ma...@users.sourceforge.net>,Stefano "
  Kismet" Lenzi <ki...@users.sourceforge.net>,Francesco Furfari <fr
  ancesco.furfari@isti.cnr.it>,Satoshi Konno

Added: incubator/felix/trunk/org.apache.felix.upnp.basedriver/src/main/resources/debug/lib/cyberlink-1.7.1-patched-debug.jar
URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.apache.felix.upnp.basedriver/src/main/resources/debug/lib/cyberlink-1.7.1-patched-debug.jar?rev=425375&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/felix/trunk/org.apache.felix.upnp.basedriver/src/main/resources/debug/lib/cyberlink-1.7.1-patched-debug.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Modified: incubator/felix/trunk/org.apache.felix.upnp.basedriver/src/main/resources/release/META-INF/Manifest.mf
URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.apache.felix.upnp.basedriver/src/main/resources/release/META-INF/Manifest.mf?rev=425375&r1=425374&r2=425375&view=diff
==============================================================================
--- incubator/felix/trunk/org.apache.felix.upnp.basedriver/src/main/resources/release/META-INF/Manifest.mf (original)
+++ incubator/felix/trunk/org.apache.felix.upnp.basedriver/src/main/resources/release/META-INF/Manifest.mf Tue Jul 25 04:49:38 2006
@@ -1,5 +1,5 @@
 Manifest-Version: 1.0
-Bundle-ClassPath: .,lib/cyberlink-1.7-patched-release.jar
+Bundle-ClassPath: .,lib/cyberlink-1.7.1-patched-release.jar
 Bundle-Author: Matteo Demuru <ma...@users.sourceforge.net>,Stefano "
  Kismet" Lenzi <ki...@users.sourceforge.net>,Francesco Furfari <fr
  ancesco.furfari@isti.cnr.it>,Satoshi Konno

Added: incubator/felix/trunk/org.apache.felix.upnp.basedriver/src/main/resources/release/lib/cyberlink-1.7.1-patched-release.jar
URL: http://svn.apache.org/viewvc/incubator/felix/trunk/org.apache.felix.upnp.basedriver/src/main/resources/release/lib/cyberlink-1.7.1-patched-release.jar?rev=425375&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/felix/trunk/org.apache.felix.upnp.basedriver/src/main/resources/release/lib/cyberlink-1.7.1-patched-release.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream