private void initURL(String sep) throws InitializationException
{
try
{
serviceURL = new URL(soapEndPoint);
locator = new QuoteServiceServiceLocator();
}
catch (MalformedURLException e)
{
throw new InitializationException("Failed to locate Quote Service: " + soapEndPoint, e);
}