Composite with dependency not working after soa server restart

Hello,
I have composite application that invokes another composite application. After deploying those work fine. But after restarting soa server the one having dependency does not work any more. To soa server log I get following:
<Jul 1, 2010 11:45:29 AM EEST> <Error> <oracle.integration.platform> <SOA-20003> <Unable to register service.
oracle.fabric.common.FabricException: Error in getting XML input stream: http://Yacico:8001/soa-infra/services/default/validationForCC/getStatusByCC?WSDL: Response: '503: Service Unavailable' for url: 'http://Yacico:8001/soa-infra/services/default/validationForCC/getStatusByCC?WSDL'
at oracle.fabric.common.metadata.MetadataManagerImpl.getInputStreamFromAbsoluteURL(MetadataManagerImpl.java:276)
Caused By: java.io.FileNotFoundException: Response: '503: Service Unavailable' for url: 'http://Yacico:8001/soa-infra/services/default/validationForCC/getStatusByCC?WSDL'
<Jul 1, 2010 11:45:30 AM EEST> <Error> <oracle.integration.platform> <SOA-20020> <Deployment of composite "POProcessing" failed: Unable to find a WSDL that has a definition for service {http://oracle.com/sca/soapservice/POProcessing/POProcessing/receivePO}receivePO and port execute_pt. Please make sure that the port attribute for the binding defined in the composite file is correct by checking the namespace, service name, and port name. In addition, check that the WSDL associated with the binding namespace is imported and currently reachable (check the import nodes at the top of the composite file). Finally, validate the HTTP proxy settings for the server..>
So POProcessing does not work any more after server restart. validationForCC works fine also after server restart. Url http://...validationForCC/getStatusByCC?WSDL points to wsdl file and is visible by browser.
I use soa suite 11g patch set 2 (11.1.1.3) running on redhat enterprise linux 5.
Any idea what is the problem?
Is it somehow possible to configure which composites are started first during server startup?
regards, Matti
Edited by: user10197965 on Jul 1, 2010 2:28 AM

Yes, I did that. I'm not all that happy about this as a solution either, but it's better than making multiple copies.
We have since found out that his is a known bug and that it is fixed in some, but not all, deployments.
-------- see below -------------
Composites With WSDL Dependencies Fail To Deploy Following SOA Server Restart [ID 1272070.1]          
Modified:Jul 19, 2012 Type:PROBLEM Status:MODERATED Priority:3                         
In this Document
     Symptoms
     Cause
     Solution
     References
This document is being delivered to you via Oracle Support's Rapid Visibility (RaV) process and therefore has not been subject to an independent technical review.
Applies to:
Oracle SOA Platform - Version 11.1.1.3.0 and later
Information in this document applies to any platform.
Symptoms
A SOA Project has an external reference to a Web Service or a reference to another Composite.
When the SOA Server is started, the Composite is trying to access the WSDL of it's referenced Web Service in order to load data structures. If SOA can not find the WSDL then the Composite fails to load/deploy.
Once this happens the Composite can not be started, or shutdown, from Enterprise Manager Fusion Middleware Control Application.
Related Error Messages:
[ERROR] [SOA-20020] ... Unable to find a WSDL that has a definition for service ... Please make sure that the port attribute for the binding defined in the composite file is correct by checking the namespace, service name, and port name. In addition, check that the WSDL associated with the binding namespace is imported and currently reachable (check the import nodes at the top of the composite file). Finally, validate the HTTP proxy settings for the server.]
javax.wsdl.WSDLException: WSDLException: faultCode=INVALID_WSDL: Error reading import of oramds
Cause
When SOA Server is restarting the Composite can not access the WSDL of it's referenced Web Service (it is not available).
In the first scenario there are two Composites on the same server: CompositeA and CompositeB.
In SOA Suite 11g there is no possibility to specify the load order for the composites. If CompositeA references CompositeB and if CompositeA is firstly loaded then it can not access the WSDL from CompositeB and the issue occurs.
In the second situation there is one Composite on the server (CompositeA) which references an external WebService (ExternalWS). If the ExternalWS is not available when the SOA Server is starting then this issue occurs.
Solution
Solution 1
Redeploy the affected Composite into the SOA Server.
You can do that but it is not advisable in a production environment and in a development environment it will take a lot of time to redeploy the composite manually
Solution 2
Copy the abstract WSDL locally into the project.
This is documented in these articles in our Knowledge base:
•     Document:1155033.1 Node Restart Cause Composites To Become Unavailable. Response: '503: Service Unavailable'
•     Document:1151973.1 Boot Order Of The Composites Upon Soa Suite Restart
Steps:
o     a. Copy and use the WSDL file in the Project
o     b. Edit the WebService Adapter
o     c. Change the "WSDL URL" to point to the WSDL copied into the project
o     d. Redeploy the Project
o     e. Make this configuration with all the Projects that have a references with other Web Services
Solution 3
Use shared artifacts in Metadata Service (MDS). A WSDL used by more than one composite is a shared artifact per definition. If the WSDL structure is changed (that is not happening frequently in a production environment), you will normally deploy a composite with a new version because overwriting it will break your production environment. Moreover, in a development environment you will need a proper process in place where different developers access the same artifacts within MDS. In addition, when you use external WSDLs (owned by third parties), you will have a proper process/agreement in place to be notified about modifications affecting your applications.
1.     In order to use shared artifacts a MDS connection must be configured in jDeveloper:
http://download.oracle.com/docs/cd/E14571_01/integration.1111/e10224/sca_lifecycle.htm#SOASE85488
2.     Deploy the shared artifacts:
o     a. Create a JAR profile and include the artifacts to share
o     b. Create a SOA bundle that includes the JAR profile
o     c. Deploy the SOA bundle to the application server
http://download.oracle.com/docs/cd/E14571_01/integration.1111/e10224/sca_lifecycle.htm#SOASE85472
If the shared artifacts (WSDLs) needed are from other composites this step can be skipped
3.     Create a new WebService
o     a. When completing the "WSDL URL" click on "Find existing WSDL's"
o     b. Select "Resource Palette"
o     c. Go to the SOA-MDS
o     d. Select a WSDL from a Composite or the one deployed at step 2.
Known Restriction 1
The port and the location for the WSDL reference is not completed automatically by jDeveloper in the composite.xml file. This information must be inserted manually. In Bug:10287325 is raised this issue and it is available for SOA 11gPS2+.
Known Restriction 2
Another issue regarding MDS caching is raised in Bug:10218147 - the MDS cache is not refreshed when an artifact is deployed or deleted.
In order to refresh this cache the server must be restarted. This Bug resolves the issue but in a production environment the server restart will be the preferred option. The reason for that is because in a production environment you never deploy single composites under the same version after artifacts (WSDLs) have been modified.
The fix for the Bug:10218147 can be an acceptable solution in development environment where redeployment would be quicker than restarting the server.
Bug:10218147 is available for SOA 11gPS2+.
To find out more information about how to use Shared Metadata check the following documentation:
Oracle Fusion Middleware Developer's Guide for Oracle SOA Suite 11g
41 Deploying SOA Composite Applications
41.7.3 Deploying and Using Shared Metadata Across SOA Composite Applications in Oracle JDeveloper
URL:
http://download.oracle.com/docs/cd/E14571_01/integration.1111/e10224/sca_lifecycle.htm#CACFEAJJ
Solution 4
The last solution is to use an UDDI (Universal Description Discovery and Integration).
Oracle recommends Oracle Service Registry 11g (OSR). The advantage is that you can use OSR and SOA Suite in a Shared WebLogic Domain.
http://www.oracle.com/technetwork/middleware/registry/overview/index.html
http://blogs.oracle.com/governance/2010/05/oracle_service_registry_11gr1.html
To find out more information about Oracle Service Registry check the following documentation:
Oracle Fusion Middleware Administrator's Guide for Oracle SOA Suite 11g
33 Configuring Service and Reference Binding Components
33.1.3 Changing the Endpoint Reference and Service Key for Oracle Service Registry Integration
http://download.oracle.com/docs/cd/E15523_01/integration.1111/e10226/bc_config.htm#SOAAG37248
Oracle Fusion Middleware Developer's Guide for Oracle SOA Suite 11g
A BPEL Process Activities and Services
A.4 Publishing and Browsing the Oracle Service Registry
http://download.oracle.com/docs/cd/E15523_01/integration.1111/e10224/bp_appx_ref.htm#SOASE85561
Oracle Fusion Middleware Service Registry 11g
http://download.oracle.com/otndocs/tech/soa/OSR11gR1ProductDocumentation.pdf
Solution 5
In case you have BPM Components in the Composites deployed check the following note:
Document 1317803.1 Soa Suite Composite Fails To Deploy Upon Restart Of Managed Server
The issue is caused by the Bug:11822470 SOA SUITE COMPOSITE FAILS TO DEPLOY UPON RESTART OF MANAGED SERVER
References
BUG:10218147 - WSDL CHANGES NEED SOA SUITE SERVER RESTART
BUG:10278478 - WHEN SOA SERVER IS RESTARTED, SOME SOA COMPOSITES COULD NOT LOAD/BE DEPLOYED
BUG:10287325 - ABSTRACT WSDL NOT AVAILABLE WHEN COMPOSITE STARTED
BUG:10311698 - WHEN SOA SERVER IS RESTARTED, SOME SOA COMPOSITES CAN NOT BE STARTUP / SHUTDOWN
BUG:11822470 - SOA SUITE COMPOSITE FAILS TO DEPLOY UPON RESTART OF MANAGED SERVER
@ BUG:9267312 - MDS ARTIFACTS ARE STILL CACHED AFTER DELETING
@ BUG:9708488 - AFTER SOA RESTART, ALL PROCESSES HAVE TO BE REDEPLOYED
@ BUG:9749845 - SCHEMA CACHE STARTS EMPTY AFTER RE-START, BUT NOT AFTER DEPLOYMENT
NOTE:1151973.1 - Boot Order Of The Composites Upon Soa Suite Restart
NOTE:1155033.1 - Node Restart Cause Composites To Become Unavailable. Response: '503: Service Unavailable'
NOTE:1317803.1 - Soa Suite Composite Fails To Deploy Upon Restart Of Managed Server
Bug 11822470 : SOA SUITE COMPOSITE FAILS TO DEPLOY UPON RESTART OF MANAGED SERVER                    
               Bug Attributes     
