/// <summary>
 /// Create a new reference.
 /// </summary>
 /// <param name="clientInformation">Information about the client that makes this web service call.</param>
 /// <param name="reference">New reference to create.</param>
 public void CreateReference(WebClientInformation clientInformation,
                             WebReference reference)
 {
     using (WebServiceContext context = GetWebServiceContext(clientInformation))
     {
         try
         {
             ReferenceManager.CreateReference(context, reference);
         }
         catch (Exception exception)
         {
             WebServiceData.LogManager.LogError(context, exception);
             throw;
         }
     }
 }