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: 6/27/2005 1:38:23 PM Date Modified: Subscribers: 0 Subscribe Alert
Rate It:
(NR, 0)
XPoints: N/A Replies: 0 Views: 8 Favorited: 0 Favorite
Can Reply:  No Members Can Edit: No Online: Yes
9 Items, 1 Pages 1 |< << Go >> >|
PROXSYS
Asp.Net User
How about a module with Exchange Server functionality ...6/27/2005 1:38:23 PM

0/0

Hi,

What does the DNN module community think about a module that would allow to send, modify or delete appointments to/from a resources mailbox at a Microsoft Exchange Server box?

The module would have calendaring functionality and it would allow for a project manager to access the mailboxes of its resources.

Other functions as well, such as:

List all of the resources appoinments,
List all of the project managers resources,
Store appointments at a SQL database (manage them as well),

I have it built under ASP.Net and Windows Forms and it is feasable to port to DNN.

Any thoughts appreciated.

Michael

PROXSYS
Asp.Net User
Re: How about a module with Exchange Server functionality ...6/27/2005 8:51:36 PM

0/0

Nobody jumped in excitement.  I guess nobody likes the idea too much.  That means it's not commercial.

That's just what I needed to know.
Freeway
Asp.Net User
Re: How about a module with Exchange Server functionality ...6/27/2005 9:57:23 PM

0/0

Michael... what a polite way to bump :-)
I too am working with DNN in a enterprise level windows intranet/extranet - I suppose because I cannot afford the licensing requirements of microsoft portal server, particularly the CALs required for wider extranet functionality.

I have been searching for 18 months now to attempt to find some native DNN PAs to access E2K, particularly Public Folders.

Right at the beginning I found this code posted by (I'm sorry I can't locate the post now).  Pop it into a Text/HTML Module and you go WOW!

<OBJECT classid=CLSID:0006F063-0000-0000-C000-000000000046 id=ViewCtlFolder width="300" height="240"><br> <param name="Folder" value="Inbox"><br> <param name="Namespace" value="MAPI"><br> <param name="Restriction" value><param name="DeferUpdate" value="0"></OBJECT>

