Deboleena Chakraborty

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

Recent posts by Deboleena Chakraborty

In my project .. all forwards are being done with https..
but there is a redirect when cancel is done from a page, which then redirects to the return url, which can either start with http or https.
There is a load a load balancer concept in my project which checks for the base scheme and location and redirects all return urls to https.

But I dont want this. Some suggested that location should be specified. Which I have already done. See the code below. Is there anything in which I can change the http response scheme explicitly from https to http.

String returnURL = createSuccessURL(replaceAmp(transactionInfoDTO.getMerchantReturnURLBack()), transactionInfoDTO.getEntranceCode(), transactionId);
response.setStatus(HttpServletResponse.SC_SEE_OTHER);
response.setHeader("Location", response.encodeRedirectURL(returnURL));
15 years ago
In my project .. all forwards are being done with https..
but there is a redirect when cancel is done from a page, which then redirects to the return url, which can either start with http or https.
There is a load a load balancer concept in my project which checks for the base scheme and location and redirects all return urls to https.

But I dont want this. Some suggested that location should be specified. Which I have already done. See the code below. Is there anything in which I can change the http response scheme explicitly from https to http.

String returnURL = createSuccessURL(replaceAmp(transactionInfoDTO.getMerchantReturnURLBack()), transactionInfoDTO.getEntranceCode(), transactionId);
response.setStatus(HttpServletResponse.SC_SEE_OTHER);
response.setHeader("Location", response.encodeRedirectURL(returnURL));
15 years ago
Hi,

Using java code(jdk 1.5),
I want to copy some files which are present in 1 folder to another folder.
The files are not of any specific type, it is .doc, .jar files etc...

e.g. Files present in D:\files want to copy them into D:\CD_Source.

I would appreaciate your help...
19 years ago
Hi,
This is with related to my first mail where i wanted the scrollbar to move on tab and focus on a specified field.
My panel is scrolling horizontally(that i wanted), but what is happening is that everytime the focus is going on the same place i.e. the dimension of the rectangle is same so even if i click on the third field the second field is only visible. Please help me.
Thanks & Regards
Deboleena
20 years ago
Yes, it is possible.
e.g.
public void nameLabel(String s)
{
JLabel label = new JLabel(s);
}
and u call the method as: nameLabel("Hello");
[ May 11, 2004: Message edited by: Deboleena Chakraborty ]
20 years ago
Hi,
I have a panel and 3 text boxs and 3 labels. 2 labels and 2 text boxes are visible when the panel is visible. The third can be seen if the panel is scrolled. But what i want is that when i tab out of the 2 nd text box the third text box should be seen i.e. the panel should scroll automatically and the focus should go at the place of the cursor.What should I do?
Regards
Deboleena
[ May 10, 2004: Message edited by: Deboleena Chakraborty ]
20 years ago