Type     B - Defect     Fixed in Product Version     11.1.1.6
Severity     2 - Severe Loss of Service     Product Version     11.1.1.4
Status     80 - Development to QA/Fix Delivered Internal     Platform     912 - Microsoft Windows (32-bit)
Created     Mar 1, 2011     Platform Version     2003
Updated     Oct 12, 2012     Base Bug     N/A
Database Version     N/A     Affects Platforms     Generic
Product Source     Oracle          
Abstract: SOA SUITE COMPOSITE FAILS TO DEPLOY UPON RESTART OF MANAGED SERVER
*** 03/01/11 08:07 am ***
Customer has a project consists of two services for interaction with the
process and one reference to an external service.
On deployment of the process to an Enterprise Environment, the process works
as expected. However, upon a restart of the managed server, the process will
then fail to deploy.
Workaround used is to redeploy the project again.
Bug 10278478 : WHEN SOA SERVER IS RESTARTED, SOME SOA COMPOSITES COULD NOT LOAD/BE DEPLOYED                    
               Bug Attributes     
Type     B - Defect     Fixed in Product Version     
Severity     2 - Severe Loss of Service     Product Version     11.1.1.3.0
Status     92 - Closed, Not a Bug     Platform     226 - Linux x86-64
Created     Nov 10, 2010     Platform Version     RED HAT ENTERPRISE LINUX 5
Updated     Dec 10, 2010     Base Bug     N/A
Database Version     N/A     Affects Platforms     Generic
Product Source     Oracle          
Abstract: WHEN SOA SERVER IS RESTARTED, SOME SOA COMPOSITES COULD NOT LOAD/BE DEPLOYED
Detailed Problem Description
====================
When a SOA composite get dependencies with other SOA composites located on the same server, if the dependency is still not loaded, the SOA composite will not be loaded, and there is no possibilities for Entreprise Manager console to restart it (EM crash). The only way to make it working is to redeployed the SOA composite from jDeveloper that is not acceptable in a production environment.
The composite that has the issue cannot be start-up or shut-down, although the Enterprise Manager do not show any errors with it.

