Re: Softlayer GlobalIdentifier question

2014-09-04 Thread Andrew Phillips

With the most recent code (master) I am running into other issues. (Pls
Note, I initially tried to update my maven to version 2.0.0 and that still
had the the globalIdentifier problem).


2.0.0 does not exist (yet). I take it you mean 2.0.0-SNAPSHOT [1]?

ap

[1] https:/jclouds.apache.org/start/install/ (see Using the daily builds)


Re: Softlayer GlobalIdentifier question

2014-09-04 Thread Ignasi Barrera
Using the latest version should work. Could you please file an issue in our
JIRA [1] with the relevant code and the provided stacktrace, so we can
properly track and fix it?

Thanks!

I.

[1] https://issues.apache.org/jira/browse/JCLOUDS
El 04/09/2014 23:04, Andrew Phillips andr...@apache.org escribió:

 With the most recent code (master) I am running into other issues. (Pls
 Note, I initially tried to update my maven to version 2.0.0 and that still
 had the the globalIdentifier problem).


 2.0.0 does not exist (yet). I take it you mean 2.0.0-SNAPSHOT [1]?

 ap

 [1] https:/jclouds.apache.org/start/install/ (see Using the daily
 builds)



Re: Softlayer GlobalIdentifier question

2014-09-04 Thread Everett Toews
Here’s how to report a bug.

http://jclouds.apache.org/reference/report-a-bug/

Thanks,
Everett


On Sep 4, 2014, at 4:14 PM, Ignasi Barrera 
n...@apache.orgmailto:n...@apache.org wrote:


Using the latest version should work. Could you please file an issue in our 
JIRA [1] with the relevant code and the provided stacktrace, so we can properly 
track and fix it?

Thanks!

I.

[1] https://issues.apache.org/jira/browse/JCLOUDS

El 04/09/2014 23:04, Andrew Phillips 
andr...@apache.orgmailto:andr...@apache.org escribió:
With the most recent code (master) I am running into other issues. (Pls
Note, I initially tried to update my maven to version 2.0.0 and that still
had the the globalIdentifier problem).

2.0.0 does not exist (yet). I take it you mean 2.0.0-SNAPSHOT [1]?

ap

[1] 
https:/jclouds.apache.org/start/install/http://jclouds.apache.org/start/install/
 (see Using the daily builds)



Re: Softlayer GlobalIdentifier question

2014-09-04 Thread Jai M
Yep, I tried 2.0.0-SNAPSHOT

Rgds
Jai


On Thu, Sep 4, 2014 at 4:02 PM, Andrew Phillips andr...@apache.org wrote:

 With the most recent code (master) I am running into other issues. (Pls
 Note, I initially tried to update my maven to version 2.0.0 and that still
 had the the globalIdentifier problem).


 2.0.0 does not exist (yet). I take it you mean 2.0.0-SNAPSHOT [1]?

 ap

 [1] https:/jclouds.apache.org/start/install/ (see Using the daily
 builds)



Re: Softlayer GlobalIdentifier question

2014-09-04 Thread Jai M
Thanks for looking into it.
Jira link : https://issues.apache.org/jira/browse/JCLOUDS-704

Rgds
Jai


On Thu, Sep 4, 2014 at 4:21 PM, Everett Toews everett.to...@rackspace.com
wrote:

  Here’s how to report a bug.

  http://jclouds.apache.org/reference/report-a-bug/

  Thanks,
 Everett


  On Sep 4, 2014, at 4:14 PM, Ignasi Barrera n...@apache.org wrote:

  Using the latest version should work. Could you please file an issue in
 our JIRA [1] with the relevant code and the provided stacktrace, so we can
 properly track and fix it?

 Thanks!

 I.

 [1] https://issues.apache.org/jira/browse/JCLOUDS
 El 04/09/2014 23:04, Andrew Phillips andr...@apache.org escribió:

  With the most recent code (master) I am running into other issues. (Pls
 Note, I initially tried to update my maven to version 2.0.0 and that
 still
 had the the globalIdentifier problem).


 2.0.0 does not exist (yet). I take it you mean 2.0.0-SNAPSHOT [1]?

 ap

 [1] https:/jclouds.apache.org/start/install/ (see Using the daily
 builds)





