cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Sap Cloud Webservices

stefano__90
Explorer
0 Kudos
731

Hi,

I installed on my environment the webservices with these steps:

  1. Create custom ycommercewebservices and inserted it into localextension and manifest.json
  2. Removed ootb ycommercewebservices from localextension/manifest
  3. Modified custom ycommercewebservices extensioninfo for take /rest weebroot
  4. Create configuration for oauth clients
  5. Test on local environment -> working!
  6. Test on cloud environment -> Error 403, redirect to HAC login

I saw there is a difference between the environment, in extensions list (hac -> extensions) I see on cloud that there isn't a value on Web column but on local environment is present /rest...

There is not any error into the build log.

I've missing something?

View Entire Topic
stefano__90
Explorer

Solved,

I added new aspect on manifest given it the configuration of context

{

"name": "urlName",
            "webapps": [
                {
                    "name": "hac",
                    "contextPath": "/hac"
                },
                {
                    "name": "mediaweb",
                    "contextPath": "/medias"
                },
                {
                   "name":"oauth2",
                   "contextPath":"/authorizationserver"
                },
                {
                   "name":"somethingwebservices",
                   "contextPath":"/rest"
                }
            ]
}
braveendra
Explorer