Hi
On OSB12c we have a business service that has a proxy server attached to;
on our production environment that proxy server should not be attached to that bs.
I thought it would be possible to do this by using a customisation file when deploying the service to the production environment.
I deploy the sb-project without proxy server attached to the business service
in my customization file I have this entry:
<cus:externalReferenceMap>
<xt:oldRef>
<xt:type>ProxyServer</xt:type>
<xt:path>System/Proxy Servers/my-proxyserver</xt:path>
</xt:oldRef>
<xt:newRef>
<xt:type>ProxyServer</xt:type>
<xt:path>System/Proxy Servers/my-proxyserver</xt:path>
</xt:newRef>
</cus:externalReferenceMap>
after executing the customisation file the proxy server is not attached to the business service.
Probably because the oldRef contains a proxyserver that is not already attached to the business service
oldRef should be empty because there is no old proxy server, but oldRef is a required element , so I can't give it an empty value.
I also tried to deploy my service with an attached proxyserver and tried to remove the proxy server through the customization file, but this also didn't work because newRef is also required.
Any ideas on how to make this work ?
thank you