[ND] Re: Select Statements in Java for a page

2000-02-10 Thread peter cheung
You already answer most of your question. 1. execute immediate and get spid. 2. I assume there is a disconnect statement you can used in sybase to disconnect the one that is using the spid you just retrieve. "Kaluza, Isabel SLGA" [EMAIL PROTECTED] wrote: I want to do the following on a page

[ND] PacSDK - Writing Service PAC

2000-02-10 Thread Vladimir Cetojevic
Hello, I am writing service PAC to connect ND to an old C server. So far I am doing good, but I am now trying to improve it. There are 4 instaces of same C server running. My plan was to limit number of max DB connections to be 4. And every new connection opened, shall connect to the next

[ND] Creating a Window

2000-02-10 Thread Ray
I have a button on my page whose onWebEvent() executes a data object. If the data object returns data, I want to display static text and a button(s) in a new window, and force the user to perform a button click (e.g. OK) before closing the new window. I also want to be able to size the new

[ND] instantiateFromDisk error

2000-02-10 Thread suyoto
Does anyone know what caused this CP error? ==CSpider:Thread-52:instantiateFromDisk: Unexpected Exception caught (java.lang.NullPointerException). This occurred while parsing the project file 'null' This occurs when I try to executeImmediate within a CSpThread object. Thanks for any help.

[ND] Filling 2nd combo box based on the value selected from 1st combo box

2000-02-10 Thread Manisha
Hi All, I want to fill second combo box based on user selection of an item in the first combo box. I have to execute a query each time the user selects an item from the 1st combo box and then fill the second combo box with the query results. How can I call java event in the onchange

[ND] linking from Non-ND application to ND App

2000-02-10 Thread Wigerton-Lee-Progress
I'd be grateful for any advice on how I could link to a specific page of my NetD application from a non-ND Web App (eg, ASP etc), passing a unique number to load a particular results page. Does this make sense? In other words I want to load a results page in my ND App based on a value passed

[ND] Event inspector problem

2000-02-10 Thread tebbesen
In the Studio Inspector window, event tab, when you double click on an event to add it to your Java file, the Studio is supposed to open the file, insert the code for the new event, and place a blue token next to the event name in the inspector window. Occasionally, when we try to add a new

[ND] manuals

2000-02-10 Thread vijay
Hi , where can i get the books or manulas related to ND? Any suggestion is welcome.. thanks Vijay _ For help in using, subscribing, and unsubscribing to the discussion forums, please go to:

[ND] database transaction is NOT 'active'

2000-02-10 Thread Mary Hill
We recently put up a test development server on Solaris, version 4.1.3 for use with multiple users. All of our transaction code (which works just fine on our NT development machine and on our NT production server) fails with the following error: spider.database.CSpTransaction.rollback:

[ND] Re: linking from Non-ND application to ND App

2000-02-10 Thread [EMAIL PROTECTED]
you could use a standard cgi nvp: http://server/plugin/project/page?resultnum= then in page onBeforeDisplayEvent call: CSpValue val = CSpider.getWebVar("resultnum"); int num = 0; if (val != null){ num = val.intValue(); } go get your data... -Chip Team NetDynamics

RE: [ND] Fw: [ND] Conversion from 3.11-4.1:data objects lose tab

2000-02-10 Thread Ralph Cavallaro
Hi Aby, Once again, thank you for getting back to me. I still seem to have a problem. It seems as though the datasource changes fine but it never updates the owner prefix on the table names in the data objects and since the owner name is different in production than in our development

[ND] Re: cannot create dataobject

2000-02-10 Thread peter cheung
Do you mean data source? If you can create data source you should be able to create data objects. What are the symtoms. If you have problem try to define a data source using an owner name. "patwary" [EMAIL PROTECTED] wrote: hi, iam unble to create dataobjects in nd studio.the

[ND] Re: JDBC -- ND50 connection pooling

2000-02-10 Thread Damian O'Connor
Hi, Saw the email...but no reply. Did you try to implement your approach? We are currently looking at doing something similar but we're not sure if it's the best approach for our ND project. Like you we already have a database class that does everything we need!

[ND] Search does not work on data object with multiple joins

2000-02-10 Thread Eskinder
hello, i have a data object pulling 4 tables, all joined by a common field. i have a list page to pull all the information and it is fine. however, if i try to search on that page, it always gives me the first page. the search does not work. i'm i missing

[ND] Re: Filling 2nd combo box based on the value selected from 1st combo box

