0
votes
3answers
31 views
Tokens for SQL statement fill in blank instead of NULL making it crash…
I have a sql statement like this:
DECLARE @MyVariable as varchar(50)
SET @MyVariable = $(TokenValue)
In this the $(TokenValue) will fill in a value from a form (ignore how it's doing it, it's not …
0
votes
0answers
19 views
Token-Based Authentication in WCF
I am creating a website which will contain both ASP.NET pages and a Flash applet. I want to encapsulate my business logic in a WCF service which will be exposed through two endpoints: One …
0
votes
1answer
14 views
Generate SAML 1.1 (and possibly 2.0) assertions
I'm looking for a very easy and quick way to generate some SAML assertions. This is only going to be used for testing (using SOAP UI). So I just need something that can generate a valid assertion, …
0
votes
3answers
72 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";
…
0
votes
1answer
37 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 …
1
vote
2answers
33 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
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
39 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
42 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 …
6
votes
7answers
310 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 …
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 …
0
votes
1answer
13 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 …
2
votes
2answers
196 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 …
2
votes
1answer
79 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
49 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 …
