This question has been flagged

I'm getting an issue while connecting Odoo site in lambda function over HTTPS. I am updating data in odoo from s3 bucket files through lambda function. It is working fine with HTTP but showing timeout issue while using HTTPS.

Use the following parameters to connect the Node.js Client Lib with AWS S3 Bucket & Odoo Server  

1.AWS SDK
The AWS SDK used as a collection of tools for developers creating Web apps to run on Amazon cloud components such as Amazon Simple Storage Service (S3)

2.AWS S3 :
Amazon S3 or Amazon Simple Storage Service is a service offered by Amazon Web Services that provides object storage through a web service interface

3.odoo-xmlrpc :

- Used to connect lambda functions to connect with odoo
- It used url, port, db, username, password
- Calls "odoo.connect" at each and every function to refelect lambda function's process in odoo

4.Bucket and key  :

- Get bucket name and key from "event.Records"
- Set bucket and key values in Bucket and Key fields in params from

5.s3.getObject  :

- Use to get JSON file(data object) from s3 bucket

6.s3.copyObject  :

- Copy successfuly processed file at there destination in s3 bucket
- Set current s3 bucket's address a copySource with help of srcBucket and source
- Set destination bucket's address at Bucket in s3.copyObject
- Set sourceObject as a key in s3.copyObject

7.s3.deleteObject  :
- Delete processed file at there current bucket path while "s3.copyObject" is running

For Example 
Below is the JS configuration used in lambda function
Server Configuration​

var odoo = new Odoo({
url: 'https://abc.example.com',
port: '8069',
db: 'databasename',
username: 'username',
password: 'password'
});

Logging 
odoo.connect(function (err) {
if (err) { return console.log(err); }
    console.log('Connected to Odoo server.');
});


Current Result  :
Workable only with HTTP url based Odoo server not connected with HTTPS

Expected Result  :
I require to process with HTTP & HTTPS both URL based Access of Odoo server

Reference document for node.js client xmlrpc call 

https://www.npmjs.com/package/odoo-xmlrpc

Avatar
Discard