346 byte By
Guest at 2007-11-25 9:26:00
In NetD, if a data object had a date field, you could set it with setValue("FIELD", new CSpDatetime())What is passed in for Jato's version? The arguments are setValue(String, Object) . So what Object is expected here?A Date? A Calendar? A String representing the date?Thanks. ...
356 byte By
Guest at 2007-11-25 9:26:01
I would like to initialize the host url string once per theapplcation. So I decided to initialize theurl in MainAppServletBase. I have added two methodsgetURL and setURL methods.Is it possible to call the getURL() methodin in the viewbean class ? If yes how ?Thanks ...
224 byte By
Guest at 2007-11-25 9:26:02
I noticed that all my javadoc comments were stripped out of all the functions in my migrated code. Is there any way that the comments can be left in? ThanksJason
1474 byte By
Guest at 2007-11-25 9:26:03
Todd, Mike, Charles and all,We faced the situation where an exception is thrown in the beginDisplay() method of a ViewBean. (In our case a null pointer exception). To handle it (gracefully) we investigated 3 scenarios - none produces what we want:1) forward to the system down page as shown ...
977 byte By
Guest at 2007-11-25 9:26:07
Hi,I have a TiledView and I have checkbox in the tiled view. I am tryingto get the values of the checked boxes.I have coded like this.Object[] links = getRSystemLinks().getCbSystemUrl().getValues();if I see the links.length i get only one. In html If I see the code it appends the TileIndex in ...
2879 byte By
Guest at 2007-11-25 9:26:08
Hi Syam--> Your assumption is correct. My application is storing in> NDUserSession.Cool.> Actually I thought of doing this in the following way to avoid> caching.Extend a class from DataSetModelExecutionContext, which will> have the extra attribute of type Keys.>> This ...
589 byte By
Guest at 2007-11-25 9:26:15
I have the following constructor:StaticTextField child = new StaticTextField(this, CHILD_LABEL_LOCKED,"groupings.locked"); The initial value "groupings.locked" is supposed to be a reference tothe Resources.properties file. I've added this entry to the propertiesfile but when the page is ...
628 byte By
Guest at 2007-11-25 9:26:17
I attended the Sun Tech Days last week (and was able to meet Matt, not the least interest of the 2 days ;).I got interested by the EJB Talk1. Local EJBs. This solves the performance problem when you know the different containers are "local".2. CMP entity beans. Thanks to local EJB and other ...
1984 byte By
Guest at 2007-11-25 9:26:19
I want to put a link ( href ) in my tiledview . To do it simple , thetext for the link is static for now, but I want the value to bedynamic so I create my field this way :if (name.equals(CHILD_NUMERO)) {HREF child = new HREF(this,getPrimaryModel(),CHILD_NUMERO,null);return child;}It looks good ...
995 byte By
Guest at 2007-11-25 9:26:23
Hi,We are currently using JATO 1.1 for our ND to iPlanet Migration.- values defined in "DisplayFieldDescriptor.USER_DEFINED_HTML_PROP" are still not reflected on final html.Is this problem fixed in JATO 1.1 ?Let us know. If Not, we need to use endChildDisplay events. Similarly ,what is that ...
4261 byte By
Guest at 2007-11-25 9:26:24
I moved my war file into my new Tomcat 4.0.4 webapps directory since Ineed to upgrade in order to use some 'other' tags and I'm receivingthe following stacktrace when I try to hit the first page in myapplication....Any ideas as to why this is occurring?StackTrace Below: Application ...
2185 byte By
Guest at 2007-11-25 9:26:26
I am using Jato 1.2.1 and I am having the following problem when I use nested tiled views.My nested tile view has a href field with a value assigned (setDisplayFieldValue in display cycle). In the handle href request event I do a getDisplayFieldValue and I always get "". I looked through the ...
4238 byte By
Guest at 2007-11-25 9:26:27
Billy--You can use the same technique with Class objects:public Class VOYAGER_LOCKED_MODEL=com.sun.cms.voyager.model.VoyagerLockedModel.class;...getModel(VOYAGER_LOCKED_MODEL);Todd-- Original Message --From: "chubbykidd" <<a ...
459 byte By
Guest at 2007-11-25 9:26:30
Hi,I think I found a bug in JATO.I want to use JATO for a WAP application.Problem:WML (HTML for WAP) will only work if it's a valid XML document. Every tag has to have its closing tag.JATO writes for example:<input type="text" name="Login.tfUserId" value="">but WML insists on:<input ...
4049 byte By
Guest at 2007-11-25 9:26:31
Hi all,we are experienced some issues with SQLModelbase/ResultsetModelBasemodels closing connection before the results can be quereed. We are usingJATO 1.1 and jakarta-tomcat-3.2.1. Following is some sample code that gets amodel and executes it. It is not very different to what is specified in ...
545 byte By
Guest at 2007-11-25 9:26:36
I have to forward to Page 2 in beginDisplay method of Page1 based on some parameters. I am having trouble aborting the current page (Page1) load. I tried the following:if (from.equals("xyz")){ViewBean targetView = ...
10489 byte By
Guest at 2007-11-25 9:26:39
Steve--Thanks very much for the update. I certainly misunderstood what you weredoing from your original post, and now we have two bugs fixed instead ofone. That's great.I have some reservations about this fix, however. Clearly, it's the bestfix possible to the problem, but I don't know ...
2631 byte By
Guest at 2007-11-25 9:26:40
Hi all,when I run the extraction tool for this particular project I get this error for all most all pages except a few. Any ideas on this. What areas I need to look into this.TRACE: Entering: -> [Page], Name [pgPollResults]ERROR: <E001> Error detected: ObjectType [Page], Name ...
965 byte By
Guest at 2007-11-25 9:26:41
I'm fairly new to JATO, but I think I now have a basic understanding of how Viewbeans and Models interact. However, I want to incorporate the use of a Javabean object that will be stored in the HTTP session and will act as the connection between the Viewbean and Model instead of having the ...
1656 byte By
Guest at 2007-11-25 9:26:43
Billy,Any method could throw a NullPointerException. That's a developer error typically with misspelling a literal.Make sure that your class name is spelled correctly.Better yet, why are you using Class.forName... ?Just do this instead to get compiler time type checking, rather than getting ...
1032 byte By
Guest at 2007-11-25 9:26:46
Hi--I just wanted to remind all of you that we have another forum, the JATO tipsforum, that many of you may find useful if you are not already signed up.Craig Conover has done a great job cranking out detailed tips and techniquesfor using JATO over there, and he has more on the way.You can jon ...
3682 byte By
Guest at 2007-11-25 9:26:48
HIWe are migrating ND5 APPLICATION INTO IPLANET .We have method called " populateXlatComboBox". This method should generate combox.We are trying to generate combo box using DATA MODEL in method.is there method like autorefill in IPLANET. could you please go throughmethod and if you have any ...
1572 byte By
Guest at 2007-11-25 9:26:49
I'm having a problem setting a Jato HiddenField. I have a combobox onpage 1 of my app. In my request handler for page 1 I retrieve thevalue selected from the combobox and I try to set a HiddenField object(that resides on page 2 of my app) with the value from the combobox.Here's my code in my ...
1460 byte By
Guest at 2007-11-25 9:26:50
Hi Todd,I tried to post this message to egroups. It was very veryslow. That's why I am sending this email to you directly. In our project, we have pages which contain other pages(pagelets). In Net D project, they did this in the following way:They have a static text field in the main page, at ...
979 byte By
Guest at 2007-11-25 9:26:51
OK,We are finally ready to get off of ND4.I'm doing some research about our next direction.The way I understand it is that iMT will transform my ND apps into J2EE apps using the JATO architecture. Where can I find more information about JATO? I can't seem to find much on the iPlanet site, or ...
515 byte By
Guest at 2007-11-25 9:26:52
Hi all,Can anyone tell me where I can grab UIF SP1 (for both NT and Solaris).I have just started playing with the beta Enterprise Connection Builder, inpreparation for porting some ND PACs, but can't get very far without the UIF.Yes, Craig C, things are finally starting here in NZ - time to ...
373 byte By
Guest at 2007-11-25 9:26:53
Can someone tell me the order of events as they take place when a Jato viewbean loads. I am interested in initializing some page session objects and am not sure where do I do it. Session objects are used in the where clause of the data models. In viewBean's constructor? Thanks in ...
4584 byte By
Guest at 2007-11-25 9:26:57
We have 2 procedures (stored) that were causing errors. We had to removethem from the project to get it to follow through. There are other procedures in the same project that weren't a problem. Theerrors seemed to mention PAC issues? After checking the properties on theprocedures we noticed ...
835 byte By
Guest at 2007-11-25 9:27:02
We Have a problem with the Search Pages. When we come from the search page, the search result will be correct for the first time. When we click on the Next,or Last or any other buttons, We get a different result set (all the data from the tables without any condition). On further ...
2331 byte By
Guest at 2007-11-25 9:27:05
I am getting ready to convert an application from ND, and it does some unique stuff which I'm not sure how to convert, so I am consulting the wisdom of the JATO list, in search of guidance before I run down some dead ends.The application renders an electronic survey form. The data for this ...
1361 byte By
Guest at 2007-11-25 9:27:06
try using kregedit and modify the key for the jvm args, using the -xparameters for the 1.2 runtimeJin --Original Message--From: Todd Fast [mailto:<a href="/group/SunONE-JATO/post?protectID=101233080150035167169232031248066077000 048234051197">Todd.Fast@S...</a>]Sent: Tuesday, ...
2899 byte By
Guest at 2007-11-25 9:27:09
First, let me be clear that if you don't HAVE to use a JATOTreeModel/TreeView, though it may be the easiest approach. The alternativewould be to write a component that takes the XML file directly and generatesHTML from it. You would then just need to slap the HTML into the responseas ...
701 byte By
Guest at 2007-11-25 9:27:12
Hi ToddIn March someone raised the question that comments and javadocs outside ofmethod bodies being stripped from migrated code. You mentioned at the time thatit was not high on your priority list for 1.1. We currently have the same problem where lots of comments and javadocs are notbeing ...
353 byte By
Guest at 2007-11-25 9:27:13
I have some javascript, which pops up a separate browser window. All Ineed to do is call it with the url.How can I extract an url from a jato href, so I can use it in myjavascript call? I can't find anything in the HREF javadoc whichindicates how to get at the raw HTML.John Hoskins ...
180 byte By
Guest at 2007-11-25 9:27:14
Or must I use Javascript? I need a confirmation window to verity the userwishes to cancel an operation.Thanks.Belinda
994 byte By
Guest at 2007-11-25 9:27:16
Any stack traces?c jhoskins wrote:>Hi,>I have this page which was converted from ND. When I go to run it, >the pages constructor appears to be called a gazillion times, then >the KJS crashes. It appears to get through the registerChildren each >time, as well as the ...
882 byte By
Guest at 2007-11-25 9:27:20
HiIn my application we are keeping our form fields in one frame(topframe) and buttons(submit,cancel) in other frame(bottom frame). I mean Both frame containdifferent jsp.My requirnment is if i click the button in Bottomframe the form fields in Topframe should be submitted.This i was able to do ...
7427 byte By
Guest at 2007-11-25 9:27:23
That exception looks like something did not get compiled correctly.Try stopping Resin, delete the "work" directory under you "web-inf" dir (this is where the compiled JSPs get put), recompile all your classes, then start Resin and try running again.If that doesn't work, try running in another ...
379 byte By
Guest at 2007-11-25 9:27:24
I know it was previously mentioned that jato was designed for tools integration so I am wondering when we will see a forte/netbean module for Jato. Also is anyone at liberty to elaborate on the recent press release and tell us how well jato / ias 6.5 /forte will be integrated together and what ...
574 byte By
Guest at 2007-11-25 9:27:26
Hi,i build a JATO application that deployed as a war file and run perfectly on an external Tomcat. But running this app on the integrated Tomcat of the JBuilder tool results in the following error :Application Error - javax.servlet.ServletException: Invalid reqest - request handler "Login" not ...
193 byte By
Guest at 2007-11-25 9:27:28
I have a set of 8 RadioButtons that I need to have split into 2 columns. Is there an easy way to do this?John TecenoBack Bay Technologies
952 byte By
Guest at 2007-11-25 9:27:29
Hi there!I have a database with tables that have one-to-many relationships. They are laid out with a standard join tables:AA_BBB_CC------a_ida_idb_idb_idc_idb_idc_id and has 1 A for n of B. In some cases, the B table also joins with another table for yet more information.My question: what ...
389 byte By
Guest at 2007-11-25 9:27:31
Hi,I am very new to iplanet migration tool. Will like to know whether JATO can be used to convert Applogics to Servlets (to my understanding EJBs have to be created too)? If it is possible then please do send me some information on how to go about doing so (any document, link etc).thanks and ...
1943 byte By
Guest at 2007-11-25 9:27:33
I have deployed a servlet called ChartServlet using the resin server.I have two versions of this servlet. One is basically a hello world and the other (the real ChartServlet)consists of code migrated from Net Dynamics. If I place the hello world version class file in the path the deployment ...
257 byte By
Guest at 2007-11-25 9:27:34
Can anyone shed some light on this for me? I'm getting this message for some reason - javax.servlet.ServletException: The request was not be handled by the specified handlerThanks.-Wyatt
3263 byte By
Guest at 2007-11-25 9:27:37
The big difference between ND and J2EE/JATO is the separation of containercontrol and application control. This means that in ND, thecontainer/application line was a bit blurred, whereas in J2EE/JATO, thecontainer (servlet container) has clear roles vs JATO (and your application).This means ...
1467 byte By
Guest at 2007-11-25 9:27:41
I've got myself confused on the filling of comboboxes, listboxes, etc. The default setup is to populate the lists statically. However I have never been able to make that work because the obtainConnection never finds my datasource mapping. I am setting useJNDI and executing ...
718 byte By
Guest at 2007-11-25 9:27:43
Hello JATO group,I run into this problem today and I'm wondering if somebody have had this issuebefore: I have some links on one page and based on some security check I wantto disable them (show only the label without behaving as a link anymore ). Isthere any simple way to do that other than ...
2004 byte By
Guest at 2007-11-25 9:27:44
We are trying to run our application to access an Oracle database and we are having difficulties.We created a sample www_user_login table in the Oracle database on my desktop and tried to make the connection to that database. We checked the database Connection by creating a sample app using ...
2424 byte By
Guest at 2007-11-25 9:27:45
Hi ..Iam getting a strange error . I have "ippServlet" in correct directory, but only in one particular page(HandleBtnRequest) Iam getting 404 error.What could be the possible reasons for this problem..The detailed error message is given below..ThxRavi 404 Not ...