Click here to Skip to main content
15,885,546 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: website costs Pin
jinzai16-Jul-14 20:07
jinzai16-Jul-14 20:07 
GeneralRe: website costs Pin
Wombaticus17-Jul-14 3:08
Wombaticus17-Jul-14 3:08 
QuestionWhich technology to use for website development for a shoe manufacturer and seller Pin
Member 935377610-Jul-14 23:08
Member 935377610-Jul-14 23:08 
SuggestionRe: Which technology to use for website development for a shoe manufacturer and seller Pin
Richard Deeming11-Jul-14 1:55
mveRichard Deeming11-Jul-14 1:55 
GeneralRe: Which technology to use for website development for a shoe manufacturer and seller Pin
Member 935377611-Jul-14 2:22
Member 935377611-Jul-14 2:22 
GeneralRe: Which technology to use for website development for a shoe manufacturer and seller Pin
jinzai16-Jul-14 21:59
jinzai16-Jul-14 21:59 
QuestionProblem to displaying hindi fonts in servlet? Pin
Niranjan Chouhan6-Jul-14 21:48
Niranjan Chouhan6-Jul-14 21:48 
AnswerRe: Problem to displaying hindi fonts in servlet? Pin
jinzai16-Jul-14 23:08
jinzai16-Jul-14 23:08 
Aye...I do not envy you at all here. Some things that might be going on and to help you get a 'handle' on this...

The StringWriter -- make sure it is UTF-8 and about Firefox -- when all you have been told is that an encoding is Unicode -- it is usually UTF-16 by default (At least that is the case for VisualStudio here in the US, perhaps for FF it is UTF-8, but who knows? Maybe look deeper in the settings for FF to see if it is specified somewhere.) For example I have encountered a case where a TextWriter defaults to UTF-16 and you have to make that UTF-8 if you want to write valid XML for a schema that is already UTF-8. The class that your StringWriter is derived from might need to be coerced to be UTF-8, for example.

Could there be BOMs in the text? What are the NUMERIC values of the bytes in that string? BOMs in documents usually get interpreted as strange sequences, like this one:  . The values for a BOM would be 0xef 0xbb 0xbf and they would be the first 3 bytes of a document.

Java uses modified UTF-8 for some things (object serialization and literal strings in classes) and was that string serialized using Java? If so, it is not UTF-8 -- it is modified UTF-8. Modified UTF-8 does not use 0x00 as the null terminator -- it uses 0xc0 0x80. UTF-8 can be guaranteed by using an OutputStreamWriter for serialization into your request stream.
Question"Save Image As" File Name for Inline Data URLs [Solved] Pin
Skippums3-Jul-14 9:06
Skippums3-Jul-14 9:06 
AnswerRe: "Save Image As" File Name for Inline Data URLs Pin
Richard Deeming3-Jul-14 9:52
mveRichard Deeming3-Jul-14 9:52 
QuestionHow to persist C# objects with WebServices? Pin
Bastien Vandamme3-Jul-14 0:20
Bastien Vandamme3-Jul-14 0:20 
Question“Error 404 Not Found” in Magento Admin Login Page Pin
Jason Steven2-Jul-14 3:04
Jason Steven2-Jul-14 3:04 
AnswerRe: “Error 404 Not Found” in Magento Admin Login Page Pin
uscoding9-Jul-14 21:54
uscoding9-Jul-14 21:54 
Question$THIS VARIABLE IN PHP Pin
m2soft solutions1-Jul-14 0:34
m2soft solutions1-Jul-14 0:34 
AnswerRe: $THIS VARIABLE IN PHP Pin
Shameel1-Jul-14 0:47
professionalShameel1-Jul-14 0:47 
SuggestionRe: $THIS VARIABLE IN PHP Pin
ZurdoDev2-Jul-14 7:28
professionalZurdoDev2-Jul-14 7:28 
AnswerRe: $THIS VARIABLE IN PHP Pin
ZurdoDev2-Jul-14 7:29
professionalZurdoDev2-Jul-14 7:29 
QuestionProduction site performance Pin
Ekjon30-Jun-14 12:45
Ekjon30-Jun-14 12:45 
SuggestionRe: Production site performance Pin
Shameel1-Jul-14 0:49
professionalShameel1-Jul-14 0:49 
GeneralRe: Production site performance Pin
Ekjon1-Jul-14 17:16
Ekjon1-Jul-14 17:16 
GeneralRe: Production site performance Pin
thatraja1-Jul-14 20:56
professionalthatraja1-Jul-14 20:56 
GeneralRe: Production site performance Pin
Ekjon2-Jul-14 6:01
Ekjon2-Jul-14 6:01 
AnswerRe: Production site performance Pin
thatraja2-Jul-14 8:38
professionalthatraja2-Jul-14 8:38 
GeneralRe: Production site performance Pin
Ekjon2-Jul-14 11:37
Ekjon2-Jul-14 11:37 
QuestionMedia Queries Pin
EvScott24-Jun-14 16:37
EvScott24-Jun-14 16:37 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.