Similar Messages

  • Wifi connection with 4s not working after installing new software ios6

    wifi connection with 4s not working after installing ios 6.

    Go to Settings > WiFi > Select your network and hit the right arrow to "Forget Network"
    Then go to Settings > General > Reset Network Settings  and try connecting again when the phone restarts.

  • CFHTTP with https not working after server IP change (CF 10, Windows Server 2008 R2)

    Hi,
    We noticed that a call to https://www.googleapis.com/ via CFHTTP stopped working after our sysadmin switched the IP of our web server.
    The error from ColdFusion is:
    JSON parsing failure at character 1:'C' in Connection Failure
    After researching, I tried using the keytool ([CF 10 root]/jre/bin/keytool.exe to import the top-level certificate (GeoTrust Global CA), which was exported from Google Chrome 42 in DER format.
    I used the following flags:
    -import -v -alias GAGLOBAL -file [.cer location] -keystore cacerts -storepass [password]
    It appeared to add correctly, as it displayed the owner, issuer, etc. and asked if I wanted to trust the certificate. I replied "yes", and it responded "Certificate added to keystore" [Storing cacerts]. I then restarted the CF 10 application service. The same error persists.
    Please advise.
    Thanks,
    Dave

    Hi,
    According to your description, my understanding is that manually added statics route disappeared after rebooting.
    Try to use command line:
    Route –p add destination mask subnetmask
    gateway metric costmetric if
    interface
    Note:
    Interface indicates the interface number. Type route print, the first column of
    interface list, find the interface number corresponding to the MAC address.
    Routes added by using the -p option are stored in the registry under the following key:
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip \Parameters\PersistentRoutes
    You may open registry edit and check to see if the registry entry is added.
    Besides, you may try a work around way to add this route entry in hosts file, which are stored in the local systemroot\System32\Drivers\Etc
    folder.
    Best Regards,
    Eve Wang
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Simple SOA composite with BPEL  not working

    I Selected composite with BPEL.Used Invoke activity to File Adapter- .
    In Composite.xml I dont see any wire between component and File Adapter. When i deploy Error: Reference File AdapterBPEL Process Read Input does not exist as wire target
    And in composite.xml if i drag a wire from component to File Adapter , a new (file adapter) is added in BPEL process.
    Thank You
    Edited by: user13374451 on Jul 23, 2010 11:01 AM
    Edited by: user13374451 on Jul 23, 2010 7:14 PM
    Edited by: user13374451 on Jul 23, 2010 10:32 PM
    Edited by: user13374451 on Jul 23, 2010 10:33 PM
    Edited by: user13374451 on Jul 24, 2010 12:09 PM

    Hi,
    For this issue to be resolved, when it gives the compilation error saying "wire does not exist", you need to drag the a wire from the file adapter to the bpel process.
    This error comes when we use the service(In your case file adapter) as a partnerlink in the BPEL, but did not wire the service and bpel manually in composite.
    Generally when you create a service/reference in composite.xml, you need to wire it to the BPEL and this would create a reference automatically in the bpel and this error can be prevented

  • Secondary Server MP is not working after primary server database up gradation.

    Hi All,
    Required your Help for MP Issue.
    we had migrated the SQL data base in one of our Primary server, where there is 10 secondary servers are available. 
    7 secondary servers are working fine and remain 3 servers MP has down after the migration. 
    PFB the MPcontroal log.
    NetBIOS_AddName(): LocalName: MP_XXX          LanaNumber: 2
    SMS_MP_CONTROL_MANAGER 7/8/2014 1:23:49 PM
    4480 (0x1180)
    RegisterWithWINS: NetBIOS_AddName(LANA=2) returned 0x0
    SMS_MP_CONTROL_MANAGER 7/8/2014 1:23:52 PM
    4480 (0x1180)
    NetBIOS_AddName(): LocalName: MP_XXX          LanaNumber: 7
    SMS_MP_CONTROL_MANAGER 7/8/2014 1:23:52 PM
    4480 (0x1180)
    RegisterWithWINS: NetBIOS_AddName(LANA=7) returned 0x0
    SMS_MP_CONTROL_MANAGER 7/8/2014 1:24:04 PM
    4480 (0x1180)
    MPStart(): RegisterWithWINS() returned 0x0 SMS_MP_CONTROL_MANAGER
    7/8/2014 1:24:04 PM 4480 (0x1180)
    MPStart(): PublishInDNS() returned 0x0 SMS_MP_CONTROL_MANAGER
    7/8/2014 1:24:04 PM 4480 (0x1180)
    Successfully Registered for IP Address Change notifications.
    SMS_MP_CONTROL_MANAGER 7/8/2014 1:24:04 PM
    4480 (0x1180)
    MPStart(): RegisterForIPAddressChangeNotification() returned 0x0
    SMS_MP_CONTROL_MANAGER 7/8/2014 1:24:04 PM
    4480 (0x1180)
    Attempting to register the SQL connection type for the configured SQL database.
    SMS_MP_CONTROL_MANAGER 7/8/2014 1:24:04 PM
    4480 (0x1180)
    Registered connection type for SQL Server 'XXX.com' and database 'SMS_XXX'.
    SMS_MP_CONTROL_MANAGER 7/8/2014 1:24:04 PM
    4480 (0x1180)
    MPStart(): RegisterSqlDatabaseConnectionType() returned 0x0
    SMS_MP_CONTROL_MANAGER 7/8/2014 1:24:04 PM
    4480 (0x1180)
    Checking the current CLR Enabled configuration setting for the configured SQL Server hosting the database.
    SMS_MP_CONTROL_MANAGER 7/8/2014 1:24:04 PM
    4480 (0x1180)
    Getting the CLR Enabled value from the configured SQL database.
    SMS_MP_CONTROL_MANAGER 7/8/2014 1:24:04 PM
    4480 (0x1180)
    Attempting to connect to the configured SQL database.
    SMS_MP_CONTROL_MANAGER 7/8/2014 1:24:04 PM
    4480 (0x1180)
    *** [08001][18][Microsoft][ODBC SQL Server Driver][DBNETLIB]SSL Security error
    SMS_MP_CONTROL_MANAGER 7/8/2014 1:29:06 PM
    4480 (0x1180)
    *** [01000][772][Microsoft][ODBC SQL Server Driver][DBNETLIB]ConnectionOpen (SECDoClientHandshake()).
    SMS_MP_CONTROL_MANAGER 7/8/2014 1:29:06 PM
    4480 (0x1180)
    *** Failed to connect to the SQL Server. SMS_MP_CONTROL_MANAGER
    7/8/2014 1:29:06 PM 4480 (0x1180)
    Failed to get connection to the configured SQL database.
    SMS_MP_CONTROL_MANAGER 7/8/2014 1:29:06 PM
    4480 (0x1180)
    Failed to connect to the configured SQL database.
    SMS_MP_CONTROL_MANAGER 7/8/2014 1:29:06 PM
    4480 (0x1180)
    Failed to get the current CLR Enabled configuration setting for the configured SQL Server hosting the database.
    SMS_MP_CONTROL_MANAGER 7/8/2014 1:29:06 PM
    4480 (0x1180)
    MPStart(): CheckSqlDatabaseClrEnabled() returned 0x800720d9
    SMS_MP_CONTROL_MANAGER 7/8/2014 1:29:06 PM
    4480 (0x1180)
    Waiting up to 300 seconds for the SMS Agent Host service to be running.
    SMS_MP_CONTROL_MANAGER 7/8/2014 1:29:06 PM
    4480 (0x1180)
    Stopped waiting for the SMS Agent Host service to be running; error = 0x0.
    SMS_MP_CONTROL_MANAGER 7/8/2014 1:29:06 PM
    4480 (0x1180)
    MPStart(): WaitOnSmsAgentHostRunning() returned 0x0
    SMS_MP_CONTROL_MANAGER 7/8/2014 1:29:06 PM
    4480 (0x1180)
    MPStart(): CreateThread() succeeded with id 0xc94.
    SMS_MP_CONTROL_MANAGER 7/8/2014 1:29:06 PM
    4480 (0x1180)
    SMS_MP_CONTROL_MANAGER successfully STARTED.
    SMS_MP_CONTROL_MANAGER 7/8/2014 1:29:06 PM
    4480 (0x1180)
    Configuration and Availability Monitor thread started.
    SMS_MP_CONTROL_MANAGER 7/8/2014 1:29:06 PM
    3220 (0x0C94)
    Initialized 'SMS Server Availability' performance instance => SMS Management Point.
    SMS_MP_CONTROL_MANAGER 7/8/2014 1:29:06 PM
    3220 (0x0C94)
    Call to HttpSendRequestSync failed for port 80 with status code 500, text: Internal Server Error
    Thanks in Advance.
    Regards,
    Raj.

    Yes, I know this is an old post, but I’m trying to clean them up.
    Based on your log file the problem appears to be a permission issue. “Failed to connect to the configured SQL database.”
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ

  • Another User with Mail Not Working After Upgrade to Leopard

    I started my own thread because the other person with the same issue was able to resolve his by moving the two files in the Mail library. Well, they don't exist in mine. So I can't move them.
    When I try to open mail, I get nothing. I have to manually open a message viewer window. When I do, there are no messages, I can't send or receive. The Connection Doctor shows that I am connected to the internet.
    When I try to quit mail, I can't - I have to force quit.
    I've tried the suggestions that were here:
    http://support.apple.com/kb/TS2537
    http://support.apple.com/kb/TS2486
    but so far no luck.
    Ideas?

    Create a new user account. Log out of your account and log into the new account. Open Mail and configure it for you mail server. If all is working properly, then you have some serious corruption of something in your normal user account. This may be caused by any number of things such as upgrading a dysfunctional OS X. You might then consider backing up your personal files and data, then erasing the hard drive and installing Leopard from scratch. Or you could try the following:
    How to Perform an Archive and Install
    An Archive and Install will NOT erase your hard drive, but you must have sufficient free space for a second OS X installation which could be from 3-9 GBs depending upon the version of OS X and selected installation options. The free space requirement is over and above normal free space requirements which should be at least 6-10 GBs. Read all the linked references carefully before proceeding.
    1. Be sure to use Disk Utility first to repair the disk before performing the Archive and Install.
    Repairing the Hard Drive and Permissions
    Boot from your OS X Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Installer menu (Utilities menu for Tiger.) After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list. In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive. If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported, then quit DU and return to the installer.
    2. Do not proceed with an Archive and Install if DU reports errors it cannot fix. In that case use Disk Warrior and/or TechTool Pro to repair the hard drive. If neither can repair the drive, then you will have to erase the drive and reinstall from scratch.
    3. Boot from your OS X Installer disc. After the installer loads select your language and click on the Continue button. When you reach the screen to select a destination drive click once on the destination drive then click on the Option button. Select the Archive and Install option. You have an option to preserve users and network preferences. Only select this option if you are sure you have no corrupted files in your user accounts. Otherwise leave this option unchecked. Click on the OK button and continue with the OS X Installation.
    4. Upon completion of the Archive and Install you will have a Previous System Folder in the root directory. You should retain the PSF until you are sure you do not need to manually transfer any items from the PSF to your newly installed system.
    5. After moving any items you want to keep from the PSF you should delete it. You can back it up if you prefer, but you must delete it from the hard drive.
    6. You can now download a Combo Updater directly from Apple's download site to update your new system to the desired version as well as install any security or other updates. You can also do this using Software Update.

  • IChat/Jabber not working after Lion Server upgrade

    I just upgraded our server to Lion today, and along with a slew of other issues, we can't get iChat working!  It worked initially, for about the first ten minutes after the upgrade, but now all I get is the following error message in the server log:
    Oct 28 20:47:18 reactor jabberd/c2s[4990]: failed loading authreg module 'sqlite' (dlopen(/var/jabberd/modules/jabberd2/authreg_sqlite.so, 1): image not found)
    Oct 28 20:47:18 reactor jabberd/sm[4987]: failed loading module 'disco-publish' to chain 'pkt-user' (dlopen(/var/jabberd/modules/jabberd2/mod_disco-publish.so, 1): image not found)
    Oct 28 20:47:18 reactor jabberd/sm[4987]: failed loading module 'disco-publish' to chain 'user-load' (dlopen(/var/jabberd/modules/jabberd2/mod_disco-publish.so, 1): image not found)
    Oct 28 20:47:18 reactor jabberd/sm[4987]: failed loading module 'disco-publish' to chain 'user-delete' (dlopen(/var/jabberd/modules/jabberd2/mod_disco-publish.so, 1): image not found)
    Oct 28 20:47:18 reactor jabberd/sm[4988]: failed loading module 'disco-publish' to chain 'pkt-user' (dlopen(/var/jabberd/modules/jabberd2/mod_disco-publish.so, 1): image not found)
    Oct 28 20:47:18 reactor jabberd/sm[4988]: failed loading module 'disco-publish' to chain 'user-load' (dlopen(/var/jabberd/modules/jabberd2/mod_disco-publish.so, 1): image not found)
    Oct 28 20:47:18 reactor jabberd/sm[4988]: failed loading module 'disco-publish' to chain 'user-delete' (dlopen(/var/jabberd/modules/jabberd2/mod_disco-publish.so, 1): image not found)
    So obviously it's missing the disco-publish module, but I'm not sure what to do about it, or the authreg module.  I checked the var/jabberd/modules/jabberd2 directory, and the .so file is indeed missing.  Any help is appreciated!

    bump

  • My composition widget is not working after the November Update

    Since i republished said site, my composition widget doesn't change when targets are hovered over, containers are not matched up with the right targets and the text is missing off the targets on a couple as well.
    http://www.stuttgartcountryclub.com
    All looks fine in Design view.
    Help please!

    I had to move it so site visitors wouldn’t see it…
    http://www.stuttgartcountryclub.com/old-items.html
    It appears to be working now…
    Nicki Case
    Marketing, Derden Inc.
    NCASE | DESIGN & CREATIVE
    870.672.1845

  • Having issues with iMac not working after sleep mode

    When waking up from sleep mode or turning machine on in the mornig computer will not recognize the mouse or track pad.  I have a 3.06 GHZ Intel Core 2 Duo.

    sudo nvram boot-args=”-p -r” should get the computer to reset the nvram. After words its a good idea, to go back into Apple Menu, System Preferneces, Startup Disk, and make sure your Hard Drive is selected.
    Is the OS up to date? if not, why not try running software update?
    have you tried repalcing the batteries?
    Have you tested with a wired keyboard or mouse? (dose it have the same issue)
    Have you tried a safeboot?

  • JSP Session populated with class not working after redirect

    Hi,
    I create a session (code sample 1 below) on my index.jsp page. Index.jsp has a form on it, and a button that points back to index.jsp. The page is dynamically generated.
    The session is created fine, and persists properly between pages.
    However, on the last page, i re-direct the user to summary.jsp (with code sample 2), and on that last page (using the session CODE SAMPLE 3) i get an error.
    Internal error: servlet service function had thrown ServletException (uri=/imac2/summary.jsp): javax.servlet.ServletException: jsps.imac2._index_jsp$userSession, stack: javax.servlet.ServletException: jsps.imac2._index_jsp$userSession at jsps.imac2._summary_jsp._jspService(_summary_jsp.java:681) , root cause: java.lang.ClassCastException: jsps.imac2._index_jsp$userSession at jsps.imac2._summary_jsp._jspService(_summary_jsp.java:611)
    How can I resolve this. The userSession class is defined simply as
    public class userSession
    Code Sample 1 ########################
    userSession requestData;
    if (session.isNew())
         requestData = new userSession();
         session.setAttribute("sessionRequestData", requestData);
         %>NEW SESSION <%
    }else
         if (QuestionID == 1)
              requestData = new userSession();     
              session.invalidate();
              session = request.getSession(true);
              session.setAttribute("sessionRequestData", requestData);
              %>STALE SESSION, RECREATED<%
         }else
              if (session.getAttribute("sessionRequestData") == null)
                   requestData = new userSession();
                   %>WONKY SESSION<%     
              }else
                   requestData = (userSession)(session.getAttribute("sessionRequestData"));
                   %>STALE SESSION<%
    CODE SAMPLE 2 ##################
    response.sendRedirect(response.encodeRedirectURL(myPage.getPage() + "?path=" + Path + getDataPass(request)));
    CODE SAMPLE 3 ##################
    if (session.isNew())
         requestData = new userSession();
         session.setAttribute("sessionRequestData", requestData);
         %>NEW SESSION <%
    }else
         if (session.getAttribute("sessionRequestData") == null)
              requestData = new userSession();
              %>WONKY SESSION<%     
         }else
              requestData = (userSession)(session.getAttribute("sessionRequestData"));
              %>STALE SESSION<%
    }

    Further Information:
    Swapping out the code in summary.jsp to be
         userSession requestData;
         Object o = session.getAttribute("sessionRequestData");
         if (o == null)      {
                   %>NULL <%
         }else
                   %>ELSE<%
         if(o!=null) { if (o instanceof userSession) out.println("yey"); else out.println("nei"); }
    returns: ELSEnei
    So its there, its not null, and its not my object... Why?

  • Windows server 2003 not working after computer hard restart

    Hello, the following problem did occure. I was logged to windows server 2003, working on it, when my pc suddenly frozen, so i had no other option, than to make a hard restart of my pc. From that time, when a log into the windows server, i can see the server
    desktop, but i cannot click on anything. I am hearing just the clicking sound. When i minimalize it a maximalize it back, all i can see is a black screen.
    Can anyone help me, how to solve this problem ?
    Thank you for your answers

    Hi,
    According to your description, my understanding is that Windows Server 2003 unable to start correctly.
    You may try to restart the computer, when you see the message Please select the operating system to start, press the F8 . select the
    Last Known Good Configuration, in order to start the computer by using the most recent settings that worked.
    Or you may select Windows Advanced Option –> Safe Mode, check to see if this was caused by faulty drivers, programs, or services that start automatically.
    More methods about troubleshooting startup problem, you may reference the link below:
    How to troubleshoot startup problems in Windows Server 2003
    http://support.microsoft.com/kb/325375/en-us
    Best Regards,           
    Eve Wang   

  • Sync Razr V3c with iCal---not working after OS 10.4.6 upgrade

    I have been syncing my ical to my Razr V3c successfully for several months. Since the recent upgrade to OS 10.4.6 I can sync contacts, but when I select my phone icon in isync it tells me that my phone does not suppor ical. Why all of a sudden does it not. The phone is listed as compatable under the list of phones from the isync website. The verizon version is not compatable, but this phone is from US Cellular. Any ideas of how to solve the problem?
    Thks--
    philli

    Apple explicitly de-activated calendar support for Verizon V3c phone, certainly for a good reason. It is easy to re-activate that support but at your own risks.
    You will find the hack there:
    http://www.briantoth.com/razr_v3c/editmeta.php
    However, the page mentions:
    "Seems that synchronizing a small number of events may not show any problems, however, a large number of events may very well kill your phone."
    (this might explain why Apple did that)

  • Expired Tasks not firing after Application Server restart

    Hi all,
    We have a problem with some production instances and their expiration times. The application server was down due to a power failure and did not come back up until this morning. By this time, many human workflow instances had expired. The dehydration has been updated to set the tasks as EXPIRED but there is no process flow any more in our BPEL. The BPEL is awaiting an Asynchronous call back from the TaskService. Does anybody know how we can continue the process flow?
    We have tried using the worklist API's, setting the duration to a lower value (ie a minute) and the re-initiating the workflow but we want them to expire now (ASAP)
    Thank in you advance
    Jason
    Edited by: user9980771 on 02-Dec-2008 07:51

    After redeploy, check if your web application's
    target is configured for the virtual server you
    created.
    Applications --> Web Applications --> [your web app]
    --> Targets
    If not, you should update the target and review your
    redeploy script.This web application is a part of enterprise application. After deploy it's not in Web Applications but in Etnerprise Applications. There are 2 components in enterprise app - EJBModule and WebModule. I did't find anything about target there. No one option which I can set to my virtual server.

  • Applications stopped to work after application server restarted

    Hi all,
    Does anybody face the following problem? Applications which worked properly before application server (WLS Release 11.1.1) restart change their behavior. Particularly, instead label text of arguments of entity objects pages display arguments original names like control hints had not been configured. Only after redeployment the same ear file applications return back to normal. It never happens on local JDeveloper (11.1.1.3) environment. I guess that something wrong in application server application.
    Thanks,
    SNikiforov

    For jdev 11.1.1.3 you need a wls 10.3.3 server. otherwise you run into problems. For more info check http://wp.me/pcBZk-7S
    Timo

  • Tecra M7: Tablet does not work after lid closing

    Has anyone had problems with the tablet not working after closing the lid on a Tecra M7? Bios is 3.20
    Doesn't seem to happen on hibernate or sleep.
    I have the lid set to do nothing on close.

    Hi
    What do you mean with tablet not working after closing the lid?
    Does the notebook freezes or what?? What happens exactly???
    The close the lid settings can be set to hibernation mode or standby mode or no action.
    These settings can be set in the power saver setup actions.
    If you have some problems with some installed Toshiba applications I would recommend reinstalling the TOSHIBA Common Modules and the program which doesnt run correctly!
    Best regards

Maybe you are looking for

  • HTTPS certificate problem on MPLS

    /* Style Definitions */ table.MsoNormalTable {mso-style-name:"Tableau Normal"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-priority:99; mso-style-qformat:yes; mso-style-parent:""; mso-padding-alt:0cm 5.4pt 0c

  • UCCX 8 - Custom Stored Procedure Not Functioning

    Hello, We're trying to modify one of the agent summary reports in UCCX 8.  We want the outbound report to only show numbers that were external calls.  (Longer than 4 digits.)  We copied and modified the existing stored procedure and it seems to run o

  • Why does a SIP Client in background not answer calls?

    Using any of the SIP clients on IOS7.1 it appears that I have about 10 -15 mins before a SIP client in the background becomes unresponsive. Any ideas why and what can I do about it?

  • Cannot write in Japanese characters on Firefox 7.0 using Mac OSX 10.5.8

    Ever since I upgraded to Firefox 7.0, I cannot input Japanese characters into Firefox. I use a Mac OSX 10.5.8. I have my international settings such that I can write in this and other languages, but none come up other than English. I can write in Jap

  • How do I edit the tabs on Safari?

    I recently ran my software update, but I do not like that the tabs stretch all the way across the toolbar. How do I make the size of the tabs normal again?