Christie George

Greenhorn
+ Follow
since Aug 16, 2004
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Christie George

hi all,

i have a application running on websphere 5. i would like to know as to how do i dtermine the version of the ejb being used.

thanks in advance
hi all,

i am a programmer very new to spring. i eould like to know if the below mentioned functionality is suported by Spring(i guess it shud be, but i donno where to look ), if yes, how do we do it (i already went thru chapter 8 of the spring ref doc..i am looking for something otherthan that).

i am using jdbctemplate to call my database(oracle)
functionality:
suppose i am making to updates to the database(one after the other), i want the 'commit' to happen only after both the updates are successful. if any of the updates fail, a rollback must occur.

thanks in advance.
hi,

i am looking for a clear and detailed tutorial on jboss portals.
i am beginner, so i need something right from scratch.

i saw this link http://wiki.opensymphony.com/display/WW/Portlet+Tutorial.
but this again does not say any thing about content management/search etc.
could someone suggest a better online tutorial?

thanks in advance
18 years ago
i am getting the dump now. the serever console is pasted below.

Unhandled exception
Type=GPF vmState=0xffffffff
Target=20030915 (Windows XP 5.1 build 2600 Service Pack 2 x86)
ExceptionCode=0xc0000005 ExceptionAddress=0x10608946 ContextFlags=0x0001003f
Handler1=0x111016c0 Handler2=0x10019730
Module=C:\Program Files\IBM\WebSphere Studio\Application Developer\v5.1.1\runtimes\base_v51\java\jre\bin\J9GC21.dll
Module_base_address=0x10600000
Offset_in_DLL=0x00008946
EDI=0x00000089 ESI=0x00002021 EAX=0x000b02a8
EBX=0x00000001 ECX=0x00002021 EDX=0x00090acc
EBP=0x00000001 ESP=0x0445fc60 EIP=0x10608946
Generating crash dump: C:\Documents and Settings\ignatan\j9.dmp
Thread: Gc Thread (priority 5) (daemon) (LOCATION OF ERROR)
Thread: Debug response server (priority 10) (daemon)
Thread: Thread-0 (priority 7)

would appreciate if someone could help
hi Jeanne,

thanks a lot for the help.
it always happens at the same place and for the same piece of code. the process is like ..i start the server-->open the main page-->login to the application..thats when i get this error.
i even tried reinstalling WSAD,it didnt help.
i appreciate your help.
hi ,
while running my application i am getting this error on my WSAD

JVMDG217: Dump Handler is Processing a Signal - Please Wait.
JVMDG303: JVM Requesting Java core file
JVMDG304: Java core file written to C:\WSAD\javacore.20050509.143422.1192.txt
JVMDG215: Dump Handler has Processed Exception Signal 11.

could somebody help?
hi

using callableStatement.setObject(...), i would like to pass a user defined object and be able to access it in a Stored procedure(please ref the earlier post by me in the same section).
i want to know as to how we can access it in a SP(its for DB2)
Hi All,

Can you please help me with a solution of passing Java Objects into Stored Procedures in DB2.

I have a User Defined Datatype in DB2 as

CREATE TYPE EPUSER.CNTCT_ADDR_TYPE AS
(
"NAME" VARCHAR(100),

STREET VARCHAR(30),

CITY VARCHAR(30),

STATE VARCHAR(2),

ZIP VARCHAR(15)
)

CREATE TABLE EPUSER.COMP_COMP_INFO
(

COMP_ID NUMERIC(8) NOT NULL,

COMP_MBU NUMERIC(8),

COMP_COMPANY_ID VARCHAR(10) NOT NULL,

COMP_COMPANY_NAME VARCHAR(100),

COMP_START_DATE DATE,

COMP_END_DATE DATE,

COMP_AKNWLDG_TYPE CHAR(3),

COMP_BILNG_ADD CNTCT_ADDR_TYPE,

���

��.

���.



CONSTRAINT P_COMP_PK PRIMARY KEY (COMP_ID),

CONSTRAINT F_CPMP_FK_MBU FOREIGN KEY (COMP_MBU)

REFERENCES EPUSER.COMP_COMP_INFO (COMP_ID)

ON DELETE RESTRICT ON UPDATE RESTRICT

);

Inside the java class I will set the value using
callableStatement.setObject(6, clientModel.getBillingAddress());

Client Model.java
public class ClientModel implements Serializable
{
private String pkId;

private String companyId;

private String companyName;

private String startDate;

private String endDate;

private Address billingAddress;



public Address getBillingAddress() {

return billingAddress;
}
}

Address.java

public class Address implements Serializable{

private String street;

private String city;

private String state;

private String zipCode;



with getter and setter methods

}

What will be the datatype of the input parameter which receives this object in DB2? How will I insert value into the this UserDefined DataObject - CNTCT_ADDR_TYPE
hi

i am running an applicatin using the test server in my WSAd,when i access a particular page of my application(which has got a file upload option) i get a Access is Denied javascript error.
it seems to be something wrong with my browser(IE 6) 'coz wen someone else access's the same from another machine there's no error.
please help
ok fine agreed...but in such a case will the extra bits of the float value be filled with a junk value(when its passed)?
20 years ago
hi,
my issue is like this..

i have a float variable,is it possible for me to pass this (float) variable to a method thats taking a double as arguement? i am not applying any cast to the float variable.
20 years ago
hi,
my issue is like this..

i have a float variable,is it possible for me to pass this (float) variable to a method thats taking a double as arguement? i am not applying any cast to the float variable.
20 years ago
Could you offer some suggestions, as to how to move about?
20 years ago
Hi

Is it possible to access a printer and print a page using ANT

Tx
20 years ago
Hi,

my issue is like this:
my application should display numbers the way its in the DB, upto 6 decimal places,if the value is 1.2 it should display only 1.2 and not 1.200000, if its 1.22 it should display 1.22 and not 1.220000. this goes on till 6 deciamal places.

i am not sure wether its a java or a java script issue.
please help
20 years ago