CodeVerge.Net Beta


   Explore    Item Entry    Members      Register  Login  
NEWSGROUP
.NET
Algorithms-Data Structures
Asp.Net
C Plus Plus
CSharp
Database
HTML
Javascript
Linq
Other
Regular Expressions
VB.Net
XML

Free Download:




Zone: > NEWSGROUP > Asp.Net Forum > starter_kits_and_source_projects.dotnetnuke.custom_modules Tags:
Item Type: NewsGroup Date Entered: 10/17/2005 9:43:36 PM Date Modified: Subscribers: 0 Subscribe Alert
Rate It:
(NR, 0)
XPoints: N/A Replies: 0 Views: 17 Favorited: 0 Favorite
Can Reply:  No Members Can Edit: No Online: Yes
12 Items, 1 Pages 1 |< << Go >> >|
khaos
Asp.Net User
PA Help needed.10/17/2005 9:43:36 PM

0/0

I have created about a dozen modules that work on internal data.  All but two installed great.  What does this error even mean?  This module works great when manually setup.  When installed properly the following occurs:

StartJob Registering DesktopModule
Failure ExceptionSystem.ArgumentNullException: Value cannot be null. Parameter name: type at System.Activator.CreateInstance(Type type, Boolean nonPublic) at System.Activator.CreateInstance(Type type) at DotNetNuke.Framework.Reflection.CreateObject(String TypeName, String CacheKey) in C:\DNN\components\Shared\Reflection.vb:line 102 at DotNetNuke.Modules.Admin.ResourceInstaller.PaDnnInstaller_V3.GetDesktopModuleSettings(DesktopModuleInfo objDesktopModule, PaFolder Folder) in C:\DNN\components\ResourceInstaller\PaDnnInstaller_V3.vb:line 76 at DotNetNuke.Modules.Admin.ResourceInstaller.PaDnnInstallerBase.RegisterModules(PaFolder Folder, ArrayList Modules, ArrayList Controls) in C:\DNN\components\ResourceInstaller\PaDnnInstallerBase.vb:line 287 at DotNetNuke.Modules.Admin.ResourceInstaller.PaDnnInstallerBase.Install(PaFolderCollection folders) in C:\DNN\components\ResourceInstaller\PaDnnInstallerBase.vb:line 415 at DotNetNuke.Modules.Admin.ResourceInstaller.PaInstaller.Install() in C:\DNN\components\ResourceInstaller\PaInstaller.vb:line 76

DNN follows:

<?xml version="1.0" encoding="utf-8" ?>
<dotnetnuke version="3.0" type="Module">
  <folders>
    <folder>
      <name>PTX Clubs</name>
      <description>Allows users to see their PTX Clubs. And Admins to moderate PTX Clubs.</description>
      <version>01.00.00</version>
      <businesscontrollerclass>PTX.DNN.Modules.Clubs.Business.ClubsController, PTX.DNN.Modules.Clubs.Business</businesscontrollerclass>
      <modules>
        <module>
          <friendlyname>My Clubs</friendlyname>
          <controls>
            <control>
              <src>Clubs.ascx</src>
              <type>View</type>
              <helpurl>http://www.PTX2.com</helpurl>
            </control>
            <control>
              <key>Edit</key>
     <title>Administer Clubs</title>
              <src>EditClubs.ascx</src>
              <type>Edit</type>
              <helpurl>http://www.PTX2.com</helpurl>
            </control>
          </controls>
        </module>
      </modules>
      <files>
  <file>
   <path>App_LocalResources</path>
   <name>Clubs.ascx.resx</name>
  </file>
  <file>
   <path>App_LocalResources</path>
   <name>ClubsEdit.ascx.resx</name>
  </file>
        <file>
          <name>Clubs.ascx</name>
        </file>
        <file>
          <name>ClubsEdit.ascx</name>
        </file>
        <file>
          <name>PTX.DNN.Modules.Clubs.dll</name>
        </file>
        <file>
          <name>PTX.DNN.Modules.Clubs.SqlDataProvider.dll</name>
        </file>
        <file>
          <name>01.00.00.SqlDataProvider</name>
        </file>
        <file>
          <name>Uninstall.SqlDataProvider</name>
        </file>
        <file>
          <name>module.css</name>
        </file>
      </files>
    </folder>
  </folders>
</dotnetnuke>

 


Joe Johnston
Be sure to mark posts as a solution if they are.

jjohns09
Asp.Net User
Re: PA Help needed.10/18/2005 12:02:58 PM

0/0

Joe,

I just experienced this exact same error message. I was able to determine that mine was attributed to an extra "." in my businesscontroller declaration. Damn fat fingers. You might want to check to see if you have the exact namespace. Not much to go on, but might help anyway.

Jeff Johnson


