Click here to Skip to main content
15,896,348 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: Which versions of VS 2010 allow you to write Windows Services? Pin
Henry Minute18-Nov-10 7:00
Henry Minute18-Nov-10 7:00 
GeneralRe: Which versions of VS 2010 allow you to write Windows Services? Pin
Gregory Gadow19-Nov-10 4:06
Gregory Gadow19-Nov-10 4:06 
GeneralRe: Which versions of VS 2010 allow you to write Windows Services? Pin
Simon P Stevens19-Nov-10 4:16
Simon P Stevens19-Nov-10 4:16 
GeneralRe: Which versions of VS 2010 allow you to write Windows Services? Pin
PIEBALDconsult19-Nov-10 8:46
mvePIEBALDconsult19-Nov-10 8:46 
GeneralRe: Which versions of VS 2010 allow you to write Windows Services? Pin
Gregory Gadow19-Nov-10 11:40
Gregory Gadow19-Nov-10 11:40 
GeneralRe: Which versions of VS 2010 allow you to write Windows Services? Pin
PIEBALDconsult19-Nov-10 14:01
mvePIEBALDconsult19-Nov-10 14:01 
AnswerRe: Which versions of VS 2010 allow you to write Windows Services? Pin
PIEBALDconsult18-Nov-10 7:54
mvePIEBALDconsult18-Nov-10 7:54 
QuestionOpen Custom form in Exchange Server 2010 Pin
stambekar16-Nov-10 19:19
stambekar16-Nov-10 19:19 
hi All,

i am stuck with a problem with custom forms.
i m new to exchange server and may sound naive at times.

the problem is that i have modified the UIextension.xml file to add a Navigation bar item named as "MY Application" and on its click i want my custom form to be opened.
for this i have made a folder for my testform in the forms folder.
the testform will do nothing initially except printing some hello world stuff.
i have added a registry.xml file in that folder as well.

the registry and UIExtension entries are as follows


UIExtension File

<?xml version="1.0" encoding="UTF-8" ?>
<OWAUICustomizations>
<SmallIconMappings>
<!--You can register your own icons for custom message classes here-->

<!--Default IconFlag="Default"-->
<!--Default PrefixMatch="false"-->
<!--Attributes should be in the order of: ItemClass, SmallIcon, IconFlag, PrefixMatch-->

<!-- Sample entry:
<Mapping ItemClass="IPM.CustomClass" SmallIcon="CustomClass.gif" IconFlag="CustomClassRead"/>
-->
</SmallIconMappings>

<MainNavigationBarExtensions>
<!--You can register your own entries to appear in Outlook Web Access navigation bar here-->

<!-- Sample entry -->
<MainNavigationBarEntry LargeIcon="LargeIcon.gif" SmallIcon="SmallIcon.gif" URL="https://myserver/owa/forms/Testform/Default.aspx">
<string language="en-us" text="My Application"/>
</MainNavigationBarEntry>
</MainNavigationBarExtensions>

<NewItemMenuEntries>
<!--You can register your own entries to appear in Outlook Web Access New item menu here-->

<!-- Sample entry
<NewItemMenuEntry ItemType="IPM.CustomClass" Icon="foo.gif">
<string language="en-us" text="New custom item"/>
</NewItemMenuEntry>
-->
</NewItemMenuEntries>

<RightClickMenuExtensions>
<!--You can register your own entries to appear in Outlook Web Access mail view right-click menu here-->

<!-- Sample entry
<RightClickMenuEntry Icon="Icon.gif" URL="http://server/application.aspx" filter="IPM.Foo;IPM.Bar">
<string language="en-us" text="My Application"/>
</RightClickMenuEntry>
-->
</RightClickMenuExtensions>
</OWAUICustomizations>


And Registry.xml File is as follows

<Registry xmlns="http://schemas.microsoft.com/exchange/2004/02/formsregistry.xsd" Name="PremiumExtensions" InheritsFrom="Premium" IsRichClient="true">
<Experience Name="Premium">

<Client Application="MSIE" MinimumVersion="7" Platform="Windows NT" />
<Client Application="MSIE" MinimumVersion="7" Platform="Windows 2000" />
<Client Application="MSIE" MinimumVersion="7" Platform="Windows 98; Win 9x 4.90" />
<Client Application="Safari" MinimumVersion="3" Platform="Macintosh" />
<Client Application="Firefox" MinimumVersion="3" Platform="Windows NT" />
<Client Application="Firefox" MinimumVersion="3" Platform="Windows 2000" />
<Client Application="Firefox" MinimumVersion="3" Platform="Windows 98; Win 9x 4.90" />
<Client Application="Firefox" MinimumVersion="3" Platform="Macintosh" />
<Client Application="Firefox" MinimumVersion="3" Platform="Linux" />
<Client Application="Chrome" MinimumVersion="1" Platform="Windows NT" />

