Re: [NF] Understanding Rackspace documentation

2022-05-16 Thread Frank Cazabon
Thanks, unfortunately I don't have much of a say regarding my client's use of Rackspace. They have another developer who seems familiar with the PHP SDK so I'm trying to get this person to do this work. I think they also cannot achieve what they want to do anyhow because their data does not

Re: [NF] Understanding Rackspace documentation

2022-05-13 Thread Ed Leafe
On May 13, 2022, at 14:38, Frank Cazabon wrote: > > Ed, is there a C# SDK for doing this? Or maybe it's time to learn some python. A long time ago there was, but I have no knowledge of its current state. I used to head of the team that developed SDKs for Python, Java, NodeJS, Ruby, C#, and

Re: [NF] Understanding Rackspace documentation

2022-05-13 Thread Frank Cazabon
Ed, is there a C# SDK for doing this? Or maybe it's time to learn some python. Frank. Frank Cazabon On 13/05/2022 9:12 am, Ed Leafe wrote: On May 13, 2022, at 07:36, Frank Cazabon wrote: What I get back is: Status 404, the resource could not be found. Can you see what I am doing wrong?

Re: [NF] Understanding Rackspace documentation

2022-05-13 Thread Frank Cazabon
I just tried it with no difference. I wonder if this has anything to do with user rights. While in the UI on rackspace I saw a message about not being able to upload files unless my admin was logged in. I'll get the client to logion and see. Frank. Frank Cazabon On 13/05/2022 9:12 am, Ed

Re: [NF] Understanding Rackspace documentation

2022-05-13 Thread Ed Leafe
On May 13, 2022, at 07:36, Frank Cazabon wrote: > > What I get back is: Status 404, the resource could not be found. > > Can you see what I am doing wrong? Nothing jumps out at me. There is a 'v2' version of the API - have you tried that? -- Ed Leafe

Re: [NF] Understanding Rackspace documentation

2022-05-13 Thread Frank Cazabon
I pull it out from an earlier response used for authentication Frank. Frank Cazabon On 13/05/2022 8:40 am, Paul Newton wrote: Where does m.lcToken come from? On 13/05/2022 13:36, Frank Cazabon wrote: Hi Ed, unfortunately I'm not getting it to work (either from VFP or from Postman). Here

Re: [NF] Understanding Rackspace documentation

2022-05-13 Thread Paul Newton
Where does m.lcToken come from? On 13/05/2022 13:36, Frank Cazabon wrote: Hi Ed, unfortunately I'm not getting it to work (either from VFP or from Postman). Here is what I have tried in VFP: m.lcAccountNumber = "99" && 6 digit customer number m.lcSourceFile =

Re: [NF] Understanding Rackspace documentation

2022-05-13 Thread Frank Cazabon
Hi Ed, unfortunately I'm not getting it to work (either from VFP or from Postman). Here is what I have tried in VFP: m.lcAccountNumber = "99" && 6 digit customer number m.lcSourceFile = "/PensionDocuments/0003598C-466F-9A42-1C5E-F38944279108.pdf" m.lcDestFile =

Re: [NF] Understanding Rackspace documentation

2022-05-13 Thread Frank Cazabon
:) Thanks Ed. I'll let you know how I get on. Frank. Frank Cazabon On 12/05/2022 3:33 pm, Ed Leafe wrote: On May 12, 2022, at 14:31, Ed Leafe wrote: Here's the code as it should be: https://github.com/pycontribs/pyrax/blob/master/pyrax/object_storage.py#L599-L606 Geez, that's just the

Re: [NF] Understanding Rackspace documentation

2022-05-12 Thread Kurt @ Gmail
Actually - I believe the Big Kahuna here - Ed Leafe - he worked for RackSpace if I am not Mistaken!!! On 5/12/2022 11:10 AM, Frank Cazabon wrote: Hi, anybody here ever had to do anything with Rackspace's  Storage API to move objects around? I think I've seen Rackspace mentioned here before

Re: [NF] Understanding Rackspace documentation

2022-05-12 Thread Ed Leafe
On May 12, 2022, at 14:31, Ed Leafe wrote: > > Here's the code as it should be: > https://github.com/pycontribs/pyrax/blob/master/pyrax/object_storage.py#L599-L606 Geez, that's just the handler code. Here's the actual call I copied in the first message:

Re: [NF] Understanding Rackspace documentation

2022-05-12 Thread Ed Leafe
On May 12, 2022, at 14:06, Ed Leafe wrote: > > nm = new_obj_name or utils.get_name(obj) > uri = "/%s/%s" % (utils.get_name(new_container), nm) > copy_from = "/%s/%s" % (utils.get_name(container), utils.get_name(obj)) > headers = {"X-Copy-From": copy_from, > "Content-Length": "0"} > if

Re: [NF] Understanding Rackspace documentation

2022-05-12 Thread Ed Leafe
On May 12, 2022, at 13:10, Frank Cazabon wrote: > > anybody here ever had to do anything with Rackspace's Storage API to move > objects around? > > I think I've seen Rackspace mentioned here before so I'm hoping. > > I've got to copy a file from one container to another (actually it's a lot