Vishwas Babu

Greenhorn
+ Follow
since Nov 12, 2008
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 Vishwas Babu

Hi,

I need an application that performs multiple posts over a https site(an interview flow),in my example the first post gets the desired response......however on the second post i get an error message from the server.What i want to know is(assuming all the post parameters & request headers are correct)Is there an issue with the logic??? Is this how you perform multiple posts over a secure connection??


Thanks and Regards,
Vishwas
Hi,

Can you post you log?

Regards,
Vishwas
15 years ago
JSF
Hi Phil,


If your requirement is two adjacent identical tables , you may nest them within a <h:panelGrid> and specifying the same columnClasses for both of them (you must be fixing the width etc in pixels or %).

Can you post a code snippet to better illustrate your requirment?


Regards,
Vishwas
15 years ago
JSF
You could set the value of your hidden field on page load using javascript(you can directly access managed bean properties in javascript).

And since you would be binding your component to some value,this set value would get copied to the required bean property on submission
[ November 18, 2008: Message edited by: Vishwas Babu ]
15 years ago
JSF
Hi,

MyFaces is an alternate implementation for the JSF specification(like sun'S RI(Reference Implementation))..Richfaces adds skinnability and Ajax support for a JSF component.....you would normally use both of them.
[ November 18, 2008: Message edited by: Vishwas Babu ]
15 years ago
JSF
Sorry about that.........
The application is supposed to do the following
1)Connect to a remote server and extract info like session ID from the repose sent by the remote server.
2)Using this information, make another post to the same server (in the same session) to carry out some transactions

Step 1 works as expected,however in step 2 the remote server throws an error (it is able to recognize the session,but unable to recognize data sent from the client, probably because the data should be encrypted with some key etc....)my question is how do i do this

ie...Keep the public key,certificates etc sent by the server in the first response and reuse it in the next post

Thanks for your time
[ November 18, 2008: Message edited by: Vishwas Babu ]
In am a novice programmer trying to do multiple posts on a https
connection....the following approach does not work as the server is not

able to recognize the client even though i have set session ID, referer
etc..could somebody tell me if there is a flaw in the logic?? (ie is this
how you perform multiple posts)

[ November 17, 2008: Message edited by: Joe Ess ]
I have a requirement where i have to do multiple posts while maintaining the session information.
Over A Http connection, We can retrieve session info from SET-Cookie header and maintain a session across multiple posts
How Do i do the equivalent on a Https connection

Thanks in Advance,
Vishwas