Java Backed Web Scripts
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2012 05:25 AM
Where i can see a full tutorial how to create and deploy Java Backed Web Scripts in Alfresco 4?
I made that in Alfresco 3, but now i know there are changes!
Can anyone provide a good tutorial please?
thanks in advance!
- Labels:
-
Archive
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2012 05:45 AM
There could be some of the changes on the APIs and classes.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2012 05:59 AM
I'll try the same i made for Alfresco 3.2r.
Any doubts i post them here.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-30-2012 12:54 AM
Can you provide me the tutorial that you have followed to deploy a Java-backend webscript.
Thanks,
Oshadha.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-30-2012 03:11 AM
I followed this two:
-> http://wiki.alfresco.com/wiki/Java-backed_Web_Scripts_Samples
-> http://wiki.alfresco.com/wiki/Java-backed_Web_Scripts_Samples#Questions.3F
if you have any doubt you are free to ask
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-30-2012 08:26 AM
The amp file i created must be in a specific location of tomcat? can you remind me that pls?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2012 02:09 AM
ex. C:\Alfresco_4.0\amps
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2012 02:11 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2012 07:13 AM
<webscript> <shortname>Create Folders</shortname> <description>Create Folders in Alfresco</description> <url>/org/toze/AlfrescoAccess/CreateFoldersMigration</url> <authentication>user</authentication> <format default="json">argument</format> <transaction>required</transaction></webscript>
and i have this error too when i try to access the web script:
essage" : "07310003 Cannot locate template processor for template org\/toze\/alfresco\/omc\/server\/CreateFoldersMigration.get.json",
"exception" : "org.springframework.extensions.webscripts.WebScriptException - 07310003 Cannot locate template processor for template org\/toze\/alfresco\/omc\/server\/CreateFoldersMigration.get.json",
My question is: Must i have to create a new desc file for json? In version 3 of Alfresco we didnt need to do that
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2012 07:54 AM
instead of this:
<format default="json">argument</format>
try this: <format default="json">extension</format>
Let me know if it worked.
