Questions tagged [invalid-characters]
191 questions
1
vote
0 answers
How to deal with characters in SOAP response in Java
Hi I have a service SOAP that is in .NET (from a closed source provider). I managed, after like 12 hrs, to write a client for it with authentication and all through 'wsimport'. Now my requests are coming through and being answered properly but they…

mlegris
- 181
- 2
- 6
1
vote
0 answers
JAX-RS response - remove invalid XML characters before read entity
Is there any possibility to remove invalid characters from XML response before trying to read entity?
Response searchResponse = webTarget.request(MediaType.APPLICATION_XML).get();
/..
SearchOutput searchOutput =…

Kamila
- 371
- 5
- 13
1
vote
2 answers
CVS checkout: invalid character in directory name
I'm trying to clone an old CVS repository with:
cvs -z3 -d:pserver:anonymous@ivan.cvs.sourceforge.net:/cvsroot/ivan co -P ivan
However, one of the directories in the repository contains a seemingly invalid character in its name, shown as � in…

Emil Laine
- 41,598
- 9
- 101
- 157
1
vote
1 answer
VBScript SendKeys 800A0408 Invalid Character
I'm getting this compilation error with a script I was working on using WScript.SendKeys. Yes, I have saved the .vbs file to be encoded as ANSI. It says the error is on Line 48, which is this:
shell.SendKeys {ENTER}
The rest of the script works…

Generic Name
- 13
- 2
1
vote
1 answer
VBA Loop through all files in folder and remove invalid characters
I found function that replace invalids characters in file name. I would like to use this for all files in one folder.
Function strLegalFileName(strFileNameIn As String) As String
Dim i As Integer
Const strIllegals = "\/|?*<>"":"
strLegalFileName =…

user3114375
- 97
- 3
- 12
1
vote
4 answers
Distinguishing between an int and a double
I've searched for this answer, and no one seems to know how to fix this error. I want the input to be strictly an int. If the input is a double, I want it to send an error.
int creatLegs = 0;
string trash;
bool validLegs = true;
do
{
cout <<…

Jessica McK
- 13
- 4
1
vote
2 answers
PHP Can't rename files with special characters (Windows)
Looping through a folder, renaming it's files. Everything works fine, except for files with characters like ąčęėįšųū in their names (Before using mb_convert_encoding all the mentioned symbols used to appear as �)
How could this be fixed?…

user43132
- 137
- 1
- 2
- 12
1
vote
1 answer
php file_get_contents strange characters
As normally I would use fil_get_contents to get the html structure of a certain page
but with a particular site I have tried all I get instead of the html structure is
characters like these:
J��t��`$ؐ@������iG#)�*��eVe]f@�흼
Does anyone have any idea…

inrob
- 4,969
- 11
- 38
- 51
1
vote
0 answers
Invalid JSON when parsing objects containing html as a string property
I've got a controller action that just displays a JSON result: http://pkssblog-stage.azurewebsites.net/BlogPosts/GetAll. The object has a property called Content which is basically the HTML content of a post.
The problem is I always get invalid JSON…

AnimaSola
- 7,146
- 14
- 43
- 62
1
vote
0 answers
Import Xml into excel: Invalid file reference/ Invalid characters (CData)
I'm having some problems importing an xml-file into excel.
The xml looks as follows:

User999999
- 2,500
- 7
- 37
- 63
1
vote
1 answer
Invalid Characters causing error in rlm()
A data frame which has invalid characters in the column names is causing an error in rlm().
Taking a deeper look, it appears that within rlm() the variable xvars contains the names of the formula's explanatory variables, but it puts backticks…

Ricardo Saporta
- 54,400
- 17
- 144
- 178
1
vote
1 answer
Reference for invalid characters in Resource String Names? Is a ":" allowed?
I did a quick check on MSDN followed by a quick search here but I did not find anything definitively stating what characters are/are not allowed in .net resource string names. Currently I am trying to find out if a ":" is allowed, but I would prefer…

Darren
- 793
- 5
- 17
- 30
1
vote
1 answer
Replacing symbol characters in PostgreSQL
I have data that contains a note field that is full of invalid characters due to a faulty exporting tool and imported from an excel spreadsheet (*.xls).
The character is erroring out in XML, saying Character reference "" is an invalid XML…

MISMajorDeveloperAnyways
- 1,359
- 3
- 14
- 20
1
vote
1 answer
Can you get a Char 0x05 into an XDocument that will then throw on XDocument.ToString?
I have an XDocument that is throwing an invalid character (0x05) exception on ToString.
To help locate where I could be allowing a 0x05 char in where in the XDocument API can you let in a 0x05 character without some exception at that point, only to…

Mark Hurd
- 10,665
- 10
- 68
- 101
0
votes
1 answer
How to remove branch with invalid character in name?
I mistakely created a branch ”sandbox” (with these ”), and when I try to delete it, i'm getting this message:
$ git push origin :”sandbox”
remote: Traceback (most recent call last):
remote: File …

Zopper
- 132
- 9