The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
86 views

XML data from external source have special characters. This results in exception while parsing the xml file using c#

Our application based on C#, gets the xml data from an external source (which is not in our control). This XML data contains some special characters like &. When I try to parse the XML as below, ...
0
votes
2answers
114 views

Special character in filename are not supported while copying using URI

I need to copy the files(file name contains special character) from one path to another path using URI. But its throws an error. If its successfully copied, if the filename not contains special ...
0
votes
2answers
132 views

C# File Path encoding and decoding

I am looking for a simple method to encode/escape and decode/unescape file paths (illegal characters in file paths "\/?:<>*| ) HttpUtiliy.UrlEncode does its job, except it does not encode the ...
0
votes
0answers
96 views

Cassette error “Illegal characters in path.”

I installed the package Cassette.Coffee to compile my CoffeeScript files. Everything worked normally!! So I decided to also use Cassette.Sass to compile my SCSS files; To my surprise, the following ...
1
vote
0answers
52 views

Switching from shared host to vps and getting “Illegal characters in path”

Okay, I'm ripping my hair out here. I took over some code from a previous developer and I it does a lot and goes very deep to say the least. Anyway I have been fighting this issue for a few days and ...
3
votes
1answer
828 views

XML (de)serialization invalid string inconsistent in c#?

In C# (.net 4.0 and 4.5 / vs2010 and vs12) when I serialize an object containing a string having an illegal character using XMLSerializer, no error is thrown. However, when I deserialize that result, ...
1
vote
3answers
315 views

Why do I get a compilation error when I try to include an Urdu string?

I am trying to add an urdu string غزل as shown below: class UnicodeCheck { public static void main(String args[]) { try { File f = new File("C:/Users/user/Desktop/unicodecheck.txt"); ...
22
votes
3answers
5k views

SyntaxError: Unexpected token ILLEGAL

I'm getting this JavaScript error on my console: Uncaught SyntaxError: Unexpected token ILLEGAL This is my code: var foo = 'bar';​ It's super simple, as you can see. How could it be causing a ...
0
votes
2answers
211 views

illegal character 'X' at offset 37

I am using xml with cURL to contact Canada post and get shipping labels. This is the code I use. The platform is ExpressionEngine <?php /** * Sample code for the CreateShipment Canada Post ...
4
votes
2answers
402 views

Why does Python (IronPython) report “Illegal characters in path” when the word bin is used?

I am getting an "Illegal characters in path" error when doing chdir commands in Iron Python. This is happening in run time with my code, but even in the Iron Python console it has this issue. I'm ...
2
votes
1answer
908 views

CXF - com.ctc.wstx.exc.WstxUnexpectedCharException: Illegal character ((CTRL-CHAR, code 5))

I found on internet that problem is that soap request contain unicode char for ,,ctrl + v", which is illegal character in Xml. I dont know how this get into String, but I want simple to remove it on ...
0
votes
1answer
535 views

“Illegal character in path” using XSLT

I'm getting an "Illegal character in path" exception when I call the Transform method of the XslCompiledTransform class. Here is my code : // Maybe there is a problem in this path string xsltPath ...
0
votes
1answer
81 views

How do you prepare a string which contains both illegal characters AND hyperlinks for display in MXML in AS3?

i believe my question is quite simple: I have a string, for example, " this is a string containing silly characters like " and <<< and >>> and hey look a hyperlink http://www.google.com" ...
1
vote
0answers
360 views

How to fix 'Illegal characters in path' on a basic MVC3 route?

Given the following two routes: routes.MapRoute(name: "NationalRssResults", url: "{searchTerm}/rss", defaults: new { controller = "Results", action = "SearchWholeCountryRss" }); ...
1
vote
1answer
312 views

Error: Illegal characters in path

I am using enumeratefiles to list all the files in a directory. Its throws an exception when it encounters a filename containing illegal characters and then stops the foreach loop that is listing the ...
0
votes
2answers
315 views

Illegal characters in Javascript file causing form to not work with Jquery

Can someone please take a look at these, it just is not happing for me its a html form, a php file to process it and a javascript file, errors in the from browser show things like U+12AF phantom ...
1
vote
1answer
581 views

Can I bypass a UnicodeDecodeError in python?

I have a python script that parsing an xml file and is returning the following error: UnicodeDecodeError: 'charmap' codec can't decode byte 0x9d in position 614617: character maps to ...
0
votes
2answers
582 views

llegal escape character followed by a space

I'm writing a bit of code to run a shell script using process that loads and runs a file in terminal. The problem I'm having is getting the filename to be recognised by terminal due to the spaces, for ...
0
votes
2answers
354 views

imapX illegal charachters in path

PLEASE NOTE, I have found a work around which actually works out better for me. That is to use the byte stream and decode rather than save at all. Therefore answers are non-essential but I would still ...
0
votes
3answers
689 views

Illegal characters in path while saving file

Hi I m getting this error when I save a file in asp.net. I have put my application inside a folder containing space in the name. Illegal characters in path. System.ArgumentException: Illegal ...
0
votes
2answers
412 views

How can I filter out this illegal javascript character? It's being generated at run time

I am attempting to generate a custom tooltip using Microsoft Chart Controls. Microsoft Chart Controls support the ability to use keywords which helps automate the data you wish to display. For ...
0
votes
2answers
758 views

Need help removing ORA-00911 error while using oci_execute()

I am using following code to generate the SQL. $sql = "INSERT INTO SUBSTATION VALUES (". "SEQ_SUBSTATION_FEATURE_ID.NEXTVAL, ". "'".$_REQUEST['substationName']."', ". // ...
0
votes
3answers
860 views

How to get rid of these illegal characters ?

 Apple  Bat  Cat  Rat  Mat  Fat I want to get rid of these illegal characters. Can you suggest some solution. I am using php as programming language. These appears when i paste ...
0
votes
1answer
944 views

Android Project Compiled with Ant doesn't compile, Illegal Character Error

I am using ANT to compile an Android app that I have built. It sounds weird and probably doesn't make a difference, but I used the Android SDK to build a new project and then I used .NET to ...
3
votes
2answers
953 views

What's the illegal character in this string ? I'm getting MSBUILD : error MSB3095

I'm creating some build definitions in TFS2010 without problem until now. MSBUILD Command: C:\Windows\Microsoft.NET\Framework64\v4.0.30319\MSBuild.exe /nologo /noconsolelogger ...
0
votes
1answer
537 views

JSON httpget URIsyntaxexception with illegal character in query

07-25 20:05:28.276: ERROR/log_tag(940): Error in http connection java.net.URISyntaxException: Illegal character in query at index 58: ...
0
votes
3answers
613 views

The “illegal character” in jquery appendTo()

here is my jquery appendTo() code: $('<li><a href="javascript:void (0)" ...
0
votes
4answers
982 views

How to filter illegal/forbidden filename characters from user's keyboard input in JTextField?

I want to filter user's keyboard input for illegal/forbidden filename characters in JTextField. I have already set uppercase filter in JTextField. DocumentFilter dfilter = new UpcaseFilter(); ...
1
vote
0answers
270 views

Is there a built-in way to remap illegal characters in Samba when sharing with Windows?

I have a samba share set up in ubuntu. Many of the folders and filenames contain : which is an illegal character in Windows. Samba's default action when dealing with illegal characters is to mangle ...
3
votes
2answers
656 views

Replace chars if not match

I'm looking for a regular expression that removes illegals characters. But I don't know what the caracters will be. I explain : In a process, I want my string match ([a-zA-Z0-9/-]*) So I would like ...
0
votes
1answer
426 views

How to transform Source with invalid XML characters

I am working on a case where I need to clean invalid XML characters I receive from a SharePoint web service. I know fixing the source is the right thing to do - however this issue has been reported ...
6
votes
2answers
3k views

How to detect illegal UTF-8 byte sequences to replace them in java inputstream?

The file in question is not under my control. Most byte sequences are valid UTF-8, it is not ISO-8859-1 (or an other encoding). I want to do my best do extract as much information as possible. The ...
0
votes
0answers
1k views

ASP.NET MVC - Illegal characters in path - redirect from Application_Error

In my application I generated few url which contained " (double quotes), unfortunately. I corrected the url's but google bot already indexed wrong urls. Now I get quite often following exception: ...
3
votes
3answers
1k views

Valid characters for URI schemes?

I was thinking about Registering an Application to a URL Protocol and I'd like to know, what characters are allowed in a scheme? Some examples: h323 (has numbers) ...
1
vote
5answers
2k views

How to prevent illegal characters to appear in my XML when retrieving it from SQL Server

Sometimes the string values of Properties in my Classes become odd. They contain illegal characters and are displayed like this (with boxes): 123[]45[]6789 I'm assuming those are ...
1
vote
2answers
532 views

Helper for removing illegal characters?

I am using a user input string to create a url and I only want the url to contain lowercase letters and hyphens e.g. example.com/this-is-a-url In my model, I have added so far: def to_param ...
0
votes
1answer
1k views

Android: Parsing URL into web service without space character

All I want to do is to send a URL String into my RESTFUL web service with some kind of code like this URL someURL= new URL("http://myWebService:port/service/"+CharSequence.getText()); Its all going ...
0
votes
2answers
825 views

illegal character in jsonp response

Hi i am doing an exercise where I am trying to scrape content of nytimes website using javascript/ajax. In order to send cross domain ajax request I am using a proxy server that returns me jsonp ...
0
votes
2answers
176 views

Django: How can I determine why Django isn't displaying certain data?

I have a Django app that runs a tool and displays the results from the tool back to the user using a Django template. Sometimes Django does not display the results. It doesn't complain about anything, ...
9
votes
6answers
3k views

In PHP when submitting strings to the database should I take care of illegal characters using htmlspecialchars() or use a regular expression?

I am working on a form with the possiblity for the user to use illegal/special characters in the string that is to be submitted to the database. I want to escape/negate these characters in the string ...
0
votes
3answers
953 views

Illegal Character in File Name

During my file upload process, I found illegal character getting saved in Table. zurück.pdf, C _Word.doc were the file names. Here ü, space between C and _Word was found as ? in the Table Column. I ...
0
votes
1answer
219 views

VB.NET Debug Error

I get this error "Illegal characters in path" for this code: Dim strm As System.IO.FileStream strm = New System.IO.FileStream(filepath, IO.FileMode.Open, IO.FileAccess.Read)
11
votes
3answers
6k views

.Net: How do I check for illegal characters in a path?

Is there a way to check if a String meant for a path has invalid characters, in .Net? I know I could iterate over each character in Path.InvalidPathChars to see if my String contained one, but I'd ...
1
vote
2answers
2k views

Remove & character from string objective c

How would I go about removing the "&" symbol from a string. It's making my xml parser fail. I have tried [currentParsedCharacterData setString: [currentParsedCharacterData ...
0
votes
3answers
875 views

Best way to find illegal characters in a bunch of ISO-889-1 web pages?

I have a bunch of html files in a site that were created in the year 2000 and have been maintained to this day. We've recently began an effort to replace illegal characters with their html entities. ...
0
votes
4answers
1k views

illegal character, Javascript [closed]

I am trying to run jquery through a rails app. I have the edit information in a popup window and i want to change that to show information after they click update. It should work but this line ...
2
votes
4answers
2k views

Will URLEncode fix this problem with illegal characters in file names (C#)?

I'm building an application that uses an elaborate API to fetch data from Youtube, and the data files are saved with the name of the corresponding video as the file name. However, my program is ...
0
votes
1answer
824 views

Firefox and magically appearing character (Â) when unescaping an ®

I'm unescaping an ® (registration character) in firefox to be submitted in a form, since actually typing that character into Javascript causes the script to behave strangely. However, I must use the ...
30
votes
7answers
87k views

Invalid Characters in XML

I am working with some XML at the moment. I have nodes that hold strings like below: <node>This is a string</node> Some of the strings that I am passing to the nodes will have ...
1
vote
2answers
1k views

What are all the illegal characters in the XFS filesystem?

Could someone provide (or point me to a list) of all the illegal characters in the XFS filesystem? I'm writing an app that needs to sanitize filenames. EDIT: Okay, so POSIX filesystems should allow ...

1 2