Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
2answers
11k views

WCF Authentication with custom ClientCredentials: What is the clientCredentialType to use?

I had to ditch the basic WCF UserName/Pwd security and implement my own custom client credentials to hold some more info beyond what is provided by default. I worked throughthis MSDN article, but I'm ...
11
votes
2answers
539 views

Is there an easy or simple way to split a String with a String in C#

I would like to split a string into a String[] using a String as a delimiter. String delimit = "[break]"; String[] tokens = myString.Split(delimit); But the method above only works with a char as a ...
5
votes
2answers
235 views

Reading a mix of integers and characters from a file in C++

I have some trouble with reading of a file in C++. I am able to read only integers or only alphabets. But I am not able to read both for example, 10af, ff5a. My procedure is as follows: int main(int ...
4
votes
5answers
89 views

How do I tokenise a word given tokens that are subsumed incompletely in the word?

I understand how to use regex in Perl in the following way: $str =~ s/expression/replacement/g; I understand that if any part of the expression is enclosed in parentheses, it can be used and ...
4
votes
2answers
577 views

Querying lucene tokens without indexing

I am using Lucene (or more specifically Compass), to log threads in a forum and I need a way to extract the keywords behind the discussion. That said, I don't want to index every entry someone makes, ...
4
votes
6answers
2k views

Splitting String C++

Hi in C++ if i have a string, how can I split this into tokens?
3
votes
2answers
264 views

DOS batch script to parse CSV file and output a text file

I've seen a response on another page (http://stackoverflow.com/questions/6470570/help-in-writing-a-batch-script-to-parse-csv-file-and-output-a-text-file) - brilliant code BTW - : @ECHO OFF IF ...
3
votes
1answer
391 views

Batch file FOR /f tokens

Can anyone please explain exactly how the following code works, line by line. I'm really lost. I've been trying to learn how to use the FOR command but I don't understand this. @echo off for /f ...
3
votes
2answers
633 views

PHP soap problem

I'm triying to insert data a remote server via SOAP. But got the error below: object(stdClass)#3 (1) { ["DataInsertResult"]=> string(51) "Hata : DI - Value cannot be null. Parameter name: s" } Here ...
3
votes
3answers
123 views

Removing allowable whitespace in PHP using parser tokens

I am trying to make a simple script that will remove all unnecessary whitespace from a PHP file/string. I have been successful at parsing the string using tokens, but don't see a good method to ...
3
votes
5answers
464 views

Identifying a C# or C++ function start in a line count program

I have a program, written in C#, that when given a C++ or C# file, counts the lines in the file, counts how many are in comments and in designer-generated code blocks. I want to add the ability to ...
2
votes
5answers
131 views

How do I only assign FOR /F token from one line only in a test file?

How do I make this grab the token from the first line ONLY in .txt file instead of looping through every line. I want %%m to be assigned to the 3rd token on line one only then stop. @echo off FOR %%A ...
2
votes
2answers
153 views

PHP - How to get tokens?

I was told I needed to validate the tokens below but I'm not sure where to start. I only have public access to the website I'm pulling the data from. Someone explain to me tokens or give an example to ...
2
votes
2answers
258 views

Parse Tokens with Regex in PHP

I am looking to parse a token file that looks something like the one below to grab the token name/value pair. The token/value/nesting relationships are already defined, so i cant change the way the ...
2
votes
2answers
193 views

Refreshing existing nodes to pick up Automatic Nodetitles in Drupal

I have a set of existing nodes for a content type ('foo'). Since then I have installed the Automatic Nodetitles module, which has helped tremendously, since I no longer need to work hard to make ...
2
votes
3answers
291 views

How to deal with overlapping character groups in different tokens in an EBNF grammar?

I'm using an LL(k) EBNF grammar to parse a character stream. I need three different types of tokens: CHARACTERS letter = 'A'..'Z' + 'a'..'z' . digit = "0123456789" . messageChar = ...
2
votes
1answer
457 views

Security Token/Cross Domain Cookie in Classic ASP?

I have an interesting conundrum. We have a site that is a completely separate domain, we'll say http://www.x.com and our own site that is http://www.y.com. The y.com site is actually a classic ASP ...
2
votes
2answers
2k views

What is the difference: LoadUserProfile -vs- RegOpenCurrentUser

These two APIs are very similar but it is unclear what the differences are and when each should be used (Except that LoadUserProfile is specified for use with CreateProcessAsUser which I am not using. ...
1
vote
2answers
268 views

Tumblr API Blog methods return 401 “Not Authorized”, but User methods works perfect

So, there is a code that uses xAuth authentication to call tumblr API methods: import urllib import urlparse import oauth2 as oauth consumer_key = "..." consumer_secret = "..." consumer = ...
1
vote
1answer
172 views

Drupal Anonymous Users Hidden Fields on Webform not showing up on e-mail

I'm trying to capture the url of the webform. For validated users, the code below works: %server[SERVER_NAME]%server[REQUEST_URI] For anonymous users, it does not. From Post#7, I checked out this ...
1
vote
1answer
105 views

Should I use/write a template lexer

I'm using a PHP template engine I've written some time ago. It relies on regexes to create a cached PHP file. Some examples of the syntax: {$foo} - regular variable {$foo.bar} - variable foo that ...
1
vote
1answer
38 views

Security tokens in forms

Many sources suggest to add tokens to the forms to make form submitting more secure. I added tokens to all forms in the forum and now I have the following problem: some users open several browser ...
1
vote
0answers
47 views

ASP.NET Replacement Tokens for assembly full name

SharePoint has a great array of replaceable tokens to use in ASP.NET pages to reference the current assembly. http://msdn.microsoft.com/en-us/library/ee231545.aspx Does ASP.NET have any replacement ...
1
vote
1answer
190 views

Antlr (lexer): matching the right token

In my Antlr3 grammar, I have several "overlapping" lexer rules, like this: NAT: ('0' .. '9')+ ; INT: ('+' | '-')? ('0' .. '9')+ ; BITVECTOR: ('0' | '1')* ; Although tokens like 100110 and 123 can ...
1
vote
2answers
136 views

Alternatives to NTidy and other ports, need to format html with custom tokens

Looking to format (automated, in application) some html / nvelocity templates. Tidy seems to be the answer for this, however all the .Net ports seem to be problematic and not very well maintained. ...
1
vote
1answer
982 views

validate iphone push notification token?

I've not yet implemented push notifications in my app. My understanding is that the app running on the device must request a token, then send this token to my server, and that my server must pass ...
1
vote
2answers
540 views

JavaCC: How can I specify which token(s) are expected in certain context?

I need to make JavaCC aware of a context (current parent token), and depending on that context, expect different token(s) to occur. Consider the following pseudo-code: TOKEN <abc> { "abc*" } ...
1
vote
1answer
55 views

How do you constrct a parse tree from a stream of tokens?

Does anyone know what is the general method for turning a stream (or a list) of tokens into a parse tree? I am dying to know this. I haven't programmed stuff like this and would love to learn it! ...
1
vote
3answers
655 views

C Programming: Preprocessor, macros as tokens

I'm trying to do something that is conceptually similar to this, but can't seem to get it to work (error shown at end) any ideas? #include <stdio.h> int main( int argc , char const *argv[] ) { ...
1
vote
1answer
337 views

How do I alter this tokenization process to work on a text file with multiple lines?

I'm working this source code: #include <string> #include <vector> #include <iostream> #include <istream> #include <ostream> #include <iterator> #include ...
0
votes
1answer
28 views

Handling Sign Up through api in Devise / Rails

I have created a simple API for a Rails application using token-based-authentication that supports User Log In and Log Out and a couple of other actions to update a User's status. I want this API to ...
0
votes
2answers
38 views

Batch file to detect if local printer is installed and to do stuff if it isn't

I'm creating a batch file to detect if a local printer has been installed and if it hasn't other code will run. For /F "Tokens=1 delims=" %%I In ('reg query ...
0
votes
1answer
65 views

Function is not defined for 'cell' inputs. - MATLAB error

I have a problem with MATLAB that i cant quite fix. It is throwing me an error, stating ??? Error using ==> fprintf Function is not defined for 'cell' inputs. Error in ==> writedata at 93 ...
0
votes
1answer
36 views

What are secret passphrases in URL

I don't know much about the use of some random strings in URL. As far as I used, I learned that it can be used where any user simply cannot guess the URL. First noticed in phpmyadmin, as blowfish ...
0
votes
2answers
37 views

Parsing input expression form console in java [closed]

Heading I ve read about compilers tree intrepreters and i m stacked to one question how can i parse input expressions in java please some help for inctance imagine we need to parse math expression ...
0
votes
0answers
89 views

How to make a dummy call to check if tokens are valid?

I made a function to know if a person is connected to an API. After creating a new token I want to know if the tokens are valid or not. I'm kind of stuck here. How can you make that dummy call and ...
0
votes
1answer
155 views

REST API authentication tokens

I'm building my first REST API from scratch and am trying to understand the best way to handle API tokens. I'm not talking about "user authentication" (I would be using OAuth for that). I'm talking ...
0
votes
4answers
48 views

check the value of a word inside a string

I have a string like String example = "Tag: something Id: somethingElse Score: 0.8"; How can i check if Score is higher/equal/lower than 0.
0
votes
2answers
73 views

“Show block on specific pages” drupal can tokens be used?

I want to limit a block to only being on the a users account page. In the section "Show block on specific pages" I used users/[user-name] (did not work) then I tried users/[user-id] (did not work). ...
0
votes
0answers
19 views

Doubts concerned to tokens in Android

I'm quite not familiar to the concept of tokens in use throughout android. I know it's related to the implementation of IPC on the platform and tokens are all implementations of IBinder. But I would ...
0
votes
1answer
49 views

Client OAuth implementation on devices with no permanent storage

I'm implementing an OAuth consumer, which will run on various set-top-boxes. Some of them don't provide any means of storing user data permanently. When the STB is switched off, all data is lost ...
0
votes
1answer
139 views

range of numbers in BAT file

This topic was created for me, and I've got 2 questions about it: 1. So if I want 2 unknown tokens, I need to write that? filename??.txt 2. If the "or a certain range of numbers" in that topic is ...
0
votes
0answers
48 views

Get the tokens From Crawl Index by lucene

I'm trying to get all the tokens from the crawling index placed in nutch1.2 to use them in autocomplete textField , I'm want to filter and analyse them before, cause there will be Arabic and English ...
0
votes
3answers
220 views

How to use strtok() using a string argumnet instead of character array? [closed]

Possible Duplicate: Using strtok with a string argument (instead of char*)? When using strtok() i do the following char str[300]; while(infile) { infile.getline(str,300); char* ...
0
votes
1answer
53 views

C Counting Tokens

In each of the following statements, what are the tokens? a. x = y +++ 3; x, =, y, ++, +, 3, ; 7 tokens b. a+=c*=(d+-2)>>5&3; a, +=, c, *=, (, d, +, -, 2, ), >>, 5, &, 3, ; 15 tokens ...
0
votes
1answer
67 views

Using panels3, how can I output a mutivalue cck field using tokens?

In my website, I have a custom content type called "projects". This type as a User Reference Field called "Project Author(s)" and another user Reference Field called "Project Supervisor(s)". These ...
0
votes
1answer
351 views

How to use __extension__ and __typeof__ in a minified example in C?

I saw there are such tokens in gcc's source code, but how to use these 2 tokens?
0
votes
0answers
294 views

Interpreting serial port character input strings in a buffer - C language

I am trying to find a good way to write a C program, in this case this would be a question about a good technique or a proven method that you may know and you could guide me to obtain the required ...
0
votes
0answers
386 views

Accessing array items from an async token in flex 4

I need to access the array items passed from my .cfc file from an async token. I can access the current array item (database field) by passing the object into, in this case, the labelfunction from the ...
0
votes
1answer
64 views

Tokens in Haxe build process?

I'm using HaXe to make a few simple SWFs for RTMP video streaming. Everything is working great, but what I'd really like to do is tokenize a few properties so that the SWFs are compiled with ...

1 2