E9.2 JDE Consumer BSSV Proxy WebService call

TechnoKid

Member
The below code is the part of a consumer BSSV proxy folder java file. I want help to understand that is there a way to dynamically code this wsdlLocation part. since the URLs meant to be used in Non PROD and PROD environments are different.

import java.net.MalformedURLException;
import java.net.URL;
import javax.xml.namespace.QName;
import javax.xml.ws.Service;
import javax.xml.ws.WebEndpoint;
import javax.xml.ws.WebServiceClient;
import javax.xml.ws.WebServiceException;
import javax.xml.ws.WebServiceFeature;
import oracle.e1.bssvfoundation.base.IContext;
import oracle.e1.bssvfoundation.exception.InvalidSoftCodingRecordException;
import oracle.e1.bssvfoundation.util.SoftCodingRecordAccess;
import org.w3c.dom.Element;

/**
* This class was generated by the JAX-WS RI.
* JAX-WS RI 2.2.8-b13937
* Generated source version: 2.2*/

@WebServiceClient(name = "WS", targetNamespace = http://schemas.m5.com/worklist/d1, wsdlLocation = https://nvcpotest.cs.project.com/m5Services/WS.asmx?WSDL)
 
In P954000 (SoftCoding) you can configure endpoint for environment.
 
Back
Top