active questions tagged token - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T01:27:25Zhttp://stackoverflow.com/feeds/tag/tokenhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1513037/how-to-get-device-token-using-iphone-application-and-other-info-about-the-device0how to get Device Token using Iphone Application and other info about the device?Mishal2009-10-03T07:04:14Z2009-12-01T08:22:48Z
<p>Hi,</p>
<p>In my iphone application i want Device Token using the APN.
How to get that using code ?</p>
<p>Alos i want Other information about the Device User,its version and other info.
How to get that using Code ?</p>
<p>Is it possible to get the device other information using Device Token?</p>
<p>what is the format of the Device Token?</p>
<p>Please give solution by code or any link or any other way,which would be appreciated.</p>
<p>Thanks,</p>
<p>Mishal Shah</p>
http://stackoverflow.com/questions/1793033/generate-saml-1-1-and-possibly-2-0-assertions0Generate SAML 1.1 (and possibly 2.0) assertionsAnthony D2009-11-24T21:27:44Z2009-11-25T12:59:02Z
<p>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, signed or unsigned, that I can then drop into SOAPUI and send off to my Web Service. I know how to add the assertion to the SOAP message and all that other good stuff, I just need some valid test assertions.</p>
<p>Any ideas?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1742232/bison-yacc-make-literal-token-return-its-own-value1Bison/Yacc, make literal token return its own value?acidzombie242009-11-16T13:34:54Z2009-11-22T20:33:43Z
<p>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)</p>
<p>The below doesnt work. The function is called with 0 instead of '=' like i expect. is there an option i can set? (It doesn't appear so via man pages)</p>
<pre><code>AssignExpr: var '=' rval { $$ = func($1, $2, $3); }
</code></pre>
<p>In another piece of code i have <code>MathOp: '=' | '+' | '%' ...</code> hence why i am interested.</p>
http://stackoverflow.com/questions/1777483/php-preventing-session-hijacking-with-token-stored-as-a-cookie0PHP: Preventing Session Hijacking with token stored as a cookie?Greg2009-11-22T01:38:24Z2009-11-22T02:48:37Z
<p>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. </p>
<pre><code>$salt = "blahblahblah";
$tokenstr = date('W') . $salt . $_SERVER['REMOTE_ADDR'];
$token_md5 = md5($tokenstr);
define("token_md5", $token_md5);
</code></pre>
<p>Currently, it's passed by GET or POST with every request, but I was wondering if I could avoid this by offering it as a cookie, since it is dependent on the user's IP. I'm just now learning sessions, so I was wondering if there are any security concerns with doing that? Is it a bad idea?</p>
http://stackoverflow.com/questions/1145337/token-bucket-or-leaking-bucket-for-messages0Token Bucket or Leaking Bucket for messagesHoracio2009-07-17T19:52:20Z2009-11-20T20:00:02Z
<p>I am trying to limit my application send rate to 900kbps but the problem is that the protocol I use is message oriented and the messages have very different sizes. I can have messages from 40 bytes all the way up to 125000 bytes and all messages are send as atomic units.</p>
<p>I tried implementing a token bucket buffer but if I set a low bucket size the big packets never get send and a larger bucket will result in a large burst with no rate limiting at all.</p>
<p>This is my small implementation in C:</p>
<pre><code>typedef struct token_buffer {
size_t capacity;
size_t tokens;
double rate;
uint64_t timestamp;
} token_buffer;
static uint64_t time_now()
{
struct timeval ts;
gettimeofday(&ts, NULL);
return (uint64_t)(ts.tv_sec * 1000 + ts.tv_usec/1000);
}
static int token_buffer_init(token_buffer *tbf, size_t max_burst, double rate)
{
tbf->capacity = max_burst;
tbf->tokens = max_burst;
tbf->rate = rate;
tbf->timestamp = time_now();
}
static size_t token_buffer_consume(token_buffer *tbf, size_t bytes)
{
// Update the tokens
uint64_t now = time_now();
size_t delta = (size_t)(tbf->rate * (now - tbf->timestamp));
tbf->tokens = (tbf->capacity < tbf->tokens+delta)?tbf->capacity:tbf->tokens+delta;
tbf->timestamp = now;
fprintf(stdout, "TOKENS %d bytes: %d\n", tbf->tokens, bytes);
if(bytes <= tbf->tokens) {
tbf->tokens -= bytes;
} else {
return -1;
}
return 0;
}
</code></pre>
<p>Then somewhere in main():</p>
<pre><code>while(1) {
len = read_msg(&msg, file);
// Loop until we have enough tokens.
// if len is larger than the bucket capacity the loop never ends.
// if the capacity is too large then no rate limit occurs.
while(token_buffer_consume(&tbf,msg, len) != 0) {}
send_to_net(&msg, len);
}
</code></pre>
http://stackoverflow.com/questions/1752488/authenticating-and-tracking-users-in-a-json-webservice0Authenticating and tracking users in a JSON webservicepǝlɐɥʞ2009-11-17T23:02:39Z2009-11-17T23:09:11Z
<p>Hi All,</p>
<p>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 MySQL as the database... </p>
<p>I would like to build a mini Adobe Air version of that, mostly because I can use Drag and Drop file uploads, client side image resizing, client side screenshot creation of uploaded files etc. etc.</p>
<p>Now, because the server side is a glorified JSON data provider, I figure I can adapt it to provide data to the AIR app.</p>
<p>My problem is, how do I handle authentication?<br>
In PHP I use sessions for authentication...<br>
For AIR i figure it will be more like a JSON webservice, where you call a certain URL to access certain JSON data.</p>
<p>After a bit of brainstorming, here is what I came up with:</p>
<ol>
<li>The user logs in when the AIR app starts</li>
<li>The server returns an unique token on successful login, and stores that token in the DB</li>
<li>The AIR app has to append that token to every request it makes to the server</li>
<li>On every request, the server checks the validity of the token by comparing it to the one stored in the DB.</li>
</ol>
<p>The questions are,<br>
is there a better way than this?<br>
How long should the token be valid for?<br>
How do i handle clients that close the application without logging out, and without giving me a chance to nullify the token on the server?</p>
<p>If anyone has been in a similar situation, I hope to be enlightened by your answers...</p>
<p>thanks</p>
http://stackoverflow.com/questions/1588728/wcf-the-incoming-message-was-signed-with-a-token-which-was-different-fron-what-u0WCF: The incoming message was signed with a token which was different fron what used to encrypt the body. This was not expected.diadem2009-10-19T13:40:53Z2009-11-15T15:00:04Z
<p>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 server.</p>
<p>"The incoming message was signed with a token which was different fron what used to encrypt the body. This was not expected." (sic)</p>
<p>This only happens on one server, but it's critical that I get the data. I don't have control over the server and while I'm aware what the message means, frankly I don't care. It's their call how they configure their own servers and send back the proper information. All I want is the data.</p>
<p>Is there any "shut up and deal with it" security setting in WCF so I can get data properly from the server?</p>
http://stackoverflow.com/questions/1700874/ms-crm-duplicate-tracking-tokens-when-sending-emails-from-workflows0MS CRM - Duplicate tracking tokens when sending emails from workflowsGiles2009-11-09T13:05:25Z2009-11-09T17:10:15Z
<p>Hi,</p>
<p>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 different recipients are sometimes given the same email Tracking Token. This has resulted a number of emails tracking to the wrong Lead when their recipient replies.</p>
<p>For a workflow that sends the same email to 10 - 15 people most of the emails sent will receive a unique tracking code, however between 2 and 5 from the same workflow execution frequently have the same Tracking Token appended.</p>
<p>Emails sent using the standard send email functionality consistently have unique Tracking Tokens.</p>
<p>No custom code or 3rd party add ons are being used in the email sending process. We are running CRM version 4.0, and are yet to perform roll up 7 (we are in the process of doing that at the moment). |We have also disabled smart matching, and rely on the tracking codes.</p>
<p>Finally the workflow sends the email from an email template.</p>
<p>Thanks</p>
<p>Update:</p>
<p>Workflow Screen shot url: <a href="http://img515.imageshack.us/img515/4710/stackoverflowworkflowsc.png" rel="nofollow">http://img515.imageshack.us/img515/4710/stackoverflowworkflowsc.png</a> (I haven't been a member long enough to post the image)</p>
http://stackoverflow.com/questions/1694001/is-there-a-fast-gettoken-routine-for-delphi6Is There A Fast GetToken Routine For Delphi?lkessler2009-11-07T18:44:59Z2009-11-09T13:00:00Z
<p>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:</p>
<pre><code>function GetTok(const Line: string; const Delim: string; const TokenNum: Byte): string;
{ LK Feb 12, 2007 - This function has been optimized as best as possible }
var
I, P, P2: integer;
begin
P2 := Pos(Delim, Line);
if TokenNum = 1 then begin
if P2 = 0 then
Result := Line
else
Result := copy(Line, 1, P2-1);
end
else begin
P := 0; { To prevent warnings }
for I := 2 to TokenNum do begin
P := P2;
if P = 0 then break;
P2 := PosEx(Delim, Line, P+1);
end;
if P = 0 then
Result := ''
else if P2 = 0 then
Result := copy(Line, P+1, MaxInt)
else
Result := copy(Line, P+1, P2-P-1);
end;
end; { GetTok }
</code></pre>
<p>I developed this function back when I was using Delphi 4. It calls the very efficient PosEx routine that was originally developed by Fastcode and is now included in the StrUtils library of Delphi.</p>
<p>I recently upgraded to Delphi 2009 and my strings are all Unicode. This GetTok function still works and still works well. </p>
<p>I have gone through the new libraries in Delphi 2009 and there are many new functions and additions to it. </p>
<p>But I have not seen a GetToken function like I need in any of the new Delphi libraries, in the various fastcode projects, and I can't find anything with a Google search other than <a href="http://delphi.about.com/cs/adptips2002/a/bltip0902%5F2.htm" rel="nofollow">Zarko Gajic's: Delphi Split / Tokenizer Functions</a>, which is not as optimized as what I already have.</p>
<p>Any improvement, even 10% would be noticeable in my program. I know an alternative is StringLists and to always keep the tokens separate, but this has a big overhead memory-wise and I'm not sure if I did all that work to convert whether it would be any faster.</p>
<p>Whew. So after all this long winded talk, my question really is:</p>
<p>Do you know of any very fast implementations of a GetToken routine? An assembler optimized version would be ideal?</p>
<p>If not, are there any optimizations that you can see to my code above that might make an improvement?</p>
<p><hr></p>
<p>Followup: Barry Kelly mentioned a question I asked a year ago about optimizing the parsing of the lines in a file. At that time I hadn't even thought of my GetTok routine which was not used for the that read or parsing. It is only now that I saw the overhead of my GetTok routine which led me to ask this question. Until Carl Smotricz and Barry's answers, I had never thought of connecting the two. So obvious, but it just didn't register. Thanks for pointing that out.</p>
<p>Yes, my Delim is a single character, so obviously I have some major optimization I can do. My use of Pos and PosEx in the GetTok routine (above) blinded me to the idea that I can do it faster with a character by character search instead, with bits of code like:</p>
<pre><code> while (cp^ > #0) and (cp^ <= Delim) do
Inc(cp);
</code></pre>
<p>I'm going to go through everyone's answers and try the various suggestions and compare them. Then I'll post the results. </p>
<p><hr></p>
<p>Confusion: Okay, now I'm really perplexed.</p>
<p>I took Carl and Barry's recommendation to go with PChars, and here is my implementation:</p>
<pre><code>function GetTok(const Line: string; const Delim: string; const TokenNum: Byte): string;
{ LK Feb 12, 2007 - This function has been optimized as best as possible }
{ LK Nov 7, 2009 - Reoptimized using PChars instead of calls to Pos and PosEx }
{ See; http://stackoverflow.com/questions/1694001/is-there-a-fast-gettoken-routine-for-delphi }
var
I: integer;
PLine, PStart: PChar;
begin
PLine := PChar(Line);
PStart := PLine;
inc(PLine);
for I := 1 to TokenNum do begin
while (PLine^ <> #0) and (PLine^ <> Delim) do
inc(PLine);
if I = TokenNum then begin
SetString(Result, PStart, PLine - PStart);
break;
end;
if PLine^ = #0 then begin
Result := '';
break;
end;
inc(PLine);
PStart := PLine;
end;
end; { GetTok }
</code></pre>
<p>On paper, I don't think you can do much better than this.</p>
<p>So I put both routines to the task and used AQTime to see what's happening. The run I had included 1,108,514 calls to GetTok.</p>
<p>AQTime timed the original routine at 0.40 seconds. The million calls to Pos took 0.10 seconds. A half a million of the TokenNum = 1 copies took 0.10 seconds. The 600,000 PosEx calls only took 0.03 seconds.</p>
<p>Then I timed my new routine with AQTime for the same run and exactly the same calls. AQTime reports that my new "fast" routine took 3.65 seconds, which is 9 times as long. The culprit according to AQTime was the first loop:</p>
<pre><code> while (PLine^ <> #0) and (PLine^ <> Delim) do
inc(PLine);
</code></pre>
<p>The while line, which was executed 18 million times, was reported at 2.66 seconds. The inc line, executed 16 million times, was said to take 0.47 seconds.</p>
<p>Now I thought I knew what was happening here. I had a similar problem with AQTime in a question I posed last year: <a href="http://stackoverflow.com/questions/332948/why-is-charinset-faster-than-case-statement">Why is CharInSet faster than Case statement?</a> </p>
<p>Again it was Barry Kelly who clued me in. Basically, an instrumenting profiler like AQTime does not necessarily do the job for microoptimization. It adds an overhead to each line which may swamp the results which is shown clearly in these numbers. The 34 million lines executed in my new "optimized code" overwhelm the several million lines of my original code, with apparently little or no overhead from the Pos and PosEx routines.</p>
<p>Barry gave me a sample of code using QueryPerformanceCounter to check that he was correct, and in that case he was.</p>
<p>Okay, so let's do the same now with QueryPerformanceCounter to prove that my new routine is faster and not 9 times slower as AQTime says it is. So here I go:</p>
<pre><code>function TimeIt(const Title: string): double;
var i: Integer;
start, finish, freq: Int64;
Seconds: double;
begin
QueryPerformanceCounter(start);
for i := 1 to 250000 do
GetTokOld('This is a string|that needs|parsing', '|', 1);
for i := 1 to 250000 do
GetTokOld('This is a string|that needs|parsing', '|', 2);
for i := 1 to 250000 do
GetTokOld('This is a string|that needs|parsing', '|', 3);
for i := 1 to 250000 do
GetTokOld('This is a string|that needs|parsing', '|', 4);
QueryPerformanceCounter(finish);
QueryPerformanceFrequency(freq);
Seconds := (finish - start) / freq;
Result := Seconds;
end;
</code></pre>
<p>So this will test 1,000,000 calls to GetTok.</p>
<p>My old procedure with the Pos and PosEx calls took 0.29 seconds.
The new one with PChars took 2.07 seconds. </p>
<p>Now I am completely befuddled! Can anyone tell me why the PChar procedure is not only slower, but is 8 to 9 times slower!?</p>
<p><hr></p>
<p>Mystery solved! Andreas said in his answer to change the Delim parameter from a string to a Char. I'll always be using just a Char, so at least for my implementation this is very possible. I was amazed at what happened.</p>
<p>The time for the 1 million calls went down from 1.88 seconds to .22 seconds.</p>
<p>And surprisingly, the time for my original Pos/PosEx routine went UP from .29 to .44 seconds when I changed it's Delim parameter to a Char.</p>
<p>Frankly, I'm disappointed by Delphi's optimizer. That Delim is a constant parameter. The optimizer should have noticed that the same conversion is happening within the loop and should have moved it out so that it would only be done once.</p>
<p>Double checking my Code generation parameters, yes I do have Optimization True and String format checking Off.</p>
<p>Bottom line is that the new PChar routine with Andrea's fix is about 25% faster than my original (.22 versus .29).</p>
<p>I still want to follow up on the other comments here and test them out.</p>
<p><hr></p>
<p>Turning off optimization and turning on String format checking only increases the time from .22 to .30. It adds about the same to the original.</p>
<p>The advantage to using assembler code, or calling routines written in assembler like Pos or PosEx is that they are NOT subject to what code generation options you have set. They will always run the same way, a pre-optimized and non-bloated way.</p>
<p>I have reaffirmed in the last couple of days, that the best way to compare code for microoptimization is to look at and compare the Assembler code in the CPU window. It would be nice if Embarcadero could make that window a bit more convenient, and allow us to copy portions to the clipboard or to print sections of it.</p>
<p>Also, I unfairly slammed AQTime earlier in this post, thinking that the extra time added for my new routine was solely because of the instrumentation it added. Now that I go back and check with the Char parameter instead of String, the while loop is down to .30 seconds (from 2.66) and the inc line is down to .14 seconds (from .47). Strange that the inc line would go down as well. But I'm getting worn out from all this testing already.</p>
<p><hr></p>
<p>I took Carl's idea of looping by characters, and rewrote that code with that idea. It makes another improvement, down to .19 seconds from .22. So here is now the best so far:</p>
<pre><code>function GetTok(const Line: string; const Delim: Char; const TokenNum: Byte): string;
{ LK Nov 8, 2009 - Reoptimized using PChars instead of calls to Pos and PosEx }
{ See; http://stackoverflow.com/questions/1694001/is-there-a-fast-gettoken-routine-for-delphi }
var
I, CurToken: Integer;
PLine, PStart: PChar;
begin
CurToken := 1;
PLine := PChar(Line);
PStart := PLine;
for I := 1 to length(Line) do begin
if PLine^ = Delim then begin
if CurToken = TokenNum then
break
else begin
CurToken := CurToken + 1;
inc(PLine);
PStart := PLine;
end;
end
else
inc(PLine);
end;
if CurToken = TokenNum then
SetString(Result, PStart, PLine - PStart)
else
Result := '';
end;
</code></pre>
<p>There still may be some minor optimizations to this, such as the CurToken = Tokennum comparison, which should be the same type, Integer or Byte, whichever is faster.</p>
<p>But let's say, I'm happy now. </p>
<p>Thanks again to the StackOverflow Delphi community.</p>
http://stackoverflow.com/questions/1695665/need-help-with-scanner-class-for-creating-tokens0Need help with scanner class for creating tokens Jesus872009-11-08T07:31:34Z2009-11-08T09:27:14Z
<blockquote>
<p>Errors im getting: cannot find symbol
constructor method Token. but i do
have a constructor in Token class</p>
<p>cannot find symbol variable
tokenCode. i clearly use it alll over
and i think i initialized it properly
so whats wrong?</p>
<p>cannot find symbol variable scantest.
i have that in same folder where all
classes are in why wont it read it?</p>
</blockquote>
<p>import java.io.BufferedReader;
import java.io.FileReader;
import java.io.*;</p>
<pre><code>public class scanner implements CompilerConstants {
private char c;
private BufferedReader source;
public int token;
private String attr = "";
//private int val = '0';
private
public scanner(BufferedReader buffer) {
source = buffer;
getChar();
} //constructor of scanner
public void getChar()
{
c = (char)(source.read());
//do a read in
}
//lookup for finding identifiers
public boolean lookup(String word)
{
boolean check = false;
for(int i=0; i < RESERVEDWORD.length;i++)
if(word==(RESERVEDWORD[i]))
{
check = true;
}
return check;
}
//public boolean T(int tcc, String attt) //to return token
//{
// tokenCode = tcc;
// attribute = attt;
// return T;
// }
public Token nextToken() throws IOException
{
attr = "";
//need to save to do lookup see if its identifier or not
while(c!=EOFCHAR); //if not end of file then do
{
while (Character.isWhitespace(c))//remove white space, check whether is letter or digit
{
getChar();
}
if (Character.isLetter(c))
{
while(Character.isLetterOrDigit(c))
{
attr = attr + c;
getChar();
}
return new Token(lookup(attr), attr); //
}
else if (Character.isDigit(c)) {
while(Character.isDigit(c))
{
attr = attr + c;
getChar();
}
return new Token(NUMBER, attr);
}
else {
switch (c) {
case '<' : getChar();
if(c=='>')
{
getChar();
return new Token(NE, null);
}
else if (c=='=')
{
getChar();
return new Token(LE, null);
}
return new Token(LT, null);
case '>' : getChar();
if(c=='<')
{
getChar();
return new Token(NE, null);
}
else if (c=='=')
{
getChar();
return new Token(GE, null);
}
return new Token(GT, null);
case '=' : getChar();
return new Token(EQ, null);
case '|' : getChar();
return new Token(OR, null);
case '+' : getChar();
return new Token(PLUS, null);
case '-' : getChar();
return new Token(MINUS, null);
case '*' : getChar();
return new Token(TIMES, null);
case '/' : getChar();
return new Token(DIVIDE, null);
case '[' : getChar();
return new Token(LEFTSQ, null);
case ']' : getChar();
return new Token(RIGHTSQ, null);
case '(' : getChar();
return new Token(LEFTPAREN, null);
case ')' : getChar();
return new Token(RIGHTPAREN, null);
case ',' : getChar();
return new Token(COMMA, null);
case EOFCHAR : getChar();
return new Token(EOF, null);
}
} // switch
//return EOF.Token;
return Token(tokenCode, attr); //tokenAttribute
} // if
// return Token;
} // getToken
public static void main(String[] args)
{
BufferedReader source = new BufferedReader(new FileReader(scantest.echo));
}
}
</code></pre>
<blockquote>
<pre><code>Token class
</code></pre>
</blockquote>
<pre><code>public class Token implements CompilerConstants {
private int tokenCode;
private String attribute;
public Token(int tc, String att) //constructor
{
tokenCode = tc;
attribute = att;
}
public int getToken()//return tokencode
{
return tokenCode;
}
//return token attribute
public String tokenAttribute()
{
return attribute;
}
public String toString(){
String tokenString = tokenCode + " ";
switch (tokenCode) { //// relational expressions for metasymbols
case AND: return (tokenString + "/n AND");
case IDENTIFIER: return (tokenString + "/n IDENTIFIER" + attribute);
case OR: return (tokenString + "/n OR");
case NOT: return (tokenString + "/n NOT");
case ARRAY: return (tokenString + "/n ARRAY");
case BEGIN: return (tokenString + "/n BEGIN ");
case BOOLEAN: return (tokenString + "/n BOOLEAN ");
case DO: return (tokenString + "/n DO ");
case ELSE: return (tokenString + "/n ELSE");
case END: return (tokenString + "/n END");
case FOR: return (tokenString + "/n FOR");
case FROM: return (tokenString + "/n FROM");
case IF: return (tokenString + "/n IF");
case INTEGER: return (tokenString + "/n INTEGER");
case PROCEDURE: return (tokenString + "/n PROCEDURE");
case PROGRAM: return (tokenString + "/n PROGAM");
case READ: return (tokenString + "/n READ");
case START: return (tokenString + "/n START");
case THEN: return (tokenString + "/n THEN");
case TO: return (tokenString + "/n TO");
case TRUE: return (tokenString + "/n TRUE");
case WHILE: return (tokenString + "/n WHILE");
case WRITE: return (tokenString + "/n WRITE");
case WRITELN: return (tokenString + "/n WRITELN");
case NUMBER: return (tokenString + "/n NUMBER" + attribute);
case STRING: return (tokenString + "/n STRING" + attribute);
case LT: return (tokenString + "/n LT");
case LE: return (tokenString + "/n LE");
case GT: return (tokenString + "/n GT");
case GE: return (tokenString + "/n GE");
case EQ: return (tokenString + "/n EQ");
case NE: return (tokenString + "/n NE");
case PLUS: return (tokenString + "/n PLUS");
case MINUS: return (tokenString + "/n MINUS");
case TIMES: return (tokenString + "/n TIMES");
case DIVIDE: return (tokenString + "/n DIVIDE");
case LEFTSQ: return (tokenString + "/n LEFTSQ");
case RIGHTSQ: return (tokenString + "/n RIGHTSQ");
case LEFTPAREN: return (tokenString + "/n LEFTPAREN");
case COLONEQUAL: return (tokenString + "/n COLONEQUAL");
case COMMA: return (tokenString + "/n COMMA");
case EOF: return (tokenString + "/n EOF");
}
return tokenString;
}
}
</code></pre>
<blockquote>
<pre><code>CompilerConstants
</code></pre>
</blockquote>
<pre><code>public interface CompilerConstants {
public static final int AND = 1;
public static final int ARRAY = 2;
public static final int BEGIN = 3;
public static final int BOOLEAN = 4;
public static final int DO = 5;
public static final int ELSE = 6;
public static final int END = 7;
public static final int FALSE = 8;
public static final int FOR = 9;
public static final int FROM = 10;
public static final int IF = 11;
public static final int INTEGER = 12;
public static final int NOT = 13;
public static final int OR = 14;
public static final int PROCEDURE = 15;
public static final int PROGRAM = 16;
public static final int READ = 17;
public static final int START = 18;
public static final int THEN = 19;
public static final int TO = 20;
public static final int TRUE = 21;
public static final int WHILE = 22;
public static final int WRITE = 23;
public static final int WRITELN = 24;
public static final int IDENTIFIER = 30;
public static final int NUMBER = 31;
public static final int STRING = 32;
public static final int LT = 33;
public static final int LE = 34;
public static final int GT = 35;
public static final int GE = 36;
public static final int EQ = 37;
public static final int NE = 38;
public static final int PLUS = 39;
public static final int MINUS = 40;
public static final int TIMES = 41;
public static final int DIVIDE = 42;
public static final int LEFTSQ = 43;
public static final int RIGHTSQ = 44;
public static final int LEFTPAREN = 45;
public static final int RIGHTPAREN = 46;
public static final int COLONEQUAL = 47;
public static final int COMMA = 48;
public static final int EOF = 99;
public static final char EOFCHAR = (char)(-1);
public static final String[] RESERVEDWORD = {"","and","array","begin","boolean",
"do","else","end","false","for","from","if","integer","not","or",
"procedure","program","read","start","then","to","true","while",
"write","writeln"};
public static final boolean DEBUG = true;
} // interface CompilerConstants
</code></pre>
http://stackoverflow.com/questions/1694850/wcf-web-service-error-the-message-could-not-be-processed-this-is-most-likely-b0WCF Web Service error - The message could not be processed. This is most likely because the action '' is incorrect or because...chiplip2009-11-07T23:52:24Z2009-11-08T01:11:49Z
<p>... the message contains an invalid expired security context token or because there is a mismatch between bindings...</p>
<p>The problem is, the client and the server times are a few seconds off. The web services all work fine, unless the call is made in between the few seconds that the client/server are off. So, if the call is made, and the client time is 6:00:58, and the server time is 6:01:01, the error above occurs.</p>
<p>I have added code to catch the exception, and try the call again, but keep getting this message.</p>
<p>I have synced the times on client/server, but they eventually get out of sync be a few seconds.</p>
<p>Does anyone have any ideas?</p>
<p>Here is part of the web config that matters (everything between client/server is same) :</p>
<pre><code> <service behaviorConfiguration="WebServiceBehavior" name="WebService.TestService">
<endpoint
address=""
binding="wsHttpBinding"
bindingConfiguration="WSHttpBinding_Service"
contract="WebService.ITestService">
</endpoint>
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
<host>
<baseAddresses>
<add baseAddress="./WebService/TestService/" />
</baseAddresses>
</host>
</service>
</services>
<bindings>
<wsHttpBinding>
<binding name="WSHttpBinding_Service" closeTimeout="00:10:00" openTimeout="00:10:00" receiveTimeout="00:10:00" sendTimeout="00:10:00" bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard" maxBufferPoolSize="1000000" maxReceivedMessageSize="1000000" messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="false" allowCookies="false">
<readerQuotas maxDepth="900000" maxStringContentLength="900000" maxArrayLength="900000" maxBytesPerRead="900000" maxNameTableCharCount="900000" />
<reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false" />
<security mode="Message">
<transport clientCredentialType="Windows" proxyCredentialType="None" realm="" />
<message clientCredentialType="Windows" negotiateServiceCredential="true" algorithmSuite="Default" establishSecurityContext="true" />
</security>
</binding>
</wsHttpBinding>
</bindings>
<behaviors>
<serviceBehaviors>
<behavior name="WebServiceBehavior">
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="true" />
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>
<system.web>
<customErrors mode="On" />
<identity impersonate="false" />
<authentication mode="Forms" />
</system.web>
</code></pre>
http://stackoverflow.com/questions/1685343/email-and-reusable-token-urls0Email and Reusable Token URLsrayblasdel2009-11-06T04:09:29Z2009-11-06T06:39:21Z
<p>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 could this link anytime they want to make changes to the functionality.</p>
<p>While I realize that there is no way to truly secure such a concept, I'm looking for options to minimize the visibility of the token. In its current state, soon as the user clicks on the link it is added to their browser history, available to anyone who has access to the computer.</p>
<p>In most cases I would over come this with a simple form so that the token could be passed through with a POST request, but forms aren't really supported in emails.</p>
<p>So the question is, does anyone know of an alternative way to hide a token in such an email?</p>
http://stackoverflow.com/questions/1671027/using-a-form-token-when-user-isnt-logged-in0Using a form token when user isn't logged inMalachor2009-11-04T00:28:26Z2009-11-04T00:32:22Z
<p>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 authenticated session, but what is the point in sending one when they aren't authenticated? </p>
<p>Is it common practice to create a session when a user isn't logged in and pair a token to it?</p>
<p>Thanks,</p>
http://stackoverflow.com/questions/1383997/rails-simple-form-gives-invalidauthenticitytoken-error0Rails simple form gives InvalidAuthenticityToken errorDaniel Cukier2009-09-05T18:40:43Z2009-11-03T07:43:53Z
<p>I have a simple form like this:</p>
<pre><code><form name="serachForm" method="post" action="/home/search">
<input type="text" name="searchText" size="15" value="">
<input class="image" name="searchsubmit" value="Busca" src="/images/btn_go_search.gif" align="top" border="0" height="17" type="image" width="29">
</form>
</code></pre>
<p>And a controller with this method:</p>
<pre><code> def busca
puts params[:searchText]
end
</code></pre>
<p>When I do a click on the image button in the form I get a ActionController::InvalidAuthenticityToken. here's the full StackTrace:</p>
<blockquote>
<p>/Library/Ruby/Gems/1.8/gems/actionpack-2.2.2/lib/action_controller/request_forgery_protection.rb:86:in
<code>verify_authenticity_token'
/Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/callbacks.rb:178:in
</code>send'
/Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/callbacks.rb:178:in
<code>evaluate_method'
/Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/callbacks.rb:166:in
</code>call'
/Library/Ruby/Gems/1.8/gems/actionpack-2.2.2/lib/action_controller/filters.rb:225:in
<code>call'
/Library/Ruby/Gems/1.8/gems/actionpack-2.2.2/lib/action_controller/filters.rb:629:in
</code>run_before_filters'
/Library/Ruby/Gems/1.8/gems/actionpack-2.2.2/lib/action_controller/filters.rb:615:in
<code>call_filters'
/Library/Ruby/Gems/1.8/gems/actionpack-2.2.2/lib/action_controller/filters.rb:610:in
</code>perform_action_without_benchmark'
/Library/Ruby/Gems/1.8/gems/actionpack-2.2.2/lib/action_controller/benchmarking.rb:68:in
<code>perform_action_without_rescue'
/Library/Ruby/Gems/1.8/gems/actionpack-2.2.2/lib/action_controller/benchmarking.rb:68:in
</code>perform_action_without_rescue'
/Library/Ruby/Gems/1.8/gems/actionpack-2.2.2/lib/action_controller/rescue.rb:136:in
<code>perform_action_without_caching'
/Library/Ruby/Gems/1.8/gems/actionpack-2.2.2/lib/action_controller/caching/sql_cache.rb:13:in </code>perform_action'
/Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/connection_adapters/abstract/query_cache.rb:34:in
<code>cache'
/Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/query_cache.rb:8:in
</code>cache'
/Library/Ruby/Gems/1.8/gems/actionpack-2.2.2/lib/action_controller/caching/sql_cache.rb:12:in <code>perform_action'
/Library/Ruby/Gems/1.8/gems/actionpack-2.2.2/lib/action_controller/base.rb:524:in
</code>send'
/Library/Ruby/Gems/1.8/gems/actionpack-2.2.2/lib/action_controller/base.rb:524:in
<code>process_without_filters'
/Library/Ruby/Gems/1.8/gems/actionpack-2.2.2/lib/action_controller/filters.rb:606:in
</code>process_without_session_management_support'
/Library/Ruby/Gems/1.8/gems/actionpack-2.2.2/lib/action_controller/session_management.rb:134:in
<code>process'
/Library/Ruby/Gems/1.8/gems/actionpack-2.2.2/lib/action_controller/base.rb:392:in
</code>process'
/Library/Ruby/Gems/1.8/gems/rails-2.2.2/lib/webrick_server.rb:74:in
<code>service'
/Library/Ruby/Gems/1.8/gems/rails-2.2.2/lib/commands/servers/webrick.rb:66 /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:153:in
</code>require'
/Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:521:in
<code>new_constants_in'
/Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:153:in
</code>require'
/Library/Ruby/Gems/1.8/gems/rails-2.2.2/lib/commands/server.rb:49</p>
</blockquote>
<p>What is happening?</p>
http://stackoverflow.com/questions/1597007/creating-c-macro-with-and-line-token-concatenation-with-positioning-macro2Creating C macro with ## and __LINE__ (token concatenation with positioning macro)DD2009-10-20T20:11:43Z2009-10-20T21:03:57Z
<p>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):</p>
<pre><code>#define UNIQUE static void Unique_##__LINE__(void) {}
</code></pre>
<p>Which I hoped would expand to something like:</p>
<pre><code>static void Unique_23(void) {}
</code></pre>
<p>That doesn't work. With token concatenation, the positioning macros
are treated literally, ending up expanding to:</p>
<pre><code>static void Unique___LINE__(void) {}
</code></pre>
<p>Is this possible to do?</p>
<p>(Yes, there's a real reason I want to do this no matter how useless this seems).</p>
http://stackoverflow.com/questions/1596989/stringbuilder-in-cil-msil2Stringbuilder in CIL (MSIL)DeadlyCreampuff2009-10-20T20:08:19Z2009-10-20T20:37:45Z
<p>Hey there,</p>
<p>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 method token" in the following code:</p>
<pre><code> public static DynamicAccessor<T> CreateWriter(T target) //Target class to *serialize*
{
DynamicAccessor<T> dynAccessor = new DynamicAccessor<T>();
MethodInfo AppendMethod = typeof(StringBuilder).GetMethod("Append", new[] { typeof(Object) }); //Append method of Stringbuilder
var method = new DynamicMethod("ClassWriter", typeof(StringBuilder), new[] { typeof(T) }, typeof(T), true);
var generator = method.GetILGenerator();
LocalBuilder sb = generator.DeclareLocal(typeof(StringBuilder)); //sb pointer
generator.Emit(OpCodes.Newobj, typeof(StringBuilder)); //make our string builder
generator.Emit(OpCodes.Stloc, sb); //make a pointer to our new sb
//iterate through all the instance of T's props and sb.Append their values.
PropertyInfo[] props = typeof(T).GetProperties();
foreach (var info in props)
{
generator.Emit(OpCodes.Callvirt, info.GetGetMethod()); //call the Getter
generator.Emit(OpCodes.Ldloc, sb); //load the sb pointer
generator.Emit(OpCodes.Callvirt, AppendMethod); //Call Append
}
generator.Emit(OpCodes.Ldloc, sb);
generator.Emit(OpCodes.Ret); //return pointer to sb
dynAccessor.WriteHandler = method.CreateDelegate(typeof(Write)) as Write;
return dynAccessor;
}
</code></pre>
<p>Any ideas?
Thanks in advance :)</p>
http://stackoverflow.com/questions/1587407/iphone-device-token-nsdata-or-nsstring0Iphone device token - NSData or NSStringMladen2009-10-19T07:44:33Z2009-10-19T09:22:01Z
<p>Hi Guys,</p>
<p>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. However when I try now to automatically do it, I am sending the device token as ASCII encoded string in the form of variable</p>
<pre><code>self.deviceToken = [[NSString alloc] initWithData:webDeviceToken encoding:NSASCIIStringEncoding];
</code></pre>
<p>The string that I am getting has some funky characters and looks similar to this "å-0¾fZÿ÷ʺÎU QüRáqEªfÔk«"</p>
<p>When server side script sends the notification to that token, I am not receiving anything.</p>
<p>Do I need to decode something and how?</p>
<p>Regardz</p>
http://stackoverflow.com/questions/1480714/apns-not-receving-any-feedback-for-registerforremotenotificationtypes-neither0APNS: Not receving any feedback for registerForRemoteNotificationTypes: neither +/-vviji2009-09-26T07:52:50Z2009-10-16T05:23:56Z
<p>Hi,
I have been trying to use the default code in the iPhone APNS documentation to generate a device token using registerForRemoteNotificationTypes() but without succes.
Neither the didRegisterForRemoteNotificationsWithDeviceToken or the didFailToRegisterForRemoteNotificationsWithError is called. I had placed a UIAlert in both these methods- both did not appear.</p>
<p>My iPhone is acceesing APNS using Wi/Fi using DHCP.(& am able to browse )
Is there any other setting that needs to to be done to genrate a device token?</p>
<p>can someone post a working code which can be used to generate device token?</p>
<p>Thanks,
V</p>
http://stackoverflow.com/questions/1506445/parsing-rules-how-to-make-them-play-nice-together1Parsing rules - how to make them play nice together.Skoj Neet2009-10-01T20:58:06Z2009-10-15T03:06:56Z
<p>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 yacc/bison etc.)</p>
<p>There's a hand-coded Lexer with a fixed set of tokens (e.g. PLUS, DECIMAL, STRING_LIT, NAME, and so on) right now there are three types of rules:</p>
<ul>
<li>TokenRule: matches a particular token</li>
<li>SequenceRule: matches an ordered list of rules</li>
<li>GroupRule: matches any rule from a list</li>
</ul>
<p>For example, let's say we have the TokenRule 'varAccess', which matches token NAME (roughly /[A-Za-z][A-Za-z0-9_]*/), and the SequenceRule 'assignment', which matches [expression, TokenRule(PLUS), expression].</p>
<p>Expression is a GroupRule matching either 'assignment' or 'varAccess' (the actual ruleset I'm testing with is a bit more complete, but that'll do for the example)</p>
<p>But now let's say I want to parse</p>
<pre><code>var1 = var2
</code></pre>
<p>And let's say the Parser begins with rule Expression (the order in which they are defined shouldn't matter - priorities will be solved later). And let's say the GroupRule expression will first try 'assignment'. Then since 'expression' is the first rule to be matched in 'assignment', it will try to parse an expression again, and so on until the stack is filled up and the computer - as expected - simply gives up in a sparkly segfault.</p>
<p>So what I did is - SequenceRules add themselves as 'leafs' to their first rule, and become non-roôt rules. Root rules are rules that the parser will first try. When one of those is applied and matches, it tries to subapply each of its leafs, one by one, until one matches. Then it tries the leafs of the matching leaf, and so on, until nothing matches anymore.</p>
<p>So that it can parse expressions like</p>
<pre><code>var1 = var2 = var3 = var4
</code></pre>
<p>Just right =) Now the interesting stuff. This code:</p>
<pre><code>var1 = (var2 + var3)
</code></pre>
<p>Won't parse. What happens is, var1 get parsed (varAccess), assign is sub-applied, it looks for an expression, tries 'parenthesis', begins, looks for an expression after the '(', finds var2, and then chokes on the '+' because it was expecting a ')'.</p>
<p>Why doesn't it match the 'var2 + var3' ? (and yes, there's an 'add' SequenceRule, before you ask). Because 'add' isn't a root rule (to avoid infinite recursion with the parse-expresssion-beginning-with-expression-etc.) and that leafs aren't tested in SequenceRules otherwise it would parse things like</p>
<pre><code>reader readLine() println()
</code></pre>
<p>as</p>
<pre><code>reader (readLine() println())
</code></pre>
<p>(e.g. '1 = 3' is the expression expected by add, the leaf of varAccess a)</p>
<p>whereas we'd like it to be left-associative, e.g. parsing as</p>
<pre><code>(reader readLine()) println()
</code></pre>
<p>So anyway, now we've got this problem that we should be able to parse expression such as '1 + 2' within SequenceRules. What to do? Add a special case that when SequenceRules begin with a TokenRule, then the GroupRules it contains are tested for leafs? Would that even make sense outside that particular example? Or should one be able to specify in each element of a SequenceRule if it should be tested for leafs or not? Tell me what you think (other than throw away the whole system - that'll probably happen in a few months anyway)</p>
<p>P.S: Please, pretty please, don't answer something like "go read this 400pages book or you don't even deserve our time" If you feel the need to - just refrain yourself and go bash on reddit. Okay? Thanks in advance.</p>
http://stackoverflow.com/questions/1518180/claims-tokens-library-for-c0Claims + Tokens library for c#Nestor2009-10-05T03:43:08Z2009-10-05T06:27:41Z
<p>Is there a library for c# that allows me to build an encrypted token containing claims, and then gives me an API to check if a token contains the claims I'm interested in?
Similar to how ".NET Access Control Service" works.
I hope the question is clear. Thanks, Nestor</p>
http://stackoverflow.com/questions/1489932/c-preprocessor-and-concatenation3C preprocessor and concatenationJJ2009-09-29T00:03:08Z2009-09-29T03:39:55Z
<p>I am trying to write a code, where name of functions are dependent on the value of a certain macro variable. To be specific, I am trying to write a macro like this:</p>
<pre><code>#define VARIABLE 3
#define NAME(fun) fun ## _ ## VARIABLE
int NAME(some_function)(int a);
</code></pre>
<p>Unfortunately, the macro NAME() turns that into</p>
<pre><code>int some_function_VARIABLE(int a);
</code></pre>
<p>rather than</p>
<pre><code>int some_function_3(int a);
</code></pre>
<p>so the this is clearly the wrong way to go about it. Fortunately, the number of different possible values for VARIABLE is small so I can simply do an #if VARIABLE == n and list all the cases separately, but I was wondering if there is a clever way to do it.</p>
http://stackoverflow.com/questions/1475061/struts-synchronizer-token0Struts Synchronizer TokenBenjamin2009-09-25T01:55:58Z2009-09-26T11:54:22Z
<p>If I implement the Synchronizer Token in my struts application, would i need to edit all my forms to add some kind of tag for the token or is that done automatically by struts?</p>
http://stackoverflow.com/questions/1466046/agile-web-development-with-rails-chap8sessions0Agile Web Development with Rails Chap8:SessionsZeshansari2009-09-23T13:35:16Z2009-09-25T15:46:14Z
<p>I have completed chapter 7 successfully so far but now am stucked at Chapter 8: Sessions</p>
<p>I m using rails version 2.3.2</p>
<p>I am following the instructions and code as written in the book but It is showing me the error of Token Authentiction Failed when i refresh store.rb to see the cart.</p>
<p>how can i resolve this problem? i want to know from where i can get this token n where n in which file i have to put it?</p>
http://stackoverflow.com/questions/1432664/best-way-to-create-a-token-system-to-authenticate-web-service-calls3Best way to create a TOKEN system to authenticate web service calls?Neal2009-09-16T12:32:35Z2009-09-16T18:36:27Z
<p>I'd like to create a web service architecture that can be called by various platforms such as mobile devices, winforms applications, iphone, blackberry, you name it. So going with something like WCF and wsHttp binding probably kills this and I would need to downgrade to a basicHttp binding for compatibility.</p>
<p>With that said, I need a system to generate a token on initial login (authentication) and then use this token for all subsequent calls, I guess, to validate the authentication and allow the method to execute.</p>
<p>Anyone have tips or suggestions on how to go about this? 1) Generate a token and what's involved in a secure token? 2) How long is the token good for, some users may use their application for hours and possibly even "sleep" their computer</p>
<p>Thank you for the advice.</p>
http://stackoverflow.com/questions/719064/iis-token-based-security-ssl-certificate-and-https-proxy0IIS token based security, ssl certificate and https, proxydavidgshi2009-04-05T14:59:46Z2009-09-12T06:00:00Z
<p>I have developed a new web service. Now, I need to deal with security issue as we are intending to make it a secure service. </p>
<p>In order to set up SSL and https, I need to obtain and install an SSL certificate. Who is the certificate authority? </p>
<p>Do you know how to go about with this? </p>
<p>Are there concise articles on this? </p>
<p>Regards.</p>
<p>David</p>
http://stackoverflow.com/questions/1340896/c-best-way-to-replace-x-repeated-tokens-by-one-token0C# Best way to replace x repeated tokens by one tokenLazarus2009-08-27T12:53:33Z2009-08-27T13:33:41Z
<p>If I have:</p>
<pre><code>Some text
More text
Even more text
</code></pre>
<p>What is the more elegant way to obtain:</p>
<pre><code>Some text
More text
Even more text
</code></pre>
<p>All with knowing the number of repeated tokens</p>
http://stackoverflow.com/questions/1220092/best-simple-hardware-security-token-authentication-for-asp-net-websites0Best/Simple hardware security token authentication for ASP.NET websites?silverCORE2009-08-02T22:52:54Z2009-08-03T00:52:52Z
<p>Hi.</p>
<p>I was recently asked to provide a quote on integrating a security solution like most Online Banks use, where there is a security token which key/numbers are randomly changing.</p>
<p>The portal is an ASP.NET website, 2.0...</p>
<p>I haven't implemented this type of security authentication before. Can anyone provide guidance, suggestions, experiences, etc, about the components/hardware they've worked with?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1136409/ways-to-extract-selected-node-values-from-this-xml-markup1Way(s) to extract selected node values from this XML MarkupRob2009-07-16T09:24:32Z2009-07-16T09:48:17Z
<p>Given the (specimen - real markup may be considerably more complicated) markup and constraints listed below, could anyone propose a solution (C#) more effective/efficient than walking the whole tree to retrieve { "@@value1@@", "@@value2@@", "@@value3@@" }, i.e. a list of tokens that are going to be replaced when the markup is actually used.</p>
<p><em>Note: I have no control over the markup, structure of the markup or format/naming of the tokens that are being replaced.</em></p>
<pre><code><markup>
<element1 attributea="blah">@@value1@@</element1>
<element2>@@value2@@</element2>
<element3>
<element3point1>@@value1@@</element3point1>
<element3point2>@@value3@@</element3point2>
<element3point3>apple</element3point3>
<element3>
<element4>pear</element4>
</markup>
</code></pre>
http://stackoverflow.com/questions/1087360/how-do-i-get-an-edit-token-for-mediawiki0How do I get an edit token for Mediawiki?Stefan2009-07-06T14:43:47Z2009-07-06T18:07:21Z
<p>Hello,</p>
<p>I want to get an edit token via a HTTP POST command. The API documentation says only</p>
<blockquote>
<p>Edit token. You can get one of these through prop=info</p>
</blockquote>
<p>Using <strong><em>action=query&prop=info&titles=Main Page&intoken=edit</em></strong> does not give me a token.</p>
<p>How to get it?</p>
http://stackoverflow.com/questions/1088144/authentication-token-is-encrypted-but-not-signed-weakness1authentication token is encrypted but not signed - weakness?Michael Lucas2009-07-06T17:13:41Z2009-07-06T17:56:23Z
<p>Through the years I've come across this scenario more than once. You have a bunch of user-related data that you want to send from one application to another. The second application is expected to "trust" this "token" and use the data within it. A timestamp is included in the token to prevent a theft/re-use attack. For whatever reason (let's not worry about it here) a custom solution has been chosen rather than an industry standard like SAML.</p>
<p>To me it seems like digitally signing the data is what you want here. If the data needs to be secret, then you can also encrypt it.</p>
<p>But what I see a lot is that developers will use symmetric encryption, e.g. AES. They are assuming that in addition to making the data "secret", the encryption also provides 1) message integrity and 2) trust (authentication of source).</p>
<p><strong>Am I right to suspect that there is an inherent weakness here?</strong> At face value it does seem to work, if the symmetric key is managed properly. Lacking that key, I certainly wouldn't know how to modify an encrypted token, or launch some kind of cryptographic attack after intercepting several tokens. But would a more sophisticated attacker be able to exploit something here?</p>