It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
As this answer suggests, it isn't a good idea to have sensitive information in a URL string. Even though it will be encrypted if you use SSL, it will be stored in a server log in clear text.
How then should GET arguments be passed to a web server securely?
You are confusing GET with POST data. That answer talks about the query string, that is the arguments in the url, which are passed by GET, you shouldn't pass sensitive data on them, instead pass it in POST fields and Http-Headers.
Related
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am implementing a virtual file system. As part of it, i am trying to add the content based search feature to it.
Basically content based search feature allows user to search for a "word" and the system returns all the file names which contain the "word" in their content.
In my view trie would serve my purpose. But it is not space efficient and while constructing it, it seems i need to populate wit with all the words from the entire content.
Please suggest me with a better get around solution.
Patricia tries could be a little more space efficient than the normal tries. Check if they might serve your purpose although I am not very sure.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
When I'm in QTP and am automating a Gmail session a lot of the pages are dynamic. I need the line of code that will enable me to use keyboard shortcut keys within any of the gmail UI's.
There are several ways to simulate keyboard action from QTP, this article describes some of them. Especially check out DeviceReplay.
From the linked post:
Set obj = CreateObject("Mercury.DeviceReplay")
Window("Notepad").Activate
obj.PressKey 63
Note: The PressKey method uses the appropriate ASCII or IBM Scan Code value for the key. "63" is the IBM Scan Code value for F5.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I used to make connection object every time, then
I open it and after doing it I Close it. This take lot of time. Is there anyway to get rid off this. In Windows Application ()
If you are using ADO.NET you could take advantage of the connection pool to avoid opening and closing a physical database connection everytime you want to send a query.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
On Shai's blog entry about Searchable list, I noticed that he commented that since he optimized LWUIT some things are broken.
I want to implement search on my list in LWUIT, please how do I implement? Some basic examples would also be very helpful, thank you.
The only thing you need to do is explicitly invoke form.registerAnimated() which was missing in my original demo code.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
If a user on my site wants to add a book, can I do the following:
Send the text typed by the user to Amazon/Google Books API
If the users thinks thats the right book, Can I store the title as part of my own local Database?
Not sure about Amazon, but according to Google APIs Terms of Service, Section 5 - Prohibitions on Content:
Unless expressly permitted by the content owner or by applicable law, you agree that you will not, and will not permit your end users to, do the following with content returned from the APIs:
Scrape, build databases or otherwise create permanent copies of such content, or keep cached copies longer than permitted by the cache header;