Programmat​ically configure Modbus server.

Is it possible to programmatically configure an I/O server (e.g. Modbus Ethernet) in any way other than the Express VI provided with the DSC module? Many of the attributes are "hidden" in the dialog boxes, instead of being easily readable on the block diagram. Additionally, if I want to create a class encapsulating Modbus clients, there seems little ability to write accessors for attributes such as "maximum data points per command" or "first word low in 32-bit data types."
Any help/thoughts are appreciated. If the functionality doesn't exist, then I hereby submit a feature request.

I'm learning how to use the Actor Framework to build an application for controlling, monitoring and aquiring data from a large research facility. One thought for creating a hardware abstraction layer is to have a generic "Modbus client" class. Modbus clients all share general characteristics, such as the attribute settings currently rolled up in the Express VI for creating and configuring I/O servers. Certainly, one can imagine setting up each client "by hand," but then you're not saving yourself any work. If you could handle full setup programmatically, then when a new Modbus client object is instantiated, the work load should be lessened. There's also the issue of transparency to someone creating a new object. Since you can't write accessor methods for advanced attributes, the only way to interact with those attributes is via the dialog box, which obscures how the client is configured and subsequently behaves.
Since I'm relatively new to the OOP stuff, it's possible that I'm overthinking the whole issue and making it harder than it needs to be. It still would be nice to be able to write a method to set the advanced attributes, instead of having to hunt through dialog boxes to find the options. I'm not generally a fan of Express VIs, because I'm often engaged in tasks that are beyond the functionality they provide and they obscure reading of code by failing to provide full disclosure about inputs and outputs.

