Hi All,
I am using the webscript for uploading the document from zimbra to alfresco. The application is working fine with Alfresco 3.2r but not working beyond 3.2r releases. Any help. I am posting the web scripts code.
(1)aboutAlfresco.get.desc.xml
<webscript>
<shortname>About Alfresco</shortname>
<description>Provides basic information about installed alfresco instance</description>
<url format="json" template="/zimbra/about.json"/>
<url format="html" template="/zimbra/about.html"/>
<format default="json">extension</format>
<authentication>user</authentication>
<transaction>required</transaction>
</webscript>
(2)aboutAlfresco.get.json.ftl
${result}
(3)aboutAlfresco.get.html.ftl
${result}
(4)aboutAlfresco.get.js
<import resource="/Company Home/Data Dictionary/Web Scripts Extensions/org/alfresco/util/json.js">
<import resource="/Company Home/Data Dictionary/Web Scripts Extensions/org/alfresco/util/alfcommon.js">
var result = {};
result.version = server.version;
result.edition = server.edition;
result.userId = person.properties.userName;
result.fullName = person.properties.firstName + person.properties.lastName;
model.result = result.toJSONString();
when I run this web script I am getting all the values as "undefined".
Pls help. After 3.2r Webscript is moved to Spring Surf does that the problem??
Pls suggest.
Thanx in adv.