Re: [TEST] Apache Struts 7.0.0-M6 test build is read

2024-04-22 Thread Greg Huber
7.0.0-M7-SNAPSHOT Thanks it worked, maybe it was a timing thing as they are in snapshots now. M7 works ok. File upload also works OK, but Without the in UploadedFile now I must do the cast manually: for (UploadedFile uploadedFile : uploads) { ... new FileInputStream((File)

Re: [TEST] Apache Struts 7.0.0-M6 test build is read

2024-04-22 Thread Lukasz Lenart
pon., 22 kwi 2024 o 10:35 Greg Huber napisaƂ(a): > File upload also works OK, but Without the in UploadedFile now I must > do the cast manually: > > for (UploadedFile uploadedFile : uploads) { > ... >new FileInputStream((File) uploadedFile.getContent()) > ... > } I need to think this