Guest othman20001 Posted April 1, 2005 Report Posted April 1, 2005 (edited) Hi everyone, I have two problems using the SIM Manager API : 1. I want to read any record on the SIM Card. I'm using eVC4 with Smartphone 2003 emulator. Here's my code : HSIM hSim; HRESULT resOfGetReadRecord; LPSIMRECORDINFO lpSimRecordInfo; DWORD dwAddress = 0x06F07; resOfGetReadRecord = SimGetRecordInfo(hSim, dwAddress, lpSimRecordInfo); I always get the error code 80070057 (Invalid parameter) 2. If I want to write something on the SIM Card (with simWriteRecord), where can I write? ie wich address to give to the function in order to write. Any Help would be really appreciated. It's been 2 weeks I'm working on these two functions ... :D Edited April 1, 2005 by othman20001
Guest nausea Posted April 2, 2005 Report Posted April 2, 2005 Wheres the rest of your code? You need to: 1) call simInitialize() 2) call simGetRecordInfo() 3) call simReadRecord() 4) call simDeinitialize() 8)
Guest othman20001 Posted April 3, 2005 Report Posted April 3, 2005 Sorry the code wasn't complete. I call simInitialize before wich returns S_OK, the problem appears for simGetRecordInfo and simReadRecord wich returns 80070057.
Guest othman20001 Posted April 5, 2005 Report Posted April 5, 2005 hi guys, I sovled the problem, I had to use a privileged certificate as explained in http://msdn.microsoft.com/mobility/default...ne_security.asp , because sim manager functions are privileged functions. :D Cheers
Guest pai Posted April 14, 2005 Report Posted April 14, 2005 hi guys, I sovled the problem, I had to use a privileged certificate as explained in http://msdn.microsoft.com/mobility/default...ne_security.asp , because sim manager functions are privileged functions. :D Cheers <{POST_SNAPBACK}> i got the same error 0x80070057 I tried this A Practical Guide to the Smartphone Application Security and Code Signing Model for Developers but still not solved it
Guest othman20001 Posted April 14, 2005 Report Posted April 14, 2005 In fact, this error is due to an invalid parameter in your function. Try changing the type of the record you access (TRANSPARENT,LINEAR, CYCLIC ...) or send us the piece of code you are using
Guest pai Posted April 14, 2005 Report Posted April 14, 2005 I am using SimReadRecord(hSim, 0x2FE2, SIM_RECORDTYPE_TRANSPARENT, 0, ICCID, 10, &sizeRead) and want to get the iccid. I tried with your code SimGetRecordInfo(hSim, dwAddress, lpSimRecordInfo); not work neither
Guest othman20001 Posted April 14, 2005 Report Posted April 14, 2005 What about this code : SIMRECORDINFO simRecordInfo; simRecordInfo.dwRecordType= SIM_RECORDTYPE_TRANSPARENT; // Try different types here memset(&simRecordInfo,0,sizeof(simRecordInfo)); simRecordInfo.cbSize = sizeof(simRecordInfo); res = SimGetRecordInfo(hSim, 0x2FE2, &simRecordInfo); If not working try using this : HRESULT res; BYTE bufferOfRead; DWORD sizeOfRead; DWORD bufferSize = 50; memset(&bufferOfRead,0,sizeof(bufferOfRead)); res = SimReadRecord(hSim, 0x2FE2,SIM_RECORDTYPE_TRANSPARENT, 0, &bufferOfRead,bufferSize,&sizeOfRead); Basically the error n° 57 is an invalid parameter, if the adress is wrong you would get 88000341, and if it's a signing problem you would have 80004005. Also, are u running your code on a device or emulator. If it is the emulator, some adresses are not working, on the device your sim must be unlocked, but I think you know that :D
Guest pai Posted April 14, 2005 Report Posted April 14, 2005 thanks othman20001, for the addres 0x2FE2 it is working with my codes. only the value, which is become, is not right. When i am trying get other values, like 0x6F07, then the error comes. I am using Device for debugging. what do you mind SIM-unluck? I am still a newbie in this world.
Guest othman20001 Posted April 14, 2005 Report Posted April 14, 2005 When accessing 0x6F07 did you try all the record types ? SIM unlock means that the access to SIM Card is locked by the operator to avoid malicious codes and other stuffs. There is a lot of topics on MoCaDo if you want to know how to unlock your sim.
Guest pai Posted April 14, 2005 Report Posted April 14, 2005 Thank you othman20001. with BYTE bufferOfRead; DWORD sizeOfRead; DWORD bufferSize = 50; memset(g_szICCID,0,sizeof(bufferOfRead)); res = SimReadRecord(hSim, add,SIM_RECORDTYPE_TRANSPARENT, 0, g_szICCID,bufferSize,&sizeOfRead); tested with unsigned short add = 0x6F07, 6f05, 6f20, 6f74 looks like don't work with 6D40 to get MSISDN. But, can you get the correct IMSI with it? by here i got a value ,it is not my correct IMSI. I will take a look at the SIM unlock in this forum.
Guest pai Posted April 14, 2005 Report Posted April 14, 2005 Now i see how to read these values. It is in hex-value to read. 4bit -> one number, THanks again
Guest pai Posted April 15, 2005 Report Posted April 15, 2005 I have another question, what 's the meaning of Error 80070057 ?
Guest othman20001 Posted April 20, 2005 Report Posted April 20, 2005 I have another question, what 's the meaning of Error 80070057 ? <{POST_SNAPBACK}> It means Invalid parameter in your function.
Guest mcfly9 Posted June 21, 2007 Report Posted June 21, 2007 (edited) Hi, I am trying to get the IMSI of the card in the phone, but get 80004004 error (E_ABORT). Any idea why that could be? The device is a WM5 SmartPhone using .net cf 2.0 sp1 UPDATE: created the 0000101b key in the Policies reg key and now I get past the SimGetRecordInfo, but get a 80070056 when doing SimReadRecord... any ideas? Thanks, András Edited June 21, 2007 by mcfly9
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now