Tim, Thanks for your reply. I quite agree with you that someone may have done it before.
Let me tell you how I am doing it. I am using import utility of dspace. How I am using it is as follows I design a custom form with requied fields (say describe item step) On submission of form, am creating dublin_core.xml, contents.txt & bitstream under item directory. (same as item import). And calling import class from servlet. I would like to know is that the correct way? Please let me know if this approach had any drawback. Rgds AJ On 04-Apr-2012, at 1:09, Tim Donohue <[email protected]> wrote: > Hi Amit, > > In order to customize the DSpace Item Submission process, you will need to > create a brand new Submission Step. The process of creating a new submission > step is described at: > https://wiki.duraspace.org/display/DSDOC18/Submission+User+Interface#SubmissionUserInterface-CreatingnewSubmissionSteps > > In particular, you will need to create a custom submission step that combines > the functionality within these current steps: > > (1) The "Describe" step which allows users to enter metadata > JSPUI interface class: org.dspace.app.webui.submit.step.JSPDescribeStep > XMLUI interface class: > org.dspace.app.xmlui.aspect.submission.step.DescribeStep > Backend processing class (used by both UIs): > org.dspace.submit.step.DescribeStep > > (2) The "Upload" step which allows users to upload files > JSPUI interface class: org.dspace.app.webui.submit.step.JSPUploadStep > XMLUI interface class: org.dspace.app.xmlui.aspect.submission.step.UploadStep > Backend processing class (used by both UIs): org.dspace.submit.step.UploadStep > > You don't need to implement it for both XMLUI and JSPUI. Just choose which > interface you want to work with, and make sure to also create a backend > processing class. > > That's about as much detail as I can provide, as I've never created such a > combined step before. > > It's possible that someone else may have already created such a custom > submission step. If so, hopefully they will speak up and be willing to share > their work/code. > > Good luck, > > - Tim > > On 3/26/2012 11:17 PM, Shanu Jha wrote: >> Hi All, >> >> Please help me on this..still awaiting for response >> >> Amit >> >> On Mon, Mar 26, 2012 at 2:13 PM, Shanu Jha <[email protected] >> <mailto:[email protected]>> wrote: >> >> Hi All, >> >> I have a requirement where I need customised submission form. It >> will have only 3 steps to submit document in dspace after selection >> of "collection". I am herewith submitting the screens with I would >> like to implement. >> >> I would like to that is it doable? And what would be the customisation. >> >> Any help would be highly appreciable. >> >> Regards >> Amit >> >> >> >> >> >> ------------------------------------------------------------------------------ >> This SF email is sponsosred by: >> Try Windows Azure free for 90 days Click Here >> http://p.sf.net/sfu/sfd2d-msazure >> >> >> >> _______________________________________________ >> DSpace-tech mailing list >> [email protected] >> https://lists.sourceforge.net/lists/listinfo/dspace-tech ------------------------------------------------------------------------------ Better than sec? Nothing is better than sec when it comes to monitoring Big Data applications. Try Boundary one-second resolution app monitoring today. Free. http://p.sf.net/sfu/Boundary-dev2dev _______________________________________________ DSpace-tech mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/dspace-tech

