You are viewing a plain text version of this content. The canonical link for it is here.
Posted to photark-dev@incubator.apache.org by "Pascal GILLET (Created) (JIRA)" <ji...@apache.org> on 2012/04/18 23:04:39 UTC

[jira] [Created] (PHOTARK-79) core JAX-WS API not present in JDK 1.5

core JAX-WS API not present in JDK 1.5
--------------------------------------

                 Key: PHOTARK-79
                 URL: https://issues.apache.org/jira/browse/PHOTARK-79
             Project: PhotArk
          Issue Type: Bug
          Components: Build Infrastructure
    Affects Versions: PhotArk M1
         Environment: JDK 1.5
            Reporter: Pascal GILLET
            Priority: Minor
             Fix For: PhotArk M1


On the PhotArk Developer Guide, it is said that the required version of the JDK is at least 1.5. But in this case, the photark-flickr component cannot compile as the class javax.xml.ws.http.HTTPException, that is part of the JAX-WS API, is not included in the Java 5 API.

The dependency to the JAX-WS API should be added in the POM within a profile automatically triggered when the JDK's version is 1.5, as following:

<profiles>
   <profile>
      <id>jdk15</id>
      <activation>
         <jdk>1.5</jdk>
      </activation>
      <dependencies>
         <dependency>
            <groupId>javax.xml.ws</groupId>
            <artifactId>jaxws-api</artifactId>
            <version>2.2.8</version>
         </dependency>
      </dependencies>
   </profile>
</profiles>

OR the required JDK's version should be 6.0 at least...


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Updated] (PHOTARK-79) core JAX-WS API not present in JDK 1.5

Posted by "Pascal GILLET (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PHOTARK-79?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Pascal GILLET updated PHOTARK-79:
---------------------------------

    Attachment: compile-error.txt

The described compile error
                
> core JAX-WS API not present in JDK 1.5
> --------------------------------------
>
>                 Key: PHOTARK-79
>                 URL: https://issues.apache.org/jira/browse/PHOTARK-79
>             Project: PhotArk
>          Issue Type: Bug
>          Components: Build Infrastructure
>    Affects Versions: PhotArk M1
>         Environment: JDK 1.5
>            Reporter: Pascal GILLET
>            Priority: Minor
>              Labels: patch
>             Fix For: PhotArk M1
>
>         Attachments: compile-error.txt, photark-flickr-pom.patch
>
>
> On the PhotArk Developer Guide, it is said that the required version of the JDK is at least 1.5. But in this case, the photark-flickr component cannot compile as the class javax.xml.ws.http.HTTPException, that is part of the JAX-WS API, is not included in the Java 5 API.
> The dependency to the JAX-WS API should be added in the POM within a profile automatically triggered when the JDK's version is 1.5, as following:
> <profiles>
>    <profile>
>       <id>jdk15</id>
>       <activation>
>          <jdk>1.5</jdk>
>       </activation>
>       <dependencies>
>          <dependency>
>             <groupId>javax.xml.ws</groupId>
>             <artifactId>jaxws-api</artifactId>
>             <version>2.2.8</version>
>          </dependency>
>       </dependencies>
>    </profile>
> </profiles>
> OR the required JDK's version should be 6.0 at least...

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Updated] (PHOTARK-79) core JAX-WS API not present in JDK 1.5

Posted by "Pascal GILLET (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PHOTARK-79?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Pascal GILLET updated PHOTARK-79:
---------------------------------

    Attachment: photark-flickr-pom.patch

Path file for the POM of the photark-flickr project
                
> core JAX-WS API not present in JDK 1.5
> --------------------------------------
>
>                 Key: PHOTARK-79
>                 URL: https://issues.apache.org/jira/browse/PHOTARK-79
>             Project: PhotArk
>          Issue Type: Bug
>          Components: Build Infrastructure
>    Affects Versions: PhotArk M1
>         Environment: JDK 1.5
>            Reporter: Pascal GILLET
>            Priority: Minor
>              Labels: patch
>             Fix For: PhotArk M1
>
>         Attachments: photark-flickr-pom.patch
>
>
> On the PhotArk Developer Guide, it is said that the required version of the JDK is at least 1.5. But in this case, the photark-flickr component cannot compile as the class javax.xml.ws.http.HTTPException, that is part of the JAX-WS API, is not included in the Java 5 API.
> The dependency to the JAX-WS API should be added in the POM within a profile automatically triggered when the JDK's version is 1.5, as following:
> <profiles>
>    <profile>
>       <id>jdk15</id>
>       <activation>
>          <jdk>1.5</jdk>
>       </activation>
>       <dependencies>
>          <dependency>
>             <groupId>javax.xml.ws</groupId>
>             <artifactId>jaxws-api</artifactId>
>             <version>2.2.8</version>
>          </dependency>
>       </dependencies>
>    </profile>
> </profiles>
> OR the required JDK's version should be 6.0 at least...

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Issue Comment Edited] (PHOTARK-79) core JAX-WS API not present in JDK 1.5