Similar Messages

  • Configure Lion Server as iCal Server

    We have a small business with two email systems in use. Google Apps is used by 60%, IMAP is used by 60% (yes, 40% use both). How can Lion Server be used as a single calendar server. How is iCal configured on the client Macs? Do all the Macs need to run Lion?

    In Server Admin, select your server, click on Settings, then go to the General tab.  You will see an option to enable the Network Time Server.

  • How to do a programmatic login in a server context

    Hello,
    How to do a programmatic login in a server context?
    How can the current authenticated user, if any, be substituted by another in the middle of a request, in a save pipeline, eg?
    Regards.
    -- Nuno

    I don't know of a way to do exactly what you are asking. However, when I had your requirement I elevated the current user to the permission of an administrator who had the ability to perform any configuration desired.
    The only other reason I could think you need to be a specific user is so that the logs would indicate that the action was performed by a specific user.
    Unleash the Power - Get the LightSwitch 2013 HTML Client / SharePoint 2013 book
    http://LightSwitchHelpWebsite.com

  • ICal and Exchange Server 2003

    Hello from Barcelona,
    I am a new mac user trying to sync iCal with Exchange Server 2003. I have followed all instructions regarding domain, user name, password and URL address but it does not work. The last answer received was "account info not found" & "“HTTP/1.1 440 Login Timeout”. Incredible but when using the program AddressX (downloaded from internet) with the above mentioned configuration...it works and can get my company's global book address.
    Just to make sure I am following all "mac" rules. What I am using is:
    Domain/UserName
    Password
    https://company.com/exchange/User.Name
    Am I missing any important thing? Please help!!
    Thanks in advanced!!

    There are several discussions regarding this same topic on the Apple forums and elsewhere. None of them have solved the problem. This seems to be an issue that has been around for a long time but never addressed by Apple or Microsoft. From some simple tests that I have done, it appears the the Microsoft Exchange Server is not interpreting the iCal event (.ics extension) properly. I have seen discussions saying that Apple is not formatting the event properly or is using a newer standard that MS Exchange does not support. I believe it is the later as I can make the event work properly without any software changes but I have to do some steps manually. Here is how I can make it work and why I believe something is wrong in MS Exchange:
    - create event in iCal and add an Outlook user
    - send the event/email (ignore this email on the PC as it does not work)
    - open the just sent email and save the attached iCal event
    - find the saved iCal event and add a letter to the extension such as ".icss"
    - (Note: I don't know if there is a way to rename an attachment already in a message)
    - attach this renamed event to a new message and send it to the Outlook user
    - the Outlook user must open the message, save the attachment and rename it back to ".ics"
    - double clicking / opening this renamed file now works perfectly in Outlook
    Now, if I could only automate some of these steps on the Mac before I send the message would be very helpful. This is not a great solution but I use it for events that I want to sync between my home Mac and my office PC.
    Because the renamed attachment (.icss) works through Exchange (by ignoring it), I am lead to believe that MS Exchange will interpret an ".ics" extension and mess up the handling of it for some reason. Microsoft is never one to follow standards very carefully or adopt them very quickly. Our company is using Exchange 2003 so maybe that is part of the problem as it is an older version.

  • Configuring Lync Server 2013 to be a partner Application for Exchange 2013

    Hello Guys,
    I just want to share my experience while configuring Lync server 2013 to be a partner Application for exchange 2013 sever. 
    As mentioned on technet you need to run Configure-EnterprisePartnerApplication.ps1 script that ships with Exchange 2013. 
    But when I tried to run the script as described on the technet article, I found it always fails with " the accepted domain is not valid"
    I have checked my accepted domains many times and i found that there's no issues with my configured accepted domain. 
    So I started to review the script to find the issue and I found that the script was configured  as below 
    $acceptedDomains = Get-AcceptedDomain ;
      if ($acceptedDomains -eq $null)
        WriteError ("There is no accepted domain so user can not be created.")
      $acceptedDomain = $acceptedDomains[0].Name;
      if($UseDomainController -eq $true)
        $user = New-MailUser -Name $username -DomainController $DomainController -ExternalEmailAddress $username@$acceptedDomain;
    set-mailuser -Identity $user.Identity -HiddenFromAddressListsEnabled $true -DomainController $DomainController
      else
        $user = New-MailUser -Name $username -ExternalEmailAddress $username@$acceptedDomain;
    set-mailuser -Identity $user.Identity -HiddenFromAddressListsEnabled $true; 
    which is totally wrong as below: 
    firstly it makes $AcceptedDomain variable to equal the Name of the accepted domain. 
    Not all customers configure the name of the Accepted Domain to be the Domain Name.
    Secondly  it makes $AcceptedDomain variable to equal the name of the first Accepted Domain.
    The first domain may be not the default Accepted Domain. 
    So I have configured the script as below
    $acceptedDomains = Get-AcceptedDomain | ? {$_.Default -eq "True"}  ;
      if ($acceptedDomains -eq $null)
        WriteError ("There is no accepted domain so user can not be created.")
      $acceptedDomain = $acceptedDomains.DomainName;
      if($UseDomainController -eq $true)
        $user = New-MailUser -Name $username -DomainController $DomainController -ExternalEmailAddress $username@$acceptedDomain;
    set-mailuser -Identity $user.Identity -HiddenFromAddressListsEnabled $true -DomainController $DomainController
      else
        $user = New-MailUser -Name $username -ExternalEmailAddress $username@$acceptedDomain;
    set-mailuser -Identity $user.Identity -HiddenFromAddressListsEnabled $true; 
    I hope This help. 
    Thanks 
    Ahmed Fouad

    Hi,
    This is helpful, thanks for sharing.
    Best regards,
    Belinda Ma
    TechNet Community Support

  • Error message while i am trying to configure app server domain in PT 8.48.1

    Team,
    I am getting below error message while i am trying to configure app server domain in PT 8.48.16. I have uninstall TUXEDO 8.1 and then install 3 times. But, no luck.
    Enter domain name to create
    :CRPROD
    Merging old domain configuration file with new template file...
    source C:\Documents and Settings\psadmin\Desktop\psappsrv.cfg
    template E:\psoft\PT848\appserv\large.cfx
    destination E:\psoft\PT848\appserv\CRPROD\psappsrv.cfg
    Creating domain folder CRPROD...
    Copy psappsrv.ubx to CRPROD\psappsrv.ubx failed!
    psappsrv.ubx
    Copy psappsrv.ubx to CRPROD1\psappsrv.ubx failed!
    Copy psasnt.val to CRPROD1\psappsrv.val failed!
    Copy psappsrv.psx to CRPROD1\psappsrv.psx failed!
    Copying Jolt repository file...
    Copy jrepository to CRPROD1\ failed!

    I get below error when i try to create a domain from import a file option.
    PeopleSoft Import Application Server Configuration
    1) Import from file
    2) Import from application domain
    q) Quit
    Command to execute (1-2, q) : 1
    Enter full path to configuration file
    :E:\psoft\PT848_bkp\appserv\CRPROD1\psappsrv.cfg
    Enter domain name to create
    :CRPROD1
    Application Server domain CRPROD1 already exists...
    1) Replace existing domain
    2) Enter different domain name
    q) Quit
    Command to execute (1-2, q) : 2
    Enter different name for domain: CRPROD
    Merging old domain configuration file with new template file...
    source E:\psoft\PT848_bkp\appserv\CRPROD1\psappsrv.cfg
    template E:\psoft\PT848\appserv\large.cfx
    destination E:\psoft\PT848\appserv\CRPROD\psappsrv.cfg
    Creating domain folder CRPROD...
    Copy psappsrv.ubx to CRPROD\psappsrv.ubx failed!
    psappsrv.ubx
    and when i try to crearte a domain with " create a domain " option , i got below error message.
    PeopleSoft Application Server Administration
    1) Administer a domain
    2) Create a domain
    3) Delete a domain
    4) Import domain configuration
    q) Quit
    Command to execute (1-4, q) : 2
    Please enter name of domain to create :CRPROD1
    Configuration templates:
    1) developer
    2) large
    3) medium
    4) small
    Select config template number: 2
    Creating domain...
    Copying application server configuration files...
    Stripping Annotations...
    Copy psappsrv.ubx to CRPROD1\psappsrv.ubx failed!
    Copy psasnt.val to CRPROD1\psappsrv.val failed!
    Copy psappsrv.psx to CRPROD1\psappsrv.psx failed!
    Copying Jolt repository file...
    Copy jrepository to CRPROD1\ failed!
    Domain created.
    Would you like to configure this domain now? (y/n) [y] :Y
    Error opening file 'psappsrv.ubx':
    Error opening file 'psappsrv.ubx':
    Quick-configure menu -- domain: CRPROD1
    Features Settings
    ========== ==========
    Actions
    =========
    1) Load config as shown
    2) Custom configuration
    h) Help for this menu
    q) Return to previous menu
    HINT: Enter 3 to edit DBNAME, then 1 to load

  • Facing issue in configuring soa server in local jdev 11G

    Hi All,
    I am facing an issue in configuring local soa server in jdev 11G. I was trying to do the practice excercises in the local jdev and while configuring soa server followed following steps :-
    1. Configure SOA to install the Integrated OC4J Server
    a. In JDeveloper, select Tools -> Preferences, Run, and then select Integrated OC4J Server.
    b. Next, select Tools -> Configure SOA…
    c. Complete the dialog for your configuration specifying the database location and the SOA schema user name and password
    d. Use the Test button to test the database connection and then click on Ok
    This will take 8-10 minutes to run and when finished will end with "Build Successful."
    In the end I am getting following log file
    [echo] ==Starting standalone oc4j. Check server log D:\FMW\JdevInstance\system11.1.1.0.22.47.96\o.j2ee\embedded-oc4j\log\startsoa.log.
    [echo] ==Waiting max 420 second(s) for startup of URL http://LAP1-RBAGRI-IN:8988...
    [echo]
    * Configuring SOA Infrastructure has FAILED. *
    * Please check following logs for possible cause: *
    * D:\FMW\JdevInstance\system11.1.1.0.22.47.96\o.j2ee\embedded-oc4j\install\tmp\soa-infra-java.log
    * D:\FMW\JdevInstance\system11.1.1.0.22.47.96\o.j2ee\embedded-oc4j\log\startsoa.log
    [echo] ==Stopping oc4j standalone...
    BUILD SUCCESSFUL
    Total time: 7 minutes 11 seconds

    Hi Heidi,
    Thanks a lot for your response. The solution you provided worked for me. I am able to configure SOA now and the SOAConsole is coming up properly.
    One issue I am facing while deploying my application . The application is getting deployed properly but it does not show up in the console if I look at Default server console I can see this error message :-
    Incorrect db schema version.
    The database schema version "11.1.6" from the database does not match the version "11.1.7" expected by the server.
    The database schema for your SOA installation was not properly installed or your installation is using a database schema installed for a prior release.
    The database schema currently in place has probably been configured for a previous release; please re-install the database schema and try to start the server again.
    Though I have configured the database locally just like mentioned in the training material. Please let me know if you have any thoughts on this.
    Regards,
    Ranjana

  • How do you configure the server in this situation?????????????

    Hi,
    We have Oracle 10.2 and Windows 2003.
    We have Oracle on Cluster (with Windows software).
    When the System are without cluster all it’s OK!!!!!!
    We have 2 Resources Cluster Group: Oracle and Applications.
    We have Oracle in Oracle cluster group.
    We have “W” Drive and a ftp program in Application cluster group.
    We have C drive in both nodes. We have installed Oracle in both nodes but we have “W” drive only associate to the Active Node because is a Cluster resource (Application cluster group).
    All days we receive text files by ftp and we put it on W Drive. This text files are readen with external tables in Oracle.
    We have a problem when oracle fails and it goes to the another node (for ex. node2) because the external tables fail because the files are on Node1 on W Drive. If we move manually Applications cluster resource to Node2 then all it is OK.
    We think to put UNC pathes instead of “W” but it’s not possible (Metalink: Note:290703.1)
    How do you configure the server in this situation?????????????
    Thanks!

    We run a similar configurations and i doubt you have a chance other then reconfigure your setup. The way we do it is to have an ftp client in our database group and periodically transfer the files a second time (not elegant but it's working).
    If that's not an option you might be able to use unc names in your ftp server and set the ftp root to a directory hosted on a disk which is part of the database group.
    Or move to unix (that's what we do now). Than you don't have to bounce your server once in a month to apply security patches...

  • [Forum FAQ] How to install and configure Windows Server Essentials Experience role on Windows Server 2012 R2 Standard via PowerShell locally and remotely

    As we all know,
    the Windows Server Essentials Experience role is available in Windows Server 2012 R2 Standard and Windows Server 2012 R2 Datacenter. We can add the Windows Server
    Essentials Experience role in Server Manager or via Windows PowerShell.
    In this article, we introduce the steps to install and configure Windows
    Server Essentials Experience role on Windows Server 2012 R2 Standard via PowerShell locally and remotely. For better analyze, we divide this article into two parts.
    Before installing the Windows Server Essentials Experience Role, please use
    Get-WindowsFeature
    PowerShell cmdlet to ensure the Windows Server Essentials Experience (ServerEssentialsRole) is available. (Figure 1)
    Figure 1.
    Part 1: Install Windows Server Essentials Experience role locally
    Add Windows Server Essentials Experience role
    Run Windows PowerShell as administrator, then type
    Add-WindowsFeature ServerEssentialsRole cmdlet to install Windows Server Essentials Experience role. (Figure 2)
    Figure 2.
    Note: It is necessary to configure Windows Server Essentials Experience (Post-deployment Configuration). Otherwise, you will encounter following issue when opening Dashboard.
    (Figure 3)
    Figure 3.
      2. Configure Windows Server Essentials Experience role
    (1)  In an existing domain environment
    Firstly, please join the Windows Server 2012 R2 Standard computer to the existing domain through the path:
    Control Panel\System\Change Settings\”Change…”\Member of. (Figure 4)
    Figure 4.
    After that, please install Windows Server Essentials Experience role as original description. After installation completed, please use the following command to configure Windows
    Server Essentials:
    Start-WssConfigurationService –Credential <Your Credential>
    Note: The type of
    Your Credential should be as: Domain-Name\Domain-User-Account.
    You must be a member of the Enterprise Admin group and Domain Admin group in Active Directory when using the command above to configure Windows Server Essentials. (Figure 5)
    Figure 5.
    Next, you can type the password for the domain account. (Figure 6)
    Figure 6.
    After setting the credential, please type “Y” to continue to configure Windows Server Essentials. (Figure 7)
    Figure 7.
    By the way, you can use
    Get-WssConfigurationStatus
    PowerShell cmdlet to
    get the status of the configuration of Windows Server Essentials. Specify the
    ShowProgress parameter to view a progress indicator. (Figure 8)
    Figure 8.
    (2) In a non-domain environment
    Open PowerShell (Run as Administrator) on the Windows Server 2012 R2 Standard and type following PowerShell cmdlets: (Figure 9)
    Start-WssConfigurationService -CompanyName "xxx" -DNSName "xxx" -NetBiosName "xxx" -ComputerName "xxx” –NewAdminCredential $cred
    Figure 9.
    After you type the commands above and click Enter, you can create a new administrator credential. (Figure 10)
    After creating the new administrator credential, please type “Y” to continue to configure Windows Server Essentials. (Figure 11)
    After a reboot, all the configurations will be completed and you can open the Windows Server Essentials Dashboard without any errors. (Figure 12)
    Figure 12.
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    Part 2: Install and configure Windows Server Essentials Experience role remotely
    In an existing domain environment
    In an existing domain environment, please use following command to provide credential and then add Server Essentials Role: (Figure 13)
    Add-WindowsFeature -Name ServerEssentialsRole
    -ComputerName xxx -Credential DomainName\DomainAccount
    Figure 13.
    After you enter the credential, it will start install Windows Server Essentials role on your computer. (Figure 14)
    Figure 14.
    After the installation completes, it will return the result as below:
    Figure 15.
    Next, please use the
    Enter-PSSession
    cmdlet and provide the correct credential to start an interactive session with a remote computer. You can use the commands below:
    Enter-PSSession –ComputerName
    xxx –Credential DomainName\DomainAccount (Figure 16)
    Figure 16.
    Then, please configure Server Essentials Role via
    Add-WssConfigurationService cmdlet and it also needs to provide correct credential. (Figure 17)
    Figure 17.
    After your credential is accepted, it will update and prepare your server. (Figure 18)
    Figure 18.
    After that, please type “Y” to continue to configure Windows Server Essentials. (Figure 19)
    Figure 19.
    2. In a non-domain environment
    In my test environment, I set up two computers running Windows Server 2012 R2 Standard and use Server1 as a target computer. The IP addresses for the two computers are as
    below:
    Sevrer1: 192.168.1.54
    Server2: 192.168.1.53
    Run
    Enable-PSRemoting –Force on Server1. (Figure 20)
    Figure 20.
    Since there is no existing domain, it is necessary to add the target computer (Server1) to a TrustedHosts list (maintained by WinRM) on Server 2. We can use following command
    to
    add the TrustedHosts entry:
    Set-Item WSMan:\localhost\Client\TrustedHosts IP-Address
    (Figure 21)
    Figure 21.
    Next, we can use
    Enter-PSSession
    cmdlet and provide the correct credential to start an interactive session with the remote computer. (Figure 22)
    Figure 22.
    After that, you can install Windows Server Essentials Experience Role remotely via Add-WindowsFeature ServerEssentialsRole cmdlet. (Figure 23)
    Figure 23.
    From figure 24, we can see that the installation is completed.
    Figure 24.
    Then you can use
    Start-WssConfigurationService cmdlet to configure Essentials Role and follow the steps in the first part (configure Windows Server Essentials Experience in a non-domain environment) as the steps would be the same.
    The figure below shows the status of Windows Server Essentials.
    Figure
    25.
    Finally, we have successfully configured Windows Server Essentials on Server1. (Figure 26)
    Figure 26.
    More information:
    [Forum
    FAQ] Introduce Windows Powershell Remoting
    Windows Server Essentials Setup Cmdlets
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

  • How to configure mail server

    Hi All,
    we are in a process of configure mail server in one of our sap instance.
    i have done the following settings,
    1. In t-code sicf      under virtual host SAPCONNECT, 
    2.   I  have added  in host data * : *
    3.under handler list CL_SMTP_EXT_SAPCONNECT.
    4. now in scot i have added my deault domain under "settings -> default domain " <company name.com>
    5.on double clicking on SMTP i have added the following entries
      SMTP CONNECTIONS : mail host :  smtp.gmail.com
                                               port : 465
                                           code page : 0
    SUPPORT ADDRESS TYPE : i have set internet address to *
    did i miss any of the steps in configuring the SMTP mail server.
    after sending the mail when i look in to t code  sost the message number displays "672"
    please advice how can i  configure mail server for incoming and outgoing
    Thanks in advance,
    Vardhan

    Hello Vardhan,
    I suggest you to go through the below links and cross check the configuration.
    http://help.sap.com/saphelp_nw04/helpdata/en/66/9c25413fabef23e10000000a155106/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/af/73563c1e734f0fe10000000a114084/content.htm
    http://help.sap.com/saphelp_470/helpdata/en/af/73563c1e734f0fe10000000a114084/content.htm
    Thanks,
    Siva Kumar
    Edited by: Siva Kumar Arivinti on Jan 19, 2012 3:16 AM

  • How to configure mail server for subscription

    Hi,
    I want to test subscription. My problem is how to configure the mail server.
    As to my understanding, we need first configure mail server, then the user can choose "Subscribe" in the Details screen of a folder.
    My steps are:
    1. In KM - CM - Utilities - Channels, specify SMTP server, userId and password.
    2. In KM - CM - Utilities - Channel originators, set the Original address for notificator.EMAIL.
    3. In KM - Collaboration - Groupware Transport - Mail Transport, specify SMTP server and sent message folder.
    After that, when I choose a user and click "Send email", it failed saying "Failed to communicate with SMTP server when sending the email.".
    Could anyone tell me what's wrong with my configuration, or what should I do to make subscription work?
    Thanks,
    Ray

    Hi Vineeth,
    Thanks for help.
    According to your steps:
    1. set up a mail transport and making notification and mailing service active.
       In System admin - KM - CM - Global services, I've enabled Inbox, Mailing and Notification services.
      In KM - CM - Collaboration - Groupware Transport, I've set up a mail transport:
      Name: JavaMailTransport
      SMTP Server: smtp.yahoo.com
      Sent message folder: /documents
      System alias name: mytransport
    2. Give everyone read permission on notifications in KM.
      Where can I set user's permission on notifications? I think you mean folder /etc/notifications, but I don't know how to set permissions.
    3. Check if proper id's are maintained in users profile.
      How to do this?
    Thanks for help~~
    Regards,
    Ray

  • Incorrect/Corrupt Farm Configuration database server name

    I have a SharePoint 2007 farm (version 12.0.0.6219) with a corrupt configuration database (SQL Server 2008 R2) consisting of a Central Administration server and a database server for Windows SharePoint Services Database. In a failed attempt to move the configuration
    database to a new SQL server, the farm is referring to a SQL server that no longer exists. All databases on the new SQL server have been successfully moved from the old SQL server, but SharePoint does not recognize the configuration database. The network name
    of the old SQL server has been aliased to the never SQL server, so the farm is operational. But the
    Servers in Farm page states the old server as the configuration database server.
    After doing my own research, it appears to me the issue is in the Objects table in the
    SharePoint_Config database below.
    Id
    ClassId
    ParentId
    Name
    Status
    Version
    1
    AF14B6A3-2152-41BB-9407-3BB3D8E30C10
    3112E92F-B97D-481E-8CEB-03FDE15ED1A7
    BD5B4337-4294-4FC4-8EE2-0D51968D05DB
    0
    0x00000000000007DD
    2
    990CCD53-6D0F-4998-A060-45408E818ED5
    3112E92F-B97D-481E-8CEB-03FDE15ED1A7
    5DAA8D3C-B6EF-443C-B6AC-E1F704E35A94
    0
    0x00000000000BDF1D
    3
    DA951888-B47A-473E-97C2-B0EF78226512
    E6591A38-008A-4F23-A88F-36A181C7D4EB
    AF14B6A3-2152-41BB-9407-3BB3D8E30C10
    SharePoint_Config
    0
    0x00000000000007E3
    4
    109CA292-69CB-417D-AFDF-C2A9DCE44A1B
    674DA553-EA77-44A3-B9F8-3F70D786DE6A
    109CA292-69CB-417D-AFDF-C2A9DCE44A1B
    SharePoint_Config
    0
    0x00000000000008E7
    5
    BD5B4337-4294-4FC4-8EE2-0D51968D05DB
    E77AAF47-3CAC-4001-BC6B-5BCCB6486318
    109CA292-69CB-417D-AFDF-C2A9DCE44A1B
    Old SQL Server
    0
    0x00000000000007D4
    6
    5A9AAEA8-A7E8-490F-8107-3D61F0D2A4E5
    E77AAF47-3CAC-4001-BC6B-5BCCB6486318
    109CA292-69CB-417D-AFDF-C2A9DCE44A1B
    Exchange server
    0
    0x0000000000039216
    7
    3886B6E4-0E9E-499B-96A0-7CC677F8A5D0
    E77AAF47-3CAC-4001-BC6B-5BCCB6486318
    109CA292-69CB-417D-AFDF-C2A9DCE44A1B
    Web Server
    0
    0x00000000000BFE51
    8
    5DAA8D3C-B6EF-443C-B6AC-E1F704E35A94
    E77AAF47-3CAC-4001-BC6B-5BCCB6486318
    109CA292-69CB-417D-AFDF-C2A9DCE44A1B
    New SQL server
    0
    0x00000000000BDF17
    It looks like all I’d have to do delete row id’s ...E1F704E35A94 and ...45408E818ED5 (<red>red</red> row #’s 8 and 2) after shutting down all SharePoint Web Applications and services. Then update
    Old SQL Server with New SQL Server. Possibly even deleting row ...B0EF78226512 (orange row # 3) could be done as it appears to be an orphaned part of the configuration. These ids are not referenced in any other table in this database.
    Any help on this would be appreciated. Thanks in advance.
    P.S. Sorry it looks like my table rendering didn't work as intended.
    -----&amp;gt;Executive Vector

    are you using the SQL alias to pointing to the Config Database server?
    did you stop all the timers services, admin services other services before moving the Config DB and configuring the alias to new server.if you did not then it will corrupted.
    If you are not using the SQL Alias and using the sql server name then you cannot move it.
    you need to rebuild new farm with creation of new Config DB, then create SSP /Web apps and attached your content Database.
    Directly playing with the Config Database is not a good idea at all and i am sure deletion is not supported in any means.
    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

  • TS3276 I receive a pop up from ICal saying the server does not recognize me user name and password.  This started yesterday.  I have no problems with receiving or sending emails through Mail

    I receive a pop-up from ICal saying the server does not recognize my user name and password for my me.com email address.  This started yesterday and occurs about every 5 minutes or so.  There are no problems with receiving or sending email through Mail.  I did change me email password several days ago but have no problems sending/receiving since then.

    I fixed the problem.  I opened Preferences in ICal and entered my new password.  No more pop-ups

  • How to configure http server in oracle 10g

    Hi
    I am configuring apex 3.2.1 on oracle 10g 10.2.0 I need help how to configure http server bec i did not find any Apache file or folder in 10g if it is then how .
    Arshad

    Hi
    I use to configure only this in $ORACLE_HOME/forms/server/forms.conf (and restart ias):
    AddType application/x-orarrp rrp_
    AddType application/x-orarrp-text rrpt
    AddType application/x-orarrp-ps rrpp
    AddType application/x-orarrp-pdf rrpa
    AddType application/x-orarrp-rtf rrpr
    AddType application/x-orarrp-html rrph

  • Error when configuring Portal Server 7.1 Update 1 on Solaris 10 x86 VM

    I have installed Portal Server 7.1 with most of the default options/settings but I was unable to get the server up. Going through /var/opt/SUNWportal/logs/config/portal.fabric.0.0.log, I found some SEVERE entries:
    [#|2008-03-04T18:10:21.184-0500|SEVERE|SJS Portal Server|debug.com.sun.portal.fabric.util|ThreadID=10; ClassName=com.sun.portal.fabric.util.ExecuteUtil; Meth
    odName=exec; |PSFB_CSPFU0003: Argument List=/usr/lib/cacao/bin/cacaoadm
    java.io.IOException: Not enough space
    at java.lang.UNIXProcess.forkAndExec(Native Method)
    at java.lang.UNIXProcess.<init>(UNIXProcess.java:53)
    at java.lang.ProcessImpl.start(ProcessImpl.java:65)
    at java.lang.ProcessBuilder.start(ProcessBuilder.java:451)
    at java.lang.Runtime.exec(Runtime.java:591)
    at java.lang.Runtime.exec(Runtime.java:507)
    at com.sun.portal.fabric.util.ExecuteUtil.exec(Unknown Source)
    at com.sun.portal.fabric.util.ExecuteUtil.exec(Unknown Source)
    at com.sun.portal.fabric.tasks.Cacao.execCommand(Unknown Source)
    at com.sun.portal.fabric.tasks.Cacao.execCacaoCommand(Unknown Source)
    at com.sun.portal.fabric.config.PortalConfigurator.configureHost(Unknown Source)
    at com.sun.portal.fabric.config.ConfigurePortal.main(Unknown Source)
    |#]
    [#|2008-03-04T18:10:21.186-0500|INFO|SJS Portal Server|debug.com.sun.portal.fabric.tasks|ThreadID=10; ClassName=com.sun.portal.fabric.tasks.Cacao; MethodName
    =execCommand; |PSFB_CSPFT0342:</usr/lib/cacao/bin/cacaoadm status> Returned <null>|#]
    [#|2008-03-04T18:10:21.196-0500|SEVERE|SJS Portal Server|debug.com.sun.portal.fabric.config|ThreadID=10; ClassName=com.sun.portal.fabric.config.PortalConfigu
    rator; MethodName=configureHost; |PSFB_CSPFC0024:Failed to configure the Host
    java.lang.NullPointerException
    at com.sun.portal.fabric.config.PortalConfigurator.configureHost(Unknown Source)
    at com.sun.portal.fabric.config.ConfigurePortal.main(Unknown Source)
    |#]
    [#|2008-03-04T18:10:21.205-0500|SEVERE|SJS Portal Server|debug.com.sun.portal.fabric.config|ThreadID=10; ClassName=com.sun.portal.fabric.config.ConfigurePort
    al; MethodName=main; |PSFB_CSPFC0014:Failed configuring Portal Server!!
    com.sun.portal.fabric.tasks.ConfigurationException: java.lang.NullPointerException
    at com.sun.portal.fabric.config.PortalConfigurator.configureHost(Unknown Source)
    at com.sun.portal.fabric.config.ConfigurePortal.main(Unknown Source)
    Caused by: java.lang.NullPointerException
    ... 2 more
    |#]
    Can anyone tell me where to go from here? Thanks!

    Thanks for the reply!
    I have added more memory and swap. I took example1.xml, filled in the parameters and ran psconfig on it. The following is the output I got:
    Logs redirected to /var/opt/SUNWportal/logs/config/portal.fabric.0.0.log
    Successfully created PSConfig.properties file
    Exception in thread "main" java.lang.NoClassDefFoundError: com/iplanet/sso/SSOToken
    at com.sun.portal.fabric.config.ConfigurePortal.main(Unknown Source)
    Looking at /var/opt/SUNWportal/logs/config/portal.fabric.0.0.log, there isn't any recent entry. What's next?

Maybe you are looking for

  • Can not see two fields in Crystal 2008 Developer explorer/designer view

    I am currently developing crystal 2008 reports against the salesforce.com database using version 12.0.0.683 CR Developer Full version. I am using an updated driver that was provided in July or Aug 08 in order to view self referencing fields. The prob

  • Default Code Generation for a Custom Class for an Application Module

    hi all Oracle® Fusion Middleware Fusion Developer's Guide for Oracle Application Development Framework 11g Release 1 (11.1.1) with Jdeveloper TP3 , By default, the application module Java class will look similar to what you see in Example below when

  • Max Hard Drive size for Ultra 10s

    Hi, I'm kinda new to sun and I have a ultra 10s with a 9 Gig factory installed HD. I was wondering what the maximum sized IDE hard drive that can be installed. I would like to mirror the system as well. I've seen another post about this but the max s

  • WebService From a BAPI & Commit

    Heyho! I created a Webservice from a BAPI (From BusinessPartner, to create a BP). There is the option to add  "TransactionCommit" and "TransactionRollBack" to the Service Definition (that is what i did). I consume the Webservice with an external Java

  • Required information on Batch status updatings.

    Hi, I want to change batch status after creating the outbound delivery through inbound idoc, i was able to create delivery , but after creation, i should update the batch status using function module BAPI_BATCH_SAVE_REPLICA, but i was unable to execu