Tagged Questions

4
votes
1answer
3k 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 …
2
votes
1answer
60 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, …
2
votes
6answers
866 views

Splitting String C++

Hi in C++ if i have a string, how can I split this into tokens?
1
vote
2answers
96 views

C Programming: Preprocessor, macros as tokens

Hi, 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
142 views

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

Hi; I'm working this source code: #include <string> #include <vector> #include <iostream> #include <istream> #include <ostream> #include <iterator> #include …
1
vote
1answer
434 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. …
0
votes
3answers
77 views

C# Regex: How Can I Replace Tokens With Strings Generated at Run-time?

Given the following input and regex strings: const string inputString = "${Principal}*${Rate}*${Years}"; const string tokenMatchRegexString = @"\${([^}]+)}"; How can I replace each token (i.e. …
0
votes
1answer
17 views

Is there a reason to put tokens on a search form?

Let me first tell that I understand the concept of CSRF attacks. Now I wonder, are there benefits to placing tokens on a search form? I can't really think of anything myself.
0
votes
3answers
126 views

Bash loop - tokenize on lines rather than words

I'm writing a script to do variable substitution into a Java properties file, of the format name=value. I have a source file, source.env like this: TEST_ENV_1=test environment variable one …
0
votes
1answer
50 views

will APNS generate new device token every time for a single device?

I want to know that does apple's Push Notification Server generate new device token every time when requesting from a same device?
0
votes
1answer
120 views

How to use device tokens in different ways in iphone?

Hi, In my application i am going to use pushNotification. So in that case how can i use device tokens in different ways? Let me elaborate more on this side. Whenever i run my application at that …
0
votes
2answers
48 views

Display String Tokens

I have String tokens separated by $$ which are list of particulars which are further separated by comma (e.g. Peter Adams,255 Jhonson Street, NY,74322 $$ Mary Luther,54 Eglinton Ave.,Mississauga,ON …
0
votes
1answer
211 views

Impersonating users to access hives - various methods, what are the practical issues?

I am designing a Service to run under LocalSystem account on Win2000, XP and Vista. It will need access to users registry hives, sometimes for extended periods of time, both when the users are …
0
votes
3answers
2k views

C++ Reading file Tokens

Hi, another request sorry.. Right now I am reading the tokens in one by one and it works, but I want to know when there is a new line.. if my file contains Hey Bob Now should give me Hey Bob [NEW …
-2
votes
1answer
289 views

C++ I’m stuck filling this BST with its proper values

Hi, I have created a BST full of WordInfo objects that have a vector to point out which of the other WordInfo objects is a synonym or antonym. Each word is identified by an integer on its source file, …