עזרה עם שגיאה בהעלאת קובץ בחלקים לימות המשיח בc#
-
@dovid שכחתי לציין במפורש, רק הלארג', הבעיה היא איפשהו בהעלאת החלקים,
גם כי העלאת קובץ גדול (עד 50) בUploadSmallFileAsync עובדת מצויין, וגם כי אני מקבל את השגיאה רק אחרי העלאת כל חלק, אבל בתגובה לבקשת סיום ההעלאה חוזרת תגובה של הצלחה מימות המשיח, (רק שהקובץ שנוצר ריק, כי אין חלקים..)
-
באמת על פניו נראה תמוה, אם תסכים לשתף אותי בטוקן שלך במייל אשמח.
בינתיים סידרתי את הקוד שיהיה יותר קל לבדוק:public class YemotUploader { // הגדרה אחת בלבד של גודל הצ'אנק public static readonly int ChunkSizeBytes = 8000000; // 8MB public YemotUploader(string fullFileName) { FileFullName = fullFileName; FileName = Path.GetFileName(fullFileName); FileSize = new FileInfo(FileFullName).Length; PartCount = (int)Math.Ceiling((double)FileSize / ChunkSizeBytes); } //static yemot setting public string tokenYemot { get; set; } public string path { get; set; } //preference per upload public bool convertAudio { get; set; } = false; public bool autoNumbering { get; set; } = false; //file prop public string FileFullName { get; set; } public string FileName { get; set; } public long FileSize { get; set; } //parts props public long PartSize { get; set; } public int PartCount { get; set; } public string qquuid { get; set; } public async Task<string> UploadFileAsync() { if (FileSize <= ChunkSizeBytes) return await UploadSmallFileAsync(); else return await UploadLargeFileAsync(); } private async Task<string> UploadSmallFileAsync() { using (var httpClient = new HttpClient()) using (var formData = new MultipartFormDataContent()) { AddGeneralInfo(formData); formData.Add(new ByteArrayContent(File.ReadAllBytes(FileFullName)), "file"); var response = await httpClient.PostAsync("https://www.call2all.co.il/ym/api/UploadFile", formData); return await response.Content.ReadAsStringAsync(); } } private async Task UploadPart(int index, long offset, byte[] part) { using (var content = new MultipartFormDataContent()) using (var httpClient = new HttpClient()) { AddGeneralInfo(content); content.Add(new StringContent("yemot-admin"), "uploader"); content.Add(new StringContent(qquuid), "qquuid"); content.Add(new StringContent(FileName), "qqfilename"); content.Add(new StringContent(FileSize.ToString()), "qqtotalfilesize"); content.Add(new StringContent(PartCount.ToString()), "qqtotalparts"); content.Add(new StringContent(PartSize.ToString()), "qqchunksize"); content.Add(new StringContent(offset.ToString()), "qqpartbyteoffset"); content.Add(new StringContent(index.ToString()), "qqpartindex"); content.Add(new ByteArrayContent(part), "qqfile"); var res = await httpClient.PostAsync("https://www.call2all.co.il/ym/api/UploadFile", content); Console.WriteLine($"Response part {index}: {await res.Content.ReadAsStringAsync()}"); } } private async Task<string> UploadLargeFileAsync() { var qquuid = Guid.NewGuid().ToString(); var index = 0; foreach (var chunk in ReadInChunks(FileFullName)) { await UploadPart(index, index * PartSize, chunk); index++; } using (var httpClient = new HttpClient()) { var finalFormData = new FormUrlEncodedContent(new Dictionary<string, string> { { "token", tokenYemot }, { "path", path }, { "uploader", "yemot-admin" }, { "convertAudio", convertAudio ? "1" :"0" }, { "autoNumbering", autoNumbering ? "1" :"0" }, { "qquuid", qquuid }, { "qqfilename", FileName }, { "qqtotalfilesize", FileSize.ToString() }, { "qqtotalparts", PartCount.ToString() } }); try { var doneResponse = await httpClient.PostAsync( "https://www.call2all.co.il/ym/api/UploadFile?done", finalFormData ); var responseText = await doneResponse.Content.ReadAsStringAsync(); Console.WriteLine($"Done response: {responseText}"); return responseText; } catch(System.Net.WebException ex) { Console.WriteLine($"Error in done request: {ex.Message}"); //get response var responseText = new StreamReader(ex.Response.GetResponseStream()).ReadToEnd(); Console.WriteLine($"Response: {responseText}"); throw; } catch (Exception ex) { Console.WriteLine($"Error in done request: {ex.Message}"); throw; } } } private void AddGeneralInfo(MultipartFormDataContent content) { content.Add(new StringContent(tokenYemot), "token"); content.Add(new StringContent(path), "path"); content.Add(new StringContent(convertAudio ? "1" : "0"), "convertAudio"); content.Add(new StringContent(autoNumbering ? "1" : "0"), "autoNumbering"); } private IEnumerable<byte[]> ReadInChunks(string filePath) { using (var fileStream = new FileStream(filePath, FileMode.Open, FileAccess.Read)) { var buffer = new byte[ChunkSizeBytes]; int bytesRead; while ((bytesRead = fileStream.Read(buffer, 0, buffer.Length)) > 0) yield return buffer.Take(bytesRead).ToArray(); } } }
-
באמת על פניו נראה תמוה, אם תסכים לשתף אותי בטוקן שלך במייל אשמח.
בינתיים סידרתי את הקוד שיהיה יותר קל לבדוק:public class YemotUploader { // הגדרה אחת בלבד של גודל הצ'אנק public static readonly int ChunkSizeBytes = 8000000; // 8MB public YemotUploader(string fullFileName) { FileFullName = fullFileName; FileName = Path.GetFileName(fullFileName); FileSize = new FileInfo(FileFullName).Length; PartCount = (int)Math.Ceiling((double)FileSize / ChunkSizeBytes); } //static yemot setting public string tokenYemot { get; set; } public string path { get; set; } //preference per upload public bool convertAudio { get; set; } = false; public bool autoNumbering { get; set; } = false; //file prop public string FileFullName { get; set; } public string FileName { get; set; } public long FileSize { get; set; } //parts props public long PartSize { get; set; } public int PartCount { get; set; } public string qquuid { get; set; } public async Task<string> UploadFileAsync() { if (FileSize <= ChunkSizeBytes) return await UploadSmallFileAsync(); else return await UploadLargeFileAsync(); } private async Task<string> UploadSmallFileAsync() { using (var httpClient = new HttpClient()) using (var formData = new MultipartFormDataContent()) { AddGeneralInfo(formData); formData.Add(new ByteArrayContent(File.ReadAllBytes(FileFullName)), "file"); var response = await httpClient.PostAsync("https://www.call2all.co.il/ym/api/UploadFile", formData); return await response.Content.ReadAsStringAsync(); } } private async Task UploadPart(int index, long offset, byte[] part) { using (var content = new MultipartFormDataContent()) using (var httpClient = new HttpClient()) { AddGeneralInfo(content); content.Add(new StringContent("yemot-admin"), "uploader"); content.Add(new StringContent(qquuid), "qquuid"); content.Add(new StringContent(FileName), "qqfilename"); content.Add(new StringContent(FileSize.ToString()), "qqtotalfilesize"); content.Add(new StringContent(PartCount.ToString()), "qqtotalparts"); content.Add(new StringContent(PartSize.ToString()), "qqchunksize"); content.Add(new StringContent(offset.ToString()), "qqpartbyteoffset"); content.Add(new StringContent(index.ToString()), "qqpartindex"); content.Add(new ByteArrayContent(part), "qqfile"); var res = await httpClient.PostAsync("https://www.call2all.co.il/ym/api/UploadFile", content); Console.WriteLine($"Response part {index}: {await res.Content.ReadAsStringAsync()}"); } } private async Task<string> UploadLargeFileAsync() { var qquuid = Guid.NewGuid().ToString(); var index = 0; foreach (var chunk in ReadInChunks(FileFullName)) { await UploadPart(index, index * PartSize, chunk); index++; } using (var httpClient = new HttpClient()) { var finalFormData = new FormUrlEncodedContent(new Dictionary<string, string> { { "token", tokenYemot }, { "path", path }, { "uploader", "yemot-admin" }, { "convertAudio", convertAudio ? "1" :"0" }, { "autoNumbering", autoNumbering ? "1" :"0" }, { "qquuid", qquuid }, { "qqfilename", FileName }, { "qqtotalfilesize", FileSize.ToString() }, { "qqtotalparts", PartCount.ToString() } }); try { var doneResponse = await httpClient.PostAsync( "https://www.call2all.co.il/ym/api/UploadFile?done", finalFormData ); var responseText = await doneResponse.Content.ReadAsStringAsync(); Console.WriteLine($"Done response: {responseText}"); return responseText; } catch(System.Net.WebException ex) { Console.WriteLine($"Error in done request: {ex.Message}"); //get response var responseText = new StreamReader(ex.Response.GetResponseStream()).ReadToEnd(); Console.WriteLine($"Response: {responseText}"); throw; } catch (Exception ex) { Console.WriteLine($"Error in done request: {ex.Message}"); throw; } } } private void AddGeneralInfo(MultipartFormDataContent content) { content.Add(new StringContent(tokenYemot), "token"); content.Add(new StringContent(path), "path"); content.Add(new StringContent(convertAudio ? "1" : "0"), "convertAudio"); content.Add(new StringContent(autoNumbering ? "1" : "0"), "autoNumbering"); } private IEnumerable<byte[]> ReadInChunks(string filePath) { using (var fileStream = new FileStream(filePath, FileMode.Open, FileAccess.Read)) { var buffer = new byte[ChunkSizeBytes]; int bytesRead; while ((bytesRead = fileStream.Read(buffer, 0, buffer.Length)) > 0) yield return buffer.Take(bytesRead).ToArray(); } } }
-
@dovid כתב בעזרה עם שגיאה בהעלאת קובץ בחלקים לימות המשיח בc#:
אם תסכים לשתף אותי בטוקן שלך במייל אשמח
תודה!
שלחתי במייל@אביי
איזה path כתבת? -
@אביי
איזה path כתבת? -
@צדיק-תמים זה לא משנה בימות, ובהתחלה זה היה בלי, והוספתי כי אמרתי אולי זה הבעיה..
-
@צדיק-תמים זה לא משנה בימות, ובהתחלה זה היה בלי, והוספתי כי אמרתי אולי זה הבעיה..
-
@אביי האם דרך אתר הניהול החדש של ימות אתה מצליח להעלות את הקובץ הזה עם מספור אוטומטי לנתיב הזה?
@צדיק-תמים מהאתר החדש עובד,
בדקתי גם במערכת בשרת אחר (פרייבט) ואותו הדבר,
מה שכן שמתי לב שם, שימות עצמם רושמים את הpath כך :
ivr/22
(ניסיתי, ועובד בקטנים, ואותה שגיאה בהעלאה בחלקים..)יש עניין להביא cURL של אחד החלקים? (מהאתר החדש)
-
@צדיק-תמים מהאתר החדש עובד,
בדקתי גם במערכת בשרת אחר (פרייבט) ואותו הדבר,
מה שכן שמתי לב שם, שימות עצמם רושמים את הpath כך :
ivr/22
(ניסיתי, ועובד בקטנים, ואותה שגיאה בהעלאה בחלקים..)יש עניין להביא cURL של אחד החלקים? (מהאתר החדש)
-
@אביי כתב בעזרה עם שגיאה בהעלאת קובץ בחלקים לימות המשיח בc#:
יש עניין להביא cURL של אחד החלקים? (מהאתר החדש)
ברור שיש עניין, אבל תוריד את הקוקיז/טוקן לפני הדבקה בפורום.
curl ^"https://private.call2all.co.il/ym/api//UploadFile^" ^ -H ^"Accept: application/json^" ^ -H ^"Accept-Language: he-IL,he;q=0.9^" ^ -H ^"Cache-Control: no-cache^" ^ -H ^"Connection: keep-alive^" ^ -H ^"Content-Type: multipart/form-data; boundary=----WebKitFormBoundaryIMbkXAPvau1ArzUz^" ^ -H ^"Cookie: XXXXXXXXXX -H ^"DNT: 1^" ^ -H ^"Origin: https://private.call2all.co.il^" ^ -H ^"Referer: https://private.call2all.co.il/yemot-admin-g1/^" ^ -H ^"Sec-Fetch-Dest: empty^" ^ -H ^"Sec-Fetch-Mode: cors^" ^ -H ^"Sec-Fetch-Site: same-origin^" ^ -H ^"User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36^" ^ -H ^"X-Requested-With: XMLHttpRequest^" ^ -H ^"sec-ch-ua: ^\^"Chromium^\^";v=^\^"130^\^", ^\^"Google Chrome^\^";v=^\^"130^\^", ^\^"Not?A_Brand^\^";v=^\^"99^\^"^" ^ -H ^"sec-ch-ua-mobile: ?0^" ^ -H ^"sec-ch-ua-platform: ^\^"Windows^\^"^" ^ --data-raw ^"------WebKitFormBoundaryIMbkXAPvau1ArzUz^ Content-Disposition: form-data; name=^\^"uploader^\^"^ ^ yemot-admin^ ------WebKitFormBoundaryIMbkXAPvau1ArzUz^ Content-Disposition: form-data; name=^\^"token^\^"^ ^ XXXXXXXXXXXXXXXXX^ ------WebKitFormBoundaryIMbkXAPvau1ArzUz^ Content-Disposition: form-data; name=^\^"path^\^"^ ^ ivr/22/^ ------WebKitFormBoundaryIMbkXAPvau1ArzUz^ Content-Disposition: form-data; name=^\^"convertAudio^\^"^ ^ 0^ ------WebKitFormBoundaryIMbkXAPvau1ArzUz^ Content-Disposition: form-data; name=^\^"autoNumbering^\^"^ ^ true^ ------WebKitFormBoundaryIMbkXAPvau1ArzUz^ Content-Disposition: form-data; name=^\^"qqpartindex^\^"^ ^ 0^ ------WebKitFormBoundaryIMbkXAPvau1ArzUz^ Content-Disposition: form-data; name=^\^"qqpartbyteoffset^\^"^ ^ 0^ ------WebKitFormBoundaryIMbkXAPvau1ArzUz^ Content-Disposition: form-data; name=^\^"qqchunksize^\^"^ ^ 4000000^ ------WebKitFormBoundaryIMbkXAPvau1ArzUz^ Content-Disposition: form-data; name=^\^"qqtotalparts^\^"^ ^ 18^ ------WebKitFormBoundaryIMbkXAPvau1ArzUz^ Content-Disposition: form-data; name=^\^"qqtotalfilesize^\^"^ ^ 70504094^ ------WebKitFormBoundaryIMbkXAPvau1ArzUz^ Content-Disposition: form-data; name=^\^"qqfilename^\^"^ ^ ^מ^פ^ע^ל ^ה^פ^ו^ר^מ^ט^י^ם ^מ^מ^ז^ג ^א^ו^ד^י^ו ^ה^ק^ל^ט^ה ^א^ר^ו^כ^ה+^ה^ק^ל^ט^ה ^א^ר^ו^כ^ה+^ש^מ^ח^ת ^ח^ג+^ש^ח^ר ^ק^מ^ת^י.wav^ ------WebKitFormBoundaryIMbkXAPvau1ArzUz^ Content-Disposition: form-data; name=^\^"qquuid^\^"^ ^ 908c3432-3081-45ee-b778-91e1248902f4^ ------WebKitFormBoundaryIMbkXAPvau1ArzUz^ Content-Disposition: form-data; name=^\^"qqfile^\^"; filename=^\^"blob^\^"^ Content-Type: application/octet-stream^ ^ RIFF^^Î3^WAVEfmt ^^
מעניין שבתגובה התקינה, הערך שחוזר בשגיאה כnull, חוזר כnull גם כן.. (ייתכן שאין קשר, והשגיאה בכלל לא קשורה לערך הזה..)
{ "success": true, "uuid": "908c3432-3081-45ee-b778-91e1248902f4", "uploadName": null }