active questions tagged cab - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T11:57:12Z http://stackoverflow.com/feeds/tag/cab http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1255924/in-cab-is-a-service-its-own-module 0 In CAB is a service it's own module? David Anderson 2009-08-10T16:40:14Z 2009-12-17T22:36:13Z <p>I'm learning Composite Application Block and I've hit a rock about services. I have my shell application in its own solution, and of course a test module in its own solution (developed and testing completely independent and external of the shell solution). If I created a service named "Sql Service", would I need to put this in it's own library, so that both the shell, and the module know the types? </p> <p>If that's the case, then for good practice, should I put the service project in the shell solution, or external just like a module (in it's own solution), even though it's not loaded as a module? </p> <p>Then, what about references? Should the shell reference this directly, add then add the service? Or load it as a module and add the service? </p> <p>I have a lot of confusion on where I should create my services, and if I should reference or load as modules..</p> http://stackoverflow.com/questions/455825/can-i-host-an-asp-net-application-in-a-cab-winforms-application 1 Can I host an ASP.NET application in a CAB WinForms application? Headroom 2009-01-18T20:26:51Z 2009-12-14T20:00:11Z <p>I have a .NET 2.0 WinForms application that was developed using the Composite Application Block and Smart Client Software Factory.</p> <p>I'm considering the development of a module that would contain a browser control that would access the ASP.NET website using credentials established when the user logged into the WinForms client.</p> <p>My goal is to use this strategy to transition all of the modules that are currently in the client to ASP.NET and retire the 'smart' client. Security for the WinForms client is currently implemented using the ASP.NET Membership functionality.</p> <p>Is this possible? Sensible?</p> http://stackoverflow.com/questions/776895/switching-modules-in-composite-application-block 0 Switching Modules in Composite Application Block pradeeptp 2009-04-22T12:08:19Z 2009-12-09T13:00:00Z <p>Hi All,</p> <p>I am new to CAB framework. After going through the sample GPS application I understood how a single module is loaded and its view is displayed.</p> <p>I have a project in which I have 3 forms. Should I create a single module with three different Views for this or should I create three different modules for this.</p> <p>If I create three views, how do i Switch between these views. And if I am creating three different Modules, how do i switch between these modules.</p> <p>thanks.</p> http://stackoverflow.com/questions/1844487/scsf-custom-dependency-injection 0 SCSF custom Dependency Injection Kumar 2009-12-04T02:22:38Z 2009-12-04T06:32:44Z <p>I'd like to enhance/mimic the dependency injection done by the object builder to include some custom properties</p> <p>the standard way is</p> <p>in mySmartPart.cs</p> <p>[CreateNew] MyPresenter ABC { .... }</p> <p>[ServiceDependency] myService XYZ { ... }</p> <p>in include [MyCustomReferenceAttribute] CustomerObject MyCustomer { .... }</p> <p>etc.</p> <p>This can obviously be done after the smartPart is created but i'm guessing ( hoping ? ) there's some place i can hook up some code extension to do the needful instead of repeating the code everyplace !!!</p> http://stackoverflow.com/questions/1046186/constructor-injection-working-property-injection-not-so-much 1 Constructor injection working... Property injection not so much JoelFan 2009-06-25T20:47:50Z 2009-11-24T14:17:10Z <p>I am using Composite Application Block. I have a class that uses constructor injection (using the [ServiceDependency] attribute on the constructor parameter) and it's working. But when I try to switch to using property injection (with the [ServiceDependency] attribute on the property), the injection is not happening (the property stays null).</p> <p>I made sure that the property has the same type that the old constructor parameter had, and it's public.</p> <p><strong>Edit:</strong> This is C# / .NET</p> http://stackoverflow.com/questions/1777930/manually-installing-activex-component 0 Manually Installing ActiveX component mrduclaw 2009-11-22T05:41:49Z 2009-11-22T05:41:49Z <p>I'm trying to view a surveillance camera system. The remote access is available through a website, and that website seems to need to download a CAB file full of goodies to let me view the cameras.</p> <p>On some of my systems this install process goes over nicely. </p> <p>On a few, particuarly the ones with slower Internet, I get into an endless-loop of: going to the page, waiting a long period of time (I assume this is where its downloading the CAB file), clicking yellow bar to allow it to "Install this CAB file for all Users" and the page reloading. It never pops up with the Window saying "Are you sure its cool to Install this stuff?"</p> <p>Is there a nice way I can side-step this with a little code? I've downloaded the CAB file and extracted its contents. It's full of DLLs and a SetupScript.vbs. I've tried to just let the SetupScript.vbs run, and I've tried to manually register the DLLs with <code>regsrv32</code>. I've even copied the required .OCX and .INF files to the <code>C:\Windows\Downloaded Program Files\</code> and modified the registry to mimick one where the install went smoothly. </p> <p>Despite this, when I visit the webpage, it still takes forever and then goes back into the loop described above.</p> <p>What APIs do I need to call to "properly" register this component so IE can see it? Or is there something more simple that I'm missing?</p> <p>Could someone please point me in the right direction to solve this? The browser is IE8, the OS is Vista. </p> <p>Thanks!</p> http://stackoverflow.com/questions/1769623/issue-with-cab-file-activex-installation-on-windows-vista-and-7 2 Issue with .cab file (ActiveX) installation on Windows Vista and 7 Ummar 2009-11-20T10:33:39Z 2009-11-20T10:33:39Z <p>I have made an ActiveX control and have made its .cab file for automatic installation on client machine using Internet Explorer.. It working fine of Windows XP, but on windows Vista and Windows 7 its installation is blocked by UAC (User account control), and when I disable it, all things works fine... I have signed my .cab file with a certificate for development enviornment... What is the way to over come this problem.. I don't want to tell users to disable their UAC module...</p> http://stackoverflow.com/questions/477734/whats-your-opinion-on-ms-cab-composite-application-block 4 What's your opinion on MS CAB (Composite Application Block)? Brann 2009-01-25T14:11:08Z 2009-11-20T00:09:31Z <p>I'm in the process of evaluating the use of CAB for a new .net 3.5 winform project</p> <p>I plan to use the Infragistics toolset, <a href="http://www.infragistics.com/learn/cab.aspx" rel="nofollow">which is known to be 'CAB compliant'</a></p> <p>While CAB has the immediate upside of letting me focus on my business instead of coding basic docking/login/etc code, I feel like I would be able to achieve the same level of functionnality quite radpidly by myself (with the added flexibility/reactivity bonus you have when you 'own' the code).</p> <p>I'm seeking some feedback on Microsoft's CAB from people using it :</p> <ol> <li>Have you experienced problems/bugs ?</li> <li>Do you feel like CAB saved your time ?</li> <li>Are there extra functionalities I don't know about (beside Docking/Login/WorkerThreads best practices?)</li> </ol> http://stackoverflow.com/questions/1722783/creating-a-cab-file-on-wince 0 Creating a CAB file on WinCE Chris 2009-11-12T14:57:00Z 2009-11-17T09:41:47Z <p>Hello</p> <p>I want to make a CAB file on a WinCE 5/6 device. The idea is that someone would run a backup script that creates the CAB file, which can then be loaded back onto the device at any point restoring settings to a previously known point.</p> <p>The settings are xml and custom files in various folders on the device, I am not talking specifically about registry settings.</p> <p>If this cannot be done is there (commercially) free ZIP file creation software that could be used?</p> <p>Thankyou in advance Chris</p> http://stackoverflow.com/questions/1649914/cab-installation-failing-on-new-windows-mobile-6-5-devices 0 CAB installation failing on new Windows Mobile 6.5 devices Morten 2009-10-30T13:48:06Z 2009-11-12T09:46:11Z <p>We use a CAB file through a webpage to deploy our mobile application to our customers. Now with the new Windows Mobile 6.5 devices, the cab file is downloaded as a .tsk file (when using the new Internet Explorer). Naturally the installation fails to install the application as a theme.</p> <p>If the file is downloaded in Opera, or you change the file extension back to cab. The installation process completes. But the application can launch due to Missing Method Exceptions.</p> <p>Has anyone experienced this? Does anyone know if there is a workaround for it?</p> <p>We are currently builing the CAB using a vdproj in visual studio and signing it using CabWiz. Were using the Windows Mobile 5.0 SDK.</p> http://stackoverflow.com/questions/655247/icon-doesnt-show-up-in-the-cab-installer 0 Icon doesn't show up in the CAB installer gnomixa 2009-03-17T17:27:28Z 2009-11-02T17:46:40Z <p>I have added icon.ico file (custom made) in my VS project for smart device application. I also created a CAB installer project. The icon.ico is supposedly automatically appears as a shortcut icon, but it doesn't work for me. Do I have to add icon.ico to my CAB installer project manually?</p> http://stackoverflow.com/questions/865646/how-to-prevent-windows-mobile-installer-from-overwriting-registry-key-values 0 How to prevent Windows (Mobile) installer from overwriting registry key values Tommi Forsström 2009-05-14T20:43:15Z 2009-11-02T13:47:32Z <p>Hi!</p> <p>I'm wrapping up a Windows Mobile (6.1) app I've written and everything goes fine and dandy, but I've got one nasty problem: My app needs a few registry keys for settings and I can create them in the installer (using the registry editor) fine, but my problem is that every time I run the installer to update a new version of the software it overwrites those registry values.</p> <p>Is it possible to create a .cab installer that creates the specified registry keys if they don't exist, but leaves them alone if they do.</p> <p>Also, am I correct if I assume the setup project automatically deletes all registry keys in uninstall that it created during install?</p> <p>Thanks a bunch in advance!</p> http://stackoverflow.com/questions/1644828/activex-not-working-properly-with-default-security-settings 0 ActiveX not working properly with default security settings Ummar 2009-10-29T16:09:53Z 2009-10-30T12:42:54Z <p>I have written an ActiveX control in C# and have made it working using regasm command, and it works fine as long as the security level is set to low.. Then as a next step I have made a .cab installer (ICD - Internet component downloader), and have signed my .cab file and ActiveX .dll file with a test certificate. when I hit the html page from my browser the installation parts works fine with default security settings of IE, but at the end it seems that nothing is installed and a red cross is shown on place of ActiveX. Moreover I have explored the Download Program Files folder under Windows directory, in status column it is showing word "unknown". while it is "installed" for all other activeX. what may be the problem. Moreover if i use the regasm command to register the assembly it works fine, and I have signed the ActiveX but still I have to move the security bar to low in my browser setting? why it is so? then what is the purpose of signing? I have used <code>RegisterServer=yes</code> in my .inf file</p> <p>Please let me know, if some one has gone through this problem already?</p> http://stackoverflow.com/questions/1641996/how-to-make-inf-file-for-my-cab-file-activex-installation 0 How to make .inf file for my .cab file ActiveX Installation Ummar 2009-10-29T06:47:52Z 2009-10-29T06:47:52Z <p>I have made an ActiveX controll (.dll) file.. I want to test it in my development enviornment.. I am signed it with the a test certificate I have created on my machine.. Now the next step is I want to make a .cab file for it.. and for that I need to know How to make the .inf file for .cab file? Please help me out.</p> http://stackoverflow.com/questions/1614669/reading-from-servicereferences-clientconfig-in-wcf-in-silverlight-3-in-a-dynamica 0 Reading from ServiceReferences.ClientConfig in WCF in Silverlight 3 in a dynamically loaded .xap file Jeff Moeller 2009-10-23T16:50:22Z 2009-10-27T17:40:04Z <p>I'm using Silverlight 3 Prism (CAB) with WCF</p> <p>When I call a WCF service in a Prism module, I get the same error:</p> <p>"Could not find default endpoint element that references contract 'IMyService' in the service model client configuaration section. This might be because no configuaration file was found for your application or because no end point element matching this contract could be found in the client element"</p> <p>It turns out that its looking in the Shell's .xap file for a ServiceReferences.ClientConfig file, not in the module's ServiceReferences.ClientConfig file. I added my endpoint and binding to the existing ServiceReferences.ClientConfig file in my Silverlight Shell application (it calls it's own WCF services).</p> <p>Then I had to rebuild the Shell app to generate the new .xap file for my Web project's ClientBin folder.</p> <p>Next I changed to setting up the service in code:</p> <pre><code>// create the binding elements BinaryMessageEncodingBindingElement binaryMessageEncoding = new BinaryMessageEncodingBindingElement(); HttpTransportBindingElement httpTransport = new HttpTransportBindingElement() { MaxBufferSize = int.MaxValue, MaxReceivedMessageSize = int.MaxValue}; HttpsTransportBindingElement httpsTransport = new HttpsTransportBindingElement() { MaxBufferSize = int.MaxValue, MaxReceivedMessageSize = int.MaxValue }; // add the binding elements into a Custom Binding CustomBinding customBinding; if (Application.Current.Host.Source.Scheme.Equals("https", StringComparison.InvariantCultureIgnoreCase)) { customBinding = new CustomBinding(binaryMessageEncoding, httpsTransport); } else { customBinding = new CustomBinding(binaryMessageEncoding, httpTransport); } // create the Endpoint URL EndpointAddress endpointAddress = new EndpointAddress( "http://localhost/Test/TestModule/Test.TestModule.WCF/TestModuleService.svc"); // create an interface for the WCF service var service = new TestModuleServiceClient(customBinding, endpointAddress); </code></pre> http://stackoverflow.com/questions/1556063/winforms-dynamic-localization 1 WinForms Dynamic Localization Gopalakrishnan Subramani 2009-10-12T18:12:06Z 2009-10-13T14:27:03Z <p>We have CAB (Composite Application Block) based smart client winform application. </p> <p>One of our software requirement is to replacing the text dynamically when the user change the language option provided in our application.</p> <p>We support around 6 languages including east-asian(Chinese/Japanese), European Languages(Russion, spanish, English, dutch).</p> <p>After understanding some deep level into localization, I got to know that localization is more than just replacing the text dynamically.</p> <p>I found that Windows controls are created based on localized resource option. IT has formatting, validation sort of feature.</p> <p>Is it recommended to localize the text dynamically without closing the forms/views? Or Should be restart the application? Or close the form and reopen the form</p> <p>Why should not encourage dynamic language change?</p> http://stackoverflow.com/questions/1560216/extract-cab-files-with-php 0 Extract CAB files with PHP Oskar Akerlund 2009-10-13T13:22:09Z 2009-10-13T13:31:16Z <p>Running PHP on IIS6, how can I open and extract the contents of a CAB-file? Is there any way of doing this witout using exec? I don't have permission to run stuff with exec.</p> http://stackoverflow.com/questions/1554467/delete-a-registry-value-using-a-cab-installer 0 Delete a registry value using a CAB installer Shaihi 2009-10-12T13:04:38Z 2009-10-12T14:18:12Z <p>Is it possible to delete a registry key using a CAB installer that is generated using VS2005?<br> <br>The CAB is targeted at Windows CE 6.</p> <p><hr /></p> <p>Edit: <br>I did find this <a href="http://forum.xda-developers.com/showthread.php?t=415990" rel="nofollow">http://forum.xda-developers.com/showthread.php?t=415990</a>, but I was hoping to find a way to do it using VS2005 or VS2008 and in an easier way. <br>(I did not even start to try the instructions on that post)</p> http://stackoverflow.com/questions/1366057/scsf-display-view-from-another-view-against-button-click 0 SCSF: display view from another view against button click Mohsan 2009-09-02T06:08:34Z 2009-10-01T14:34:18Z <p>hi. i am facing one problem in SCSF.</p> <p>I have two workspaces</p> <ol> <li>MdiWorkspace</li> <li>DeckWorkspace</li> </ol> <p>i have two views in a module</p> <ol> <li>Viewer (display in mdiworkspace)</li> <li>Property Viewer (in deckworkspace)</li> </ol> <p>in Viewer i have a button in toolbar whose purpose is to display PropertyViewer (another View). </p> <p>how can i display this PropertyViewer in deckworkspace agaist button click event.</p> <p><strong>NOTE:</strong> i am not using Command[CommandName].AddInvoker(control, "click:) and CommandHandler</p> http://stackoverflow.com/questions/1375892/programmatically-configure-an-entlib-cab-cachemanager 0 Programmatically configure an EntLib CAB CacheManager urig 2009-09-03T20:52:54Z 2009-09-03T20:52:54Z <p>Currently I'm having to include a significant chunk of XML in the app.config to get the CAB CacheManager going and I'd rather hide the configuration away in my code.</p> <p>Is there any way to programmatically configure an Enterprise Library Caching Application Block's CacheManager?</p> http://stackoverflow.com/questions/1362365/deploy-system-dll-inside-cab-file 0 Deploy system DLL inside CAB file Eugene 2009-09-01T13:01:42Z 2009-09-01T14:16:47Z <p>I’m looking for a way to deploy a system DLL within my ActiveX CAB file. CAB cannot update system file and whole installation fails. Perfectly, I would like to copy the DLL into ActiveX installation folder. </p> <p>My best suggestion (I didn’t try it yet) is using INF file hooks with some standalone installer, but I wonder is there another way?</p> <p>Any other ideas will be appreciated…</p> http://stackoverflow.com/questions/1313980/debug-installation-of-activex-control-in-internet-explorer 0 Debug Installation Of ActiveX Control in Internet Explorer... Kris Erickson 2009-08-21T20:06:09Z 2009-08-22T00:54:37Z <p>I have an ActiveX control that runs on a website, where the old version installed fine. Of course it runs and installs perfectly on the development computer. The new version is versioned with a new name and a completely new CLSID. The new version brings up the installation dialog in Vista in Internet Explorer 8 (with the correct Digital Signature, etc) however nothing things to happen upon install. How can I determine exactly what happened after clicking Install (the control is not in the Objects directory, however the old Control is). I remember when initially creating this control that there was a log where there was details about the failed installs, however, for the life of me I cannot remember where that was or find it on the destination computer. This new version installs fine on some computers, but fails to install on some computers (it is not specific to Vista, it installs fine on some Vista machines).</p> http://stackoverflow.com/questions/1312587/install-cab-file-outside-of-ie 0 Install .cab file outside of IE pinniger 2009-08-21T15:15:43Z 2009-08-21T15:25:54Z <p>Our company’s computers are locked down so users cannot install anything. Now, we have just bought a service that requires the download and install of a cab file. </p> <p>When I go to the web page with this control installed under my admin account, everything works fine because I have rights to install it. But if I go to that web page under my normal user account, I cannot use the control because I don’t have rights to install it. Now, that being said, if I visit the page under my admin account, then go back under my normal user account, I’m able to use the control.</p> <p>So, either I have to login as admin on everybody’s machine as admin and visit that web page to install that .cab file (not an option, 100s of pcs), or I need to figure out a way to install the .cab file outside of IE so networking can push it to all of their PCs. My question is how can I install it outside of IE. I have downloaded the .cab file and right clicked the .ini file and clicked install. I can see the files (dll,ocx) in my system32 folders. But when I don’t see it listed as “installed” in “c:\windows\Downloaded Program Files” like I see it in my admin account, and it doesn't work. </p> <p>Info – Our company is using IE6, Windows XP, the file I’m trying to install is “ewebeditpro3.cab.”, from what I can tell, web edit pro 3 is a product from Ektron, I’ve looked at their site, but couldn’t find any info on installing the client.</p> http://stackoverflow.com/questions/497453/wince-cabwiz-error-inf-contains-dirids-which-are-not-supported 0 WinCE CabWiz error: "inf contains DirIDs, which are not supported" tsellon 2009-01-30T22:09:56Z 2009-08-19T12:01:17Z <p>When building the windows mobile cab for our product, the windows CE CAB Wizard (CabWiz.exe) sometimes returns the error:</p> <blockquote> <p>Error: File c:\docume~1\build\locals~1\temp\wiz3340.inf contains DirIDs, which are not supported</p> </blockquote> <p>This error can occur when using more than 998 files, ~260 directories, or when a % sign is unescaped (with another %), but these don't apply in our case.</p> <p>Has anyone run into this issue before? Thanks!</p> http://stackoverflow.com/questions/566235/how-to-make-cab-file-self-deleting-on-windows-mobile-app 1 How to make .cab file self-deleting on windows mobile app monkeypushbutton 2009-02-19T17:04:24Z 2009-08-12T20:00:27Z <p>I have my first Windows Mobile app ready for deployment (Windows Mobile 6). I have made my CABProject and made a .cab file that will install successfully. How can the .cab be made to delete itself after installation? Some things I read seem to indicate that this should be the default behavior.</p> <p>Thanks</p> http://stackoverflow.com/questions/1186365/how-do-i-put-a-shortcut-on-the-programs-menu-on-windows-mobile-in-the-installer-c 0 How do I put a shortcut on the Programs menu on Windows Mobile in the installer cab? mmastrom 2009-07-27T04:01:45Z 2009-07-27T13:01:43Z <p>Where do I put the shortcut icon for my mobile application in the Installer project for a Windows Mobile project so that when the cab is installed the icon will show on the Programs Menu?</p> http://stackoverflow.com/questions/428742/ie-downloads-and-installs-cab-dialog-popup-upon-every-page-refresh 0 IE downloads and installs CAB dialog popup upon every page refresh 2009-01-09T16:25:32Z 2009-07-14T15:17:07Z <p>I have a signed cab on an aspx page. I am seeing the following inconsistent behavior. Any insights would be highly appreciated.</p> <ol> <li>On some machines, the cab is downloaded and installed on every page refresh.</li> <li>On few of those machines, the IE "install cab" dialog pops up on every page refresh, while on the others it pops up only once. </li> </ol> <p>Additional info:</p> <ol> <li>The CAB contains a .NET DLL</li> <li>The CAB is slightly large (around 30 MB), hence recurring download behavior is a pain</li> </ol> <p>Target browsers are IE6 and IE7, and the behavior is common to both!</p> http://stackoverflow.com/questions/1062550/extract-cab-file-and-execute-the-exe-fileinside-the-cab-file-automatically 0 extract cab file and execute the exe file(inside the cab file) automatically junmats 2009-06-30T08:54:50Z 2009-07-01T19:14:46Z <p>Hi! I have a cab file(w/ an executable file inside) embedded on my webpage. When the user access the page the cab file will be automatically extracted and the executable file inside should be executed as well. Is this possible? My hunch is that this will be configured in my inf file but I don't know how. I would appreciate your help in this.</p> http://stackoverflow.com/questions/145440/deploy-a-desktop-shortcut-to-a-device-running-windows-ce-4-2-vs2005 0 Deploy a Desktop Shortcut to a Device running Windows CE 4.2 (VS2005) Mitch Wheat 2008-09-28T07:56:21Z 2009-07-01T09:55:05Z <p>I have an application written using VS2005 in C# targeting the Compact Framework 2.0 SP2. As part of the solution, I have CAB deploy project which deploys to the device without a problem. What I can't do is create a shortcut to my application on the devices desktop.</p> <p>I have spent several hours reading various bits of documentation (why is the search at the MSDN site so bad?), followed the instructions but no joy. </p> <p>What I've done is:</p> <ul> <li>Add the "Windows Folder" node to the File System</li> <li>Created a folder underneath that named "Desktop"</li> <li>Created a shortcut to the Applications Primary Output and placed that in the "Desktop" folder</li> </ul> <p>What am I missing?</p> http://stackoverflow.com/questions/398588/what-is-the-best-practice-for-domain-model-re-use-in-composite-applications 1 What is the best practice for domain model re-use in composite applications? pnschofield 2008-12-29T20:38:57Z 2009-06-11T15:00:03Z <p>We have a composite application built using the Composite UI Application Block (CAB)/Smart Client Software Factory (SCSF). To date, each module in our composite app has used its own set of DTO's, and business logic has been duplicated throughout the module, both in the UI layer and the Service layer. I would like to pursue more Domain-Driven approach in order to encapsulate business logic in a domain layer that can be distributed to the UI tier and the Service tier, and (ideally) across modules.</p> <p>We have multiple modules in our composite application under development at one time, and we need to be able to deploy them in any order. Ideally, I would like for our modules to share a common domain model, but I'm afraid that when we deploy a new version of the domain model along with a module, that we will need to regression test the other modules against the domain model.</p> <p>The alternative seems to be duplicating the domain model in each module, but all that code duplication smells funny to me. Has the industry developed any best practices for this type of situation?</p>