Re: 5.1 Vmware SDK requires JDK 6

2013-03-05 Thread Min Chen
Thanks Kawai. Nice patch to retrieve session cookie, I just found this link: http://www.java.net/node/696222, talking about similar issue. But it seems that you found a better way to extract cookie using BrowserCompatSpec. I will apply your patch shortly to master to address the build issue. -min

Re: 5.1 Vmware SDK requires JDK 6

2013-03-05 Thread KAWAI Hiroaki
Hi, I wrote a patch for this problem, too. Please see https://reviews.apache.org/r/9768/ (2013/03/06 10:28), Min Chen wrote: Hi there, With recent Vmware SDK upgrade in master branch, Chiradeep reported an issue with JDK7 that I overlooked during my local testing since my setup has JDK 6. We

Re: 5.1 Vmware SDK requires JDK 6

2013-03-05 Thread Chiradeep Vittal
Agree with Kawai here. On 3/5/13 7:49 PM, "KAWAI Hiroaki" wrote: >Hi, that is not a problem of vmware jar. That is a matter of >com.cloud.hypervisor.vmware.util.VmwareContext. It imports >com.sun.xml.internal.ws.transport.http.client.CookieJar, but >it MUST NOT DO so, because it is an library in

Re: 5.1 Vmware SDK requires JDK 6

2013-03-05 Thread KAWAI Hiroaki
Hi, that is not a problem of vmware jar. That is a matter of com.cloud.hypervisor.vmware.util.VmwareContext. It imports com.sun.xml.internal.ws.transport.http.client.CookieJar, but it MUST NOT DO so, because it is an library internal class. We should fix the implementation not use that class. (20

5.1 Vmware SDK requires JDK 6

2013-03-05 Thread Min Chen
Hi there, With recent Vmware SDK upgrade in master branch, Chiradeep reported an issue with JDK7 that I overlooked during my local testing since my setup has JDK 6. We failed to compile vmware-base using JDK 7 due to using com.sun.xml.internal.ws.transport.http.client.CookieJar to retrieve Cook