In my project i want to establish connection to hybris and get data from there. And print that data in AEM.
How to i do it and how to connect to hybris ?
You have several solutions.
One would be to use hybris OCC Webservice. hybris exposes one WS to retrieve the full content of a product catalog and an other to retrieve only the delta using a timestamp as reference.
In your osgi configuration you will find the url to configure it should be something like /rest/v2/mysite/products/export/full
Related
I am trying to fetch BI Publisher report's data created in our OBIEE 12c environment.
We are using REST API's as mentioned in this document.
Also, we are exploring options of SOAP API methods using WSDL - https://6x.xx.xx.xxx:9502/xmlpserver/services/ExternalReportWSSService?WSDL
But the results were not found in SOAP UI and Postman for SOAP API and REST API respectively.
Eventually, we are able to fetch the results of Subject area and Analysis created in OBIEE 12c using SOAP methods.
https://6x.xx.xx.xxx:9502/analytics-ws/saw.dll?wsdl
Let us know if there is any specific configuration needed in our Oracle Business Intelligence Enterprise Edition(OBIEE 12c).
I'm learning REST connector in data factory , I'm trying to create a linked services with REST, but it needs to provide base URL ,I wonder where I can get this.
We can use many programe languages to build a REST Service. When you have permission to access this api, it will return a json object or json object array.
For example, using Spring to build a RESTful Web Service. In this case, http://localhost:8080/ is your base url. If your domain is localhost, you need to use self-hosted-integration-runtime to connect to your local server.
We have an application developed with react and NodeJs and already implemented an MYOB cloud ERP integration to import data. Now we are planning to add a new ERP integration for Acumatica, in the developer document it was mentioned that the rest API is available but I can't find the cloud instance URL, everywhere it was mentioned as localhost only. So can anyone please help me to understand how to connect the Acumatica cloud to fetch details?
Note: I understand the authorization flow like Authorization Code but I'm confused with which URL to use for and I hope it should be a fixed one as it is a cloud URL
The Integration end points is a rather large topic. I am in the process of writing a blog post on it which is more or less a getting started blog on automating stuff and getting info via ReST. The blog itself is in the context of using these services via PowerShell but if you are able to follow along and get to the point of establishing postman examples of what you need to do you should be able to get to the same end result in any language.
You will want to explore The Web Services Endpoint screen in the integration module as this is where all the Contract Based Soap/ReST definitions are managed. You can even set up custom endpoint if you need.
Do you have access to the Acumatica Portal? The best way to get started is with some of the course work there.
Stand by and ill forward some information for you to get started.
Robert
The URL for the RestAPI is whatever is the site URL of your Acumatica instance. For example if your Acumatica is hosted in www.ManiMaran.com. To login to your API :
http://ManiMaran.com/entity/auth/login.
Guys i need to develop a JAVA web service which reads data from a HTML form and stores the data into the MYSQL database. i have no idea about how to achieve this. Can someone give me a detailed step by step explanation as to how i should proceed.
i know i can do it using servlets. But my requirement is that it has to be done only through a web service
So , first of all you have to create a structure like this :
DAO for storing and retrieving data from DB
Web Service exposes methods to save datas (simply calling dao and passing data)
Your web app with html form. Submitting your form you have to call a servlet to manage received data. On this servlet simply call the web service client.
Take a look at this : https://netbeans.org/kb/docs/websvc/jax-ws.html if this is your first web service
I am very new to CQ5 and Hybris. I am implementing a scenario where a Customer registers in CQ5 frontend website and the details are subsequently saved in Hybris as well as CQ5.
I am using CQ5.6.1, Hybris 5.0.4, CQ Hybris Content 5.6.100 packages.
Could someone help me what steps should I follow to implement the scenario? Any help is appreciated.
Thanks,
Varada
First of all, in order to achieve the connection between CQ5 and hybris you'll need to implement something called Omni Commerce Connect, which is basically achieved by extending hybris' ycommercewebservices extension.
That way you have a bunch of Web Service endpoints on your hybris tier ready to be consumed by integrating clients, including endpoints to create and update customer accounts in hybris.
My CQ5 is a bit rusty, but from what I remember we had something called a ProfileSynchronizer that you had to register as an Event Handler or something on CQ. This ProfileSynchronizer would then be triggered by CQ5 whenever a user account was created or updated and in this synchronizer you'll have to write the appropriate code to call the hybris endpoint which updates user accounts in hybris.
Hopefully this can get you started.