TableAdapter Configuration Wizard Bind Commands

I am trying to use the TableAdapter Configuration Wizard to bind Insert and Update strored procedures to a Select stored procedure. When I choose the select stored proc, the list of data columns should appear on the list but nothing happens (it's not searching or anything). The select stored procs takes no other params (exept the Out sys_cursor) and returns 7 columns (string, string, string, datetime, string, int32, int32) nothing fancy. I want to do this to associate Insert and update parameters to specific columns for datagrids updates.
I am using:
VS 2010 Pro sp1
Oracle Developer Tool for vs 11.2.0.2.0
Oracle client 11.2.0.2.0
Oracle database 11.2.0.2.0
ODP version 11.2.0.2.1
Note: When I drag the stored proc on the dataset gui, I get all the columns.
Any help would be greatly appreciated.
Thank you

Hi Fabs,
According to your description, this issue is related to MYSQL. I am afraid this is out of our support. I would suggest that you could ask this issue in their official forum. Here is the link,
http://forums.mysql.com/
Thanks for your understanding.
Best regards,
Kristin
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey.

Similar Messages

  • TableAdapter Configuration Wizard doesn't play nice w/explicit DataSource?

    I am having problems using the TableAdapter Configuration Wizard with a non-schema-owner account in a connection string that explicitly defines the data source. The following are the different combinations I've tried, some of which work, some of which do not:
    Scenario #1: If we define a connection string and specify the schema owner's username and password (which we do NOT want to do), and an explicit data source (which we DO want to do), such as the following:
    <add name="SchemaOwnerConnStr"
    connectionString="USER ID=THIS_SCHEMA_OWNER;PASSWORD=thisOwnerPassword;DATA SOURCE=(DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = our.database.server.com)(PORT = 1521))(LOAD_BALANCE = yes)(CONNECT_DATA = (SERVER = DEDICATED)(SERVICE_NAME = the.service.name) ))"
    providerName="Oracle.DataAccess.Client" />
    ...then the TableAdapter Configuration Wizard works as expected:
    * I choose SchemaOwnerConnStr on the first screen of the Wizard
    * On the "Enter a SQL Statement" screen of the wizard, I can click on the "Advanced Options" button and mark the checkboxes for "Generate Insert, Update and Delete statements" and "Use optimiztic concurrency"
    * On the "Choose Methods to Generate" screen of the wizard, I can mark the "Create methods to send updates directly to the database" checkbox, so it will automatically create Insert, Update, and Delete methods for me.
    Scenario #2: If we define a connection string using Window's Authentication (which we DO want to do), and provide a TNS name (which we do NOT want to do) as the DataSource:
    <add name="MyTNSConnStr" connectionString="USER ID=/;DATA SOURCE=MyDB" providerName="Oracle.DataAccess.Client" />
    ...it works just fine:
    * I choose MyTNSConnStr on the first screen of the Wizard
    * On the "Enter a SQL Statement" screen of the wizard, I can click on the "Advanced Options" button and mark the checkboxes for "Generate Insert, Update and Delete statements" and "Use optimiztic concurrency"
    * On the "Choose Methods to Generate" screen of the wizard, I can mark the "Create methods to send updates directly to the database" checkbox, so it will automatically create Insert, Update, and Delete methods for me.
    Scenario #3: If we define a connection string using Window's Authentication (which we DO want to do), and provide an explicit DataSource (which we DO want to do):
    <add name="MyExplicitConnStr" connectionString="USER ID=/;DATA SOURCE=(DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = our.database.server.com)(PORT = 1521))(LOAD_BALANCE = yes)(CONNECT_DATA = (SERVER = DEDICATED)(SERVICE_NAME = the.service.name) ))"
    providerName="Oracle.DataAccess.Client" />
    This does NOT work as expected:
    * I choose MyExplicitConnStr on the first screen of the Wizard
    * On the "Enter a SQL Statement" screen of the wizard, I can click on the "Advanced Options" button and mark the checkboxes for "Generate Insert, Update and Delete statements" and "Use optimiztic concurrency"
    * On the "Choose Methods to Generate" screen of the wizard, I can NOT mark the "Create methods to send updates directly to the database" checkbox -- it is greyed out!
    Scenario #4: If we define a connection string using a non-schema-owner's username and password (which under certain limited conditions we DO want to do), and provide an explicit DataSource (which we DO want to do):
    <add name="NonSchemaUser_ConnStr"
    connectionString="USER ID=OTHER_USERNAME;PASSWORD=thePassword;DATA SOURCE=(DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = our.database.server.com)(PORT = 1521))(LOAD_BALANCE = yes)(CONNECT_DATA = (SERVER = DEDICATED)(SERVICE_NAME = the.service.name) ))"
    providerName="Oracle.DataAccess.Client" />
    This does NOT work as expected:
    * I choose NonSchemaUser_ConnStr on the first screen of the Wizard
    * On the "Enter a SQL Statement" screen of the wizard, I can click on the "Advanced Options" button and mark the checkboxes for "Generate Insert, Update and Delete statements" and "Use optimiztic concurrency"
    * On the "Choose Methods to Generate" screen of the wizard, I can NOT mark the "Create methods to send updates directly to the database" checkbox -- it is greyed out!
    Scenario #5: I use the exact same connection string as in Scenario #4, expect I change it to use the TNS name for the Data Source:
    <add name="NonSchemaUser_TnsConnStr"
    connectionString="USER ID=OTHER_USERNAME;PASSWORD=thePassword;DATA SOURCE=MyDb"
    providerName="Oracle.DataAccess.Client" />
    ...this DOES work:
    * I choose NonSchemaUser_TnsConnStr on the first screen of the Wizard
    * On the "Enter a SQL Statement" screen of the wizard, I can click on the "Advanced Options" button and mark the checkboxes for "Generate Insert, Update and Delete statements" and "Use optimiztic concurrency"
    * On the "Choose Methods to Generate" screen of the wizard, I CAN mark the "Create methods to send updates directly to the database" checkbox, so it will automatically create Insert, Update, and Delete methods for me.
    The ONLY difference between Scenario #4 and Scenario #5 is that for #5 I used the TNS name for the data source. The explict data source defined in Scenario #4 is an exact cut-and-paste out of my tnsnames.ora file for the definition of "MyDb" -- so there should be absolutely no difference between #4 and #5 -- yet with #4, the checkbox is greyed out.
    I can get the same inconsistent results if I do the WinAuth connection string with again the only difference being the Data Source (explicit, or TNS name). So the problem doesn't have anything to do with using the "/" authentication method.
    Summary:
    Schema Owner Username/Pass + Explicit Data Source ....... Works
    Schema Owner Username/Pass +TNS Name Data Source ....... Works
    Non-Schema-Owner Username/Pass + Explicit Data Source ....... Does NOT work
    Non-Schema-Owner Username/Pass + TNS Name Data Source ....... Works
    "/" authentication + Explicit Data Source ....... Does NOT work
    "/" authentication + TNS Name Data Source ....... Works
    The two combinations that don't work are the two that we want to use!
    I can't for the life if me figure out what is possibly "wrong" with the combination that isn't working. As I said above, the explicit data source that does NOT work is an exact copy of the definition for the TNS name that DOES work. They should be functionally identical.
    What am I missing here!?
    Thanks.

    hi Michael!
    hmmm. it might be worth checking to see if at least one of the recognition problems is a drive letter issue:
    http://docs.info.apple.com/article.html?artnum=93499
    keep us posted.
    love, b

  • Issue with TableAdapter Configuration Wizard and CASE statements

    I am having an issue with using any CASE statements in the select clause for the Table Adapter Configuration Wizard (TCW).  I can take any query without a CASE and it will run fine, but inserting any CASE statement in the Select such as:
    SELECT
    (CASE WHEN :ras_sort = 'D' THEN TO_CHAR(a.TRANS_DATE,'YYYYMMDD')
      WHEN :ras_sort = 'C' THEN  c.CLAIMDEP_NAME
      WHEN :ras_sort = 'A' THEN  TO_CHAR(a.ACCOUNT_NUMBER)
      END) sort1
    FROM xxxx
    causes the TCW to error with "error in list of function arguments, 'THEN' not recognized" and several other errors.  I have tried with and without parameters in the CASE and have tried both forms of the CASE statement.  I have tried multiple queries, all that run with no problem outside of TCW and ODP, but this seems to be a real issue
    Is this a known problem and are there any workarounds that will allow use of the TCW?
    Thanks,
    Dave

    Hi Ashish,
    perhaps you launch the Web service wizard from the wrong location (i.e. not selecting the SEI you want to use). Did you strictly follow the steps described in the <a href="http://help.sap.com/saphelp_nwce10/helpdata/en/44/f36fa8fd1d41aae10000000a114a6b/frameset.htm">documentation</a> for creating the web service?

  • TableAdapter Configuration Wizard gives error when adding new TableAdapter

    Hi,
    I recently downloaded and installed the ODT for visual studio on my computer. I am running VS2008 on Windows 7 64-bit. I am able to create an ODP.NET connection to the Oracle XE 10.2g instance that is running on my computer with no problems and use that connection to browse the database. When I add a DataSet to my project, and start adding TableAdapters to the DataSet, I am getting errors. In an attempt to figure out what the problem is, I have followed various scenarios. I will describe each scenario, and what the end result is, and then after I have described them all, I will explain what I think the problem might be. Here are the different scenarios I have used:
    Scenario 1:
    From the Server Explorer, highlight ALL of the tables in my schema and drag them to the designer (all table adapters are added with no issues). I can add additional queries to each of the TableAdapters and then change the additional queries by right clicking and choosing "Configure". This all works with no issues. However, on certain TableAdapters, if I try to modify the primary query (Fill,GetData()), I can open the query editor just fine, change various settings, etc, but when I click on "Finish" I get the following error:
    Configure TableAdapter TABLENAME failed.
    Index was outside the bounds of the array.
    Scenario 2:
    From the Server Explorer, drag tables from my schema onto the designer one at a time. Some tables get added just fine, but for the rest of them, I get the following error:
    Failed to merge object(s).
    Index was outside the bounds of the array.
    Scenario 3:
    On the Dataset Designer, add tables one at a time by right clicking and choosing "Add -> TableAdapter" and then using SQL to define the query for each table. Some tables get added just fine, but for the rest of them, I get the following error:
    Failed to add TableAdapter.
    Index was outside the bounds of the array.
    Ok... now that I have described all of the different scenarios, I will explain what I think the problem is, and why. Based on my research, I believe the underlying problem has to do with Foreign Key Constraints on the various tables. While working on Scenarios 2 & 3, the same exact tables worked just fine in both scenarios. When I started looking at the definitions for the tables in my schema, it turns out that all of the tables that failed had foreign key constraints defined. When I remove the FK constraints from a table, I am then able to add it to my dataset and change the default query with no problems. My original application used the System.Data.OracleClient provided by Microsoft. When adding my tableadapters using the microsoft data provider, the FK relations are automatically generated for me in the designer, but not with the Oracle Data Provider
    I would be happy to provide you with the DDL that I used for creating my schema (it is not very big) if needed.
    Thanks,
    Jim

    Sorry let me clarify some of the config a little more.
    MAIL101 - Exch 2013
    MAIL102 - Exch 2013
    AP104 - Witness (strictly a witness nothing else on this machine)
    EDGE01 - Exch 2007 Edge
    CAS01 - Exch 2007 Hub/CAS load balancer for CAS02/03
    CAS02 - Exch 2007 Hub/CAS
    CAS03 - Exch 2007 Hub/CAS
    MBOX01 - Exch 2007 Mail cluster
    MBOX02 - Exch 2007 Mail cluster node
    MBOX03 - Exch 2007 Mail cluster node
    RDC01, RDC02, RDC03 - all 2008 R2 root domain controllers for rootdomain.rootdomain
    DC01, DC02, DC03, DC04 - all 2008 R2 domain controllers for us.rootdomain.rootdomain
    All DCs are Global Catalogs.
    I can ping all DCs and root DCs fromboth MAIL101 and 102
    The Exchange Replication service is running on both MAIL101 and 102.
    DC03 is in the same site as the MAIL101/102 servers so I'll run all replication tests from here.
    DCDIAG comes back with all tests passed.
    repadmin /replsum comes back with 0 fails and no errors largest delta for any intersite communication is 13min.
    When I run Test-ReplicationHealth -Identity MAIL101 and also 102 they both come back as everything passed.  No errors.

  • Cannot use Query Builder in TableAdapter Configuration Wizard

    I am using Visual Studio 2013 and MySQL NET adapter 6.8.3. I have created a WinForms app in VB. I am trying to create a dataset with a table from the MySQL database (named "propworx"). I do the following:
    1. I create a new DataSet.
    2. I edit the DataSet with the DataSet Designer.
    3. I right-click on ANY TableAdapter, and I click "Configure".
    4. I click on "Query Builder".
    I get the following error message:
        The query builder has failed.
         Authentication to host '' for user '' using method 'mysql_native_password' failed with message: Access denied for user
    ''@'Fabs-Work' (using password: NO)
    (In the above, "Fabs-Work" is my computer name.)
    Looking at the error message, I immediately see that the host and user information appears to be missing. But it is in my app.config file:
    <connectionStrings>
    <add name="PropWorx.My.MySettings.PropWorxConnectionString" connectionString="server=localhost;user id=propworx;password=********;persistsecurityinfo=True;database=propworx" providerName="MySql.Data.MySqlClient" />
    </connectionStrings>
    (I have blanked out the password in the above post, but I have indeed double checked it and it is correct).
    The database is hosted locally. I have created a database user in MySQL called "propworx" and have given it full rights.
    Any ideas why Visual Studio Dataset Designer is not reading the info from my settings file?
    Fabricio Rodriguez - Pretoria, South Africa

    Hi Fabs,
    According to your description, this issue is related to MYSQL. I am afraid this is out of our support. I would suggest that you could ask this issue in their official forum. Here is the link,
    http://forums.mysql.com/
    Thanks for your understanding.
    Best regards,
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • DHCP Split-Scope Configuration Wizard showing error "Not enough storage is available to process this command".

    Hi,
    I'm trying to split the DHCP scope between two Servers using the DHCP Split-Scope Configuration Wizard.
    Server one is a VM hosted on Hyper-V and is running Windows Small Business Server 2008 (I think this was previously SBS2003 and was upgraded at some point in time). The whole DHCP scope is currently configured on here.
    Server two is a VMware VM running Windows Server 2012 R2.
    I've installed the DHCP Server role on Server two (2012R2) and authorized the Server. When I launch DHCP Manager, add the SBS2008 Server in the MMC, right click the scope and choose "Advanced > Split-Scope", and then run through the wizard,
    I get as far as the "Percentage of Split" screen, and when I click next I get the error "Not enough storage is available to process this command".
    I've searched online for this particular error message and I've come across articles suggesting AV exclusions are not in place for the DHCP database and files, however in this case the exclusions are definitely in place and I've also tried completely disabling
    AV on both Servers and this made no difference to the outcome.
    I also came across articles suggesting the "IRPStackSize" registry DWORD needed to be added and set to a decimal value of 15 or larger. Again, I've tried adding this and rebooted both Servers but I get the same result.
    Anyway have any ideas?
    Thanks,
    Craig

    Hi Eve,
    No, there were no related events in the event logs. I've since tried splitting the DHCP scope manually but this did not work - the DHCP Server on the SBS would just stop and event: 1053 was displayed when trying to start the service again. I noticed
    that as soon as I de-activated DHCP Server on the 2012 Server then the DHCP Server on the SBS would start again.
    I then found the following in a TechNet article that would suggest I cannot have another DHCP Server on the network if using Small Business Server.
    Notes      
    A DHCP server running Microsoft Small Business Server will not operate if another DHCP server is active on its network.
    Detection of unauthorized DHCP servers requires the deployment of Active Directory Domain Services and the DHCP service. Other DHCP servers do not attempt to determine whether they are authorized by Active Directory Domain Services before offering IP address
    leases.

  • OutOfMemoryError when running Oracle BPM Enterprise's Configuration Wizard

    Hi,
    I was trying to configure Oracle BPM Enterprise via Oracle BPM Admin Center. I left most of the settings to their respective default values; only adding in passwords for the Directory, Engine, etc. However an error was encountered when it is trying to deploy the '01-eng-bpmengine' EAR file. A 'OutOfMemoryError: Java heap space' was logged after running the configuration for a while. Below is the full error log:
    AdmCenterConsole.log
    FuegoLauncher.main()
    fix classpath: C:\OraBPMwlHome\bin;C:\OraBPMwlHome\bin\lax.jar;
    new classpath: C:\OraBPMwlHome\bin\lax.jar;FuegoLauncher.main() - 2
    arg[0] = C:\OraBPMwlHome\bin\obpmadmcenter.properties
    StreamLogOutput: No log file specified in property 'fuego.log.admcenter.file'.
    Defaulting to System.err.
    [<I> 03/03/09 20:54:12]
    [<I> 03/03/09 20:54:12] CLASSPATH=C:\bea\patch_wlw1030\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\bea\patch_wls1030\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\bea\patch_cie660\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\Java\JDK16~1.0_1\lib\tools.jar;C:\bea\WLSERV~1.3\server\lib\weblogic_sp.jar;C:\bea\WLSERV~1.3\server\lib\weblogic.jar;C:\bea\modules\features\weblogic.server.modules_10.3.0.0.jar;C:\bea\WLSERV~1.3\server\lib\webservices.jar;C:\bea\modules\ORGAPA~1.5/lib/ant-all.jar;C:\bea\modules\NETSFA~1.0_1/lib/ant-contrib.jar;
    [<I> 03/03/09 20:54:12]
    [<I> 03/03/09 20:54:12] PATH=C:\bea\patch_wlw1030\profiles\default\native;C:\bea\patch_wls1030\profiles\default\native;C:\bea\patch_cie660\profiles\default\native;C:\bea\WLSERV~1.3\server\native\win\32;C:\bea\WLSERV~1.3\server\bin;C:\bea\modules\ORGAPA~1.5\bin;C:\Java\JDK16~1.0_1\jre\bin;C:\Java\JDK16~1.0_1\bin;C:\oracle\product\10.2.0\db_1\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Common Files\Roxio Shared\DLLShared\;C:\Program Files\Common Files\Roxio Shared\DLLShared\;C:\Program Files\Common Files\Roxio Shared\9.0\DLLShared\;C:\Java\jdk1.6.0_10\bin;C:\apache-ant-1.6.5\bin;C:\bea\WLSERV~1.3\server\native\win\32\oci920_8
    [<I> 03/03/09 20:54:12]
    [<I> 03/03/09 20:54:12] Your environment has been set.
    [<I> 03/03/09 20:54:12]
    [<I> 03/03/09 20:54:12] CLASSPATH=C:\bea\patch_wlw1030\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\bea\patch_wls1030\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\bea\patch_cie660\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\Java\JDK16~1.0_1\lib\tools.jar;C:\bea\WLSERV~1.3\server\lib\weblogic_sp.jar;C:\bea\WLSERV~1.3\server\lib\weblogic.jar;C:\bea\modules\features\weblogic.server.modules_10.3.0.0.jar;C:\bea\WLSERV~1.3\server\lib\webservices.jar;C:\bea\modules\ORGAPA~1.5/lib/ant-all.jar;C:\bea\modules\NETSFA~1.0_1/lib/ant-contrib.jar;;C:\bea\WLSERV~1.3\common\eval\pointbase\lib\pbembedded57.jar;C:\bea\WLSERV~1.3\common\eval\pointbase\lib\pbtools57.jar;C:\bea\WLSERV~1.3\common\eval\pointbase\lib\pbclient57.jar
    [<I> 03/03/09 20:54:13]
    [<I> 03/03/09 20:54:13] Initializing WebLogic Scripting Tool (WLST) ...
    [<I> 03/03/09 20:54:13]
    [<I> 03/03/09 20:54:19] Welcome to WebLogic Server Administration Scripting Shell
    [<I> 03/03/09 20:54:19]
    [<I> 03/03/09 20:54:19] Type help() for help on available commands
    [<I> 03/03/09 20:54:19]
    [<I> 03/03/09 20:54:19] t3://SN-06-SHENGYUEN:7001
    [<I> 03/03/09 20:54:20] Connecting to t3://SN-06-SHENGYUEN:7001 with userid weblogic ...
    [<I> 03/03/09 20:54:22] Successfully connected to Admin Server 'AdminServer' that belongs to domain 'oft'.
    [<I> 03/03/09 20:54:22]
    [<I> 03/03/09 20:54:22] Warning: An insecure protocol was used to connect to the
    [<I> 03/03/09 20:54:22] server. To ensure on-the-wire security, the SSL port or
    [<I> 03/03/09 20:54:22] Admin port should be used instead.
    [<I> 03/03/09 20:54:22]
    [<I> 03/03/09 20:54:22] Location changed to edit tree. This is a writable tree with
    [<I> 03/03/09 20:54:22] DomainMBean as the root. To make changes you will need to start
    [<I> 03/03/09 20:54:22] an edit session via startEdit().
    [<I> 03/03/09 20:54:22]
    [<I> 03/03/09 20:54:22] For more help, use help(edit)
    [<I> 03/03/09 20:54:22]
    [<I> 03/03/09 20:54:22] Starting an edit session ...
    [<I> 03/03/09 20:54:22] Started edit session, please be sure to save and activate your
    [<I> 03/03/09 20:54:22] changes once you are done.
    [<I> 03/03/09 20:54:22] creating mbean of type JMSServer ...
    [<I> 03/03/09 20:54:22] creating mbean of type JMSSystemResource ...
    [<I> 03/03/09 20:54:22] creating mbean of type SubDeployment ...
    [<I> 03/03/09 20:54:22] creating mbean of type Queue ...
    [<I> 03/03/09 20:54:22] creating mbean of type Topic ...
    [<I> 03/03/09 20:54:22] creating mbean of type ConnectionFactory ...
    [<I> 03/03/09 20:54:22] creating mbean of type ConnectionFactory ...
    [<I> 03/03/09 20:54:22] creating mbean of type JDBCSystemResource ...
    [<I> 03/03/09 20:54:22] creating mbean of type Property ...
    [<I> 03/03/09 20:54:22] creating mbean of type Property ...
    [<I> 03/03/09 20:54:22] creating mbean of type Property ...
    [<I> 03/03/09 20:54:22] creating mbean of type Property ...
    [<I> 03/03/09 20:54:22] creating mbean of type JDBCSystemResource ...
    [<I> 03/03/09 20:54:22] creating mbean of type Property ...
    [<I> 03/03/09 20:54:22] creating mbean of type Property ...
    [<I> 03/03/09 20:54:22] creating mbean of type Property ...
    [<I> 03/03/09 20:54:22] creating mbean of type Property ...
    [<I> 03/03/09 20:54:22] setting attributes for mbean type JMSServer
    [<I> 03/03/09 20:54:22] setting attributes for mbean type JMSSystemResource
    [<I> 03/03/09 20:54:22] setting attributes for mbean type SubDeployment
    [<I> 03/03/09 20:54:22] setting attributes for mbean type Queue
    [<I> 03/03/09 20:54:22] setting attributes for mbean type Topic
    [<I> 03/03/09 20:54:22] setting attributes for mbean type JMSConnectionFactory
    [<I> 03/03/09 20:54:22] setting attributes for mbean type JMSConnectionFactory
    [<I> 03/03/09 20:54:22] setting attributes for mbean type JDBCSystemResource
    [<I> 03/03/09 20:54:22] setting attributes for mbean type JDBCProperty
    [<I> 03/03/09 20:54:22] setting attributes for mbean type JDBCProperty
    [<I> 03/03/09 20:54:22] setting attributes for mbean type JDBCProperty
    [<I> 03/03/09 20:54:22] setting attributes for mbean type JDBCProperty
    [<I> 03/03/09 20:54:22] setting attributes for mbean type JDBCConnectionPoolParams
    [<I> 03/03/09 20:54:22] setting attributes for mbean type JDBCDriverParams
    [<I> 03/03/09 20:54:22] setting attributes for mbean type JDBCDataSource
    [<I> 03/03/09 20:54:22] setting attributes for mbean type JDBCDataSource
    [<I> 03/03/09 20:54:22] setting attributes for mbean type JDBCXAParams
    [<I> 03/03/09 20:54:22] setting attributes for mbean type JDBCDataSourceParams
    [<I> 03/03/09 20:54:22] setting attributes for mbean type JDBCConnectionPoolParams
    [<I> 03/03/09 20:54:22] setting attributes for mbean type JDBCDriverParams
    [<I> 03/03/09 20:54:22] setting attributes for mbean type JDBCDataSourceParams
    [<I> 03/03/09 20:54:22] setting attributes for mbean type JDBCSystemResource
    [<I> 03/03/09 20:54:22] setting attributes for mbean type JDBCProperty
    [<I> 03/03/09 20:54:22] setting attributes for mbean type JDBCProperty
    [<I> 03/03/09 20:54:22] setting attributes for mbean type JDBCProperty
    [<I> 03/03/09 20:54:22] setting attributes for mbean type JDBCProperty
    [<I> 03/03/09 20:54:22] Saving all your changes ...
    [<I> 03/03/09 20:54:22] Saved all your changes successfully.
    [<I> 03/03/09 20:54:22] Your edit session is not stopped, you can continue your edits.
    [<I> 03/03/09 20:54:22] Activating all your changes, this may take a while ...
    [<I> 03/03/09 20:54:22] The edit lock associated with this edit session is released
    [<I> 03/03/09 20:54:22] once the activation is completed.
    [<I> 03/03/09 20:54:23] Activation completed
    [<I> 03/03/09 20:54:23] Creating a user ...
    [<I> 03/03/09 20:54:23]
    [<I> 03/03/09 20:54:23] User already exist
    [<I> 03/03/09 20:54:23] Deploying application from C:\OraBPMwlHome\j2ee\weblogic\deployer\wlj2eedeployer.ear to targets AdminServer (upload=true) ...
    [<I> 03/03/09 20:54:23] <Mar 3, 2009 8:54:23 PM SGT> <Info> <J2EE Deployment SPI> <BEA-260121> <Initiating deploy operation for application, wlj2eedeployer [archive: C:\OraBPMwlHome\j2ee\weblogic\deployer\wlj2eedeployer.ear], to AdminServer .>
    [<I> 03/03/09 20:54:27] .Completed the deployment of Application with status completed
    [<I> 03/03/09 20:54:27] Current Status of your Deployment:
    [<I> 03/03/09 20:54:27] Deployment command type: deploy
    [<I> 03/03/09 20:54:27] Deployment State : completed
    [<I> 03/03/09 20:54:27] Deployment Message : no message
    [<I> 03/03/09 20:54:27] Deploying application from C:\OraBPMwlHome\ears\engine\01-eng-bpmengine.ear to targets AdminServer (upload=true) ...
    [<I> 03/03/09 20:54:27] <Mar 3, 2009 8:54:27 PM SGT> <Info> <J2EE Deployment SPI> <BEA-260121> <Initiating deploy operation for application, 01-eng-bpmengine [archive: C:\OraBPMwlHome\ears\engine\01-eng-bpmengine.ear], to AdminServer .>
    [<I> 03/03/09 20:54:43] Failed to deploy the application with status failed
    [<I> 03/03/09 20:54:43] Current Status of your Deployment:
    [<I> 03/03/09 20:54:43] Deployment command type: deploy
    [<I> 03/03/09 20:54:43] Deployment State : failed
    [<I> 03/03/09 20:54:43] Deployment Message : java.lang.OutOfMemoryError: Java heap space
    [<I> 03/03/09 20:54:43] weblogic.management.scripting.ScriptException: Error occured while performing deploy : Deployment Failed.
    [<I> 03/03/09 20:54:43]      at weblogic.management.scripting.ExceptionHandler.handleException(ExceptionHandler.java:48)
    [<I> 03/03/09 20:54:43]      at weblogic.management.scripting.WLSTUtils.throwWLSTException(WLSTUtils.java:185)
    [<I> 03/03/09 20:54:43]      at weblogic.management.scripting.JSR88DeployHandler.deploy(JSR88DeployHandler.java:536)
    [<I> 03/03/09 20:54:43]      at weblogic.management.scripting.WLScriptContext.deploy(WLScriptContext.java:429)
    [<I> 03/03/09 20:54:43]      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [<I> 03/03/09 20:54:43] No stack trace available.
    [<I> 03/03/09 20:54:43] This Exception occurred at Tue Mar 03 20:54:43 SGT 2009.
    [<I> 03/03/09 20:54:43]      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    [<I> 03/03/09 20:54:43]      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    [<I> 03/03/09 20:54:43]      at java.lang.reflect.Method.invoke(Method.java:597)
    [<I> 03/03/09 20:54:43]      at org.python.core.PyReflectedFunction.__call__(PyReflectedFunction.java:160)
    [<I> 03/03/09 20:54:43]      at org.python.core.PyMethod.__call__(PyMethod.java:96)
    [<I> 03/03/09 20:54:43]      at org.python.core.PyObject.__call__(PyObject.java:248)
    [<I> 03/03/09 20:54:43]      at org.python.core.PyObject.invoke(PyObject.java:2016)
    [<I> 03/03/09 20:54:43]      at org.python.pycode._pyx17.deploy$8(<iostream>:223)
    [<I> 03/03/09 20:54:43]      at org.python.pycode._pyx17.call_function(<iostream>)
    [<I> 03/03/09 20:54:43]      at org.python.core.PyTableCode.call(PyTableCode.java:208)
    [<I> 03/03/09 20:54:43]      at org.python.core.PyTableCode.call(PyTableCode.java:404)
    [<I> 03/03/09 20:54:43]      at org.python.core.PyFunction.__call__(PyFunction.java:184)
    [<I> 03/03/09 20:54:43]      at org.python.pycode._pyx16.deploy_Applications$61(C:\Documents and Settings\shengyuen\.configWizard\tmp\config.py:623)
    [<I> 03/03/09 20:54:43]      at org.python.pycode._pyx16.call_function(C:\Documents and Settings\shengyuen\.configWizard\tmp\config.py)
    [<I> 03/03/09 20:54:43]      at org.python.core.PyTableCode.call(PyTableCode.java:208)
    [<I> 03/03/09 20:54:43]      at org.python.core.PyTableCode.call(PyTableCode.java:256)
    [<I> 03/03/09 20:54:43]      at org.python.core.PyFunction.__call__(PyFunction.java:169)
    [<I> 03/03/09 20:54:43]      at org.python.pycode._pyx16.f$0(C:\Documents and Settings\shengyuen\.configWizard\tmp\config.py:738)
    [<I> 03/03/09 20:54:43]      at org.python.pycode._pyx16.call_function(C:\Documents and Settings\shengyuen\.configWizard\tmp\config.py)
    [<I> 03/03/09 20:54:43]      at org.python.core.PyTableCode.call(PyTableCode.java:208)
    [<I> 03/03/09 20:54:43]      at org.python.core.PyCode.call(PyCode.java:14)
    [<I> 03/03/09 20:54:43]      at org.python.core.Py.runCode(Py.java:1135)
    [<I> 03/03/09 20:54:43]      at org.python.util.PythonInterpreter.execfile(PythonInterpreter.java:167)
    [<I> 03/03/09 20:54:43]
    [<I> 03/03/09 20:54:43] Exiting WebLogic Scripting Tool.
    [<I> 03/03/09 20:54:43]
    [<I> 03/03/09 20:54:43]
    [<I> 03/03/09 20:54:43]      at weblogic.management.scripting.WLST.main(WLST.java:129)
    [<I> 03/03/09 20:54:43]      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [<I> 03/03/09 20:54:43]      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    [<I> 03/03/09 20:54:43]      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    [<I> 03/03/09 20:54:43]      at java.lang.reflect.Method.invoke(Method.java:597)
    [<I> 03/03/09 20:54:43]      at weblogic.WLST.main(WLST.java:29)
    [<I> 03/03/09 20:54:43] <Mar 3, 2009 8:54:43 PM SGT> <Warning> <JNDI> <BEA-050001> <WLContext.close() was called in a different thread than the one in which it was created.>
    Is there any way that I can increase the heap size of the Configuration Wizard? If not, is there any solution to this problem?

    Hi,
    It seems to be a Weblogic OOM (OutOfMemory).
    Why don't you try increasing the weblogic memory (you have to modify your domain scripts)
    I guess that after increasing your WLS domain memory settings you will be able to configure it using the config wizard.
    Hope this helps,
    Ariel

  • Configuration wizard Weblogic deployment error [Admin Center]

    I'm getting an error during the "Executing WLST Script" phase of the configuration wizard.
    My environment:
    BEA Weblogic Server 10.0 (installed with Workspace Studio 1.1)
    Oracle BPM 10g3 (10.3.0.0)
    Oracle Database 10g Express
    This is what the AdmCenterConsole.log file has:
    Deploying application from C:\OraBPMwlHome\j2ee\weblogic\deployer\wlj2eedeployer.ear to targets BPMServer (upload=true) ...
    &lt;Jan 28, 2009 11:15:59 AM PST&gt; &lt;Info&gt; &lt;J2EE Deployment SPI&gt; &lt;BEA-260121&gt; &lt;Initiating deploy operation for application, wlj2eedeployer archive: C:\OraBPMwlHome\j2ee\weblogic\deployer\wlj2eedeployer.ear, to BPMServer .&gt;
    .Completed the deployment of Application with status completed
    Current Status of your Deployment:
    Deployment command type: deploy
    Deployment State : completed
    Deployment Message : no message
    Deploying application from C:\OraBPMwlHome\ears\engine\01-eng-bpmengine.ear to targets BPMServer (upload=true) ...
    &lt;Info&gt; &lt;J2EE Deployment SPI&gt; &lt;BEA-260121&gt; &lt;Initiating deploy operation for application, 01-eng-bpmengine -archive: C:\OraBPMwlHome\ears\engine\01-eng-bpmengine.ear-, to BPMServer .&gt;
    WLST-WLS-1233170095995: &lt;Warning&gt; &lt;DeploymentService&gt; &lt;BEA-290003&gt; &lt;Deployment service servlet encountered an exception while handling request of type "app_upload". Exception is: "*Connection reset*".&gt;
    Failed to deploy the application with status failed
    Current Status of your Deployment:
    Deployment command type: deploy
    Deployment State : failed
    Deployment Message : weblogic.deploy.api.spi.exceptions.ServerConnectionException: [J2EE Deployment SPI:260041 Unable to upload 'C:\OraBPMwlHome\ears\engine\01-eng-bpmengine.ear' to 't3://dmcad00064252:7001'
    No stack trace available.
    weblogic.management.scripting.ScriptException: Error occured while performing deploy : Deployment Failed.
        at weblogic.management.scripting.ExceptionHandler.handleException(ExceptionHandler.java:49)
        at weblogic.management.scripting.WLSTUtils.throwWLSTException(WLSTUtils.java:185)
        at weblogic.management.scripting.JSR88DeployHandler.deploy(JSR88DeployHandler.java:535)
        at weblogic.management.scripting.WLScriptContext.deploy(WLScriptContext.java:427)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:585)
        at org.python.core.PyReflectedFunction.__call__(PyReflectedFunction.java:160)
        at org.python.core.PyMethod.__call__(PyMethod.java:96)
        at org.python.core.PyObject.__call__(PyObject.java:248)
        at org.python.core.PyObject.invoke(PyObject.java:2016)
        at org.python.pycode._pyx19.deploy$8(&lt;iostream&gt;:223)
        at org.python.pycode._pyx19.call_function(&lt;iostream&gt;)
        at org.python.core.PyTableCode.call(PyTableCode.java:208)
        at org.python.core.PyTableCode.call(PyTableCode.java:404)
        at org.python.core.PyFunction.__call__(PyFunction.java:184)
        at org.python.pycode._pyx18.deploy_Applications$61(C:\Documents and Settings\c742323\.configWizard\tmp\config.py:623)
        at org.python.pycode._pyx18.call_function(C:\Documents and Settings\c742323\.configWizard\tmp\config.py)
        at org.python.core.PyTableCode.call(PyTableCode.java:208)
        at org.python.core.PyTableCode.call(PyTableCode.java:256)
        at org.python.core.PyFunction.__call__(PyFunction.java:169)
        at org.python.pycode._pyx18.f$0(C:\Documents and Settings\c742323\.configWizard\tmp\config.py:738)
        at org.python.pycode._pyx18.call_function(C:\Documents and Settings\c742323\.configWizard\tmp\config.py)
        at org.python.core.PyTableCode.call(PyTableCode.java:208)
        at org.python.core.PyCode.call(PyCode.java:14)
        at org.python.core.Py.runCode(Py.java:1135)
        at org.python.util.PythonInterpreter.execfile(PythonInterpreter.java:167)
        at weblogic.management.scripting.WLST.main(WLST.java:106)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:585)
        at weblogic.WLST.main(WLST.java:29)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Hi. I'm having this same exact issue. My AdmCenterConsole.log contains the same error. Additionally, the log file for my BPMDomain log contains this information:
    Current Status of your Deployment:
    Deployment command type: deploy
    Deployment State : failed
    Deployment Message : weblogic.management.ManagementException: [Deployer:149003]Unable to access application source information in '[DeploymentService:290003]Deployment service servlet encountered an exception while handling request of type "app_upload". Exception is: "Read timed out".\app\01-eng-albpmengine.ear' for application '01-eng-albpmengine'. The specific error is: No application files exist.
    No stack trace available.
    This Exception occurred at Sun Apr 19 14:29:13 CDT 2009.
    weblogic.management.scripting.ScriptException: Error occured while performing deploy : Deployment Failed.
         at weblogic.management.scripting.ExceptionHandler.handleException(ExceptionHandler.java:48)
         at weblogic.management.scripting.WLSTUtils.throwWLSTException(WLSTUtils.java:185)
         at weblogic.management.scripting.JSR88DeployHandler.deploy(JSR88DeployHandler.java:536)
         at weblogic.management.scripting.WLScriptContext.deploy(WLScriptContext.java:429)
    mick3y -- Did you happen to ever get this issue resolved?
    Thanks, Alan

  • Service Pack 2 Update - Configuration Failed in Step 5:Products Configuration Wizard (Login Failed)

    THIS IS FOR THE TEST ENVIRONMENT, THERE IS ONLY ONE SP SERVER/ONE SQL SERVER
    The previous admin before me had already installed OWA Sp2/September 2014 CU on this box without Project Server Sp2 being installed along with it. I am now just updating Project Server to Service Pack 2. I downloaded the file from Microsoft, and installed
    the files on the box. I now am running the Products Configuration Wizard to complete the update. 
    note: the config database version is 14.0.7132.5000 (because of the OWA Sp2
    and September cumulative update installed, it does not say Service Pack 2 anywhere)
    Please see photos to see the error I am getting. I cannot access the central administration anymore, it is giving me a HTTP Error 503. I need to fix this ASAP! I have tried using another account that should have had permissions but still no dice.
    04/13/2015 11:23:43  13  ERR   Exception: System.Data.SqlClient.SqlException: Cannot open database "SharePoint_AdminContent_9ddeb31a-419b-4852-b9b5-da18ee2fb7ca" requested by the login.
    The login failed.
    Login failed for user 'domain\user'.
       at System.Data.ProviderBase.DbConnectionPool.GetConnection(DbConnection owningObject)
       at System.Data.ProviderBase.DbConnectionFactory.GetConnection(DbConnection owningConnection)
       at System.Data.ProviderBase.DbConnectionClosed.OpenConnection(DbConnection outerConnection, DbConnectionFactory
    connectionFactory)
       at System.Data.SqlClient.SqlConnection.Open()
       at Microsoft.SharePoint.Utilities.SqlSession.OpenConnection()
       at Microsoft.SharePoint.Utilities.SqlSession.ExecuteReader(SqlCommand command, CommandBehavior behavior, SqlQueryData
    monitoringData, Boolean retryForDeadLock)
       at Microsoft.SharePoint.Utilities.SqlSession.ExecuteReader(SqlCommand command, Boolean retryForDeadLock)
       at Microsoft.SharePoint.Utilities.SqlSession.ExecuteReader(SqlCommand command)
       at Microsoft.SharePoint.Upgrade.SPDatabaseSequence.GetVersion(SPDatabase database, Guid id, Version defaultVersion,
    SqlSession session, SPDatabaseSequence sequence)
       at Microsoft.SharePoint.Upgrade.SPDatabaseSequence.get_SchemaVersion()
       at Microsoft.SharePoint.Upgrade.SPSequence.get_IsBackwardsCompatible()
       at Microsoft.SharePoint.Upgrade.SPUpgradeSession.IsBackwardsCompatible(Object o, Boolean bRecurse)
       at Microsoft.SharePoint.Administration.SPPersistedUpgradableObject.get_IsBackwardsCompatible()
       at Microsoft.SharePoint.Administration.SPPersistedUpgradableObject.ValidateBackwardsCompatibility()
       at Microsoft.SharePoint.SPSite.PreinitializeServer(SPRequest request)
       at Microsoft.SharePoint.SPWeb.InitializeSPRequest()
       at Microsoft.SharePoint.SPListCollection.EnsureListsData(Guid webId, String strListName)
       at Microsoft.SharePoint.SPListCollection.get_Count()
       at Microsoft.SharePoint.Administration.SPAdministrationWebApplication.get_HealthRules()
       at Microsoft.SharePoint.Administration.Health.SPHealthAnalyzer.RegisterRules(Assembly assembly)
       at Microsoft.Office.InfoPath.Server.Util.HealthAnalyzerRegistration.RegisterHealthRules()
       at Microsoft.Office.InfoPath.Server.Administration.FormsService.Update()
       at Microsoft.SharePoint.PostSetupConfiguration.ServicesTask.InstallServiceInConfigDB(Boolean provisionTheServiceToo, String
    serviceRegistryKeyName)
       at Microsoft.SharePoint.PostSetupConfiguration.ServicesTask.InstallServices(Boolean provisionTheServicesToo)
       at Microsoft.SharePoint.PostSetupConfiguration.ServicesTask.Run()
       at Microsoft.SharePoint.PostSetupConfiguration.TaskThread.ExecuteTask()  

    Build number hasn't changed since I updated to Sp2. It still is 14.0.7132.5000. Is this supposed to be this way? 
    Previous admin before me had:
    Service Pack 2 for Microsoft Office Web Apps (KB2687470) 64-Bit Edition
    14.0.7015.1000
    Installed
     on all languages (arabic, english, french, german, russian, spanish) but we do not use any of them here. 
    Also, there are several hotfixes like this (not all show in photo, there are more)
    Hotfix for Microsoft Project Server 2010 (KB2883006) 64-Bit Edition
    14.0.7132.5000
    Installed
    Please see photos. 

  • OIM 11g Server Configuration Wizard Error - Cannot Connect to Oracle DB

    I appreciate any and all suggestions or thoughts on how to best continue troubleshooting this error that I am describing below.
    I am attempting to install Oracle Identity and Access Management Suite 11g on a Windows 7 machine…in following the installation guides I have successfully installed the following Oracle Components
    - Oracle Database 11.2.0.1.0
    - Created Schemas using RCU 11.1.1.3.3
    - Oracle WebLogic Server 10.3.3.0
    - Oracle SOA 11.1.1.2.0
    - Oracle SOA 11.1.1.3.0 (Patch Set)
    - Oracle IAM SUITE 11.1.1.3.0
    Following the above installations, I created a new WebLogic Domain and as the next step am running the OIM Configuration Wizard to configure the OIM Server, however I am unable to setup a connection to the Oracle DB via the OIM Configuration Wizard. I am getting an error message when attempting to setup the connection to the Oracle Database using the OIM 11g Server Configuration Wizard:
    ERROR:*
    INST:6102 Unable to connect to the database with the given credentials.
    *+[DETAILS] Check the values. Make sure the Database is up and running and connect string, user name, and password are correct.+*
    INST:6102 Unable to connect to the database with the given credentials.
    *+[DETAILS] Check the values. Make sure the Database is up and running and connect string, user name, and password are correct.+*
    When installing the Oracle Database 11gR2 I used the following install configuration:
    Oracle base: C:\MyApps\Oracle
    Software location: C:\MyApps\Oracle\DB_HOME\11.2.0\dbhome_1
    Database file location: C:\MyApps\Oracle\DB_HOME\oradata
    Database Edition: Personal Edition (3.27 GB)
    Character Set: Unicode (AL32UTF8)
    Global database name: orcl.dev.com
    Administrative Password: Password1
    Confirm Password: Password1
    When creating my Schemas using RCU 11.1.1.3.3 I used the following Database Connection Details
    DB TYPE: Oracle Database
    HOST NAME: localhost
    PORT: 1521
    SERVICE NAME: orcl.dev.com
    USERNAME: sys
    PASSWORD: Password1
    ROLE: SYSDBA
    I used a Prefix of “DEV” when creating the schemas so Schema Owners DEV_OIM and DEV_MDS where created. Also, I configured to use the same password for all Schemas: “Password1″. So the password for DEV_OIM and DEV_MDS should be the same, “Password1″.
    REPRODUCING THE ERROR
    To reproduce the error, when I launch the Oracle Identity Management 11g Configuration Wizard I am first brought to the “Welcome” Screen. I click the [Next>] button.
    Next, I am on the “Components to Configure” screen where I select OIM Server and OIM Design Console and click the [Next>] button. (NOTE I have also tested by simply selecting only the OIM Server)
    Next, I am on the “Database” screen where I enter the connection information
    Connection String: localhost:1521:orcl.dev.com
    (NOTE I have also tested using localhost:1521:orcl)
    OIM Schema User Name: DEV_OIM
    OIM Schema Password: Password1
    MDS Schema User Name: DEV_MDS
    MDS Schema Password: Password1
    When I click the [Next>] button after entering the Database Connection details I encounter the following two errors (1 error for each logon DEV_OIM and DEV_MDS)
    INST:6102 Unable to connect to the database with the given credentials.
    INST:6102 Unable to connect to the database with the given credentials.
    TROUBLESHOOTING
    NOTE: I can successfully start the Oracle DB Services and connect via the Enterprise Console, SQL Plus, and JDBCTest Java Client…I just cannot get past this connection error in the OIM Server Configuration Wizard.
    JDBCTest.java TEST CLIENT
    NOTE: THIS IS THE JAVA TEST CLIENT THAT I AM USING TO TEST DATABASE CONNECTIVITY THRU A SPECIFIED JDBC URL AND DRIVER THAT WORKS SUCCESSFULLY.*
    import java.sql.Connection;
    import java.sql.DatabaseMetaData;
    import java.sql.DriverManager;
    import java.sql.ResultSet;
    public class JDBCTest {
    public static void main(String[] args) throws Exception {
    String url = "jdbc:oracle:thin:@localhost:1521:orcl";
    String driver = "oracle.jdbc.OracleDriver";
    String user = "DEV_OIM";
    String password = "Password1";
    try {
    Class.forName(driver);
    Connection conn = DriverManager.getConnection(url, user, password);
    // Get the MetaData
    DatabaseMetaData metaData = conn.getMetaData();
    // Get driver information
    System.out.println("");
    System.out.println("#########################################");
    System.out.println("# ***DRIVER INFORMATION***");
    System.out.println("#");
    System.out.println("# Driver Name = " + metaData.getDriverName());
    System.out.println("# Driver Version = " + metaData.getDriverVersion());
    System.out.println("#");
    System.out.println("#########################################");
    System.out.println("");
    System.out.println("");
    // Get database information
    System.out.println("#########################################");
    System.out.println("# ***DATABASE INFORMATION***");
    System.out.println("#");
    System.out.println("# Database Product Name = " + metaData.getDatabaseProductName());
    System.out.println("# Database Product Version = " + metaData.getDatabaseProductVersion());
    System.out.println("#");
    System.out.println("#########################################");
    System.out.println("");
    System.out.println("");
    // Get schema information
    ResultSet schemas = metaData.getSchemas();
    System.out.println("#########################################");
    System.out.println("# ***SCHEMA INFORMATION***");
    System.out.println("#");
    System.out.println("# Schemas:");
    while (schemas.next()) {
    System.out.println("# " + schemas.getString(1));
    System.out.println("#########################################");
    System.out.println("");
    System.out.println("");
    // Get table information
    System.out.println("Tables");
    ResultSet tables = metaData.getTables("", "", "", null);
    while (tables.next()) {
    System.out.println(tables.getString(3));
    conn.close();
    } catch (Exception ex) {
    ex.printStackTrace();
    *"lsnrctl status" COMMAND TEST SUCCESSFUL*
    When the Listener Service is on I get the following output using lsnrctl status command
    C:\> lsnrctl status
    LSNRCTL for 32-bit Windows: Version 11.2.0.1.0 - Production on 21-SEP-2010 15:59:43
    Copyright (c) 1991, 2010 Oracle. All rights reserved.
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for 32-bit Windows:Version 11.2.0.1.0 - Production
    Start Date 21-SEP-2010 14:43:57
    Uptime 0 days 1 hr. 15 min. 46 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Listener Parameter File C:\MyApps\Oracle\DB_HOME\11.2.0\dbhome_1\NETWORK\ADMIN\listener.ora
    Listener Log File c:\myapps\oracle\diag\tnslsnr\\listener\alert\log.xml
    Listening Endpoints Summary…
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=1521)))
    Services Summary…
    Service “CLRExtProc” has 1 instance(s).
    Instance “CLRExtProc”, status UNKNOWN, has 1 handler(s) for this service…
    Service “orcl.dev.com” has 1 instance(s).
    Instance “orcl”, status READY, has 1 handler(s) for this service….
    Service “orclXDB.dev.com” has 1 instance(s).
    Instance “orcl” status READY, has 1 handler(s) for this service…
    The command completed successfully

    Whenever installing oracle databases, i install the software only first. Then i setup the listener. Then i create a database instance using the dbca tool. This way all the information is added to the pre-existing listener configurations rather than trying to create the listener afterwards. Also, during the dbca database creation, i supply a full service name such as orcl.hostname and use the service name in future configurations where it asked. This usually solves any issues of the listener or database not being found correctly.
    -Kevin

  • Weblogic Server 10.3.6 (64bit)- Configuration Wizard - JVM Error

    Hi Friends,
    I am new to forum threads. Please don't mind if I have posted incorrectly.
    When I try to run configuration wizard of Weblogic server 10.3.6, I am getting the following error in JVM Launcher pop-up window.
    Error : Could not Create the Java Virtual Machine
    Error : A fatal Exception has occurred. Program will exit.
    Note:
    1) I have followed  Start => Apps => Oracle WebLogic => Configuration Wizard  to load the configuration wizard.
    2) Facing the same problem while loading Fusion Middle Configuration Wizard ( Start  => Apps  => Oracl SOA 11g -Home1  => Configure Application Server )
    Kindly suggest me with the best option to resolve the same.
    Thanks in advance.
    Rajesh

    Hi Borys,
    Thanks for your kind reply,
    I have installed java-8 on my Window 8 machine, before installation of Weblogic itself and the location of JDK is "C:\Java\jdk1.8.0_25"
    And the 'C:\Middleware\SOASuite11gR1PS6\wlserver_10.3\common\bin\commEnv' (windows command script file) contains the correct JAVA_HOME location by default, i.e  JAVA_HOME=C:\Java\jdk1.8.0_25
    While installing the weblogic serv (64-bit) , I have Opened the command prompt, navigated to the directory containing the Weblogic jar and entered the below command,
    C:\Java\jdk1.7.0_35\bin\java -Xmx1024m -jar wls1036_generic.jar   And successfully got installed the same.
    Now, Do I still need to set the JAVA_HOME parameter on my windows ?
    ( FYI: when I got my windows8.1 OS with the machine, it is having default jre7 location as "C:\Program Files\Java\jre7\bin")
    Thanks,
    Rajesh

  • Error in Configuration Wizard after installing SharePoint 2013 Service Pack 1

    Windows Server 2012 with latest updates and SharePoint 2013 with latest updates:
    I installed SharePoint 2013 Service Pack 1 and when I run the configuration Wizard i get this error:
    Error in Configuration Wizard
    Resource id to be retrieved is PostSetupConfigurationFailedEventLog for language English (United States)
    Resource retrieved id PostSetupConfigurationFailedEventLog is Configuration of SharePoint Products failed.  Configuration must be performed in order for this product to operate properly.  To diagnose the problem, review the extended error information
    located at {0}, fix the problem, and run this configuration wizard again.
    Leaving function StringResourceManager.GetResourceString
    Configuration of SharePoint Products failed.  Configuration must be performed in order for this product to operate properly.  To diagnose the problem, review the extended error information located at C:\Program Files\Common Files\Microsoft Shared\Web
    Server Extensions\15\LOGS\PSCDiagnostics_3_8_2014_23_55_49_686_1872915373.log, fix the problem, and run this configuration wizard again.
    In event view I see this two errors:
    1) First error
    System
    Provider
    [ Name]
    SharePoint 2010 Products Configuration Wizard
    EventID
    104
    [ Qualifiers]
    0
    Level
    2
    Task
    0
    Keywords
    0x80000000000000
    TimeCreated
    [ SystemTime]
    2014-03-08T21:41:59.000000000Z
    EventRecordID
    135580
    Channel
    Application
    Computer
    ABC-SRV-WEB01.abc.local
    Security
    EventData
    Failed to initiate the upgrade sequence. An exception of type System.MissingMethodException was thrown. Additional exception information: Method not found: 'Void Microsoft.SharePoint.WorkflowServices.IWorkflowService.Upgrade(System.Object,
    System.String, Microsoft.SharePoint.Upgrade.SPLog)'. System.MissingMethodException: Method not found: 'Void Microsoft.SharePoint.WorkflowServices.IWorkflowService.Upgrade(System.Object, System.String, Microsoft.SharePoint.Upgrade.SPLog)'. at System.RuntimeTypeHandle.GetTypeByName(String
    name, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMarkHandle stackMark, IntPtr pPrivHostBinder, Boolean loadTypeFromPartialName, ObjectHandleOnStack type) at System.RuntimeTypeHandle.GetTypeByName(String name, Boolean throwOnError,
    Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark, IntPtr pPrivHostBinder, Boolean loadTypeFromPartialName) at System.Type.GetType(String typeName) at Microsoft.SharePoint.Utilities.SPTypeSerializer.DeserializeType(String typeName,
    Guid classId, Boolean bResolveMissingTypes) at Microsoft.SharePoint.Administration.SPConfigurationDatabase.ResolveObjectAndClassVersions(SPLog log) at Microsoft.SharePoint.Upgrade.SPManager.BootStrap(Guid sessionId, SPUpgradeOperationFlags flags) at Microsoft.SharePoint.PostSetupConfiguration.UpgradeBootstrapTask.Run()
    at Microsoft.SharePoint.PostSetupConfiguration.TaskThread.ExecuteTask()
    2) Second error
    System
    Provider
    [ Name]
    SharePoint 2010 Products Configuration Wizard
    EventID
    100
    [ Qualifiers]
    0
    Level
    2
    Task
    0
    Keywords
    0x80000000000000
    TimeCreated
    [ SystemTime]
    2014-03-08T21:41:59.000000000Z
    EventRecordID
    135581
    Channel
    Application
    Computer
    ABC-SRV-WEB01.abc.local
    Security
    EventData
    Configuration of SharePoint Products failed. Configuration must be performed in order for this product to operate properly. To diagnose the problem, review the extended error information located at C:\Program Files\Common Files\Microsoft Shared\Web Server
    Extensions\15\LOGS\PSCDiagnostics_3_8_2014_23_41_9_710_572545016.log, fix the problem, and run this configuration wizard again.
    Please advise on next steps.
    How can I successfully install SP1?
    Thanks,
    Alex

    could you please share the upgrade log file, so that we understand the error?
    did you reboot your server after the installation of SP1?
    also try to clear the Config cache on the servers and then try again?
    you can run this command on the server its failing
    Get-SPProduct -local
    PSConfig.exe -cmd upgrade -inplace b2b -force -cmd applicationcontent -install -cmd installfeatures
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • Workflow Manager Configuration Wizard is not working with USER ID

    Hello everyone,
       I
    have successfully installed Workflow Manager 1.0 (and its prerequisites) on my Server 2008 R2 SP1 machine that is hosting Sharepoint 2013.  I attempt to go into the Workflow Manager Configuration.  That comes up and asks me if I want to Create
    new farm with Default Settings, New Farm with custom settings, or existing farm.  I've tried both Default settings AND Custom settings.
                When
    the configuration wizard comes up, I attempt to fill out the necessary information.  It seems to connect to the SQL server without a problem.  I only run into an issue when setting the USER ID.  The program totally freezes up and force closes. 
                I
    have verified that the USERID is in the correct format and tried multiple different formats.  The problem is that the moment I move the cursor from the USERID field to ANY other field, the program force closes.  I'm not able to hit submit, I'm not
    able to change any other options.  The moment USERID is manipulated or the cursor LEAVES the USERID field, the program force closes.  It won't even allow me to put in a password before it force closes.
                 Customer
    domain is running in Windows Server 2003 Enterprise Edittion SP2.
    Any
    ideas?
    I have installed also cumulative update to avoid crash but still I am getting force to close workflow wizard. I have used users which are already added in administrator groups.
    We are using 3 tier architecture for Sharepoint 2013.
    Also we have made Alias of Domain controller. Eg:-Alias is "labs" for domain "xyz.ab.com".
    And we are using labs\spadmin and labs\spservice for Workflow Manager Configuration 1.0
    Is there any issue with Domain Alias "labs" as Workflow gives error  "Specified RunAs account is invalid" or "Force close the application".
          I
    have copied the errors from event viewer below:
    APPLICATION
    ERROR
    Faulting
    application name: Microsoft.Workflow.Deployment.ConfigWizard.exe, version: 1.0.20922.0, time stamp: 0x505e1b30
    Faulting module name: KERNELBASE.dll, version: 6.1.7601.17965,
    time stamp: 0x506dcae6
    Exception code: 0xe0434352
    Fault offset: 0x000000000000bccd
    Faulting process id: 0x17f8
    Faulting application start time: 0x01cddee198ece72e
    Faulting application path: C:\Program Files\Workflow Manager\1.0\Microsoft.Workflow.Deployment.ConfigWizard.exe
    Faulting module path: C:\Windows\system32\KERNELBASE.dll
    Report Id: 22ab8b69-4ad5-11e2-af8f-005056965915
    .NET
    Runtime Error
    Application: Microsoft.Workflow.Deployment.ConfigWizard.exe
    Framework Version: v4.0.30319
    Description: The process was terminated due to an unhandled exception.
    Exception Info: System.Runtime.InteropServices.COMException
    Stack:
       at System.DirectoryServices.AccountManagement.PrincipalContext.DoLDAPDirectoryInitNoContainer()
       at System.DirectoryServices.AccountManagement.PrincipalContext.DoDomainInit()
       at System.DirectoryServices.AccountManagement.PrincipalContext.Initialize()
       at System.DirectoryServices.AccountManagement.PrincipalContext.get_QueryCtx()
       at System.DirectoryServices.AccountManagement.Principal.FindByIdentityWithTypeHelper(System.DirectoryServices.AccountManagement.PrincipalContext, System.Type, System.Nullable`1<System.DirectoryServices.AccountManagement.IdentityType>, System.String,
    System.DateTime)
       at System.DirectoryServices.AccountManagement.UserPrincipal.FindByIdentity(System.DirectoryServices.AccountManagement.PrincipalContext, System.String)
       at Microsoft.ServiceBus.Commands.Common.SecurityHelper.IsUserValid(System.DirectoryServices.AccountManagement.PrincipalContext, System.String)
       at Microsoft.ServiceBus.Commands.Common.SecurityHelper.IsDomainUserValid(System.String, System.String)
       at Microsoft.ServiceBus.Commands.Common.ValidateUserAttribute.Validate(System.String)
       at Microsoft.Deployment.ConfigWizard.UICommon.AccountDetailsViewModel.ValidateDomainUser()
       at Microsoft.Deployment.ConfigWizard.UICommon.AccountDetailsControl.UserIdTextBox_LostFocus(System.Object, System.Windows.RoutedEventArgs)
       at System.Windows.EventRoute.InvokeHandlersImpl(System.Object, System.Windows.RoutedEventArgs, Boolean)
       at System.Windows.UIElement.RaiseEventImpl(System.Windows.DependencyObject, System.Windows.RoutedEventArgs)
       at System.Windows.Controls.Primitives.TextBoxBase.OnLostFocus(System.Windows.RoutedEventArgs)
       at System.Windows.UIElement.IsFocused_Changed(System.Windows.DependencyObject, System.Windows.DependencyPropertyChangedEventArgs)
       at System.Windows.DependencyObject.OnPropertyChanged(System.Windows.DependencyPropertyChangedEventArgs)
       at System.Windows.FrameworkElement.OnPropertyChanged(System.Windows.DependencyPropertyChangedEventArgs)
       at System.Windows.Controls.TextBox.OnPropertyChanged(System.Windows.DependencyPropertyChangedEventArgs)
       at System.Windows.DependencyObject.NotifyPropertyChange(System.Windows.DependencyPropertyChangedEventArgs)
       at System.Windows.DependencyObject.UpdateEffectiveValue(System.Windows.EntryIndex, System.Windows.DependencyProperty, System.Windows.PropertyMetadata, System.Windows.EffectiveValueEntry, System.Windows.EffectiveValueEntry ByRef, Boolean, Boolean,
    System.Windows.OperationType)
       at System.Windows.DependencyObject.ClearValueCommon(System.Windows.EntryIndex, System.Windows.DependencyProperty, System.Windows.PropertyMetadata)
       at System.Windows.DependencyObject.ClearValue(System.Windows.DependencyPropertyKey)
       at System.Windows.Input.FocusManager.OnFocusedElementChanged(System.Windows.DependencyObject, System.Windows.DependencyPropertyChangedEventArgs)
       at System.Windows.DependencyObject.OnPropertyChanged(System.Windows.DependencyPropertyChangedEventArgs)
       at System.Windows.FrameworkElement.OnPropertyChanged(System.Windows.DependencyPropertyChangedEventArgs)
       at System.Windows.DependencyObject.NotifyPropertyChange(System.Windows.DependencyPropertyChangedEventArgs)
       at System.Windows.DependencyObject.UpdateEffectiveValue(System.Windows.EntryIndex, System.Windows.DependencyProperty, System.Windows.PropertyMetadata, System.Windows.EffectiveValueEntry, System.Windows.EffectiveValueEntry ByRef, Boolean, Boolean,
    System.Windows.OperationType)
       at System.Windows.DependencyObject.SetValueCommon(System.Windows.DependencyProperty, System.Object, System.Windows.PropertyMetadata, Boolean, Boolean, System.Windows.OperationType, Boolean)
       at System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty, System.Object)
       at System.Windows.FrameworkElement.OnGotKeyboardFocus(System.Object, System.Windows.Input.KeyboardFocusChangedEventArgs)
       at System.Windows.RoutedEventArgs.InvokeHandler(System.Delegate, System.Object)
       at System.Windows.EventRoute.InvokeHandlersImpl(System.Object, System.Windows.RoutedEventArgs, Boolean)
       at System.Windows.UIElement.RaiseEventImpl(System.Windows.DependencyObject, System.Windows.RoutedEventArgs)
       at System.Windows.UIElement.RaiseTrustedEvent(System.Windows.RoutedEventArgs)
       at System.Windows.Input.InputManager.ProcessStagingArea()
       at System.Windows.Input.KeyboardDevice.ChangeFocus(System.Windows.DependencyObject, Int32)
       at System.Windows.Input.KeyboardDevice.Focus(System.Windows.DependencyObject, Boolean, Boolean, Boolean)
       at System.Windows.Input.KeyboardDevice.Focus(System.Windows.IInputElement)
       at System.Windows.UIElement.Focus()
       at System.Windows.Input.KeyboardNavigation.Navigate(System.Windows.DependencyObject, System.Windows.Input.TraversalRequest, System.Windows.Input.ModifierKeys, System.Windows.DependencyObject)
       at System.Windows.Input.KeyboardNavigation.Navigate(System.Windows.DependencyObject, System.Windows.Input.Key, System.Windows.Input.ModifierKeys)
       at System.Windows.Input.KeyboardNavigation.ProcessInput(System.Windows.Input.InputEventArgs)
       at System.Windows.Input.InputManager.RaiseProcessInputEventHandlers(System.Windows.Input.ProcessInputEventHandler, System.Windows.Input.ProcessInputEventArgs)
       at System.Windows.Input.InputManager.ProcessStagingArea()
       at System.Windows.Input.InputManager.ProcessInput(System.Windows.Input.InputEventArgs)
       at System.Windows.Interop.HwndKeyboardInputProvider.ReportInput(IntPtr, System.Windows.Input.InputMode, Int32, System.Windows.Input.RawKeyboardActions, Int32, Boolean, Boolean, Int32)
       at System.Windows.Interop.HwndKeyboardInputProvider.ProcessKeyAction(System.Windows.Interop.MSG ByRef, Boolean ByRef)
       at System.Windows.Interop.HwndSource.CriticalTranslateAccelerator(System.Windows.Interop.MSG ByRef, System.Windows.Input.ModifierKeys)
       at System.Windows.Interop.HwndSource.OnPreprocessMessage(System.Object)
       at System.Windows.Threading.ExceptionWrapper.InternalRealCall(System.Delegate, System.Object, Int32)
       at MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(System.Object, System.Delegate, System.Object, Int32, System.Delegate)
       at System.Windows.Threading.Dispatcher.LegacyInvokeImpl(System.Windows.Threading.DispatcherPriority, System.TimeSpan, System.Delegate, System.Object, Int32)
       at System.Windows.Threading.Dispatcher.Invoke(System.Windows.Threading.DispatcherPriority, System.Delegate, System.Object)
       at System.Windows.Interop.HwndSource.OnPreprocessMessageThunk(System.Windows.Interop.MSG ByRef, Boolean ByRef)
       at System.Windows.Interop.ComponentDispatcherThread.RaiseThreadMessage(System.Windows.Interop.MSG ByRef)
       at System.Windows.Threading.Dispatcher.TranslateAndDispatchMessage(System.Windows.Interop.MSG ByRef)
       at System.Windows.Threading.Dispatcher.PushFrameImpl(System.Windows.Threading.DispatcherFrame)
       at System.Windows.Application.RunInternal(System.Windows.Window)
       at System.Windows.Application.Run()
       at Microsoft.Workflow.Deployment.ConfigWizard.App.Main()
    Thanks
    Hansraj Rathva

    Check to ensure that the user you're running the wizard as has access to the Users and Computers folders in Active Directory. I had trouble with the "specified RunAs account is invalid" message, and when I granted the AD rights, I was able to proceed.
    The issue would be that the user executing the wizard isn't able to query AD to look up the specified user. The RunAs account you're specifying is probably fine.

  • Configuration of DI SSO with Configuration Wizard not working

    Hi All,
    I've installed CE 7.2 and connected it to an existing SLD.
    I'm running Configuration Wizard -> DI landscape SSO configuration for the SSO between NWDI and SLD components
    and getting error in the step -> Get J2ee Partner Sid Binding
    with error:
    Stack Trace
    com.sap.tc.lm.ctc.management.CTCRuntimeException: Exception during transformation of the EnviornmentContext
         at com.sap.tc.lm.ctc.management.client.impl.ClientContextService.getEnviornmentContext(ClientContextService.java:37)
         at com.sap.tc.lm.ctc.management.client.DistrClient.getEnviornmentContext(DistrClient.java:118)
         at com.sap.tc.lm.ctc.metamodel.process.controller.DistrActionController.getRemoteEnviorment(DistrActionController.java:70)
         at com.sap.tc.lm.ctc.metamodel.process.controller.DistrActionController.getMessage(DistrActionController.java:38)
         at com.sap.tc.lm.ctc.metamodel.process.controller.ActionController.getMessage(ActionController.java:261)
         at com.sap.tc.lm.ctc.metamodel.process.controller.BindingControllerImpl.execute(BindingControllerImpl.java:77)
         at com.sap.tc.lm.ctc.metamodel.process.controller.ProcessControllerImpl.remoteOrLocalExecution(ProcessControllerImpl.java:703)
         at com.sap.tc.lm.ctc.metamodel.process.controller.ProcessControllerImpl.execute(ProcessControllerImpl.java:281)
         at com.sap.tc.lm.ctc.metamodel.process.controller.ProcessControllerImpl.remoteOrLocalExecution(ProcessControllerImpl.java:703)
         at com.sap.tc.lm.ctc.metamodel.process.controller.ProcessControllerImpl.execute(ProcessControllerImpl.java:281)
         at com.sap.tc.lm.ctc.metamodel.process.controller.ProcessControllerImpl.remoteOrLocalExecution(ProcessControllerImpl.java:703)
         at com.sap.tc.lm.ctc.metamodel.process.controller.ProcessControllerImpl.execute(ProcessControllerImpl.java:281)
         at com.sap.tc.lm.ctc.metamodel.process.controller.ProcessControllerImpl.remoteOrLocalExecution(ProcessControllerImpl.java:703)
         at com.sap.tc.lm.ctc.metamodel.process.controller.ProcessControllerImpl.execute(ProcessControllerImpl.java:281)
         at com.sap.tc.lm.ctc.metamodel.process.controller.ProcessControllerImpl.remoteOrLocalExecution(ProcessControllerImpl.java:703)
         at com.sap.tc.lm.ctc.metamodel.process.controller.ProcessControllerImpl.execute(ProcessControllerImpl.java:281)
         at com.sap.tc.lm.ctc.metamodel.process.controller.ProcessControllerImpl.remoteOrLocalExecution(ProcessControllerImpl.java:703)
         at com.sap.tc.lm.ctc.metamodel.process.controller.ProcessControllerImpl.execute(ProcessControllerImpl.java:281)
         at com.sap.tc.lm.ctc.metamodel.process.controller.ProcessExecuter.run(ProcessExecuter.java:171)
         at java.lang.Thread.run(Thread.java:679)
    Caused by: java.lang.NullPointerException: while trying to invoke the method org.w3c.dom.Element.getChildNodes() of an object loaded from local variable 'element'
         at com.sap.tc.lm.ctc.management.util.XMLElementUtil.getElementChildren(XMLElementUtil.java:43)
         at com.sap.tc.lm.ctc.management.util.XMLElementUtil.getAllChildren(XMLElementUtil.java:67)
         at com.sap.tc.lm.ctc.management.util.XMLManagementUtil.getAllChildren(XMLManagementUtil.java:76)
         at com.sap.tc.lm.ctc.management.xml.CTCClientContextServiceJava2XML.deserializeEnviornmentContextResponce(CTCClientContextServiceJava2XML.java:48)
         at com.sap.tc.lm.ctc.management.client.impl.ClientContextService.getEnviornmentContext(ClientContextService.java:35)
    Any idea ?
    Dimitry Haritonov

    yes. I've run the configuration wizards and also, it is on the same server ...
    It seems that it fails with the remote SLD server

  • Issue with configuration wizard

    Hello,
    I am trying to build a sandbox just like our production which has 1 Admin, 2 WFE's and 1 SQL on all different servers.  I have installed SQL, Installed admin but while installing WFE1 I had an issue as the drive letters of Admin and WFE1  so
    I had to uninstall and reinstall WFE1 (did not get to WFE2 yet). When I ran the configuration wizard on WFE1 I got the error as below
    ======================
    An exception of type System.InvalidOperationException was thrown.  Additional exception information: The current server cannot be joined to this farm because the set of installed products does not match the products installed in the farm.
    The license state for the current server doesn't match the farm's license state.
    System.InvalidOperationException: The current server cannot be joined to this farm because the set of installed products does not match the products installed in the farm.
    The license state for the current server doesn't match the farm's license state.
       at Microsoft.SharePoint.Administration.SPFarm.Join()
       at Microsoft.SharePoint.PostSetupConfiguration.ConfigurationDatabaseTask.CreateOrConnectConfigDb()
       at Microsoft.SharePoint.PostSetupConfiguration.ConfigurationDatabaseTask.Run()
       at Microsoft.SharePoint.PostSetupConfiguration.TaskThread.ExecuteTask()
    =========================
    After some research online I figured GUID's in my configuration DB's and GUID in the registry of WFE1 are different. So I followed the article
    http://blogs.msdn.com/b/sowmyancs/archive/2012/08/08/the-license-state-for-the-current-server-doesn-t-match-the-farm-s-license-state-sharepoint-psconfig-error.aspx .
    So from the article I ran    
    Set-SPFarmConfig –InstalledProductsRefresh
    on WFE1 but it stops and does not finish what it supposed to do (looks like)
    PS C:\Users\spadmintest1>
    PS C:\Users\spadmintest1> <object type="Microsoft.SharePoint.Administration.SPIn
    stallState, Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyTo
    ken=71e9bce111xxxxxx"><fld type="System.Collections.Generic.List`1[[System.Guid,
     mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c5xxxxxx
    mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77xxxxx" nam
    e="m_ProductGuids"><sFld type="Guid">beed1f75-c398-4447-aef1-e66xxxxxe</sFld>
    <sFld type="Guid">3fdfbcc8-b3e4-xxxxxxxxxsFld><sFld type="Guid">9
    26e4e17-087b-47xxxxxxxxxxx</sFld></fld><fld type="System.Collections.Ha
    shtable, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77xxxxxxx
    e089" name="m_UpgradedPersistedFields" /><fld name="m_Properties" type="null" />
    <sFld type="String" name="m_LastUpdatedUser">HCDxxxxxxx\spxxxxxx</sFld><sFld t
    ype="String" name="m_LastUpdatedProcess">powershell (7964)</sFld><sFld type="Str
    ing" name="m_LastUpdatedMachine">xxxxxxxx-SB</sFld><sFld type="DateTime" nam
    e="m_LastUpdatedTime">2014-06-13T15:02:36</sFld></object>
    I ran the same command on the Admin server and it doesnt seem to do much below.
    PS C:\Users\spadmintest1> Set-SPFarmConfig -InstalledProductsRefresh
    PS C:\Users\spadmintest1>
    What should I do at this point I can try anything before I uninstall and reinstall everything as it would be very painful.
    Any help is appreciated.
    Thanks and Regards
    @R

    Yes I followed
    http://blogs.msdn.com/b/sowmyancs/archive/2012/08/08/the-license-state-for-the-current-server-doesn-t-match-the-farm-s-license-state-sharepoint-psconfig-error.aspx
    And executed  
    Set-SPFarmConfig –InstalledProductsRefresh
    below is the output. It looks like it is stopping in between.
    PS C:\Users\spadmintest1>
    PS C:\Users\spadmintest1> <object type="Microsoft.SharePoint.Administration.SPIn
    stallState, Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyTo
    ken=71e9bce111xxxxxx"><fld type="System.Collections.Generic.List`1[[System.Guid,
    mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c5xxxxxx
    mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77xxxxx" nam
    e="m_ProductGuids"><sFld type="Guid">beed1f75-c398-4447-aef1-e66xxxxxe</sFld>
    < sFld type="Guid">3fdfbcc8-b3e4-xxxxxxxxxsFld><sFld type="Guid">9
    26e4e17-087b-47xxxxxxxxxxx</sFld></fld><fld type="System.Collections.Ha
    shtable, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77xxxxxxx
    e089" name="m_UpgradedPersistedFields" /><fld name="m_Properties" type="null" />
    < sFld type="String" name="m_LastUpdatedUser">HCDxxxxxxx\spxxxxxx</sFld><sFld t
    ype="String" name="m_LastUpdatedProcess">powershell (7964)</sFld><sFld type="Str
    ing" name="m_LastUpdatedMachine">xxxxxxxx-SB</sFld><sFld type="DateTime" nam
    e="m_LastUpdatedTime">2014-06-13T15:02:36</sFld></object>
    So I executed the same command on Admin server and below is the output. It looks like its not doing much
    PS C:\Users\spadmintest1> Set-SPFarmConfig -InstalledProductsRefresh
    PS C:\Users\spadmintest1>
    @R

Maybe you are looking for

  • How do I delete an Apple ID from my MacBook Pro?

    I got my bosses old MacBook Pro but her Apple ID is still registered to it so I cannot register mine to it, making it difficult to update the apps on there. How can I completely delete it and register with my own?

  • BDC (Flat File Data Validation) - Code

    I am trying to validate flat file data BEFORE performing BDC (Call Trans. or Session).. Pls help me out in below code for xk02.. DATA: BEGIN OF itab occurs 0,  "ITAB having flat file data.       lifnr(16) ,       bukrs(4),       ekorg(4),       END O

  • Installation Error Installing Exchange 2013 CU3 on Server 2012

    Hello, When Installing Exchange 2013 on server 2012 I get the following error during Step 1 of 8 of Transport Service. I have installed and unistalled Exchange a few times, restarted the machine manually and removed exchange from AD, etc. to no avail

  • Symbol in Smartform

    Hi, I did  following step  in smartform  for  updating symbol. follow the steps. go to text element (editor)-> change editor> insert->characters> SAP symbols--->choose the symbol for ..... I got as <680> text, but I am unable to see the symbol in the

  • Set location of JDialog

    How to set the location of JDialog? I have set the parent of the JDialog, but it still appears at the top left corner of the screen. public MyDialog extends JDialog{ public MyDialog(JDialog parent, boolean modal) { super(parent,"Open existing databas