Re: Softlayer GlobalIdentifier question

2014-09-03 Thread Ignasi Barrera
Ah, right. The SoftLayer provider was modernized in our last 1.8 release.
Could you try upgrading and share what you find out?

Thanks!

I.
El 03/09/2014 19:40, Jai M jaiganes...@gmail.com escribió:

 Thanks Ignasi for getting back on this. I was looking at the master branch
 code to see if I can fix it. However the SoftLayerComputeServiceAdapter
 class has been revamped now. I don not see the globalIdentifier being used
 anymore.
 I will try out with the latest code.

 Rgds
 Jai


 On Sun, Aug 31, 2014 at 7:32 AM, Ignasi Barrera n...@apache.org wrote:

 Hi Jai,

 Thanks for sharing and figuring out the cause of your issue.

 Could you please open a JIRA issue [1] so we can track this?

 And could you send your changes as a pull request [2]? This way we'll be
 able to review and test it before merging. Patches and pull request are
 very welcome!

 Thanks!

 I.

 [1] https://issues.apache.org/jira/browse/JCLOUDS
 [2] http://wiki.apache.org/jclouds/How%20to%20Contribute
 El 28/08/2014 16:23, Jai M jaiganes...@gmail.com escribió:

 Hi,

I am trying out the Softlayer adapter in 1.8.x release. While
 creating a virtual guest with method createNodeWithGroupEncodedIntoName, I
 get a validation error that the globalIdentifier is null. The problem was
 that, the private images that I have in softlayer have globalIdentifier as
 null. However they all have an Id.

 Why is the adapter code looking for the global identifier if the private
 images can have it as null ?
 Only after I changed the SoftLayerComputeServiceAdapter code to look for
 id instead of globalIdentifier, I was able to proceed.

 Changed line 354 from

  final String globalIdentifier =  + image.getGlobalIdentifier();

 to

  final String globalIdentifier =  + image.getId();

 Let me know if this is good and if can be incorporated.

 Rgds
 Jai





Re: Softlayer GlobalIdentifier question

2014-08-31 Thread Ignasi Barrera
Hi Jai,

Thanks for sharing and figuring out the cause of your issue.

Could you please open a JIRA issue [1] so we can track this?

And could you send your changes as a pull request [2]? This way we'll be
able to review and test it before merging. Patches and pull request are
very welcome!

Thanks!

I.

[1] https://issues.apache.org/jira/browse/JCLOUDS
[2] http://wiki.apache.org/jclouds/How%20to%20Contribute
El 28/08/2014 16:23, Jai M jaiganes...@gmail.com escribió:

 Hi,

I am trying out the Softlayer adapter in 1.8.x release. While creating
 a virtual guest with method createNodeWithGroupEncodedIntoName, I get a
 validation error that the globalIdentifier is null. The problem was that,
 the private images that I have in softlayer have globalIdentifier as null.
 However they all have an Id.

 Why is the adapter code looking for the global identifier if the private
 images can have it as null ?
 Only after I changed the SoftLayerComputeServiceAdapter code to look for
 id instead of globalIdentifier, I was able to proceed.

 Changed line 354 from

  final String globalIdentifier =  + image.getGlobalIdentifier();

 to

  final String globalIdentifier =  + image.getId();

 Let me know if this is good and if can be incorporated.

 Rgds
 Jai



Softlayer GlobalIdentifier question

2014-08-28 Thread Jai M
Hi,

   I am trying out the Softlayer adapter in 1.8.x release. While creating a
virtual guest with method createNodeWithGroupEncodedIntoName, I get a
validation error that the globalIdentifier is null. The problem was that,
the private images that I have in softlayer have globalIdentifier as null.
However they all have an Id.

Why is the adapter code looking for the global identifier if the private
images can have it as null ?
Only after I changed the SoftLayerComputeServiceAdapter code to look for id
instead of globalIdentifier, I was able to proceed.

Changed line 354 from

 final String globalIdentifier =  + image.getGlobalIdentifier();

to

 final String globalIdentifier =  + image.getId();

Let me know if this is good and if can be incorporated.

Rgds
Jai