<html><body>
<p>Hi Mathias,<br>
<br>
thank your for your answer.<br>
I will try, what you suggested.<br>
<br>
I have defined a telefoneentry.xsd shema-file.<br>
The files with the data are built by a Template-two Listbox file.<br>
The files that are produced are files with a name like "employee_0001.html ..." and contain the data of the employees.<br>
In these files is controlcode included (xml). So I guess these are xml-contents, correct?<br>
<br>
Now I developed a jsp, that lists up all the generated html-files. When a registrated user selects his file he shall see his data in a editable frontend form (other users shall only be able to see the data read-only). <br>
That works fine but I miss the method by which I am able to save the changes the user has done to his Entry.<br>
<br>
So I hope, I have some success with your snippet.  If you think by reading the before-mentioned I should change something I would be delighted if you could inform me about that.<br>
<br>
Thank you again.<br>
<br>
Best regards<br>
<br>
<br>
Frank Pertack<br>
<br>
<br>
Vater Solution GmbH<br>
Liebigstraße 26<br>
24145 Kiel<br>
<br>
Telefon: +49 431 20084-210<br>
Telefax: +49 431 20084-222<br>
Mobil: +49 151 16353519<br>
mailto: fpertack@vater-gruppe.de<br>
<a href="http://www.vater-gruppe.de">http://www.vater-gruppe.de</a><br>
<br>
Amtsgericht Kiel, HRB 6403 <br>
Geschäftsführer:<br>
Klaus-Hinrich Vater<br>
Michael Wiese<br>
-----<br>
Diese Email enthält ggfs. vertrauliche und/oder rechtlich geschützte Informationen. Wenn Sie nicht der richtige Adressat sind oder diese Email irrtümlich erhalten haben, informieren Sie bitte sofort den Absender und vernichten Sie diese Email. Das unerlaubte Kopieren sowie die unbefugte Weitergabe dieser Email sind nicht gestattet.<br>
<br>
<br>
<img width="16" height="16" src="cid:1__=4EBBFF44DFBE5CC48f9e8a93@vater-gruppe.de" border="0" alt="Inactive hide details for Mathias Lin ---15.06.2009 17:20:30---Hi Frank, the html form is probably a jsp template and it does n"><font color="#424282">Mathias Lin ---15.06.2009 17:20:30---Hi Frank, the html form is probably a jsp template and it does not contain any</font><br>
<br>

<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr valign="top"><td width="1%"><img width="96" height="1" src="cid:2__=4EBBFF44DFBE5CC48f9e8a93@vater-gruppe.de" border="0" alt=""><br>
<font size="2" color="#5F5F5F">Von:</font></td><td width="100%"><img width="1" height="1" src="cid:2__=4EBBFF44DFBE5CC48f9e8a93@vater-gruppe.de" border="0" alt=""><br>
<font size="2">Mathias Lin <mail@mathiaslin.com></font></td></tr>

<tr valign="top"><td width="1%"><img width="96" height="1" src="cid:2__=4EBBFF44DFBE5CC48f9e8a93@vater-gruppe.de" border="0" alt=""><br>
<font size="2" color="#5F5F5F">An:</font></td><td width="100%"><img width="1" height="1" src="cid:2__=4EBBFF44DFBE5CC48f9e8a93@vater-gruppe.de" border="0" alt=""><br>
<font size="2">The OpenCms mailing list <opencms-dev@opencms.org></font></td></tr>

<tr valign="top"><td width="1%"><img width="96" height="1" src="cid:2__=4EBBFF44DFBE5CC48f9e8a93@vater-gruppe.de" border="0" alt=""><br>
<font size="2" color="#5F5F5F">Datum:</font></td><td width="100%"><img width="1" height="1" src="cid:2__=4EBBFF44DFBE5CC48f9e8a93@vater-gruppe.de" border="0" alt=""><br>
<font size="2">15.06.2009 17:20</font></td></tr>

