deep menghani

Greenhorn
+ Follow
since Oct 07, 2010
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 deep menghani

Hi,

I am using WAS 6.0 server for my application.
I have configured log4j.properties as

log4j.rootLogger=DEBUG, R'

log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout

# Pattern to output the caller's file name and line number.
log4j.appender.stdout.layout.ConversionPattern=%-d{MMM dd yyyy HH:mm:ss} %m%n
log4j.appender.R=org.apache.log4j.RollingFileAppender
log4j.appender.R.File=log\\weblog.log
log4j.appender.R.MaxFileSize=40000KB
# Keep up to ten backup files
log4j.appender.R.MaxBackupIndex=100
log4j.appender.R.layout=org.apache.log4j.PatternLayout
#log4j.appender.R.layout.ConversionPattern=%p %-d{MMM dd yyyy HH:mm:ss} %c - %m%n
log4j.appender.R.layout.ConversionPattern=[slf5s.start]%p[slf5s.PRIORITY] %d{DATE}[slf5s.DATE] %c[slf5s.CATEGORY] - %m[slf5s.MESSAGE] %x[slf5s.NDC] %t[slf5s.THREAD] %l[slf5s.LOCATION]%n



It was storing index files upto 100 properly.

But recently , when checked it is overwriting the same log file and not maintaining any index files.
There are no changes done to WAS deployment settings.

What could be the reason for this?

Thanks.
13 years ago
hi...

I have a condition for checking if two values are equal or not

<logic:notEqual name='orderDetailsForm' property='<%="sysOrderID[" + element + "]"%>' value ='<%="invoiceNumber[" + element + "]"%>'>
</logic:notEqual>

i want to print values for sysorderID and invoiceNumber currently for the condition..

how to print these values on jsp???
13 years ago
ohh..thank you Bear for your replies..

If you kno of anything I can do to copy the files thru a link please let me know..

thanks again...
13 years ago
Sorry ..there is no specific client..

it would be different for each user...but the source folder is common .
i.e.

if the link is clicked..the file from source folder should be copied on to client machine..
13 years ago
yes a specific client machine.
i know the destination folder where in the file should go..
13 years ago
Agreed..

but since we have source and destination folder information in our application , can there be any way to copy those files from source to destination.?
13 years ago
Hi,

Query :

When we export data in a file through java code , is there any way to avoid that pop up which asks for OPEN / SAVE / CANCEL .
Example : I have a link .If I click the link the file should be directly saved on to the mentioned disk location without the pop up.

Is there any way to do this??

13 years ago