JHM Lin

Greenhorn
+ Follow
since Nov 10, 2003
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by JHM Lin

Oh~ thank you very much
You do help me a lot
19 years ago
Hello~~
I have some samples on hand, but they are not complete(they are just code snips). I write an CMP entity bean class, config JDBC connection pool and data source in weblogic console, and then use ejbgen to generate remote interface、home interface and deployment descriptor, finally , while I run ejbc, I have some trouble.
I am new to CMP, I am not sure whether I miss any required step while develop CMP component.
If you are convenient, would you give me a complete sample app, and give me some instructions about how to run the app. my email address is : hmlin.iem90g@nctu.edu.tw

Beat Regards
19 years ago
Hello~~
I have some samples on hand, but they are not complete(they are just code snips). I write an CMP entity bean class, config JDBC connection pool and data source in weblogic console, and then use ejbgen to generate remote interface、home interface and deployment descriptor, finally , while I run ejbc, I have some trouble.
I am new to CMP, I am not sure whether I miss any required step while develop CMP component.
If you are convenient, would you give me a complete sample app, and give me some instructions about how to run the app. my email address is : hmlin.iem90g@nctu.edu.tw

Beat Regards
19 years ago
Hello...
I try to run setEnv script in the domain before executing weblogic.ejbc,
but the same error message as mentioned above still appeared.
Could you give me some suggestions?

Best Regards!

JHM
19 years ago
Hello...
I try to run setEnv script in the domain before executing weblogic.ejbc,
but the same error message as mentioned above still appeared.
Could you give me some suggestions?

Best Regards!

JHM
19 years ago
Hello~~
While I use weblogic.ejbc to compile container managed persistence entity bean, I execute the following command:

D:\MyProject\Product>java -classpath .\lib\weblogic.jar weblogic.ejbc .\dist\Product0.jar .\dist\Product.jar

where .\dist\Product0.jar is source jar file
.\dist\Product.jar is target jar file
------------------------------------------------
The error message is:
ERROR: Error from ejbc: Installation file D:\MyProject\Product\.\lib\persistence\persistence.
does not exist. Could not initialize EJB container managed persistence.
ERROR: ejbc found errors

What's the problem with this command or anything else goes wrong?
Could anyone provide me with solution to this problem?
Thank you very much!
19 years ago
hello everyone!
If the GUI of an application has a JTextField representing date, and user can key in date in the JTextField. How to check the value key in by user is a valid date in calendar?
Thanks for your answering
Best Regards
19 years ago
hello all
I have a problem when deploying a war file into Java Web Start. The war file consists of several jar files, and one of the jar files contanins several *.properties files(such as system.properties). I attempt to find the properties file by the following code:
InputStream is = this.getClass().getResourceAsStream("/system.properties");
Properties prop = new Properties();
prop.load(is);
String initCtxFactory = prop.getProperty("myproperties");
but it fails to find the properties file.
Can anyone provide me with the solution to this problem?
Thanks in advance!
20 years ago
Hello , all
The version of weblogic server I installed is 7.0, and the platform is windows xp professional edition. It's ok when I connect to weblogic console by typing "http://localhost:7001/console" in ie. The machine ip that install the weblogic server is 192.168.100.48, but it fails to connect to weblogic server when typing "http://192.168.100.48:7001/console". I feel confused, what's wrong with the machine??
20 years ago