Posted by "Pascal GILLET (Issue Comment Edited) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/PHOTARK-79?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13257061#comment-13257061 ] 

Pascal GILLET edited comment on PHOTARK-79 at 4/19/12 8:32 AM:
---------------------------------------------------------------

Patch file for the POM of the photark-flickr project
                
      was (Author: pgillet):
    Path file for the POM of the photark-flickr project
                  
> core JAX-WS API not present in JDK 1.5
> --------------------------------------
>
>                 Key: PHOTARK-79
>                 URL: https://issues.apache.org/jira/browse/PHOTARK-79
>             Project: PhotArk
>          Issue Type: Bug
>          Components: Build Infrastructure
>    Affects Versions: PhotArk M1
>         Environment: JDK 1.5
>            Reporter: Pascal GILLET
>            Priority: Minor
>              Labels: patch
>             Fix For: PhotArk M1
>
>         Attachments: compile-error.txt, photark-flickr-pom.patch
>
>
> On the PhotArk Developer Guide, it is said that the required version of the JDK is at least 1.5. But in this case, the photark-flickr component cannot compile as the class javax.xml.ws.http.HTTPException, that is part of the JAX-WS API, is not included in the Java 5 API.
> The dependency to the JAX-WS API should be added in the POM within a profile automatically triggered when the JDK's version is 1.5, as following:
> <profiles>
>    <profile>
>       <id>jdk15</id>
>       <activation>
>          <jdk>1.5</jdk>
>       </activation>
>       <dependencies>
>          <dependency>
>             <groupId>javax.xml.ws</groupId>
>             <artifactId>jaxws-api</artifactId>
>             <version>2.2.8</version>
>          </dependency>
>       </dependencies>
>    </profile>
> </profiles>
> OR the required JDK's version should be 6.0 at least...

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Updated] (PHOTARK-79) core JAX-WS API not present in JDK 1.5

Posted by "Pascal GILLET (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PHOTARK-79?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Pascal GILLET updated PHOTARK-79:
---------------------------------

        Fix Version/s:     (was: PhotArk M1)
                       PhotArk M4
    Affects Version/s:     (was: PhotArk M1)
                       PhotArk M4
    
> core JAX-WS API not present in JDK 1.5
> --------------------------------------
>
>                 Key: PHOTARK-79
>                 URL: https://issues.apache.org/jira/browse/PHOTARK-79
>             Project: PhotArk
>          Issue Type: Bug
>          Components: Build Infrastructure
>    Affects Versions: PhotArk M4
>         Environment: JDK 1.5
>            Reporter: Pascal GILLET
>            Priority: Minor
>              Labels: patch
>             Fix For: PhotArk M4
>
>         Attachments: compile-error.txt, photark-flickr-pom.patch
>
>
> On the PhotArk Developer Guide, it is said that the required version of the JDK is at least 1.5. But in this case, the photark-flickr component cannot compile as the class javax.xml.ws.http.HTTPException, that is part of the JAX-WS API, is not included in the Java 5 API.
> The dependency to the JAX-WS API should be added in the POM within a profile automatically triggered when the JDK's version is 1.5, as following:
> <profiles>
>    <profile>
>       <id>jdk15</id>
>       <activation>
>          <jdk>1.5</jdk>
>       </activation>
>       <dependencies>
>          <dependency>
>             <groupId>javax.xml.ws</groupId>
>             <artifactId>jaxws-api</artifactId>
>             <version>2.2.8</version>
>          </dependency>
>       </dependencies>
>    </profile>
> </profiles>
> OR the required JDK's version should be 6.0 at least...

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira