I have an upload panel in my seam application and I want to record this using Jmeter.
But this tool does not allow to upload the file whereas manually I can do that.
So any suggestion on how to do that?
Put the file in jmeter/bin folder and it should work.
You can use firefox for recording.
Why not to search first through jmeter-tagged questions?
Asked many times before.
Look into these:
JMeter - File upload and file download scenario
Jmeter Upload Error in Recording
Related
I want to upload several pictures to server at the same time,the native plugin provide transfer,but this plugin can only upload a file at the same time.I don't want to call transfer.upload in while or for.What method can upload multiple files at the same time? Thank you very much for your reply!!! http://ionicframework.com/docs/v2/native/transfer/
Even though the example is for angularjs/ionic..,give it a try
Go through this tutorial.,you will get a some idea to proceed further.
https://www.thepolyglotdeveloper.com/2015/01/upload-files-remote-server-using-ionic-framework/
I hava a Ruby on Rails application that works with video playlists. Now I would like to extract timecode information from the video file without uploading it to the server (takes to long). Is the possible?
If it is not possible, is there a way to export te metadata locally and uploads these xmls (for example) to the server?
Thanks in advance
afaik, this is not possible in browsers that do not support File API. Take a look at jquery file upload and the way it allows user to identify the file extension before upload.
Is there anyway to restrict the attachments of types - .bat/.exe/.bmp, etc to be restricted while user trying to upload them in JIRA.
I tried using the Servlet-Filter plugin module in JIRA. But I am not able to get the URL at the time of uploading the attachment. Also I am trying to listen to the Attachment event for an issue.
Is there any other alternative of restricting these file types.
Any help will be much appreciated.
Thanks!
Well there was an Attachment Filter available but I am not sure if it is still relevant - it actually seems that it is no longer relevant also if I recall correctly it was for
Confluence. So you're left with writing a custom plugin for this.
You could implement com.atlassian.jira.issue.AttachmentManager, the default implementation is com.atlassian.jira.issue.managers.DefaultAttachmentManager and wrap it so that you check what's going on with the upload - filetype etc. But be sure to check the mime-type - not only the file name and/or extension. Check this out.
Is it possible to upload files to a server, with flash only? I'm looking for a SWF file that's able to do this task. So my question is:
is it possible to upload a file with flash alone (no PHP or ASP)
in case this is possible: is there a simple SWF-file to do this task which I could use?
is it possible to upload a file with flash alone (no PHP or ASP)
Of course not - how will the server know what to do with the file if there's no server side script?
in case this is possible: is there a simple SWF-file to do this task which I could use?
In general, you'll also need JavaScript (and somewhere to post the file to, so some server-side script).
This one is a self-contained solution: http://code.google.com/p/swfupload/
Otherwise, this jQuery plugin is quite good: http://www.uploadify.com/
I'm sort of stuck with a iOS / phonegap question.
I have a XML on the server which I download successful with ajax. I even save the XML in the local storage and can read it later when offline.
The next step is the one where i need a startup. Within the XML I've got image URLs. I would like to download them and save them locally.
What is best practice and also the quickest way?
Do i need the FileWriter plugin for that? Or do i need to save them in a database as base64?
And after that how can i read them to show in the application?
Thanks in advance
There is no simple way as far as i can tell. You may wish to try using the cache manifest, or downloading them using code such as this: http://blog.clearlyinnovative.com/post/2056122828/phonegap-plugin-for-downloading-url-all-the-code
Full project here: https://github.com/aaronksaunders/FileDownLoadApp
Good luck