3
votes
2answers
571 views
Code for decoding/encoding a modified base64 URL
I want to base64 encode data to put it in a URL and then decode it within my HttpHandler.
I have found that Base64 Encoding allows for a '/' character which will mess up my UriTem …
1
vote
5answers
89 views
Decoding base64-encoded data from xml document
I receive some xml-files with embedded base64-encoded images, that I need to decode and save as files.
An unmodified (other than zipped) example of such a file can be downloaded b …
0
votes
4answers
40 views
URL Decoding in PHP
I am trying to decode this URL string using PHP's urldecode function:
urldecode("Ant%C3%B4nio+Carlos+Jobim");
This is supposed to output...
'Antônio Carlos Jobim'
...but inst …
3
votes
2answers
60 views
How can I call a standard .NET assembly within SQL
Hi,
I am having an issue whereby a column within a table of mine has data which is encoded using the System.Xml.XmlConvert.Encode method.
Now I need to manipulate this data within …
1
vote
1answer
23 views
Decoding Manchester biphase-mark in software (representing a SMPTE timecode audio stream)
I've never had to deal with signal/stream encoding or decoding before, at least not beyond fairly basic protocols like HTTP, so forgive me if I'm making this harder than I should b …
0
votes
3answers
186 views
Encrypt in C# decrypt in JavaScript
I am looking for way to encrypt string in C# and to decrypt it using JavaScript. JavaScript in this case is a scripting language for internal system, so I should not worry about pe …
5
votes
2answers
362 views
Using an Alias in a WHERE clause
I have a query which is meant to show me any rows in table A which have not been updated recently enough. (Each row should be updated within 2 months after "month_no".):
SELECT A. …
1
vote
2answers
142 views
Convert from hex string to unicode
How can i convert the 'dead' string to an unicode string u'\xde\xad'?
Doing this:
from binascii import unhexlify
out = ''.join(x for x in [unhexlify('de'), unhexlify('ad')])
cr …
1
vote
1answer
72 views
PHP return value from decoded object
Hi,
Can someone please tell me where is the error in this code?, I use a mobile iphone application to call a php script tha will send information to apple. Apple then will return …
0
votes
1answer
112 views
Proper way to decode response in Dojo cometd java client
I want to push arbitrary XMLEncoded java objects back and forth using Dojo cometd channels, and I have a problem decoding the payload properly.
In order to do this I have this sen …
1
vote
3answers
843 views
Reading and decoding PDF-417 barcodes stored in an image or PDF file from within a .NET application
I am looking for a .NET library that is able to decode data from a PDF-417 barcode that is embedded either in an image file or PDF. At this point, I have only been able to find a …
0
votes
1answer
132 views
Request Object not decoding UrlEncoded
C#, ASP.NET 3.5
I create a simple URL with an encoded querystring:
string url = "http://localhost/test.aspx?a=" +
Microsoft.JScript.GlobalObject.escape("áíóú");
which beco …
3
votes
3answers
519 views
AJAX POST and Plus Sign ( + ) — How to Encode?
I'm POSTing the contents of a form field via AJAX to a PHP script and using Javascript encode(field_contents). The problem is that any plus signs are being stripped out and replac …
0
votes
1answer
44 views
Proper replacement for usage of the Sun internal com.sun.image.codec.jpeg package?
We have some code kicking around that uses this old internal Sun package for manipulating images, essentially encoding JPEGs to a specific size and quality after reading in / decod …
1
vote
4answers
163 views
utf-8 decoding problem in php
I got a .vcf file with parts encoded as UTF-8:
CATEGORIES;CHARSET=UTF-8:Straße & –dienste
Now "–" should be a "-" and "Straße" should convert to "Straße".
I tried
u …
