openCMIS support

2016-06-01 Thread Anjana Gopinath
Hello, We are evalauting openCMIS for using in our application which retrieves/creates data in Filenet. Is there any vendor who provides enterprise level support for openCMIS? Thanks!

T5 and jboss

2007-05-22 Thread Anjana Gopinath
) org.apache.tapestry.corelib.components.Loop._ $environment_read_formSupport(Loop.java) org.apache.tapestry.corelib.components.Loop.setup(Loop.java:229) Did any one have this issue before? Thanks for helping me. Anjana Gopinath True North Technology

Re: Layout Component

2007-04-06 Thread Anjana Gopinath
Your Layout.html should be in src/main/resources/org/example/myapp/components/MyComponent.html. and your Layout.java should be in src/main/java/org/example/myapp/ components/MyComponent.java http://tapestry.apache.org/tapestry5/tapestry-core/guide/templates.html Anjana Gopinath True North

Re: T5 Loop

2007-04-05 Thread Anjana Gopinath
} public void setValues(ArrayList values) { this.values = values; } String onSuccess() { System.out.println(this.getValues().get(0)); return null; } } Anjana Gopinath True North Te

T5 Loop

2007-04-05 Thread Anjana Gopinath
. Is this possible ? i searched in the mailing lists, but couldnt find any information. Thanks Anjana Gopinath True North Technology

Re: T5 action link

2007-04-02 Thread Anjana Gopinath
thanks howard! Anjana Gopinath True North Technology On Apr 2, 2007, at 2:21 PM, Howard Lewis Ship wrote: The prop: prefix doesn't have a syntax for generating a list or array of values (the way that OGNL does). You have to work at one level of remove: reference a property that re

T5 action link

2007-04-02 Thread Anjana Gopinath
Hey is there a way we can pass multiple parameters in the action link context? i tried passing parameters line context="value1,value2" and context="{value1,value2}" etc. is this possible in T5? Anjana Gopinath True North Technology

Re: t:layout

2007-04-02 Thread Anjana Gopinath
Where do you have your Layout.html? is it in under resources? this should be the typical structure src/main/java/org/example/myapp/components/MyComponent.java src/main/resources/org/example/myapp/components/MyComponent.html. Anjana Gopinath True North Technology 11465 John's Creek Pa

Re: t:layout

2007-04-02 Thread Anjana Gopinath
i had a similar issue when i forgot to include http://tapestry.apache.org/schema/tapestry_5_0_0.xsd";> Anjana Gopinath True North Technology 11465 John's Creek Parkway, Suite 300 Duluth, GA 30097 [EMAIL PROTECTED] On Apr 2, 2007, at 10:54 AM, Chris Chiappone wrote: Where is

Re: Page Seperation\Folders

2007-03-30 Thread Anjana Gopinath
You can store the images, css file etc src/main/webapp directory. you can refer the css like this and for images images/mainBod.jpg . i have images in my src/main/webapp/images dir and css in my src/main/webapp/css. Anjana Gopinath True North Technology 11465 John's Creek Pa

T5 Action link

2007-03-22 Thread Anjana Gopinath
;select1") void addApps(){ System.out.println("---here "); } Thanks Anjana Gopinath True North Technology 11465 John's Creek Parkway, Suite 300 Duluth, GA 30079 [EMAIL PROTECTED]

Re: T5 - ASO cannot be in the same package as the page?

2007-03-22 Thread Anjana Gopinath
I beleive you are supposed to put only your page classes in the page folder. Refer tapestry 5 tutorial, page 19. Anjana Gopinath On Mar 22, 2007, at 10:07 AM, Bogdan Calmac wrote: After creating my own ASO object, I kept getting the ClassCastExeception below when accessing it

Re: T5 ASO

2007-03-21 Thread Anjana Gopinath
Thats true. My code is more clean now!! Thanks to everyone who helped me out, i am almost done with my mini project in Tapestry 5. This is the 5th day since i started it, i wouldnt have reached here without the support of this community. Thanks!!! Anjana Gopinath On Mar 21, 2007

Re: T5 ASO

2007-03-20 Thread Anjana Gopinath
Thanks Robert! Anjana Gopinath True North Technology 11465 John's Creek Parkway, Suite 300 Duluth, GA 30079 [EMAIL PROTECTED] On Mar 20, 2007, at 5:47 PM, Robert Zeigler wrote: Tapestry works its magic using runtime type information, and since generics in java were implemented

Re: T5 ASO

2007-03-20 Thread Anjana Gopinath
Thanks Howard for explaining. It makes sense. But what if i want to store a list of objects as a ASO? For example public ArrayList appList; public ArrayList networkList; Both the above are of type List, but list of two objects. Will this be an issue? Anjana Gopinath True North