http://www.bestmodules.com - Modules, Skins & Skin Objects
khaos
Asp.Net User
Re: PA Help needed.10/18/2005 12:41:02 PM

0/0

What is the down side to simply removing the businesscontroller tag contents?  How does DNN use this information?  After removing the contents I am able to get through the install and testing looks good so far...

 


Joe Johnston
Be sure to mark posts as a solution if they are.

AerosSaga
Asp.Net User
Re: PA Help needed.10/18/2005 12:44:57 PM

0/0

The business controller is used for ISearchable, etc.

Regards,

Scott Schecter
EntitySpaces
Schecter Technology Solutions
jjohns09
Asp.Net User
Re: PA Help needed.10/18/2005 12:45:40 PM

0/0

I haven't looked through the code in the installer to know what happens internally with the businesscontroller other than the fact that it is stored in the BusinessControllerClass field in the DesktopModules table. I'm assuming that it needs this information for some type of Reflection.

Jeff

http://www.bestmodules.com - Modules, Skins & Skin Objects
mikeh36
Asp.Net User
Re: PA Help needed.10/18/2005 3:09:31 PM

0/0

Did you package the PA yourself or did you use the automated DNN utility (Module Definitions->Your Module->Create Private Assembly)?
GMSS DNN

Repository
khaos
Asp.Net User
Re: PA Help needed.10/18/2005 5:30:07 PM

0/0

I packaged it myself.
Joe Johnston
Be sure to mark posts as a solution if they are.

mikeh36
Asp.Net User
Re: PA Help needed.10/18/2005 6:14:55 PM

0/0

Okay then try doing the package using the method I mentioned above and see if it works. If it does then compare the .dnn files and see what the differences are.

EDIT: I think I see what the problem is now (didn't look that close before). I don't have access to anything DNN on this computer (in a lab waiting for a replacement drive to image) but if you've got this <dotnetnuke version="3.0" type="Module"> then you need to have a <Module Cache>0</Module Cache> or something similar (I know it's to do with the cache) somewhere around the business controller tags. If you generate the package like I mentioned above you'll see exactly what I mean.
GMSS DNN

Repository
onyaktech
Asp.Net User
Re: PA Help needed.10/24/2005 9:51:51 PM

0/0

 mikeh36 wrote:
Did you package the PA yourself or did you use the automated DNN utility (Module Definitions->Your Module->Create Private Assembly)?


Automated DNN utility?  What is this? Where is it?
Chris Onyak
www.OnyakTech.com


DotNetNuke Gold Benefactor 

PScarlett
Asp.Net User
Re: PA Help needed.10/25/2005 12:48:03 AM

0/0

As noted by Mike - if you go to the Host menu and select Module Definitions - then select your module, then click on Create Private Assembly at the bottom of the page.  This will generate the dnn file for your module.


Paul Scarlett - Ontario, Canada
www.tressleworks.ca
www.tz3p9v.ca
mikeh36
Asp.Net User
Re: PA Help needed.10/25/2005 1:02:26 AM

0/0

What? You don't know this one Chris?  Smile [:)] If you go into your module definition and go into the menu one of the options is to create a private assembly. It'll let you enter the name and will create the .dnn file and package up the module. Works real slick. There's even an option to package the source files as well but I haven't had a lot of luck with that. Not sure if it's something I'm doing but the PA creation is da bomb.


GMSS DNN

Repository
onyaktech
Asp.Net User
Re: PA Help needed.10/25/2005 11:26:24 AM

0/0

Wow...  I can't believe I missed that feature!   


Chris Onyak
www.OnyakTech.com


DotNetNuke Gold Benefactor 

12 Items, 1 Pages 1 |< << Go >> >|


Free Download:

Books:
Help Wanted!: The Experiences of Some Quaker Concientious Objectors Authors: Arle Brooks, Robert J. Leach, American Friends Service Committee, Pendle Hill school, Wallingford, Pa, Pages: 48, Published: 1940
Help Wanted!: The Experiences of Some Quaker Concientious Objectors Authors: Arle Brooks, Robert J. Leach, American Friends Service Committee, Pendle Hill school, Wallingford, Pa, Pages: 48, Published: 1940
Networking All-in-One Desk Reference For Dummies Authors: Doug Lowe, Pages: 864, Published: 2005
Resumes that Knock 'em Dead Authors: Martin John Yate, Martin Yate, Pages: 307, Published: 2004
Running with Scissors: A Memoir Authors: Augusten Burroughs, Pages: 288, Published: 2002
Help Wanted: Stories Authors: Gary Soto, Pages: 228, Published: 2007
Help Wanted: Orphans Preferred Authors: Earl Emerson, Pages: 288, Published: 1991
Help Wanted: Stories Authors: Gary Soto, Pages: 228, Published: 2007

