A CR XI and VB2005 Database Login issue

Greetings,<br /><br />I have reviewed prior threads and to no avail. Here is the situation. I have developed two applications. Both use Access 2000 datbases, Visual Basic 2005, and Crystal Reports XI Developer edition.<br /><br />Both applications use the same code. One application works, generating a report and the other pops up the &#39;Database Login&#39; screen.  I am new to the programming and obiviously this stumps the bits and bytes out of me. <br /><br />Here is the code from the NON-working application.<br /><br /><br />Imports System.Configuration<br />Imports System<br />Imports System.ComponentModel<br />Imports CrystalDecisions.CrystalReports.Engine<br />Imports CrystalDecisions.Shared<br /><br />Public Class frm_Report<br />    Private r As ReportDocument<br /><br />    Private Sub Form3_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load<br />        loadreport()<br />    End Sub<br /><br />    Sub loadreport()<br />        r = New ReportDocument<br />        r.Load(glbReportName)<br /><br />        Dim crConnectionInfo As New ConnectionInfo()<br />        With crConnectionInfo<br />            crConnectionInfo.ServerName = glbDatabaseName<br />            crConnectionInfo.ServerName = glbRetirementDatabaseName<br />            crConnectionInfo.ServerName = glbSupportDatabaseName<br />        End With<br /><br />        Dim myTable As CrystalDecisions.CrystalReports.Engine.Table<br />        Dim myLogin As CrystalDecisions.Shared.TableLogOnInfo<br />        For Each myTable In r.Database.Tables<br />            myLogin = myTable.LogOnInfo<br />            myLogin.ConnectionInfo = crConnectionInfo<br />            myTable.ApplyLogOnInfo(myLogin)<br />        Next<br />        CrystalReportViewer1.SelectionFormula = glbSelectionFormula<br /><br />        CrystalReportViewer1.ReportSource = r<br />    End Sub<br />End Class<br /><br /><br />Thanks for any pointers, comments, hints, or anything....

Please re-post if this is still an issue to the .NET Development - Crystal Reports Forum or purchase a case and have a dedicated support engineer work with you directly

