/// <summary>
 /// .NET accesspointService Create function
 /// </summary>
 public CreateResponse1 Create(CreateRequest request)
 {
     if (request == null || request.Create == null ||
         request.Create.Any == null || request.Create.Any.Length < 1 ||
         request.Create.Any[0] == null)
     {
         throw help.MakePeppolException("bden:ServerError", "ServerError");
     }
     if (!IsPing(request))
     {
         try
         {
             wr.PersistsCreate(request);
         }
         catch (Exception)
         {
             throw help.MakePeppolException("bden:SecurityFault", "There is a security error in processing this request.");
         }
     }
     return(new CreateResponse1(new CreateResponse()
     {
     }));
 }