0
votes
3answers
63 views
PHP: Preventing Session Hijacking with token stored as a cookie?
Hi. I'm working on an RIA in PHP. To try to prevent session hijacking I introduced a token, generated at login, based off a salt, ISO-8601 week number and the user's IP.
$salt = "blahblahblah";
…
6
votes
7answers
304 views
Is There A Fast GetToken Routine For Delphi?
In my program, I process millions of strings that have a special character, e.g. "|" to separate tokens within each string. I have a function to return the n'th token, and this is it:
function …
1
vote
2answers
31 views
Bison/Yacc, make literal token return its own value?
Below is my rule, when i replace $2 with '=' my code works. I know by default all literal tokens uses their ascii value (hence why multi character token require a definition)
The below doesnt work. …
0
votes
1answer
35 views
Authenticating and tracking users in a JSON webservice
Hi All,
I have contact management / CRM application used in-house by our company, It is a web based app and thus uses a lot of Ajax. Most of the data is JSON, and the backend server uses PHP with …
0
votes
2answers
217 views
how to get Device Token using Iphone Application and other info about the device?
Hi,
In my iphone application i want Device Token using the APN.
How to get that using code ?
Alos i want Other information about the Device User,its version and other info.
How to get that using …
0
votes
3answers
27 views
Email and Reusable Token URLs
I'm building a site that offers functionality to users without requiring them to register. The idea is to send an email to the specified address containing a link with a token. That way the user would …
2
votes
2answers
188 views
Creating C macro with ## and __LINE__ (token concatenation with positioning macro)
I want to create a C macro that creates a function with a name based
on the line number.
I thought I could do something like (the real function would have statements within the braces):
#define …
0
votes
0answers
31 views
MS CRM - Duplicate tracking tokens when sending emails from workflows
Hi,
I have recently helped some of our users set up several workflows to send emails. Now that these have been in use for a couple of weeks we have noticed that each time the workflow runs, emails to …
0
votes
1answer
36 views
Need help with scanner class for creating tokens
Errors im getting: cannot find symbol
constructor method Token. but i do
have a constructor in Token class
cannot find symbol variable
tokenCode. i clearly use it alll over
and i think …
0
votes
1answer
37 views
WCF Web Service error - The message could not be processed. This is most likely because the action ‘’ is incorrect or because…
... the message contains an invalid expired security context token or because there is a mismatch between bindings...
The problem is, the client and the server times are a few seconds off. The web …
0
votes
2answers
173 views
Iphone device token - NSData or NSString
Hi Guys,
I am receiving iPhone device token in the form of NSData object.
When I tested my notifications script function, I have only copied that object from log and the notifications went fine. …
2
votes
1answer
77 views
Stringbuilder in CIL (MSIL)
Hey there,
I'm trying to generate code that takes a StringBuilder, and writes the values of all the properties in a class to a string. I've got the following, but I'm currently getting a "Invalid …
0
votes
1answer
12 views
Using a form token when user isn’t logged in
I noticed that a lot of sites send a random token with form posts even though the user is not logged into a service requiring authentication. I understand the use of a token when you have an …
0
votes
1answer
45 views
WCF: The incoming message was signed with a token which was different fron what used to encrypt the body. This was not expected.
For what ever reason, a critical third peaty webservice functions like this. I can connect, send a request, and receive valid response, but i still get the error message. This only happens on one …
1
vote
2answers
88 views
Parsing rules - how to make them play nice together.
So I'm doing a Parser, where I favor flexibility over speed, and I want it to be easy to write grammars for, e.g. no tricky workaround rules (fake rules to solve conflicts etc, like you have to do in …