Re: T5 ASO

2007-03-20 Thread Anjana Gopinath
Robert Thanks for explaining and i perfectly understand your point. But i still feel this is a restriction as i cant have ASOs of same type. Anyway, right now i can continue with the way you suggested. Thanks! Anjana Gopinath True North Technology 11465 John's Creek Parkway, Suite 300 D

Re: T5 ASO

2007-03-20 Thread Anjana Gopinath
Thanks Robert for responding. I can do that, but was wondering why there is a restriction like this? Anjana Gopinath True North Technology 11465 John's Creek Parkway, Suite 300 Duluth, GA 30079 [EMAIL PROTECTED] On Mar 20, 2007, at 4:29 PM, Robert Zeigler wrote: Correct. Why not c

T5 ASO

2007-03-20 Thread Anjana Gopinath
possible to have two different ASO's os same type? Thanks! Anjana Gopinath [EMAIL PROTECTED]

Re: T5 submit

2007-03-19 Thread Anjana Gopinath
Thanks a lot for helping me out, howard. It works now. Anjana Gopinath True North Technology 11465 John's Creek Parkway, Suite 300 Duluth, GA 30079 [EMAIL PROTECTED] On Mar 19, 2007, at 10:22 AM, Howard Lewis Ship wrote: onSelectFromLogin() { ... } onSelectFromHelp() { ... } St

Re: T5 submit

2007-03-19 Thread Anjana Gopinath
next page, but i have multiple submit buttons on the same page. So any submit button i hit, this method is called. What i am trying to achieve is some thing similar to the listener methods in tapestry 4. This is what i used to do in T 4. value="Login"/> value="Help"/>

Re: T5 submit

2007-03-16 Thread Anjana Gopinath
uggia wrote:Can you send us your page template and class ?On 3/16/07, Anjana Gopinath <[EMAIL PROTECTED]> wrote: Thanks Peter and PabloI tried giving both options suggested by Pablo  @OnEvent(value = "submit",component="addApps")           void  addApps(){                  Syst

Re: T5 submit

2007-03-16 Thread Anjana Gopinath
} This is not getting invoked at all!. if i just give onEvent (component="addApps") , it is invoked , but wont take a returntype. Also tried public String onSubmitFromAddApps() { return "ViewSummary"; } That too didnt work Thanks Anjana Gopinath True North

T5 submit

2007-03-16 Thread Anjana Gopinath
deleteApp() { System.out.println("deleteApp"); return "AddService"; } but got an exception "This type of event does not support return values from event handler methods" cant find the listener parameter for submit component. Can some one please help me ou

Re: T5 javascript

2007-03-16 Thread Anjana Gopinath
Hey Thats right, sorry my bad. i blindly copied all the htmls and dojo folders from my T4 app's context directory and dropped it to my T5s WEB-INF directory. Thanks a lo for helping me, Pablo and Jesse! Anjana Gopinath True North Technology 11465 John's Creek Parkway,

Re: T5 Select component

