C# Decode CDR file
-
Dear all, Can anyone help me to decode this file? in this link https://docs.google.com/leaf?id=0B3nO3Z4K65uxMWI1Y2E4NWItZWYzNC00MDQ0LWFhNDQtODhhYTI5NjY0NzI2&hl=en[^]
Socheat
Nope, I'm with Pete on this: anonymous files from unknown people equals no download. Particularly when the person in question names him self "soCHEAT.net". Not promising... Instead, why not describe what the file is supposed to contain. What file type is it? .DOC, .XLS, .XXX? What application would normally open it? What app created it?
Real men don't use instructions. They are only the manufacturers opinion on how to put the thing together.
-
Hi, it just from google docs. how can i attach here?
Socheat
I know Google docs. You, I don't know.
I'm not a stalker, I just know things. Oh by the way, you're out of milk.
Forgive your enemies - it messes with their heads
-
Nope, I'm with Pete on this: anonymous files from unknown people equals no download. Particularly when the person in question names him self "soCHEAT.net". Not promising... Instead, why not describe what the file is supposed to contain. What file type is it? .DOC, .XLS, .XXX? What application would normally open it? What app created it?
Real men don't use instructions. They are only the manufacturers opinion on how to put the thing together.
Do you know Huawei Switch? that file is generated from MSC it is CDR. it stored call record for phone number
Socheat
-
Do you know Huawei Switch? that file is generated from MSC it is CDR. it stored call record for phone number
Socheat
Presumably you can get the specifications from Huawei then, or an API. I'd be really surprised if they didn't have this information available.
I'm not a stalker, I just know things. Oh by the way, you're out of milk.
Forgive your enemies - it messes with their heads
-
Do you know Huawei Switch? that file is generated from MSC it is CDR. it stored call record for phone number
Socheat
The .CDR file formats I know of are Corel Draw, and a Mac ISO equivalent. The chances are that it is a propriatry format, and without looking at the data content, it is impossible to say. There are two options here: 1) Post a data fragment - not too large - and hope we can work it out from that (depends on how "interesting" people find it since it isn't something we will be able to use elsewhere). 2) Contact Huawei directly and ask them. There is a good chance they will tell you or have software to decode it available to download. I would start with the second option, and try the first if that fails.
Real men don't use instructions. They are only the manufacturers opinion on how to put the thing together.
-
Presumably you can get the specifications from Huawei then, or an API. I'd be really surprised if they didn't have this information available.
I'm not a stalker, I just know things. Oh by the way, you're out of milk.
Forgive your enemies - it messes with their heads
Yes they have description and format of that file, but i don know how to decode that file in C#. That why i posted that file here. If anyone can't decode, there nothing Thanks,
Socheat
-
The .CDR file formats I know of are Corel Draw, and a Mac ISO equivalent. The chances are that it is a propriatry format, and without looking at the data content, it is impossible to say. There are two options here: 1) Post a data fragment - not too large - and hope we can work it out from that (depends on how "interesting" people find it since it isn't something we will be able to use elsewhere). 2) Contact Huawei directly and ask them. There is a good chance they will tell you or have software to decode it available to download. I would start with the second option, and try the first if that fails.
Real men don't use instructions. They are only the manufacturers opinion on how to put the thing together.
Yes thanks.
Socheat
-
Yes they have description and format of that file, but i don know how to decode that file in C#. That why i posted that file here. If anyone can't decode, there nothing Thanks,
Socheat
So, they have the description and format of the file available. Well, you're going to have to figure it out for yourself I'm afraid - come back and ask questions if you get stuck on particular parts.
I'm not a stalker, I just know things. Oh by the way, you're out of milk.
Forgive your enemies - it messes with their heads
-
Dear all, Can anyone help me to decode this file? in this link https://docs.google.com/leaf?id=0B3nO3Z4K65uxMWI1Y2E4NWItZWYzNC00MDQ0LWFhNDQtODhhYTI5NjY0NzI2&hl=en[^]
Socheat
First thing I would do is see if I could open the file in Notepad. You'll quickly see how it fits together. If it is a binary file (probably is) it probably has some header part and a contents part. The company owning this format should be able to give you detailed information about this. If it is a binary file try to read it in the bytes and use different encoding/decoding (ASCII, UTF, ...) to see if you can make sense of it then. You can check out the Encoding class[^] to get you started. Hope this helps.
V.
-
First thing I would do is see if I could open the file in Notepad. You'll quickly see how it fits together. If it is a binary file (probably is) it probably has some header part and a contents part. The company owning this format should be able to give you detailed information about this. If it is a binary file try to read it in the bytes and use different encoding/decoding (ASCII, UTF, ...) to see if you can make sense of it then. You can check out the Encoding class[^] to get you started. Hope this helps.
V.
OK, thk, i ll try to understand about it. that file is binary
Socheat