Web:
Shop York Pa - Help Wanted Networking the York Pennsylvania area together. ... Shop York Pa Classified Advertisements. Main ยป Help Wanted (0). Add a Classified Ad in this category ...
Pennsylvania Help Wanted Classifieds - Free Pennsylvania Help ... You can use this section to find Help Wanted classified ads in Pennsylvania, or post your own free Pennsylvania Help Wanted classifieds. ...
Pennsylvania Newspaper Association | Help Wanted Ads Help Wanted Ads Human Resources Network. PNA members can post newspaper job openings .... monthly and bimonthly publications) in Central Pennsylvania has an ...
RegionalHelpWanted.com Network of Local Job Boards FL -, TallahasseeHelpWanted.com, PA -, CentreCountyHelpWanted.com. FL -, TampaBayHelpWanted.com, PA -, ClarionVenangoHelpWanted.com ...
Northeast PA Help Needed! (Bethlehem, York: relocate, lease, jobs ... Sep 30, 2008 ... Good morning. You might remember me from a new months ago. My husband and I came to PA from Long Island and loved it.
Bellefonte, PA - Photo A Day: Flat Stanley Project-Help Needed Flat Stanley Project-Help Needed. Since everyone here who does the photo-a-day likes to take ... Pennsylvania Renaissance Faire - Horses and Jousti. ...
Transport help needed -- Gettyburg, PA, to Enfield, CT - YDR Pets Transport help needed -- Gettyburg, PA, to Enfield, CT. By. Rose Hayes. on July 28, 2008 6:57 PM | Permalink | Comments (0). Date of run: August 2rd, ...
Pennsylvania Job Openings - PA Help Wanted Listings 100s of job openings in hundreds of industries in the state of Pennsylvania. Browse through help wanted listings or search multiple PA job sites.
Shafer> Fayette County, Pennsylvania...help needed Shafer> Fayette County, Pennsylvania...help needed. Posted by: Lisa Hoffius (ID *****1583), Date: October 20, 2003 at 12:59:51 ...
Jacked Up: PA: Help Needed - Kidjacked PA: Help Needed. The Pennsylvania Office of Children Youth and Families (OCYF), are out of control. They are removing children from loving, caring families ...

Videos:
Help Wanted Ad for Serenity Now Salon in Bensalem, PA This ad was created by S.O. Production, from concept, shooting and editing. This ad was successful in retaining 2 full-time stylist for the salon ...
Help for Heroin Addicts in PA In this video, Harold Cameron, Chief of Helping People and Consumer Advocate for HaroldSays exposes a real problem in the state of PA regarding ...
Devil's Valley Library: Help Wanted Applicants for a job at Devil's Valley Library disappear mysteriously. Is shelving dangerous to your health? And do all Library Directors resemble ...
Re: GDW English Dub HELP NEEDED Just suggesting a voice for the character Hougen for the fandubbing of GDW. (the voice for Smith didn't really go well in my opinion but I ...
Help Wanted - Superstition / Purple Haze / Eruption Help Wanted live at Sterling Hotel.
Chess Pa Svenska - Somone Else's Story - English subs test Some folks wanted to see more, so here's a bit to whet your appetites. I am currently working on creating English subtitles for the Chess Pa ...
Alex's Lemonade Stand Carnival 2007 in Bethlehem, PA This is a carnival held to raise money for "Alex's Lemonade Stand" which is an organization that raises money for childhood cancer research. The ...
Pa. Farmers Hope for Natural Gas Windfall BusinessPa. Farmers Hope for Natural Gas WindfallPa. Farmers Hope for Natural Gas WindfallThe Associated PressFarmers in Northeast Pennsylvania ...
Pa. Farmers Hope for Natural Gas Windfall PlusPa. Farmers Hope for Natural Gas WindfallPa. Farmers Hope for Natural Gas WindfallThe Associated PressFarmers in Northeast Pennsylvania are ...
Falling Cripples Hit by car and falling on crutches This is what happens when your bored and handicapped Location: King of Prussia mall help wanted!




Search This Site:










debugging problem

execute setups one after another

error when logging in using the login control

connection to another datbase

controller problem

question regarding roles/memberships - populate on application.start()

how do i take user info from a page using a repeater control to a confirmation page?

configure passwordformat="encrypted"

deployment issue path to portalcfg.xml

problem related to menu

was someone working on a new gallery?

inject content into pane dnn 2.0 and possibly 3.0

problem with makedir

security and dusplay logic

sharing modules across multiple portals?

webpart parttitle style

beta testers needed

1user, 2portals, 1 email address?

autopostback does not work within a master page

problem with serialisation blob

optionally display tabs in a page

need info

dotnetnuke configuration error

login controls - authentication fails

hide the help icons from the dnn label control?

custom page title?

still having dnn 3.1 install problems

applying css to an imagefield in a gridview

page has very large height but is empty

local db error during install

 
All Times Are GMT