Problem is it reads the local Outlook control, hence fails in an ExtraNet environment.  I really thought this may have got me (or a developer - because I'm not) close - but alas.

Can yo describe the functionality you have in code atm?

..Chris
hmnguyen
Asp.Net User
Re: How about a module with Exchange Server functionality ...6/28/2005 3:12:49 AM

0/0

Well, I guess the reason no one has implemented or commericalize a DNN module that integrate with Exchange is probebly because Exchange already comes with Outlook Web Access (OWA), a fully featured web-based mail client.  Most people woud just use a Text/HTML module to include an IFRAME to wrap around OWA.

Enterprise Forms for DotNetNuke
PROXSYS
Asp.Net User
Re: How about a module with Exchange Server functionality ...6/28/2005 4:43:19 AM

0/0

Hi Chris,

I developed the interface using WebDav (it took me awhile to figure it out; but now I couldn't live without it); you can find detailed information about this under the Microsoft Exchange SDK.  WebDav uses HTTP as its transport means.  You will not have to deal with firewalls or any other constraints other than the administrative configuration at the Exchange Server side.  There are some workarounds if the Exchange Server is setup in a Front-end/Back-end topology and if it is listening on a different port other than port 80, or if it uses an SSL tunnel.

I wouldn't go the historic ActiveX control direction; eventually you will run into some serious security issues imposed by the latest XP SP2 pack and Windows 2003 OS'.  Most likely, you would have to sign your components and possibly have to deal with .NET framework security issues. (Looks like I've been there, right!  I have and it took many hours of hard work to figure everything out!)

And keep away from CDO in any shape or size it comes in, unless you are designing a server program on the Exchange Server side.

I hope this info is useful to you.

Michael
Freeway
Asp.Net User
Re: How about a module with Exchange Server functionality ...6/28/2005 7:05:43 AM

0/0

hmnguyen, yes you're correct, the OWA client is great and this is in fact just what I am using at the moment, we have all experienced the non-flexibility issues with iFrames, and some of the formatting of OWA panes isn't always the best solution for the job. I am tending to simply use Efficions Article module, or one of the other Image Link Modules to spawn a new browser window containg the required OWA URL,  such as...
http://mailserver.mydomain/exchange/ymailbox/Inbox/?Cmd=contents or similar.
This enable me to add an appropriate graphic or icon, and improves the "visual appeal"

I have a dire need to represent the data from a number of Exchange public calendars into a nicely formatted list of events onto a dnn page.  I've experimented with 'Enterprise Events" which supposedly reads in an Outlook Format CSV file - but with no luck.

What I'd love is an Exchange add-on that produced an RSS feed!! - specifically from the calendar!

..Chris
PROXSYS
Asp.Net User
Re: How about a module with Exchange Server functionality ...6/28/2005 11:09:41 AM

0/0

Hi,

I am fully aware of OWA.  I believe you are not following what I said; or more likely, I didn't explain myself very well. OWA allows you to manage your own Exchange store.  I am talking about a scheduling and calendaring software where a project manager controls his resources (staff or other, such as: conference rooms, equipment, etc.); OWA does not do this.  A project manager would post an appointment to his resources calendar; the resource can use OWA online in order to view his schedule.  The project manager would have a schedule and spreadsheet view of all of his resources appointments.

I designed this software for a major software company in the US.  They didn't find a commercial package that would manage exactly what they wanted.  We had gone through all these thought steps.  The Windows Forms version allows them to work in an offline/online modality.

Taking this into account, what do you think?

Michael
cniknet
Asp.Net User
Re: How about a module with Exchange Server functionality ...6/28/2005 1:29:21 PM

0/0

Client-side access to Exchange using WebDAV is greatly simplified (almost to the point where it's trivial) using Independentsoft's component. This is the approach I would suggest.

We are in the process of implementing a generic WebDAV server-side API that allows any ASP.Net app (or DNN module) to present a file-system centric view of application data, so I am pretty neck-deep in WebDAV stuff. Feel free to email me if you have any implementation questions. The MS WebDAV implementation is completely non-standard (no surprise there), but on the plus side it's well-documented in the MSDN Library.

Nik


Nik Kalyani
Speerio, Inc.

[DotNetNuke and ASP.Net solutions here]
PROXSYS
Asp.Net User
Re: How about a module with Exchange Server functionality ...6/28/2005 2:39:51 PM

0/0

Hi Nik,

I was talking more about a solution that inevitably utilizes components such as the ones offered by Independentsoft's.  As a matter of fact, in order to develop the solution that I am talking about, I did develop the components that provide all the functionallity of the software components that you mention. 

I saw the cost of Independentsoft's components and a great idea popped up: I could deliver to the DNN community the same components at a cost that is more in line with the nature of the project.  I haven't come up with a price yet, but a good estimate would be in the 30 to 40 dollar range.  It would cover almost all of the specifications of the future competitor.

Thanks for your great feedback!

Michael Planchart
9 Items, 1 Pages 1 |< << Go >> >|


Free Download:

Books:
Connecting Microsoft Exchange Server Authors: Kieran McCorry, Pages: 393, Published: 1999
Mastering Microsoft Exchange Server 2003 Authors: Barry Gerber, Pages: 801, Published: 2003
Networked Group Communication: Third International COST264 Workshop, NGC 2001, London, UK, November 7-9, 2001 : Proceedings Authors: Jon Crowcroft, Markus Hofmann, Pages: 204, Published: 2001
Monitoring and Managing Microsoft Exchange Server 2003 Authors: Mike Daugherty, Pages: 586, Published: 2004
Microsoft Exchange Server 2003 Unleashed Authors: Rand Morimoto, Kenton Gardinier, Michael Noel, Joe Coca, Pages: 1056, Published: 2003
Distributed Reason Maintenance for Multiagent Systems Authors: Gerhard K. Kraetzschmar, Pages: 296, Published: 1997
SAP R/3 Handbook: Essential Skills for Database Professionals Authors: Jose Hernandez, Jose Antonio Hernandez, Franklin Martinez, Jim Keogh, Pages: 606, Published: 2005
[Computational Science and Its Applications] Authors: Antonio Laganà, Inc NetLibrary, Pages: 1233, Published: 2004
Computational Science-- ICCS 2003: International Conference, Melbourne, Australia and St. Petersburg, Russia, June 2-4, 2003 : Proceedings Authors: Peter Sloot, Pages: 0, Published: 2003
Commerce Server 2000: Building Ebusiness Solutions Authors: Gopal Sreeraman, Safari Tech Books Online, Pages: 652, Published: 2002

Web:
How about a module with Exchange Server functionality ... - ASP ... How about a module with Exchange Server functionality ... Last post 06-28-2005 10:39 AM by PROXSYS. 8 replies. Sort Posts: ...
SpamFighter Exchange Server Module - Free software downloads and ... Publisher's description of SpamFighter Exchange Server Module ... focusing your comments on the product's features and functionality, and your experience ...
Course 1572C: Implementing and Managing Microsoft Exchange 2000 ... Module 13: Implementing Microsoft Exchange 2000 Conferencing Server ... components and services that work together to provide conferencing functionality . ...
EMC Networker Module for Microsoft Exchange Server - Microsoft ... EMC NetWorker Module for Microsoft Exchange Server brings highly reliable ... needed to protect the applications you use and add the functionality you need. ...
FAQ - SPAMfighter Exchange Module - SPAMfighter What versions of Exchange Server does SPAMfighter Exchange Module support? .... in the Exchange Server, it does not impact on the functionality of any ...
microsoft training - technical - microsoft administration - south ... Module 2: Introduction to Microsoft Exchange Server Administration ... components within the user interface, and describe the function of each component. ...
MS 2009: Upgrading Your Skills from Exchange Server 5.5 to ... To get a production server function-. ing correctly, the final two tasks to complete are. covered in Module 2 and Module 3. Lessons. • Installing Exchange ...
Hewlett-Packard Education & Training, US & Canada - HE680S This course will teach the messaging administrator about all of the new features of Exchange Server 2007 and how to implement its new functionality into ...
SpamFighter Exchange Server Module 1.2.1 - Free software downloads ... A newer version of SpamFighter Exchange Server Module is available. ... focusing your comments on the product's features and functionality, ...
Seagate Software, Storage Management Group First to Receive the ... Seagate Backup Exec for Windows NT module for Microsoft Exchange Server provides automated client/server functionality for the integration of Microsoft ...

Videos:
SignPlus Architecture for Signature Administration SignPlus is a complete and versatile product suite around the needs of signature verification. Its modularized architecture is designed to serve indi...
An Introduction to SQLite Google TechTalks May 31, 2006 Richard Hipp ABSTRACT SQLite is a small C library that implements a self-contained, embeddable, zero-configuration SQ...
Web Applications and the Ubiquitous Web Google TechTalks February 1, 2006 Dave Raggett Dave Raggett is currently a W3C Fellow from Canon, and W3C Activity Lead for Multimodal Interaction....




Search This Site:










framework 3.0

sql connection method why whynot?

problems when using the security question

how to convert my project to dll

creating a new parent portal

ibuyspy portal blogging module?

unable to create a my first visual studio.net project.

how to specify custon httphandlers in web.config in vs2005 web app?

some simple questions

show html according to current date

getting rid of the horizontal rule in the module title.

screwed up parent portal

3.0.6 issue - generate language pack

ssl validation

asp.net & db (access) - adding link to each field

explanation request - private assemblies and how they work in dnn

what is the .net equivalent of vb6 ucase() ?

disapearing modules and content

how to remove complete step (not usable for me) in createuserwizard, and how to login user from code

sorting a datagrid

posting value back using sitemappath

registerstartupscript equivelance

extra spaces in syndicatemodule actionbutton

access to the path is denied

massive file imports -help plz

formsauthentication with users in different domains

delete a classifieds user

submit form in iframe within master page...

check if date exists - e.g 31st feb doesn't exist..

session bridge - asp to asp.net

 
All Times Are GMT