<tr valign="top"><td width="1%"><img width="96" height="1" src="cid:2__=4EBBFF44DFBE5CC48f9e8a93@vater-gruppe.de" border="0" alt=""><br>
<font size="2" color="#5F5F5F">Betreff:</font></td><td width="100%"><img width="1" height="1" src="cid:2__=4EBBFF44DFBE5CC48f9e8a93@vater-gruppe.de" border="0" alt=""><br>
<font size="2">Re: [opencms-dev] Antwort: Re: How to write into Frontend        User-Forms?</font></td></tr>

<tr valign="top"><td width="1%"><img width="96" height="1" src="cid:2__=4EBBFF44DFBE5CC48f9e8a93@vater-gruppe.de" border="0" alt=""><br>
<font size="2" color="#5F5F5F">Gesendet von:</font></td><td width="100%"><img width="1" height="1" src="cid:2__=4EBBFF44DFBE5CC48f9e8a93@vater-gruppe.de" border="0" alt=""><br>
<font size="2">opencms-dev-bounces@opencms.org</font></td></tr>
</table>
<hr width="100%" size="2" align="left" noshade style="color:#8091A5; "><br>
<br>
<br>
<tt>Hi Frank,<br>
<br>
the html form is probably a jsp template and it does not contain any <br>
data of your phone book entry (maybe your phonebook entry elements are <br>
just making use of this template to display the data together with the <br>
input form to allow the user to change the data, but I don't know how <br>
you configured your xsd/content type here).<br>
Your phonebook entry elements are files that contain the actual data, <br>
and it's xml structure is defined by your phoneBookEntry.xsd.<br>
<br>
<br>
Below is a code snippet:<br>
<br>
<br>
Locale locale = Locale.GERMAN;<br>
String dataDir = "path/to/phonebook/_data/";<br>
String filename = "/" + dataDir + "entry." + <br>
Calendar.getInstance().getTimeInMillis() + ".html"; // or use any other <br>
logic to create the file name<br>
<br>
CmsObject cmsObject = <br>
OpenCms.initCmsObject(OpenCms.getDefaultUsers().getUserGuest());<br>
cmsObject.loginUser("AdminOrOtherUserWithWorkplacePermission", <br>
"HisPassword");<br>
cmsObject.getRequestContext().setSiteRoot(OpenCms.getSiteManager().getDefaultSite().getSiteRoot());<br>
cmsObject.getRequestContext().setCurrentProject(cmsObject.readProject("942c4f84-e610-11dd-8e8a-85b622eae7ae") <br>
);  // <-- needs to be UUID of the offline project<br>
<br>
CmsResource document = cmsObject.createResource(filename , 1011);   // <br>
<--- 1011 just an example, this id the ID of your phonebook-entry.xsd <br>
(as of opencms-modules.xml)<br>
CmsXmlContent xmlContent = CmsXmlContentFactory.unmarshal(cmsObject, <br>
document, request);      <br>
xmlContent.getValue("Title", locale,0).setStringValue(cmsObject, <br>
request.getParameter("title")) ;     // depending on your form <br>
validation, you might need to check for NULL values here<br>
xmlContent.getValue("FirstName", locale,0).setStringValue(cmsObject, <br>
request.getParameter("firstName"));<br>
xmlContent.getValue("LastName", locale,0).setStringValue(cmsObject, <br>
request.getParameter("lastName"));<br>
// ...<br>
<br>
xmlContent.getFile().setContents(xmlContent.marshal());<br>
cmsObject.writeFile(xmlContent.getFile());<br>
cmsObject.unlockResource("/" + dataDir + document.getName());<br>
<br>
<br>
Regards,<br>
Mathias<br>
<br>
<br>
Frank Pertack wrote:<br>
><br>
> thank you for your expeditious answer. But I thought, the html form, <br>
> that is built by the contentload, contains the xml-Data in its <br>
> controlcode. Is there a seperate xml-file, that stores the data of the <br>
> controlcode, and if yes, what is the name of that xml-file?<br>
><br>
> And I would like to accept your offer and take the alternative code <br>
> snippets. Mightbe I get a better understanding of the problem.<br>
><br>
> Meanwhile I try your proposal with a smaller file.<br>
><br>
> Thank you very much<br>
><br>
> Best regards<br>
><br>
><br>
><br>
> Inactive hide details for Nacho Fernández Orellana ---15.06.2009 <br>
> 13:53:25---Hi Frank and list, Your frontend-form built using cNacho <br>
> Fernández Orellana ---15.06.2009 13:53:25---Hi Frank and list, Your <br>
> frontend-form built using contentload and contentshow should build a<br>
><br>
><br>
> Von:                <br>
> Nacho Fernández Orellana <nacho.fernandez.orellana@gmail.com><br>
><br>
> An:                 <br>
> The OpenCms mailing list <opencms-dev@opencms.org><br>
><br>
> Datum:              <br>
> 15.06.2009 13:53<br>
><br>
> Betreff:            <br>
> Re: [opencms-dev] How to write into Frontend User-Forms?<br>
><br>
> Gesendet von:               <br>
> opencms-dev-bounces@opencms.org<br>
><br>
> ------------------------------------------------------------------------<br>
><br>
><br>
><br>
> Hi Frank and list,<br>
><br>
> Your frontend-form built using contentload and contentshow should <br>
> build a html form whose data will be sent to a certain target page (of <br>
> course this page can be the same jsp page that built the form). In any <br>
> case, the destination jsp should get the sent parameters and then use <br>
> them to build the xml of the phonebook entry.<br>
><br>
> I recommend programming a simple java bean that has all the elements <br>
> your phonebook entry has as fields and that provides a simple "toXml" <br>
> method that builds the right xml of a phonebook entry according to <br>
> your xsd. That way you could create a java method called something <br>
> like "writePhonebookEntry" that does something like:<br>
><br>
>             PhonebookEntryBean bean = getBeanFromRequestParameters( <br>
> request ); <-- method to write<br>
>             CmsFile file = cms.readFile( PATH_OF_XML_YOU_ARE_EDITING );<br>
>             file.setContents( YOUR_BEAN.toXml().getBytes() );<br>
>             cms.writeFile( file );<br>
><br>
> Where "cms" is a CmsObject and you have to be in the offline project <br>
> and lock the xml file accordingly.<br>
> I've always found this to be the simpler way, other method is editing <br>
> the xml contents for the modified fields in your form instead of <br>
> rewriting the complete well-formed xml. If you need code snippets for <br>
> that alternative approach, ask again. Hope this helps. Greetings,<br>
><br>
> Nacho Fernandez.<br>
> _______________________________________________<br>
> This mail is sent to you from the opencms-dev mailing list<br>
> To change your list options, or to unsubscribe from the list, please visit<br>
> </tt><tt><a href="http://lists.opencms.org/mailman/listinfo/opencms-dev">http://lists.opencms.org/mailman/listinfo/opencms-dev</a></tt><tt><br>
><br>
><br>
> Frank Pertack<br>
><br>
><br>
> Vater Solution GmbH<br>
> Liebigstraße 26<br>
> 24145 Kiel<br>
><br>
> Telefon: +49 431 20084-210<br>
> Telefax: +49 431 20084-222<br>
> Mobil: +49 151 16353519<br>
> mailto: fpertack@vater-gruppe.de<br>
> </tt><tt><a href="http://www.vater-gruppe.de">http://www.vater-gruppe.de</a></tt><tt><br>
><br>
> Amtsgericht Kiel, HRB 6403<br>
> Geschäftsführer:<br>
> Klaus-Hinrich Vater<br>
> Michael Wiese<br>
> -----<br>
> Diese Email enthält ggfs. vertrauliche und/oder rechtlich geschützte <br>
> Informationen. Wenn Sie nicht der richtige Adressat sind oder diese <br>
> Email irrtümlich erhalten haben, informieren Sie bitte sofort den <br>
> Absender und vernichten Sie diese Email. Das unerlaubte Kopieren sowie <br>
> die unbefugte Weitergabe dieser Email sind nicht gestattet.<br>
> ------------------------------------------------------------------------<br>
><br>
>   <br>
<br>
<br>
_______________________________________________<br>
This mail is sent to you from the opencms-dev mailing list<br>
To change your list options, or to unsubscribe from the list, please visit<br>
</tt><tt><a href="http://lists.opencms.org/mailman/listinfo/opencms-dev">http://lists.opencms.org/mailman/listinfo/opencms-dev</a></tt><tt><br>
<br>
</tt><br>
</body></html>