2000-02-10 Thread [EMAIL PROTECTED]
I assume you mean "you have to use both java and javascript to achieve the above stepsthis" you can use only javascript if you attempt what peter describes in 2-4 of his reply. for small amounts of cross reference data i have done it this way and it works well. it is much faster than making a

[ND] Bleeding on UNIX but not on NT, any ideas ?

2000-02-10 Thread A Horgan
We've just moved an ND4 application onto a UNIX box and are having problems with "bleeding". Is it true the root of this problem is simply that the UNIX box, since it uses the multiple CP's as opposed to the single CP on NT, is the cause ? And if so does anyone have a solution ?

[ND] Re: RadioButton Extra HTML Text

2000-02-10 Thread Bola Taylor
Chip In NetD when you add the extra html text to a radio button within a page and assuming you have three options within that radio button and the first option selected , it only adds the extra html text to the first row that has been selected by default. Question, how

[ND] Another ComboBox Problem...

2000-02-10 Thread keith west
I have the following scenario: 1. Page 1 Contains a Combobox for "Contact" names, and a button that passes whatever is selected from the Contact ComboBox to a hidden on Page 2. 2. Page 2 Contains another ComboBox, this one is dynamically populated based on the Contact name in the

[ND] Unnecessary Display...

2000-02-10 Thread vijay
Hi , I am getting the following messages when compiling my project Test. It is adding the fields to the HTML page. How to get rid of them?? Adding **tbx1** to the bottom of the section just before **SPIDERSESSION** in the HTML file F:\NETDYN_PROJECTS\Test\page1.htm... Adding

[ND] How to set two repeat ?

2000-02-10 Thread Lee Liu
I tried to set two repeat values as following repeat1 stLine1 (linked to database) stLine2 (linked to database) repeat2 stLineA (before display, getDisplayFieldValue ("hiddenField"), and setDisplayFieldValue ("*stLineA"); hiddenField (linked to database

[ND] transferring Spidersession_NVP

2000-02-10 Thread Alan
hi. I am using mouseover menus in my project, but I am generating a new session everytime i link to another page via the mouse over. Is there any method to maintain the same session throughout the project ? any ideas how to go about this problem thanks Alan

[ND] service manager not running

2000-02-10 Thread Fujian Yang
Hello, I know there is lots of discussion on this topic, but it seems not solve my problem. We are using DN 4.1 server and studio, and I have JDK1.1.5 installed on my desktop. The studio installation did not give any error message. But after restarted my computer the service manager is not

[ND] Java.sql.exception: Data type bigger than maximum

2000-02-10 Thread Chkra
Hello anyone have any clue regarding this exception message?. Java.sql.exception: "Data type bigger than maximum" This i am getting when we try to run the application on HP-Unix, it works fine on NT. This i think is happening when we querry big data, because i don't get this problem when

[ND] Problem changing href's text dynamically

2000-02-10 Thread Jan Robison
Hi, I am trying to change the text of an href dynamically. My problem is it that the text changes but the href looks like a static text. You cannot click on the href after the text is changed. Here is the code I am using can anyone tell me what I am doing wrong? Thanks public int

[ND] No Free Workers upon startup

2000-02-10 Thread David Flynn
I have a test ND server on my laptop that I startup each a.m. The first time I try to execute a data object, the data object fails and I receive the error: 22757 Feb 10, 2000 at 09:40:53.52 Warning Thread-15 CPService

[ND] iPlanet vs other servers?

2000-02-10 Thread Patricia H. Liberatore
If we used another version of a webserver instead of iPlanet when we convert to EJB, would the conversion/migration tools work on current NetDynamics projects? If we use iPlanet could we still use CSpider classes, session objects, database connections, etc? Would the modifications to

RE: [ND] Bleeding on UNIX but not on NT, any ideas ?

2000-02-10 Thread Brendan Johnston
When processing a web event you need to be aware that local variables, selection criteria, field values and most other state in the CSpDataObject and CSpPage instances are not reliable. The only way to prevent session bleed is to carefully code your application to stop it happening. You may need

Re: [ND] Bleeding on UNIX but not on NT, any ideas ?

2000-02-10 Thread David Flynn
What problems with code would lead to this type of problem? Can you give an example? Brendan Johnston wrote: When processing a web event you need to be aware that local variables, selection criteria, field values and most other state in the CSpDataObject and CSpPage instances are not

[ND] straightforward way of doing file uploading

2000-02-10 Thread Venkat Mani
Hi all, I want to know the straight forward way of doing file uploading without using cgi scripts. Help in this regard is highly appreciated. thanks, Venkat Mani _ To unsubscribe from this mailing list please send