<ApplicationElement Name="Item">

<ElementClass Value="IPM.Contact._Default">
<Mapping Form="https://myserver/owa/forms/Testform/Default.aspx"/>
</ElementClass>
</ApplicationElement>

<ApplicationElement Name="PreFormAction">
<!-- Add this one generic entry for your custom message class, and everything will work
<ElementClass Value="IPM.Contact._Default">
Form="Microsoft.Exchange.Clients.Owa.Premium.Controls.CustomFormRedirectPreFormAction,Microsoft.Exchange.Clients.Owa"/>
<Mapping Action="Preview"
Form="Microsoft.Exchange.Clients.Owa.Premium.Controls.CustomFormRedirectPreFormAction,Microsoft.Exchange.Clients.Owa"/>
<Mapping Action="Reply"
Form="Microsoft.Exchange.Clients.Owa.Premium.Controls.CustomFormRedirectPreFormAction,Microsoft.Exchange.Clients.Owa"/>
<Mapping Action="ReplyAll"
Form="Microsoft.Exchange.Clients.Owa.Premium.Controls.CustomFormRedirectPreFormAction,Microsoft.Exchange.Clients.Owa"/>
<Mapping Action="Forward"
Form="Microsoft.Exchange.Clients.Owa.Premium.Controls.CustomFormRedirectPreFormAction,Microsoft.Exchange.Clients.Owa"/>
<Mapping Action="New"
Form="Microsoft.Exchange.Clients.Owa.Premium.Controls.CustomFormRedirectPreFormAction,Microsoft.Exchange.Clients.Owa"/>"/>
</ElementClass>
-->
</ApplicationElement>
</Experience>
</Registry>


Please let me know how can i open the default.aspx page in Testform folder on click of MyApplication navigation Menu.

rite now with these enteries i m getting the following error

Exception
Exception type: System.Web.HttpParseException
Exception message: Could not load type '_Default"'.
QuestionRe: Open Custom form in Exchange Server 2010 Pin
Richard MacCutchan16-Nov-10 21:17
mveRichard MacCutchan16-Nov-10 21:17 
AnswerRe: Open Custom form in Exchange Server 2010 Pin
stambekar17-Nov-10 0:20
stambekar17-Nov-10 0:20 
Questionmozilla not recognising childnodes-getting console error Pin
balaji.t16-Nov-10 2:26
balaji.t16-Nov-10 2:26 
AnswerRe: mozilla not recognising childnodes-getting console error Pin
Dave Kreskowiak16-Nov-10 3:50
mveDave Kreskowiak16-Nov-10 3:50 
AnswerRe: mozilla not recognising childnodes-getting console error Pin
Tarun.K.S18-Nov-10 20:52
Tarun.K.S18-Nov-10 20:52 
QuestionHow To Access Version Information From Code Pin
Patrick Skelton15-Nov-10 4:42
Patrick Skelton15-Nov-10 4:42 
AnswerRe: How To Access Version Information From Code Pin
Abhinav S15-Nov-10 4:46
Abhinav S15-Nov-10 4:46 
GeneralRe: How To Access Version Information From Code Pin
Patrick Skelton15-Nov-10 8:08
Patrick Skelton15-Nov-10 8:08 
QuestionSocket Recieve problem Pin
ganesh_IT15-Nov-10 2:56
ganesh_IT15-Nov-10 2:56 
AnswerRe: Socket Recieve problem Pin
Abhinav S15-Nov-10 3:12
Abhinav S15-Nov-10 3:12 
GeneralRe: Socket Recieve problem Pin
ganesh_IT15-Nov-10 3:33
ganesh_IT15-Nov-10 3:33 
AnswerRe: Socket Recieve problem Pin
Luc Pattyn15-Nov-10 3:55
sitebuilderLuc Pattyn15-Nov-10 3:55 
AnswerI say this so often that I get tired of saying it Pin
Ennis Ray Lynch, Jr.15-Nov-10 8:22
Ennis Ray Lynch, Jr.15-Nov-10 8:22 
QuestionVisual Studio Testing memory leaks? [modified] Pin
springjazzy15-Nov-10 0:41
springjazzy15-Nov-10 0:41 
AnswerRe: Visual Studio Testing memory leaks? Pin
GlobX24-Nov-10 14:14
GlobX24-Nov-10 14:14 
GeneralRe: Visual Studio Testing memory leaks? Pin
springjazzy25-Nov-10 20:34
springjazzy25-Nov-10 20:34 
QuestionUpload Videos To YouTbe using PROXY - Gdata Pin
sodevrom13-Nov-10 12:34
sodevrom13-Nov-10 12:34 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.