Author |
|
mischa Newbie
Joined: 14 February 2010 Location: Netherlands
Online Status: Offline Posts: 1
|
Posted: 14 February 2010 at 12:47pm | IP Logged
|
|
|
Hi,
I'm trying to bypass the webmail lite login screen.
When i put the webmail url in the iframe everythings works perfect and i get the login screen.
But when i put the intergration in the codebehind of my ifame page i get the server application unavailible, even when i hard code the user credentials.
what am i doing wrong ?
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 15 February 2010 at 2:08am | IP Logged
|
|
|
As the issue description holds IIS error message, I assume you're using .NET version.
First of all, it's necessary to make sure that you have all the paths set correctly for integration method call:
Code:
Integration integr = new Integration(@"C:\WebMail-Lite-Net\data", @"http://myserver/webmaillite/"); |
|
|
The 1st parameter should point to the data folder of WebMail while the 2nd one should contain main WebMail URL.
You also need to make sure that you're not running your app under different version of .NET compared to the one set for WebMail Pro, and of course WebMail.dll should be referenced in your project.
In most cases, checking error log in Event Viewer (eventvwr) may be really helpful in determining what's causing the issue.
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|