Crystal Report prompts for username / pwd when deployed to Bus Obj Server

Hi All,
I'm relatively new to Crystal Reports development.  My day job is test analyst.  I'm reasonably technically proficient.
PROBLEM
I have created a number of Crytsal Reports which have now been deployed to an Enterprise Business Objects Report Server.  The Server is Business Objects Server XI release 2.
When I run the report in Crystal Reports Desiger 2008 it does not prompt me to enter the database credentials except if I have modified the SQL command or some other report detail.  Most times I run the report, no database username / pwd is required because I already set this up in the datasource config.
I' connecting to an Oracle database using ODBC (RDO) connection type.  I cannot get the ODBC (RDO) connection type working from my PC using Crystal Reports Designer 2008, because I don't have ODBC configured for my datasource.  Instead, Im using the native Oracle Server driver to connect to my datasource.
An existing user in the client organisation configured my report to use the ODBC (RDO) conneciton type for me because the Business Objects Server in the client organisation does not (currently) support the native Oracle driver.  Other reports this user has created and deployed using the ODBC conenction type run successfully without prompting user to enter the database connection credentials.
NOTE:
This report users an SQL Command (new to Crystal 2008 I beleive?).  The command is reqiured for this report due to the complexity of the underlying SQL query.
Does anybody know why the report keeps prompting me to enter the database credentials at runtime?  Obviously for security reasons I don't want report users to have to enter the database schema name and password in order to run the report.

Hi,
You need to uncheck "Propmt the user for database logon when viewing". You will find this when you deploy the report on the BOE XI R2.
The deployment step main heading is
Specify Databse Crendentials.
Hope this helps,
Thanks
-Azhar

