You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@chemistry.apache.org by "Sauganth Vijayappan (JIRA)" <ji...@apache.org> on 2010/10/07 22:00:32 UTC

[jira] Created: (CMIS-257) Set the URL as full if it ends with /wsdl

Set the URL as full if it ends with /wsdl
-----------------------------------------

                 Key: CMIS-257
                 URL: https://issues.apache.org/jira/browse/CMIS-257
             Project: Chemistry
          Issue Type: Bug
          Components: opencmis-client-bindings
            Reporter: Sauganth Vijayappan
            Priority: Blocker


I was testing the cmis code on one of the secure ibm servers which uses a wsdl url that ends with /wsdl. The testing code is not able to retrieve the wsdl and do other testing because the testing code treats the url as a prefix URL.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (CMIS-257) Set the URL as full if it ends with /wsdl

Posted by "Florian Müller (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/CMIS-257?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Florian Müller updated CMIS-257:
--------------------------------

       Resolution: Fixed
    Fix Version/s: 0.2.0-incubating
         Assignee: Florian Müller
           Status: Resolved  (was: Patch Available)

> Set the URL as full if it ends with /wsdl
> -----------------------------------------
>
>                 Key: CMIS-257
>                 URL: https://issues.apache.org/jira/browse/CMIS-257
>             Project: Chemistry
>          Issue Type: Bug
>          Components: opencmis-client-bindings
>            Reporter: Sauganth Vijayappan
>            Assignee: Florian Müller
>            Priority: Blocker
>             Fix For: 0.2.0-incubating
>
>
> I was testing the cmis code on one of the secure ibm servers which uses a wsdl url that ends with /wsdl. The testing code is not able to retrieve the wsdl and do other testing because the testing code treats the url as a prefix URL.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (CMIS-257) Set the URL as full if it ends with /wsdl

Posted by "Sauganth Vijayappan (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/CMIS-257?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Sauganth Vijayappan updated CMIS-257:
-------------------------------------

    Status: Patch Available  (was: Open)

### Eclipse Workspace Patch 1.0

#P opencmis

Index: chemistry-opencmis-client/chemistry-opencmis-client-bindings/src/test/java/org/apache/chemistry/opencmis/client/bindings/webservices/WebServicesTestBindingFactory.java

===================================================================

--- chemistry-opencmis-client/chemistry-opencmis-client-bindings/src/test/java/org/apache/chemistry/opencmis/client/bindings/webservices/WebServicesTestBindingFactory.java	(revision 995861)

+++ chemistry-opencmis-client/chemistry-opencmis-client-bindings/src/test/java/org/apache/chemistry/opencmis/client/bindings/webservices/WebServicesTestBindingFactory.java	(working copy)

@@ -43,6 +43,8 @@

             isPrefix = false;
         } else if (urlLower.endsWith(".aspx")) {
             isPrefix = false;
+        } else if (urlLower.endsWith("/wsdl")) {
+        	isPrefix = false;
         }
 
         return createBinding(url, isPrefix, username, password);


> Set the URL as full if it ends with /wsdl
> -----------------------------------------
>
>                 Key: CMIS-257
>                 URL: https://issues.apache.org/jira/browse/CMIS-257
>             Project: Chemistry
>          Issue Type: Bug
>          Components: opencmis-client-bindings
>            Reporter: Sauganth Vijayappan
>            Priority: Blocker
>
> I was testing the cmis code on one of the secure ibm servers which uses a wsdl url that ends with /wsdl. The testing code is not able to retrieve the wsdl and do other testing because the testing code treats the url as a prefix URL.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.