Yakup Klein

Greenhorn
+ Follow
since Mar 23, 2006
Merit badge: grant badges
Biography
SCJP, SCWCD
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 Yakup Klein

I think this is an Maven Netbeans issue. All the changes in the mvn.bat file of maven does not effect and my test with alt+F6 still giving java heap space error. I'm working on an XP machine. Does notbeans not have IDE options to let start maven with more heap space. I know I have to use -Xmx 512m -Xms512m but why is netbeans not using it and where do I have to put this options?
While executing a single test everything is OK. But when I execute multiple tests in Netbeans using Alt=F6 I get java heap space error. I tried to increase heaps space by using -Xmx512m but when I look the heaps space with Java VisualVM the heap space still stays on 64mb. I'm trying to increase the heap space of org.apache.maven.surefire.SurefireBooter but until now without success.
I also put <forkMode>pertest</forkMode> <argLine>-Xms512m -Xmx512m</argLine> </configuration> in the maven POM but still without luck.
Know someone a trick to increase the heap space of maven module org.apache.maven.surefire.SurefireBooter?
Thanks, that was fast.
It stays on the server side and will be delivered to a Content Delivery Platform.
What is the best and simple way to generate xhtml from an csv file in java at the server side? Isn't jsp the right tool for it or are there better options.?
Thanks.
Thanks Scott,
But where can I do that in Websphere 6. I adjusted in virtual host by making a new alias, but it has no effect. I want to re-configure it, can you please tell how should do it.
May be it is stupid question but, do I need also a webserver?
Thanks

Yaman
17 years ago
I�m using WAS 6 and I deployed the application, everything working fine but I have to give portnumber :9080 after the servername. I don�t have a webserver installed I have only a application server.
I can reach to the application with http://testserver:9080/auto/flow and I don�t want to type 9080. I just want to type http://testsever/auto/flow in my browser.
In the virtual servers there is a default_server with portnumber 9080 and 80 but it isn�t working yet.
Where can I configure this. Is it possible to configure it in the admin console of Websphrere 6.0.2.9. Did I miss an important point?
Can I java/websphere guru help me?

Thanks
17 years ago
In my application deployment descriptor I can see the following tab's: overview, Module, Security, Deployment and Source. But in my web component DD I can see the reference tab I have chanced that but is has no effect.

Thanks,
17 years ago
Thanks Michael for your quick response,
Where do I have to find this reference tab? If I open my deployment descriptor with default editor of RAD 6 then I can�t see anything like �reference� tab. Can you tell me where I can find it?

Thanks anyway,
18 years ago
I�m using RAD 6.0.1.1. with Sybase 12.5 database. In my J2EE application I�m handling my lookup as ctx.lookup(�jdbc/auto�) and �jdbc/auto� is my jndi name declared in deployment descriptor. In my console I get the following well known message:
J2CA0294W: Deprecated usage of direct JNDI lookup of resource jdbc/auto. The following default values are used: [Resource-ref settings]
res-auth: 1 (APPLICATION)
res-isolation-level: 0 (TRANSACTION_NONE)
res-sharing-scope: true (SHAREABLE)
loginConfigurationName: null
loginConfigProperties: null
[Other attributes]
res-resolution-control: 999 (undefined)
isCMP1_x: false (not CMP1.x)
isJMS: false (not JMS)

I searched for solutions and I found that I have to use the lookup as follow: ctx.lookup("java:comp/env/jdbc/auto�);
In my case it is not helping the well know jndi deprecated message is still there. Can anyone tell what I�m doing wrong and what should I do more to avoid the message appearing in my console?

Thanks everyone,
18 years ago