protected void Page_Load(object sender, EventArgs e)
        {
            string _ErrorMessage;

            CommonWebServiceProc.LoadWebSearchReq(out _ErrorMessage);
            this.ErrorMessage.Value = _ErrorMessage;
        }
Esempio n. 2
0
        protected void Page_Load(object sender, EventArgs e)
        {
            string _LoginMode, _DefaultID, _DefaultPass;

            CommonWebServiceProc.LoadWebLogin(out _LoginMode, out _DefaultID, out _DefaultPass);
            this.LoginMode.Value   = _LoginMode;
            this.DefaultID.Value   = _DefaultID;
            this.DefaultPass.Value = _DefaultPass;
        }
Esempio n. 3
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (HttpContext.Current.Session["usercd"] != null)
     {
         int userCd = (int)HttpContext.Current.Session["usercd"];
         LogUtil.Write(LogUtil.LogType.Debug, "webImageHistory", "Page_Load", "START [" + userCd.ToString() + "]");
         CommonWebServiceProc.GetImage(userCd, ConfigUtil._HistoryImageViewPath);
     }
     else
     {
         LogUtil.Write(LogUtil.LogType.Error, "webImageHistory", "Page_Load", "セッションからのユ\u30fcザ\u30fcコ\u30fcドが取得出来ません。");
     }
 }
Esempio n. 4
0
 protected void Page_Load(object sender, EventArgs e)
 {
     try
     {
         string usercd = Page.Request.QueryString.Get("usercd");
         if (!string.IsNullOrEmpty(usercd))
         {
             System.Diagnostics.Debug.WriteLine(usercd);
             // ログインチェック
             if (CommonWebServiceProc.AutoLogin(usercd) == 0)
             {
                 // 検索画面にリダイレクト
                 Response.Redirect("./webSearch.aspx");
                 HttpContext.Current.Session["usercd"] = usercd;
             }
         }
     }
     catch { }
 }
Esempio n. 5
0
 public WebResult SetKeyword(string StudyKey, string Keyword)
 {
     return(CommonWebServiceProc.SetKeyword(StudyKey, Keyword));
 }
Esempio n. 6
0
 public bool Logout()
 {
     return(CommonWebServiceProc.Logout());
 }
Esempio n. 7
0
 protected void Page_Load(object sender, EventArgs e)
 {
     CommonWebServiceProc.LoadWebViewer();
 }
Esempio n. 8
0
 public WebMemoList GetStudyMemo(string SKey, string StudyKey)
 {
     return(CommonWebServiceProc.GetStudyMemo(SKey, StudyKey));
 }
Esempio n. 9
0
 public WebDicomTagList GetDicomTagAll(string SKey, string ImageKey)
 {
     return(CommonWebServiceProc.GetDicomTagAll(SKey, ImageKey));
 }
Esempio n. 10
0
 public WebImageInfo GetImageInfo(string SKey, string ImageKey)
 {
     return(CommonWebServiceProc.GetImageInfo(SKey, ImageKey));
 }
Esempio n. 11
0
 public WebImageList GetImageList(string SKey, string SeriesKey)
 {
     return(CommonWebServiceProc.GetImageList(SKey, SeriesKey));
 }
Esempio n. 12
0
 public WebResult PutImage(string SKey, string[] Trace, string Path)
 {
     return(CommonWebServiceProc.PutImage(SKey, Trace, Path));
 }
Esempio n. 13
0
 public WebResult SetStudyMemo(string SKey, string StudyKey, string UserName, string Memo)
 {
     return(CommonWebServiceProc.SetStudyMemo(SKey, StudyKey, UserName, Memo));
 }
Esempio n. 14
0
 public WebResult SetComment(string StudyKey, string Comment)
 {
     return(CommonWebServiceProc.SetComment(StudyKey, Comment));
 }
Esempio n. 15
0
 public WebResult DelStudy(string StudyKey)
 {
     return(CommonWebServiceProc.DelStudy(StudyKey));
 }
Esempio n. 16
0
 public WebStudyList GetPastStudyList(string SKey, string PatientID, string StudyKey)
 {
     return(CommonWebServiceProc.GetPastStudyList(SKey, PatientID, StudyKey));
 }
Esempio n. 17
0
 public WebSeriesList GetSeriesList(string SKey, string StudyKey, string Password)
 {
     return(CommonWebServiceProc.GetSeriesList(SKey, StudyKey, Password, true));
 }
Esempio n. 18
0
 public WebPrefetchImageList PrefetchImageList(string SKey, string SeriesKey)
 {
     return(CommonWebServiceProc.PrefetchImageList(SKey, SeriesKey));
 }
Esempio n. 19
0
 public WebImageList GetImageList2(string SKey, string[] ImageKeys)
 {
     return(CommonWebServiceProc.GetImageList2(SKey, ImageKeys));
 }
Esempio n. 20
0
 public WebResult PrefetchImage(string SKey, string ImageKey)
 {
     return(CommonWebServiceProc.PrefetchImage(SKey, ImageKey));
 }
Esempio n. 21
0
 public WebDicomTagList GetDicomTag(string SKey, string ImageKey, uint[] Tags)
 {
     return(CommonWebServiceProc.GetDicomTag(SKey, ImageKey, Tags));
 }
Esempio n. 22
0
 public WebGSPSDataList GetGspsDataList(string SKey, string GSPSKey)
 {
     return(CommonWebServiceProc.GetGspsDataList(SKey, GSPSKey));
 }
Esempio n. 23
0
 public WebCTValue GetCTValue(string SKey, string ImageKey, string Params)
 {
     return(CommonWebServiceProc.GetCTValue(SKey, ImageKey, Params));
 }
Esempio n. 24
0
 public WebParams GetParams(string SKey)
 {
     return(CommonWebServiceProc.GetParams(SKey));
 }
 protected void Page_Load(object sender, EventArgs e)
 {
     CommonWebServiceProc.GetThumbnail();
 }
Esempio n. 26
0
 public WebUserConfigList GetUserConfig(string SKey)
 {
     return(CommonWebServiceProc.GetUserConfig(SKey));
 }
Esempio n. 27
0
 public bool Login(string LoginID, string Password, string Extension)
 {
     return(CommonWebServiceProc.Login(LoginID, Password, Extension));
 }
Esempio n. 28
0
 public WebModalityConfigList GetModalityConfig(string SKey)
 {
     return(CommonWebServiceProc.GetModalityConfig(SKey));
 }
Esempio n. 29
0
 public WebAnnotationList GetAnnotationList(string SKey)
 {
     return(CommonWebServiceProc.GetAnnotationList(SKey));
 }
Esempio n. 30
0
 public WebSeriesList GetSeriesList(string StudyKey)
 {
     return(CommonWebServiceProc.GetSeriesList("", StudyKey, "", false));
 }