Similar Messages

  • Crystal Reports prompting for creds when viewed from BO 4

    The environment:
    Business Objects Enterprise 4, sp2 patch 8
    SAP ECC 6.0, kernel 701, sup. pkg. lvl 137
    This is a new BOE 4 installation on a test system.  The BOE installation has been configured to use Windows AD authentication with SSO.  When I run a Crystal Report that is based on SAP ECC data, I am prompted for credentials.  So I used the following document to configure BOE for SSO to DB:
    http://wiki.sdn.sap.com/wiki/display/BOBJ/HowtosetupSSOagainstSAPBWinSBOBI4.0forLDAPusers
    This didn't fix the problem.  SAP ECC reports in BOE still prompt for creds when viewed.  SAP Authentication is verifiably working, but I'm not sure if SSO to DB is working.  One thing I've noticed is that when I log in to BOE using SAP authentication and view the report, I'm not prompted for creds.  In BOE I added my Windows AD acct as an alias in my SAP acct, but I may have either done this incorrectly, or there may be something I need to do in addition.
    question 1:  Is there an easy way to verify if SSO to DB is working correctly?
    question 2:  In CMC --> Authentication --> SAP --> Entitlement Systems --> User Name, I'm assuming that this is an SAP user name.  What roles/profiles does this account need?  Should it be a dialog acct?
    question 3:  Our ECC system is configured to use SNC.  Do I need to configure SNC in BOE for SSO to DB to work?
    question 4:  I added my Windows AD user as an alias on my SAP user record.  I'm not sure this is correct...  can someone verify?
    Any help or suggestions are much appreciated.

    Thanks, Ingo.  Once I got snc configured, everything began working wonderfully.
    I used this document as a guide:
    https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/sno/ui_entry/entry.htm?param=69765F6D6F64653D3030312669765F7361706E6F7465735F6E756D6265723D3134343630363726

  • Crystal Reports 13 for VS2013 Hangs when report deployed via Clickonce

    Hi,
    We have upgraded from vs2008 to vs2013 one of our .net C# projects. Project consist of a Server and a windows client. Reports are run in the client, and data transported with disconnected Datasets ( No direct connection to the database ). We use Microsoft clickonce to deploy this application to our users.
    The problem we have is that after the migration clients deployed with clickonce experience a delay of about 1 minute while the report is shown with a message "please wait while the document is processing". However if we run the application directly from the filesystem the report is shown immediately.
    running the clickonce deployed shows the following message using process monitor, however after ~1 minute the report displays correctly.
    6:08:05.5863138 PM
    ECMWin.exe
    18156
    CreateFileMapping
    D:\Users\o\AppData\Local\Temp\2\temp_6a4d2478-2cab-45d5-8e21-af5d5d3a761a {56013444-9297-4F76-A8DE-00A08C289BBF}.rpt
    FILE LOCKED WITH WRITERS
    SyncType: SyncTypeCreateSection, PageProtection:
    Code:
            CrystalReport1 c = new CrystalReport1();
            public Form1()
                InitializeComponent();
                c.Load();
            Stopwatch s = new Stopwatch();
            private void Form1_Load(object sender, EventArgs e)
                if (c.IsLoaded)
                    crystalReportViewer1.ReportSource = c.FileName.Replace("rassdk://", ""); ;
                    Console.WriteLine("crystalReportViewer1.ReportSource = c;:" + s.Elapsed.TotalMilliseconds.ToString());
    * Note:
    1. the report from the code above is empty and has no connections to database.
    2. Using Vs2013
    3. Using SAP Crystal Reports, developer version for Microsoft Visual Studio - Service Pack 9 - Fixed Issues and updates - Busines…

    Hi,
    Finally found the issue:
    Our windows application every 20 minutes ( 1 minute in debug ) check for clickonce updates in an independent thread using CheckForDetailedUpdate method and then it sleeps.
    public void ApplicationUpdateTimerThread()
      int updateInterval = applicationUpdateTimer.Interval = 1200000; // 20 mins
      if (ApplicationDataAccess.IsDebug) { updateInterval = 60000; }
      while (true)
         UpdateCheckInfo updateInfo = appDeployment.CheckForDetailedUpdate();
         Thread.Sleep(updateInterval);
    Doing this was locking the filesystem where now Crystal is putting their temporary report files and therefore preventing file access until the thread was active again ( The reason for the 60 seconds delay )
    So Creating a new thread to only check for update and let it die inmediately fixed the issue.
    public void ApplicationUpdateTimerThread()
      int updateInterval = applicationUpdateTimer.Interval = 1200000; // 20 mins
      if (ApplicationDataAccess.IsDebug) { updateInterval = 60000; }
      while (true)
      System.Threading.Thread t1 = new System.Threading.Thread (delegate()
      { UpdateCheckInfo updateInfo = appDeployment.CheckForDetailedUpdate(); });
      t1.Start();
      Thread.Sleep(updateInterval);

  • Crystal report on VB 6 prompting for Login even when logged on to SQL Server.

    Hi,
    I am migrating crystal report 8.5 to 11 in VB 6. I have used the following code.
    Components Used: Crystal ActiveX Report Viewer Library 11.0
    References Used: Crystal ActiveX Report Viewer Library 11.0 & Crystal Reports ActiveX Designer Design and Runtime Library 11.5
    Dim app As New CRAXDDRT.Application
    Dim rpt As New CRAXDDRT.Report
    Set rpt = app.OpenReport("C:\creditrisk.rpt")
    rpt.ParameterFields(1).AddCurrentValue (Now)
    rpt.ParameterFields(2).AddCurrentValue (Now)
    CrystalActiveXReportViewer1.ReportSource = rpt
    rpt.Database.LogOnServer "p2sodbc.dll", "AURORA_DB", "DATABASEMAIN", "userId", "xxxxxxxx"
    CrystalActiveXReportViewer1.EnableInteractiveParameterPrompting = False
    Me.Left = 0
    Me.Top = 0
    Me.Height = Screen.Height
    Me.Width = Screen.Width
    Me.WindowState = vbMaximized
    CrystalActiveXReportViewer1.ViewReport
    I am using the existing reports that has been designed to use ODBC connection DSN Name AURORA_DB. Even though i supply the logon credentials crystal reports still prompts the logon dialog box.
    Any help will be highly appreciated.

    Issue is you are using the old DB driver p2sodbc.dll, change this to crdb_odbc.dll and it should work for you.
    Also check the samples for new Database connection info and methods.

  • Preview and print a Crystal report prompted for the sa password

    Dear All,
    Our customer has Crystal report add-on to be installed. When we Preview and print a Crystal report, we got a window prompted for the sa password. Even we type in a correct password, it still says wrong password...
    Every time when I open my report in Crystal Basic 2008 on the server, then go database expert >> My connections >> click + in front of the connection name, it asks my sa password. I type in my password then save and close. Next time when I open the report and go my connections, I have to type in my password again. This only happens on one customer.
    Any idea? Thanks a lot.
    Regards,
    Yuka

    Hi Yuka,
    1) All their SAP client workstation, they have to have use SQL2008 CD and install SQL Client on it
    Correct, MS does NOT support MDAC or WDAC when connecting to SQL 2008.
    2) Then go ODBC >> SQL Native Client 10.0 >> Create a new connection to SAP server. Should we use sa user or another use that has the same authorization as sa?
    Correct again if they are also using ODBC to connect, as for using the sa account or creating a new one is up to you. I suggest creating a Crystal account with what ever rights your app needs, this way if tracing it turned on etc. you can confirm who is actually running the report.
    3) Then from MY Crystal report, I have to use ODBC connection as well?
    Just to clarify, if you created your reprots using OLE DB then they can do so also. But you need to update your connection properties. Open each report click on Database, Set Location, scroll down to OLE DB and expand and then choose MS SQL Server Native 10 as your OLE DB provider, fill in all the logon info and then verify the database. Do the same for each subreport also.
    Save your report and either send them the new one or if you are doing this remotely then replace the original report.
    VERIFY your reports to confirm they still return correct data and do work as expected.
    Or if you are using ODBC then yes you do select the MS 10 driver with a new DSN. Then do the above to update the reports to all use ODBC as their data sources.
    Hope this is all clear now....
    Thanks again
    Don

  • Crystal report prompting for login to Dataset [Problem]

    Hello,
    I'm developing a C# windows application with an Access db
    I'm getting the data from the database and load it to a dataset then pass the dataset to the report
    every thing is working fine on my local machine but..
    When I run it on any other machine it prompts me to enter the login information while there are no login informations to enter because I'm connecting to a data set
    here is my simple code to load the report
    VisitReasibReoirt VisitReasonRPT = new VisitReasibReoirt();
                            VisitReasonRPT.DataSourceConnections[0].IntegratedSecurity = true;
                            VisitReasonRPT.SetDataSource(ds);
                            crystalReportViewer1.ReportSource = VisitReasonRPT;
                            crystalReportViewer1.RefreshReport();
    Also there is an other problem in the design
    I cannot change the language of the datetime fields like what I did with text fields.. How can I solve this ?
    please tell me what to do...this is very important I searched a lot but I found nothing usefull
    Edited by: Mando! on Aug 26, 2010 2:04 AM

    Hello,
    Information needed..
    Version of Crystal Reports?
    Version of Visual Studio?
    Type of data connectivity used? (i.e. OLEDB, ODBC)
    Did you diploy the application? How? (MSM's or MSI's)
    If the new machine is also a developement environment, does the report work from designer?
    Version of windows on prev and new machine?
    Make sure that..
    If the application is deployed, the proper runtimes are installed.
    The database provider is installed.
    The target database is located where it should be.
    The target database is unchanged.
    One question per thread please.
    see [Rules of engagement|http://wiki.sdn.sap.com/wiki/display/HOME/Rules%20of%20Engagement].
    Thanks,
    Bhushan.

  • Preview a Crystal report prompted for the sa password

    Dear All,
    When our customer preview a Crystal report, we got a window prompted for the sa password. Even we type in a correct password, it still says wrong password.
    Only two user computer have this problem.
    How do I solve it?
    Regards,
    Karen

    I install Crystal Reports Designing Software on those computers which canu2019t preview reports.
    Then start the Crystal Reports design software to open the problem report.
    It usually asks to enter the column on the interface u201COLE DB (ADO) u2013 Connect Informationu201D.
    But it gets into the interface u201COLE DB (ADO) u2013 OLE DB Supplieru201D.
    I correct the setup and save the report.
    The problem is solved.
    I try many methods, but only this one can solve my problem.
    If you have another solution, please tell me, thanks!
    Regards,
    Karen

  • Crystal Report Prompt For Enter Parameter Values

    Hi,
    I did a report with 2 subreports embeded in VS2005 using VB and it worked fine but when I ported the whole application to VS2008 the above problem occurs. Here are some codes:
        Private Sub btnPreview_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnPreview.Click
            Dim viewer As New frmReportPreview
            Dim rpt As New ReportDocument
            Try
                rpt.Load("C:\Report\crptMain.rpt")
                rpt.SetParameterValue("Code", Me.cbxCode.Text)
                rpt.SetParameterValue("Code", Me.cbxCode.Text, "crptSubReport1.rpt")
                rpt.SetParameterValue("Code", Me.cbxCode.Text, "crptSubReport2.rpt")
                viewer.report = rpt
                viewer.WindowState = FormWindowState.Maximized
                viewer.ShowDialog()
            Catch crptEx As CrystalDecisions.CrystalReports.Engine.EngineException
                MessageBox.Show(crptEx.Message, "Crystal Report Errors...")
            Catch ex As Exception
                MessageBox.Show(ex.Message, "Crystal Report Errors...")
            End Try
        End Sub
    Private Sub frmReportPreview_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
            Dim rpt As New CrystalDecisions.CrystalReports.Engine.ReportDocument
            Try
                Me.CrystalReportViewer.ReportSource = m_report
                Me.CrystalReportViewer.RefreshReport()
            Catch ex As Exception
                MessageBox.Show(ex.Message, "Error...")
            End Try
        End Sub

    Subreport Parameters are contained within the Main Report's ParameterFieldDefinitions collection. Passing Subreport Parameter values directly to the Subreport will result in the values not being applied and the user being prompted at runtime to provide new values.
    Ludek

  • Prompt for Directory Selection when deploying in WEB

    I have created a Java code to prompt for directory selection and it works when alone. When I get the code with the JavaBean in the forms 6i application, no dialog prompt appears when clicking the "Get_directory" button. The Java code is listed below.
    (A) File DDialog.java
    package oracle.forms.intex;
    import java.awt.*;
    import javax.swing.*;
    import java.beans.*;
    import java.io.File;
    public class DDialog extends Canvas {
    private String directory_name ;
    private PropertyChangeSupport pcs;
    public DDialog() {
    directory_name = "";
    pcs = new PropertyChangeSupport(this);
    public void set_directory_name() {
    JFrame frame = new JFrame("Get Directory");
    javax.swing.JFileChooser OpenDlg = new JFileChooser();
    OpenDlg.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
    int returnVal=OpenDlg.showOpenDialog(frame);
    String old_directory_name = directory_name;
    if(returnVal == JFileChooser.APPROVE_OPTION)
    File selectedFile = OpenDlg.getSelectedFile();
    if (selectedFile.isDirectory())
    directory_name=selectedFile.getPath();
    pcs.firePropertyChange("directory_name", old_directory_name, directory_name);
    public void addPropertyChangeListener(PropertyChangeListener pcl) {
    pcs.addPropertyChangeListener(pcl);
    public void removePropertyChangeListener(PropertyChangeListener pcl) {
    pcs.removePropertyChangeListener(pcl);
    public static void main(String args[]) {
    new DDialog();
    (B) File DDialogPJC.java
    package oracle.forms.intex;
    import java.awt.*;
    import java.awt.event.*;
    import java.beans.*;
    import oracle.forms.properties.ID;
    import oracle.forms.handler.IHandler;
    import oracle.forms.ui.CustomEvent;
    import oracle.forms.ui.VBean;
    public class DDialogPJC extends VBean implements PropertyChangeListener{
    private Component mComp;
    private IHandler mHandler;
    private static final ID SHOWDIRECTORYDIALOG = ID.registerProperty("showdirectorydialog");
    private static final ID DIRECTORYNAME = ID.registerProperty("directoryvalue");
    private static final ID DIRECTORYCHANGEEVENT = ID.registerProperty("directorychangeevent");
    public DDialogPJC() {
    super();
    try{
    ClassLoader cl = getClass().getClassLoader();
    Object obj = Beans.instantiate(cl,"oracle.forms.intex.DDialog");
    mComp = (Component)obj;
    mComp.setVisible(true);
    mComp.setEnabled(true);
    ((oracle.forms.intex.DDialog)mComp).addPropertyChangeListener(this);
    // add the component to this
    add("Center",mComp);
    catch(Exception e){
    e.printStackTrace();
    public void init(IHandler handler)
    super.init(handler);
    mHandler = handler;
    public boolean setProperty(ID pid, Object value)
    if(pid ==SHOWDIRECTORYDIALOG) {
    ((oracle.forms.intex.DDialog)mComp).set_directory_name();
    return true;
    else
    return super.setProperty(pid,value);
    public void propertyChange(PropertyChangeEvent pce) {
    String new_directory_name=(String)pce.getNewValue();
    try {
    mHandler.setProperty(DIRECTORYNAME, new_directory_name);
    catch(Exception e) {}
    CustomEvent ce = new CustomEvent(mHandler, DIRECTORYCHANGEEVENT );
    dispatchCustomEvent(ce);
    (C) In the form, there is the button "GET_DIRECTORY" with code in WHEN_BUTTON_PRESSED trigger.
    declare
    DDialog_Bean Item;
    begin
    DDialog_Bean:=find_item('DDIALOG_BEAN');
    if not id_null(DDialog_Bean) then
    set_custom_item_property(DDialog_Bean,'showdirectorydialog',1);
    end if;
    end;
    (D) In the same form, there is the javabean area "DDIALOG_BEAN" with code in WHEN_CUSTOM_ITEM_EVENT trigger.
    declare
    DDialog_Bean Item;
    BeanValListHdl ParamList;
    paramType Number;
    EventName varchar2(20);
    directory_name varchar2(255);
    begin
    DDialog_Bean:=find_item('DDIALOG_BEAN');
    BeanValListHdl:=get_parameter_list(:system.custom_item_event_parameters);
    EventName:=:system.custom_item_event;
    if (EventName='directorychangeevent') then
    get_parameter_attr(BeanValListHdl,'directoryvalue',ParamType,directory_name);
    :directory_name:=directory_name;
    end if;
    end;
    Please advise where the problem is and fix it, much thanks.
    SK

    Hello there SK. actually i have same problem with you. i am only new to Forms6i. Itried your code DDialog.java and the DDialogPJC.java
    Ive got an error when i compile the DDialogPJC.java using the java complier.
    here is the err:
    package oracle.forms.properties does not exist
    package oracle.forms.handler does not exist
    package oracle.forms.ui does not exist
    package oracle.forms.handler does not exist
    how can i solve this problem. you said that it works properly in your machine.
    please help me on this, i also want to try fixing your problem, but i need this to be fixed first. thank you and more power

  • Deploying crystal reports basic for visual studio 2008 for VB6

    My application has a module in .net and other in vb6.
    I have a problem on deploying crystal reports in client machines, for module in vb6.
    The vb6 application uses crystal viewer control obtained from crystal reports basic for visual studio 2008.
    What type of deployment should I use?
    Currently, I have a setup with prerequisite "crystal reports basic for visual studio 2008".
    But I think it misses the dlls crviewer.dll and craxddrt.dll, so I put them in setup and with the register COM options, and it works, but it's not working very well.
    When I open a form that uses crystal viewer, the setup (I have created) is lunched and says that have to restart machine. Then it opens the report, but the next time I use the application it does the same thing.

    Ok, thank's for the posts, they help so much.
    So I'm going to discard vb6 and move to .NET, but... there is a problem:
    Many reports have parameters that are asked before showing the report.
    The Crystal Viewer that is used in VB6 version isn't the same used in .NET.
    The viewer of VB6 asks the parameters in the way we want, however the .NET crystal viewer ask's the parameters in way that we don't like, because we have to do next -> next -> next...
    The links above show the diferences:
    VB6 ->  http://picasaweb.google.com.br/paulo.gonc/CrystalReports#5249249283702618322
    .NET -> http://picasaweb.google.com.br/paulo.gonc/CrystalReports#5249246459437178242
    There is a way to configure Crystal Viewer, so that parameters asking form will work like the vb6 away?

  • Deploying Crystal Reports Basic for Visual Studio 2008

    I have Windows Forms project using Crystal Reports Basic for Visual Studio 2008
    I can't find the merge module to include in the setup project like I used to do in Visual Studio .NET 2003
    Everyone seems to say that they don't exist for that version of Crystal Reports
    After searching for a long time I found something about a package located at
    C:\Program Files\Microsoft SDKs\Windows\v6.0A\Bootstrapper\Packages\CrystalReports10_5\CRRedist2008_x86.msi
    Tried it and it seems to work.
    Do I have to install this to the client computer ? Is that the only way having a "Crystal Reports Basic Runtime for Visual Studio 2008" in the program list of the client computer ?

    Hi Victor,
    We can download all the runtimes from the following link:
    [https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/bobj_download/main.htm]
    Try to search Business Objects Note regarding this from  [here|https://www.sdn.sap.com/irj/sdn/businessobjects-notes]
    More info regarding deployment can be found from DevLibrary:
    [https://boc.sdn.sap.com/node/8546]
    Regards,
    Shweta

  • Word 2010 prompts for username and password when opening a document on trusted website

    Hi Guys,
    We have a website (not sure if the site is a sharepoint site) on our trusted domain that asked for username and password when trying to access it. I added the site to our trusted sites zone and this resolved the issue however when I try to open word documents
    I get prompted for usernames and password again if I cancel the credentials box the document opens with no issues. 
    Below is some of the steps i have taken
    - Tried opening other non office documents (e.g. PDF, JPEG) and they open with no issues
    - Tried to opening the word documents with a system that only had word pad install and not Office 2010 and the documents open with no issues so it looks like it's an office 2010 problem 
    Can you please advise how I can resolve this issue and if this is a client issue or an issue on the web server thanks

    Hi,
    This issue is caused by the Office suit itself. When Internet Explorer opens an Office document, the appropriate Office application is started with the path of the document. The Office application then tries to access the document directly from
    the server. This differs from other browsers and other file types. Most browsers download the file and call the application to open the file from the local cache. However, when this occurs, if the opened file is changed and saved,
    the changes are only made to the local copy and not to the server copy.
    To establish the richest experience possible, the first thing that the Office application does is communicate with the server to determine the server type and what web authoring protocol is available. The application does this by making
    an OPTIONS request directly to the server.
    As a new process accessing the server, the Office application is required to renegotiate authentication. This method is more secure than a method in which the new process uses an existing authentication that was established by the browser. 
    Please try the following methods:
    An alternative with full functionality but with a calculated risk
    Client approaches that can reduce the impact
    Alternative configurations when the web server does not support DAV or reduced functionality is acceptable
    For more detail information, please refer to the following link:
    http://support.microsoft.com/kb/2019105/en-us
    Thanks
    George Zhao
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click "[email protected]"

  • Prompt for username and password when executing servlet

    In Weblogic 5.1 when I set the username and password in weblogic.properties file, it prompts for the usertname and password when I execute the gatewayServlet
    weblogic.allow.execute.weblogic.servlet.servlets/gateway.administration=vijay
    weblogic.password.vijay=password
    But I guess this is not the way it can be implemented in 8.1. Please let me know how I can prompt for username and password when executing the servlet. I dont want it to be done programatically. Please let me know whether I can set anything on the properties file.
    Thanks
    Vijay Subramanian

    You can use Apache ACLs, http://httpd.apache.org/docs/1.3/howto/auth.html
    GoodEvening!
    I'm developing a web application using jsp
    technology.
    When the user digit:
    http://<machine address>:<port>/<applicationName>
    I would that a browser prompt login is diplayed to
    the user for enter him username and password,
    before loading the index.jsp page. Is possible
    without using awt or swing components?! using only
    the browser's prompt dialog?!
    p.s.
    sorry 4 my bad english! ;-)

  • Outlook 2013 - Exchange 2013 - Prompts for username and password when EWS basic authentication is enabled

    So we have an Exchange 2013 environment, and a CRM solution that requires basic authentication to EWS internally.  Problem is, after a reboot of our Exchange server, all of our Outlook clients begin prompting for username and password (which nothing
    works) which also starts locking users AD accounts out due to failed login attempts (somehow).  If I disabled basic authentication on EWS, Outlook authenticates as normal using NTLM and there are no issues.  Once Outlook has authenticated, I can
    turn back on basic authentication, and Outlook will be fine until the next time the Exchange server is rebooted.
    Any ideas?

    Hi,
    According to your description, I understand that Outlook client prompted for username and password when Exchange server restart and basic authentication is enabled for EWS.
    If I misunderstand your concern, please do not hesitate to let me know.
    It’s normal. This caused by the difference between basic authentication and NTML authentication:
    Basic, with any version of Outlook prior to 2010, results in a pop up dialog asking for creds. Outlook 2010 makes the 'save this password' actually work, so in an Outlook 2010 or later world, Basic can mean no need to authenticate every time you open/reconnect,
    but in all earlier versions, you will have to enter creds every time.
    NTLM, when used by a client that is domain joined and logged in with cached creds, results in the client simply sending the cached in creds to the server, resulting in what looks like a pretty seamless single sign on experience. However, if you want to do pre-authentication
    at something like TMG, and not let the traffic go all the way to CAS, you need to configure TMG for this.
    Thanks
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Allen Wang
    TechNet Community Support

  • Dynamic command execution fails in Crystal report viewer for parameters

    We are using the Crystal Report Viewer for the .Net Application on the client side.The reports are designed using Crystal Report XI R2.
    The issues that we are currently encountering is that, we are unable to load the combo-boxes in the pop-up for the parameters.
    All the reports have multiple commands and the variables are of 'dynamic' type.
    When the dialog box for requesting the pop-up comes up, It comes up empty even though they are linked to the respective commands.
    Also,For reports having multiple parameters we are unable to give a single dialog box to get in all the parameters.It appears as a series of prompts.
    Both,these issues are not encountered when the reports are launched via the Crystal reports developer tool.

    Hello Varun,
    I recommend to post this questionin the [dedicated NET forum|SAP Crystal Reports, version for Visual Studio;.
    This forum is monitored by qualified technicians and you will get a faster response there.
    Thank you for your understanding,
    Falk

Maybe you are looking for

  • Mail can't find IMAP mailboxes after server upgrade from 10.3- 10.4

    For the past several years I've been running an IMAP server on my home network to allow me to keep all my mail in synch no matter which of my Macs I'm accessing mail from. (Bernard Teo's Postfix Enabler has been an amazing tool. See: http://cutedgesy

  • Can Sound Blaster live 24bits external work at usb2

    hello! my pc work with usb2.0 and i would like to know to now if usb. connection of sound blaster li've 24bits, can work at 2.0 or, if there are any update that make it work at 2.0? i would appreciate a answer. thank you.Message Edited by jhonyy00 on

  • Stuck at Mac OS X

    After the upgrade of 10.4.9 combo, my PowerBook G4 cant start up. I have did the archieve and install, did the repair disk, but still cant get thru the Mac OS X screen. Any idea please. thanks

  • Customer master-idoc issue

    Hai gurus, the scenario is that ours is a sender system and other is receiving system. customer master data is sent form our system and other receives it. what happened here is idoc is sent to the other system and data went to other system is incorre

  • Error 1014: Class flash.filesystem::FileStream could not be found.

    VerifyError: Error #1014: Class flash.filesystem::FileStream could not be found. at [verify] at global$init() at _Wizardv2WatcherSetupUtil$/init() at mx.managers::SystemManager/private::docFrameHandler() at [execute-queued] This an AIR application, w