2007-03-16 Thread Anjana Gopinath
Thanks a lot Weisu, will try this now. Anjana Gopinath On Mar 15, 2007, at 8:23 PM, Weisu wrote: In 5.0.3, you can use a List to display the dropdown. The html template looks like: And the component class looks like: public List getSupplierName() { //define your list

Re: T5 javascript

2007-03-16 Thread Anjana Gopinath
otally new to Jetty and Maven and T5. Will dig deeper into this later today. Thanks for your help. Anjana Gopinath On Mar 15, 2007, at 11:24 PM, Jesse Kuhnert wrote: There shouldn't be any incompatibilities between the libraries, if there are I'm sure many people would like

T5 Select component

2007-03-15 Thread Anjana Gopinath
is a part of beanform. Can some one please help me out? i couldnt find any thing related to this in the tapestry 5 website Anjana Gopinath

Re: T5 javascript

2007-03-15 Thread Anjana Gopinath
Thanks for responding , Howard. switched to ordinary html table with loop component. Anjana Gopinath On Mar 15, 2007, at 7:40 PM, Howard Lewis Ship wrote: It may be a conflict between the Prototype.js library and the Dojo libraries. I haven't tried this yet. On 3/15/07, A

T5 javascript

2007-03-15 Thread Anjana Gopinath
component. can someone provide some hints please? Thanks!!! Anjana Gopinath

Re: Tapestry - Multiple File Upload

2007-01-18 Thread Anjana Gopinath
Unfortunately requirement is that users should be able to select multiple files or folders. I think the only option that"ll work out is a signed applet. Thanks for responding, Sunil. Anjana Gopinath True North Technology On Jan 18, 2007, at 2:06 PM, sunilmanu wrote: (you

Tapestry - Multiple File Upload

2007-01-18 Thread Anjana Gopinath
Hi, I am using tapestry upload component to upload a file to the server. This works very well for a single file. But Is there a way to upload multiple files to server or to upload a directory? Thanks! Anjana Gopinath

dojo error

2006-12-12 Thread Anjana Gopinath
component. But with this snapshot, my model dialog seems to be working, but get this dojo error. Can some one help me out please? Thanks a lot! Anjana Gopinath

Re: commons vfs SFTP outofmemory

2006-11-07 Thread Anjana Gopinath
. i switched to FTP for the time being and that works perfectly for large files. (tested with 100MB). But would love to have sftp, so will try again today evening and update you soon. Thanks for helping me out! Anjana Gopinath On Nov 7, 2006, at 4:16 PM, Mario Ivankovits wrote: Hi

commons vfs SFTP outofmemory

2006-11-06 Thread Anjana Gopinath
perfectly for small files. But my app needs to handle big files also. Thanks for your help Thanks Anjana Gopinath

commons VFS

2006-11-06 Thread Anjana Gopinath
Hi, I am trying to download the latest version of VFS and dont see anything in the nightly builds page. Is there a different location to download VFS? Thanks for helping me. Anjana Gopinath

Re: [commons-vfs] vfs - copy ant task - http

2006-08-24 Thread Anjana Gopinath
Thanks Mario for the quick response. and i"ll definetly try to contribute :-) Anjana Gopinath On Aug 24, 2006, at 12:43 AM, Mario Ivankovits wrote: Hi Anjana! Is it possible to use vfs-copy ant task to do a http post? No, the http filesystem implementation do not support

[commons-vfs] vfs - copy ant task - http

2006-08-23 Thread Anjana Gopinath
t to use ftp/sftp as there's a password issue. Thanks for youe help! Anjana Gopinath

Re: [commons vfs] - Issues while trying to ftp to a remote server

2006-08-16 Thread Anjana Gopinath
Thanks a lot Mario! Anjana Gopinath On Aug 16, 2006, at 10:23 AM, Mario Ivankovits wrote: Hi Anjana! Thanks a lot for responding quickly. i tried running FtpCheck and was able to see the remote folders. i didnt get any null entries. i also tried sftp yesterday and that seems to be

Re: [commons vfs] - Issues while trying to ftp to a remote server

2006-08-16 Thread Anjana Gopinath
to the FtpFileSystemConfigBuilder. Please report back if this did the trick. Thanks! Ciao, Mario Anjana Gopinath On Aug 15, 2006, at 1:08 PM, Anjana Gopinath wrote: Hi, i am a new user of vfs. i am trying to connect to a remote server using ftp FileSystemOp

[commons vfs] - Issues while trying to ftp to a remote server

2006-08-15 Thread Anjana Gopinath
(FtpFileObject.java:174) [java] at org.apache.commons.vfs.provider.ftp.FtpFileObject.doAttach (FtpFileObject.java:166) [java] at org.apache.commons.vfs.provider.AbstractFileObject.attach (AbstractFileObject.java:1267) Anjana Gopinath

Workbench File System Tree example - sub folders disappearing

2006-08-10 Thread Anjana Gopinath
. The table view of the folder seem to be displaying the contents correctly. i havent made any changes to the code, and also the when i deploy the workbench , that also seem to have the same issue. Can some one please help me out? Thanks! Anjana Gopinath

Re: [Tacos-devel] Fwd: tacos tree- children not getting displayed

2006-08-10 Thread Anjana Gopinath
tapestry trees. Thanks for your help! Anjana Gopinath On Aug 10, 2006, at 4:23 AM, Diego wrote:Yep, had the same problem and the same workaround :).There is a bug report for this, but no fixes yet.RegardsDiegoOn 8/9/06, Anjana Gopinath <[EMAIL PROTECTED]> wrote: HeyI figured out what the iss

[Tacos-devel] Fwd: tacos tree- children not getting displayed

2006-08-09 Thread Anjana Gopinath
HeyI figured out what the issue was. i was enclosing the tree in a form. When i removed that it seem to be working. But i need to have a form tag as i need to add check boxes for each node. is there a work around on this issue?Thanks! Anjana Gopinath Begin forwarded message:From: Anjana Gopinath

[Tacos-devel] tacos tree- children not getting displayed

2006-08-09 Thread Anjana Gopinath
HiI am trying to use tacos Tree (downloaded the latest version today) for displaying the local file system. I am able to get the file system, but when i click on the node, it just refreshes the page and doenst the display the children. It looks like the content provider is getting invoked and getC