Similar Messages

  • CR Database Login Issue

    Hi All,
    All other reports such as AR Invoice, Credit Note etc etc work without issue but when i try to preview an Outgoing Payment document i get a Database login window- but this window has the Server Name and database fields greyed out so no chance to change them.
    Even if I put the sa password on it says u201CLogin Failedu201D
    I have reinstalled CR 2008 with Fix but still no luck.
    SAP 8.81 PL6
    Regards,
    MB

    Hi
    if you've tried to install the Crystal Report SP 4
    http://resources.businessobjects.com/support/additional_downloads/runtime.asp
    Regards
    ang sukarno

  • Hyperion Reports 11.1.2.2 database login issue

    HI ,
    We are on Hyperion reports v11.1.2.2 , for some reason whenever user logged in and try to pull the report ..it is prompting for database user credentials for first time(first report).
    After that it wont ask for any other report. How to avoid this prompt?? ..is there anyway that we can save password forever, ...so it wont ask for each login. or is there anyway that we can pass the login credenitials of workspace to even for database.
    Did anyone faced this issue.?? Can you please post your experineces on this..
    Thanks

    Hi,
    11.1.1.3 and 11.1.2.3 are totally different in many aspects. Again there are various factors which decide the performance like  OS, DB, App Server, Web Server and Component level. So its hard to forecast the performance even before we get in to the the environment. In general unlike your 11.1.1.3 there are so many performance tuning parameters we have in 11.1.2.3.
    Regards,
    Nowshad.

  • FIM Reporting and SCSM Database Query Issue

    Hello,
    We have been having issues with FIM Reporting, the ETL Process for some reason seems to be failing, we further drilled down and found that there was a SQL Query running on the SCSM database Server for a very long time.
    "CREATE PROCEDURE dbo.[p_GroomManagedEntity]  (      @TargetId uniqueidentifier,      @RetentionPeriodInMinutes int,      @GroomingCriteria nvarchar(max),      @BatchSize int  )
     AS  BEGIN      DECLARE @LastErr int;      DECLARE @RowCount int = 1;      DECLARE @TotalRowCount int = 0;      DECLARE @RetentionDateTime DATETIME;      DECLARE @SelectEntitiesToBeGroomedStmt
    nvarchar(max);      DECLARE @CoreDeleteTypedEntitiesTable TypedManagedEntityType;      DECLARE @TimeGenerated DATETIME = getutcdate();      DECLARE @Command nvarchar(MAX)      DECLARE @GroomHistoryId
    bigint      DECLARE @Comment nvarchar(max);          SET @Command = N'Exec dbo.p_GroomManagedEntity ' + CAST(@TargetId AS nvarchar(40)) + ', ' + CAST(@RetentionPeriodInMinutes  AS nvarchar(10)) +
    ', ' + CAST(@GroomingCriteria  AS nvarchar(100)) + ', ' + CAST(@BatchSize AS nvarchar(10))         -- Call the grooming history insert sproc       EXEC @LastErr = dbo.p_InternalJobHistoryInsert @Command,
    @GroomHistoryId OUT      IF @LastErr <> 0          GOTO Err;        CREATE TABLE #BaseManagedEntitiesToDelete      (          BaseManagedEntityId uniqueidentifier
         );          -- Figure out the retention datetime      SELECT @RetentionDateTime = DATEADD(mi, -@RetentionPeriodInMinutes, getutcdate())        -- Execute the grooming filter statement,
    hence populate the table variable, with "BatchSize" many entities.      WHILE (@RowCount > 0)      BEGIN          INSERT #BaseManagedEntitiesToDelete EXEC sp_executesql @GroomingCriteria,
    N'@Retention DATETIME,@TargetTypeId uniqueidentifier,@NumOfEntities INT',                   @Retention = @RetentionDateTime, @TargetTypeId = @TargetId, @NumOfEntities = @BatchSize;          
     SELECT @LastErr = @@ERROR, @RowCount = @@ROWCOUNT;          IF @LastErr <> 0              GOTO Err;                    IF (@RowCount >
    0)          BEGIN              -- Convert the BMEIds to TMEIds.              INSERT @CoreDeleteTypedEntitiesTable              SELECT
    TME.TypedManagedEntityId              FROM #BaseManagedEntitiesToDelete D              JOIN dbo.TypedManagedEntity TME                  ON D.BaseManagedEntityId
    = TME.BaseManagedEntityId              WHERE TME.IsDeleted = 0;                                       SELECT @LastErr = @@ERROR;
                 IF @LastErr <> 0                  GOTO Err;                                --
    Use existing DDP code to delete the instances captured in the temp table.                  EXEC @LastErr = dbo.p_DDPWrapperForGroomManagedEntity @TimeGenerated, @CoreDeleteTypedEntitiesTable;      
           IF @LastErr <> 0                  GOTO Err;                                TRUNCATE TABLE #BaseManagedEntitiesToDelete;
                 SELECT @LastErr = @@ERROR;              IF @LastErr <> 0                  GOTO Err;          END
                       SET @TotalRowCount = @TotalRowCount + @RowCount;      END            -- Call the grooming history insert sproc to update status to success
         SET @Comment = N'BaseManagedEntity: ' + CAST(@TotalRowCount AS nvarchar(10))      EXEC @LastErr = dbo.p_InternalJobHistoryUpdate @GroomHistoryId, 1, @Comment      IF @LastErr <> 0      
       GOTO Err;        RETURN 0        Err:        -- Call the grooming history insert sproc to update status to failure.      SET @Comment = N'BaseManagedEntity: ' + CAST(@TotalRowCount
    AS nvarchar(10))      EXEC @LastErr = dbo.p_InternalJobHistoryUpdate @GroomHistoryId, 2, @Comment      IF @LastErr <> 0          GOTO Err;        RETURN 1  END"
    Can somebody advise on what this query is really about and what is its fuction, we are thinking of killing this query since it has been running for a very long time, will that hamper or cause the database to corrupt.
    Rgds,
    Abhishek.

    Vijay,
    Thanks for you reply.
    I figure out a related bug:
    Bug 12859472: Cannot browse store procedure in case-sensitive MS SQL Database
    There are two possible workarounds:
    1. Use a database name with capital letters
    2. Do not use stored procedures, but access the tables directly.
    The notes on the Bug ticket describes that the issue would be scheduled to be fixed in PS7 which is 11.1.1.8.
    Cheers!
    Leandro.

  • N8 facebook and twitter constant login issue (PR1....

    I have to continuously log into my facebook and twitter accounts using the Social app for my N8.  It auto logs into my ovi account, although I do have to actually click the login button, which is dumb...why not a feature to autologin to facebook and twitter?
    Usually I have to re-login after I reboot my phone...but not always.
    Wasn't PR1.1 supposed to have an updated social app?  Whats different?

    well thats because you logout!! if you hit exit instead of logout then you won't have that problem. i use it myself everyday, and havent had to login since the first time i typed in my ID and Pass...
    Nokia N80
    Nokia N82
    Nokia N97
    Nokia N8 Dark Gray- RM-596

  • Login issues resolved...

    We believe we have found and resolved the login issues users have been experiencing. Please let us know if you are still having problems.
    Thank you for your patience.
    Brett L
    Apple Discussions Host

    I'm hoping you see this Brett, but the login issue has shown up again. My original ID will not longer sign in, it directs me to the create account page. But I already have done this back in 2005. I'm just hoping it is a server side issue. Also if I continue to have this issue, is this the place to go or is there a support area for this.
    Here are my posts about this.
    http://discussions.apple.com/thread.jspa?threadID=1336246&tstart=0
    Message was edited by: ugadawg94#2

  • EM database control -login issue.

    This is my emctl status.
    C:\Documents and Settings\psoftadmin>emctl status dbconsole
    Oracle Enterprise Manager 10g Database Control Release 10.2.0.1.0
    Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.
    http://innov3.hexchn.local:5501/em/console/aboutApplication
    Oracle Enterprise Manager 10g is running.
    Logs are generated in directory E:\oracle\product\10.2.0\db_2/innov3.chn.local_AATST/sysman/log
    I tried the url provided above and i got the default database control login page for my particular instance say as AATST
    I entered sys/sys as sysdba and clicked the login button and page is not at all moving .. i am still in the same page and i could see the same URL appened with # after clicking the login button. No errors displayed.
    What is the username and password i need to give. is there any browser issue.
    Can someone please help me to solve this issue.

    Have you successffully used this login before or this is the firrst time you are trying it?
    Have a look at the following log files for any related errors:
    E:\oracle\product\10.2.0\db_2/innov3.chn.local_AATST/sysman/log/emoms.log
    E:\oracle\product\10.2.0\db_2/innov3.chn.local_AATST/sysman/log/emoms.trc
    E:\oracle\product\10.2.0\db_2/innov3.chn.local_AATST/sysman/log/emagent.log
    E:\oracle\product\10.2.0\db_2/innov3.chn.local_AATST/sysman/log/emagent.trc

  • Parameters and database login with Web Services SDK

    I need to know how to do the two most common report tasks through the Web Services interface to Crystal Reports Server 2008:
    How do I get a list of a report's parameters and set the parameter's values?
    How do I set the database login information?
    I have considerable experience with writing custom web interfaces for Business Objects Enterprise with .NET, but now we're supposed to use web services instead of Enterprise services, especially when writing Windows forms apps. The official line is that writing thick client apps using Enterprise services is "possible but not supported." I can't seem to find the equivalent to the .Parameters property in Web Services.
    The tutorials for Web Services aren't much help. The BIPlatform examples show how to schedule a report without parameters and without setting the database login, but this isn't much help in the real world. The ReportEngine tutorial was apparently written by someone else, and is little or no help.
    This seems like such a simple question, but I have wasted an entire day and am no closer to the answer.

    I think the following resources will help:
    https://wiki.sdn.sap.com/wiki/display/BOBJ/GettingStartedwiththeWebServicesSDK
    http://help.sap.com/businessobject/product_guides/xir2PP/en/qaaws.pdf
    http://devlibrary.businessobjects.com/BusinessObjectsXIR2SP2/en/en/WS_SDK/wssdk_server/default.htm
    Also, see this forum thread:
    Web Services SDK secLDAP
    Ludek

  • Ovi Download and Login Issue

    "Ovi Download and Login Issue" i have nokia 5530xm, I am unable to login through ovi app it says sign in failed check your username and password. And when i browse the web it logs in but when itry to download it take back to main page. Please light on this issue. Thanks for help.
    If you like my post or think it was useful then please hit the star button. Thanks :-)

    now whenever i plug in my ipod to sync i get an offer to download and install or just download a something for itunes that i am not quite sure what it is.
    hmmm. can you post a screenshot of the box containing the offer?
    there's instructions on how to do that in the following user tip:
    hudgie: Taking screenshots to help with problems

  • CR XI R2 "Database Login Failed" Recycled application pool and now it works

    Hello,
    I have a web application using CR XI R2 that has several reports which are pushed a dataset.  These reports have been runing fine until today when I received an error stating "Database login failed."  "Object reference not set to an instance of an object" in the report viewer control. 
    I recycled the application pool and the reports started working again. 
    My questions are:
    What could be the cause of this and how can it be avoided?
    Why does recycling the application pool correct the problem?
    Regards.

    Hi Tom,
    Recycling keeps problematic applications running smoothly, especially when it is not feasible to modify the application code. Recycling helps ensure that problematic applications do not cause other applications to fail, and that system resources can be recovered from unhealthy applications.
    Recycling an application pool causes the WWW service to shut down all running worker processes that are serving the application pool, and then start new worker processes. Whether the WWW service starts the new worker processes before it stops the existing one depends on the DisallowOverlappingRotation property in the metabase. Recycling an application pool does not alter any state in HTTP.sys or change any configuration in the metabase.
    Note:
    When an application pool is serviced by more than one worker process, the recycle operation is staggered in some scenarios. Only when a worker process is recycled on demand or when all of the worker processes hit their memory limits at the same time would they be restarted simultaneously.
    For more info regarding this have a look to this [article|http://blogs.msdn.com/david.wang/archive/2006/01/26/Thoughts-on-Application-Pool-Recycling-and-Application-Availability.aspx]
    Regards,
    Shweta

  • Upgraded from 3.0 to 3.1 and have login issues

    I have a simple application that I have developed that requires a login. When I was using 3.0 there was not problem, but now with 3.1 when I first attempt to log in I get the error message below in the error log. When I do a back and try to login again, everything is fine. I can recreate the problem every time by logging out, trying to log in for the first time (getting the error), clicking the back button and then logging in again. The second time I get right in. Below is the version and the error message from the log. Has anyone encountered this behavior before?
    Version: 3.1.0.00.32
    [ecid: 73388049620,1] mod_plsql: /apex/㽦㵰ã±ç°±1 HTTP-404 㽦㵰ã±ç°±1: PROCEDURE DOESN'T EXIST
    Thanks in advance,
    Chris

    Chris,
    Does the login page to the development environment work properly?
    Answer -> This is development. I just started working with APEX so nothing is in production.
    I meant the Application Express development tools like the Application Builder, which require you to exercise a login page.
    Does this one application that fails also fail if you install it into apex.oracle.com and run it there?
    Answer -> I have not tried to do this.
    You may wish to do this to gather more data about the problem.
    What is different between this failing application and other applications you have developed that do not fail?
    Answer -> This is my first application. It started as soon as I upgraded from 3.0 to 3.1
    I guess this was too subtle a suggestion that you should collect more data about the problem so that you could state, for example, that all developed applications fail in this way or that only one fails, etc.
    Who created that DAD? It's very non-standard -- you have a custom documents table and procedure and you aren't using the standard public user like APEX_PUBLIC_USER to connect.
    When you navigate to Home>Administration>About Application Express, this is the "About Application Express" page I meant. Is that giving you this error (?):
    Not Found
    The requested URL /apex/㽦㵰〱簱1 was not found on this server.
    Oracle-HTTP-Server/1.3.28 Server at oraweb2.nabp.net Port 7778
    What is the database version and edition (xe or otherwise) ?
    You may wish to open an SR with Oracle Support as something is very damaged in your installation.
    Scott

  • SCOM OperationsManager database login error 34502 and 4513

    Hi!
    At a customer I get a lot of events in the SCOM log about that the scom_dw account can not login into OperationsManager db.
    I get first one 34502 event:
    An error related to user rights was detected during the database connection process.
    Exception: Cannot open database "OperationsManager" requested by the login. The login failed.
    Login failed for user 'SCOM\scom_dw'.
    Workflow name: Microsoft.SystemCenter.Apm.DataTransferRule
    one minutes after that i get e 4513 event:
    The callback method DeliverDataToModule failed with exception "Cannot open database "OperationsManager" requested by the login. The login failed." in the module Microsoft.EnterpriseManagement.Modules.Apm.ServerModules.APMComputerSynchronizer.
    Workflow: Microsoft.SystemCenter.Apm.APMComputerSynchronizerRule
    Instance: Operations Manager Management Group
    Instance ID: {6B1D1BE8-EBB4-B425-08DC-2385C5930B04}
    Management Group: SCOM
    Full Exception Text:
     System.Data.OleDb.OleDbException (0x80004005): Cannot open database "OperationsManager" requested by the login. The login failed.
    The account 'SCOM\scom_dw' can login into OperationsManager database and this event we only get from the
    Microsoft.SystemCenter.Apm.DataTransferRule and
    Microsoft.SystemCenter.Apm.APMComputerSynchronizerRule. How can i resolved this problem? I don't want to have all this errors in the SCOM log.
    //Mats A

    Hi,
    It is recommended to analyze SQL bottle neck.
    Please also check under Operations Manager - > Security -> Schemas -> APM -> Properties ->
    apm_datareader and apm_datawriter database roles
    Please try grant the following permissions to those roles:
    OperationsManager
    apm_datareader - Execute, Select
    apm_datawriter - Delete, Insert, Update
    OperationsManagerDW
    apm_datareader - Execute, Select
    apm_datawriter - Delete, Insert, Update
    Notice, before changing the database, please first backup your database.
    Regards,
    Yan Li
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.

  • Login issues with zen 11.2.4MU1 and laptops

    Hello,
    We have been having issues all school year with laptops and logging in. They will get the log in screen to log in to the realm, or they will get the windows log in screen (like they did not have the dlu policy). I have every one up to 11.2.4.MU1 and am still having issues. When I go to the message log in the zenworks control panel for the device, I get the following errors:
    "Could not download content for bundle, Windows Group Policy, because the ZENworks Server is not accessible."
    I only get this on the laptops, so this has to be something with the way this is working with our wireless. There is no rhyme or reason that I can see as to when this happens. The only things I can tell you is:
    1. This happens only on the laptops connecting with wifi
    2. Usually happens when the laptop is first booted up.
    3. The laptops are assigned a dlu user policy. This policy creates a user (GSStudent). This user is volatile and is cached for 1 day. This users is also a local machine administrator.
    4. We have a separate nss volume that the content repo directory sits on ( I am not sure if this is causing the issues or not, I read somewhere there were problems with this).
    5. Logging in as a local user and running zac cc temporarily fixes the issue.
    I am at a loss here and am looking for some type of guidance that would point me to the solution. Any help would be appreciated!
    Doug

    Support,
    OK, this is a sheer guess, but I wonder if
    http://support.microsoft.com/kb/305293 might help
    Shaun Pond
    newly reminted as a Knowledge Partner

  • IChat 4, Kerberos and login issue

    When using Kerberos I can get a ticket for the connection, but after the ticket exchange I get prompted for another authentication request with ID and password.
    In the iChat server log I get the entry:
    Apr 14 16:47:59 <servername> jabberd/c2s[76194]: GSSAPI Error: Unspecified GSS failure. Minor code may provide more information (Wrong principal in request)
    Anybody an idea?

    Yes, it is. FQN.
    I think a part of the issue is, that we use DNS Service entries.
    The machine has "server<xyz>" as DNS name. The chatserver uses the DNS service entry "chat<xyz>" with its own ip. "chat<xyz>" is set in the server admin.app, I added a xmpp/chat<xyz> princial to kerberos and the ticket is issued when I try to connect with ichat.
    Usernames used are <username>@chat<xyz>. These usernames work when kerberos is turned of (normal connection to 5223/ssl).
    Now, if I turn kerberos on, and leave the ichat server setting in ical client to chat<xyz> and but switch the usernames to <username>@server<xyz> I can log in via Kerberos. (In the case that I add chat<xyz> and server<xyz> to the ichat server Host Domains in server admin.app.
    Bit confusing.

  • Missing DataBase Login information for deployed VS2008 w/Crystal Report

    I'm creating a Windows Form application using VS2008 Pro and the basic Crystal Reports (included).</br></br>
    I've successfully added a crystalreportviewer control and a crystal report (.rpt) to my form. I've written the following code in the code behind to programmatically load/bind the report to the viewer. Everything works fine on my development machine (or any machine that has Visual Studio installed). Where I'm encountering problems is when I deploy the application to a machine that does not have VS installed (I have downloaded and installed the "Crystal Reports Basic for Visual Studio 2008 Redistributable Package" for the appropriate processor type on this non development machine) that I'm getting an error . It prompts for "DataBase Login". The ServerName, LoginID and Password are all there, but the "DataBase" field is empty and disable for user input.</br></br>
    Why is the DataBase information missing? How can I solve this problem?</br></br>
    (On a side note, I vaguely remember a property for enabling/disabling the prompting of the database login. I can't remember where this was again to double check if that is the culprit. But I'm pretty sure that I did mark it as to not prompt, since it's supplied in the code behind. Plus it doesn't prompt on the development machines. Only on the non-development machines).</br></br>
    Any help is greatly appreciated! Thanks.</br></br>
    The code executed in the PageLoad event of the form.</br></br>
    this.crystalReportViewer1.RefreshReport();</br>
                ReportDocument reportDocument = new ReportDocument();</br></br>
                #region Load Parameters</br></br>
                ParameterFields paramFields = new ParameterFields();</br></br>
                for (int i = 0; i < _parameterName.Length; i++)</br>
                {</br>
                    ParameterField paramField = new ParameterField();</br>
                    paramField.ParameterFieldName = _parameterName<i>;</br>
                    ParameterDiscreteValue discreteVal = new ParameterDiscreteValue();</br>
                    discreteVal.Value = _parameterValues<i>;</br>
                    paramField.CurrentValues.Add(discreteVal);</br>
                    paramFields.Add(paramField);</br>
                }</br></br>
                crystalReportViewer1.ParameterFieldInfo = paramFields;</br></br>
                #endregion</br></br>
                #region Load Report</br></br>
                string reportUrl = "";</br></br>
                string exePath = Application.ExecutablePath.ToString();</br>
                exePath = exePath.Remove(exePath.Length - 18, 18);</br>
                exePath += _reportName + ".rpt";</br>
                reportUrl = exePath;</br>
                reportDocument.Load(reportUrl);</br>
               #endregion</br></br>
               reportDocument.SetDatabaseLogon("myUserName", "myPassword", "myServer", "myDataBase");</br></br>
                crystalReportViewer1.ReportSource = reportDocument;
    </br></br>
    Edited by: mtech8 on Jan 9, 2010 3:03 PM. Corrected formatting issues to make post readable.

    HI. Ludek,
    Thanks for the tips. I tried both, but the problem presists.
    On a side note, I did get my hands on yet another "non-development machine". This one ran with Window's Vista appeared to work (even with my original code).
    The "non-development machines" that I've tested on are Windows 7 and Window XP machines. On these machines, when I commented out the reportDocument.SetDatabaseLogon line, when I try to load the report, it still prompts for the Database Logon information, however, it also has the "Database name" empty and disabled.
    Since it worked on a non-development machine with Win Vista. I don't think there is a problem with references or the Crystal runtime packages.
    As far as permission for the report to contact the database, I'm guessing there isn't a problem there either because the application does successfully connect to the database.
    I'm connecting to a SQL2005 database and using the SQL Native connection.
    On a side note: as for the enabling prompting, I just remembered that it was an option available when using Crystal Reports with a web project. Thus I couldn't find it here with a Window's Form project.

Maybe you are looking for

  • Can you remove the "View All RSS Articles" and Counter in Bookmarks Bar?

    Hi There. I have a folder/drop down menus called "MyMix" in the Bookmarks Bar with several subfolders of pages I like to visit regularly. It's a silly thing but I get tired of the climbing counter of RSS articles in parentheses that sits next to it.

  • PO header Status tab details

    Hi All, in the purchase order header you find a tab status. This has values like Not Delivered, Partially Delivered and Full Delivered. I wonder how this status is set. Is it determined all the time you enter the transaction or is it stored in a data

  • PAPI Web Service (PAPI-WS) Example for Oracle BPM Enterprise Standalone

    Here is the location of a step-by-step explanation on how to use PAPI Web Service (PAPI-WS) to create a work item instance and then run the instance inside an activity in a process running on Oracle BPM Enterprise Standalone. http://www.4shared.com/f

  • How to create Web Service Client from wsdl with digital signature?

    Please, help me to create Web Service Client from wsdl with digital signature. I know create Web Service client from wsdl file and I know how to add digital signature to XML with jwsdp, but I don't know how to do it together. Thanks.

  • Strange Server 2012R2 Networking Disconnect On Reboot Issue

    Strange issue. Server 2012R2, Dell R710, Broadcom BCM5709C eth adapters. 2 of the adapters are on a LAG for hyper-v. 1 is not connected, 1 is connected for management.  Every time the server reboots, the management interface does not connect. The onl