[Free App] CabGen - easily create .cab from wap-provisioningdoc

Search This thread

supbro

Senior Member
Aug 10, 2007
770
1
San Diego, CA
dgmltn.com
I'd like to announce a FREE webapp that I've just created, CabGen. It allows you to quickly and easily convert your <wap-provisioningdoc> xml configuration file into an installable .cab file. I wanted this functionality for my own apps, so I decided to make it a little more generic and give it to the community! If you don't know what wap-provisioningdoc means, then this probably isn't for you but for those of you who know what it means, I hope this is helpful!

http://supware.net/CabGen
 

boggsie

Senior Member
Oct 12, 2007
405
39
Columbus
I'd like to announce a FREE webapp that I've just created, CabGen. It allows you to quickly and easily convert your <wap-provisioningdoc> xml configuration file into an installable .cab file. I wanted this functionality for my own apps, so I decided to make it a little more generic and give it to the community! If you don't know what wap-provisioningdoc means, then this probably isn't for you but for those of you who know what it means, I hope this is helpful!

http://supware.net/CabGen

A great tool for linux & mac folks ... I think that makecab.exe is available, if not included in Windows XP (Pro?).

Code:
makecab _setup.xml RegEdits.cab

Thanks for sharing.

Best regards,
-boggsie
 
D

Deleted member 1890170

Guest
I'd like to announce a FREE webapp that I've just created, CabGen. It allows you to quickly and easily convert your <wap-provisioningdoc> xml configuration file into an installable .cab file. I wanted this functionality for my own apps, so I decided to make it a little more generic and give it to the community! If you don't know what wap-provisioningdoc means, then this probably isn't for you but for those of you who know what it means, I hope this is helpful!

http://supware.net/CabGen

I've tested the online tool and got error message:

Fatal error: Maximum execution time of 30 seconds exceeded in /users/supbro.com/htdocs/supware.net/CabGen/MakeCAB.class on line 465
 

yvettejudd

Member
Jul 18, 2008
39
0
Thanks! :)

I'd like to announce a FREE webapp that I've just created, CabGen. It allows you to quickly and easily convert your <wap-provisioningdoc> xml configuration file into an installable .cab file. I wanted this functionality for my own apps, so I decided to make it a little more generic and give it to the community! If you don't know what wap-provisioningdoc means, then this probably isn't for you but for those of you who know what it means, I hope this is helpful!

http://supware.net/CabGen
Thanks so much for this - it's awesome!!!
 
D

Deleted member 2070558

Guest
How i can generate a cab with this xml/reg:

Code:
<wap-provisioningdoc>
   <characteristic type="Registry">
      <characteristic type="HKLM\Software\Microsoft\CHome" translation="filesystem">
         <parm name="DefaultXML" datatype="string" value="<Plugins Order=\CMyPhotos;CMusic;CPhone;CVoicemail;CClock;CText;CEmail;CAppointments\  CPRFileName=\Titanium\ DisplayStyle=\Titanium\ />"/>
         <parm name="ExtensibilityXML" datatype="string" value="<Plugins Order=\CMyPhotos;CMusic;CPhone;CVoicemail;CClock;CText;CEmail;CAppointments\  CPRFileName=\Titanium\ DisplayStyle=\Titanium\ />"/>
      </characteristic>
   </characteristic>
</wap-provisioningdoc>

Code:
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\Software\Microsoft\CHome]
"DefaultXML"="<Plugins Order=\"CMyPhotos;CMusic;CPhone;CVoicemail;CClock;CText;CEmail;CAppointments\"  CPRFileName=\"Titanium\" DisplayStyle=\"Titanium\" />"
"ExtensibilityXML"="<Plugins Order=\"CMyPhotos;CMusic;CPhone;CVoicemail;CClock;CText;CEmail;CAppointments\"  CPRFileName=\"Titanium\" DisplayStyle=\"Titanium\" />"

that cointains double quotes? I tried """ but it didn't work...thanks! :D

edit: SOLVED USING single quote enclosure for value
 
Last edited by a moderator: