Regarding errors in client Application to invoke the webservices

hi,
i am using weblogic workshop to develop webservices on weblogic server8.1
i develop webservice and wsdl file also
but when i am writing dynamic client application to invoke the webservice( particular method)
then it gives error like this
javax.xml.rpc.JAXRPCException: failed to invoke operation 'requestContactList' due to an error in the soap layer (SAAJ); nested exception is: Message[ failed to serialize interface javax.xml.soap.SOAPElementweblogic.xml.schema.binding.SerializationException: mapping lookup failure. class=interface javax.xml.soap.SOAPElement class context=TypedClassContext{schemaType=['http://www.openuri.org/']:requestContactList}]StackTrace[
javax.xml.soap.SOAPException: failed to serialize interface javax.xml.soap.SOAPElementweblogic.xml.schema.binding.SerializationException: mapping lookup failure. class=interface javax.xml.soap.SOAPElement class context=TypedClassContext{schemaType=['http://www.openuri.org/']:requestContactList}
     at weblogic.webservice.core.DefaultPart.invokeSerializer(DefaultPart.java:332)
     at weblogic.webservice.core.DefaultPart.toXML(DefaultPart.java:297)
     at weblogic.webservice.core.DefaultMessage.toXML(DefaultMessage.java:645)
     at weblogic.webservice.core.ClientDispatcher.send(ClientDispatcher.java:206)
     at weblogic.webservice.core.ClientDispatcher.dispatch(ClientDispatcher.java:143)
     at weblogic.webservice.core.DefaultOperation.invoke(DefaultOperation.java:471)
     at weblogic.webservice.core.DefaultOperation.invoke(DefaultOperation.java:457)
     at weblogic.webservice.core.rpc.CallImpl.invoke(CallImpl.java:566)
     at weblogic.webservice.core.rpc.CallImpl.invoke(CallImpl.java:419)
     at test.Client.main(Client.java:57)
Caused by: weblogic.xml.schema.binding.SerializationException: mapping lookup failure. class=interface javax.xml.soap.SOAPElement class context=TypedClassContext{schemaType=['http://www.openuri.org/']:requestContactList}
     at weblogic.xml.schema.binding.RuntimeUtils.lookup_serializer(RuntimeUtils.java:151)
     at weblogic.xml.schema.binding.RuntimeUtils.invoke_serializer(RuntimeUtils.java:187)
     at weblogic.xml.schema.binding.RuntimeUtils.invoke_serializer(RuntimeUtils.java:174)
     at weblogic.webservice.core.DefaultPart.invokeSerializer(DefaultPart.java:328)
     ... 9 more
     at weblogic.webservice.core.rpc.CallImpl.invoke(CallImpl.java:586)
     at weblogic.webservice.core.rpc.CallImpl.invoke(CallImpl.java:419)
     at test.Client.main(Client.java:57)
Debugging Finished
Exception in thread "main"
my client program is
import java.net.URL;
import javax.xml.rpc.ServiceFactory;
import javax.xml.rpc.Service;
import javax.xml.rpc.Call;
import javax.xml.rpc.ParameterMode;
import javax.xml.namespace.QName;
* This class demonstrates a java client invoking a WebService.
* @author Copyright (c) 2005 by BEA Systems, Inc. All Rights Reserved.
public class Client {
public static void main(String[] args) throws Exception {
// Setup the global JAXM message factory
System.setProperty("javax.xml.soap.MessageFactory",
"weblogic.webservice.core.soap.MessageFactoryImpl");
// Setup the global JAX-RPC service factory
System.setProperty( "javax.xml.rpc.ServiceFactory",
"weblogic.webservice.core.rpc.ServiceFactoryImpl");
// create service factory
ServiceFactory factory = ServiceFactory.newInstance();
// define qnames
String targetNamespace =
"http://www.openuri.org/"
+ "wsdl/http://192.168.2.98:7001/ContactListWeb/ContactListJWS/ContactTest.jws";
QName serviceName =
new QName(targetNamespace,
"ContactTest");
QName portName =
new QName(targetNamespace,
"ContactTestSoap");
QName operationName = new QName("targetNamespace",
"requestContactList");
URL wsdlLocation =
new URL("http://192.168.2.98:7001/ContactListWeb/ContactListJWS/ContactTest.jws?WSDL");
// create service
Service service = factory.createService(wsdlLocation, serviceName);
// create call
Call call = service.createCall(portName, operationName);
// invoke the remote web service
String result =(String)call.invoke(new Object[] {
"BEAS"
System.out.println("\n");
System.out.println("This example shows how to create a dynamic client application that invokes a non-WebLogic Web service.");
System.out.println("The webservice used was: http://services.xmethods.net/soap/urn:xmethods-delayed-quotes.wsdl");
System.out.println("The quote for BEAS is: ");
System.out.println(result);
}

Hi I am also facing the issue. If any one got the solutoin for this please post it
Thanks
Kaal

Similar Messages

  • Issue in invoking the webservice on EBS 12.1.3

    Hi,
    We are using R12.1.3 version of EBS. We have developed the custome PL SQL logic and deployed it on the Integration repository. Generated the WSDL and Deploy process were successful on IR. Authentication type used was "Username Token". Created the necessary user grants.
    When we try to invoke the webservice from SOAP UI, we are getting below error:
    <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
    <env:Header/>
    <env:Body>
    <env:Fault>
    <faultcode>env:Server</faultcode>
    <faultstring>oracle.apps.fnd.soa.util.SOAException: ServiceProcessingError: System Errornull</faultstring>
    <faultactor/>
    </env:Fault>
    </env:Body>
    </env:Envelope>
    Also, we checked in the log files and found below entries.
    <MSG_TEXT>An error occurred for port: SOAProvider: oracle.webservices.provider.ProviderException: oracle.apps.fnd.soa.util.SOAException: ServiceProcessingError: System Errornull.</MSG_TEXT>
    <MSG_TEXT>Unable to determine operation id from SOAP Message.</MSG_TEXT>
    Can someone help me in this issue? We are successfully able to invoke the same webservices on R12.1 version but getting an error in 12.1.3 version!!!
    Thanks in advance.
    Regards,
    Vasanth

    Hi,
    Try seeing the log messages after doing the following setup in the instance :-
    1. Telnet to environment
    1. In $INST_TOP/ora/10.1.3/j2ee/oafm/config/oc4j.properties
    1. Add following property at the end of the file : SOA_ENABLE_STANDALONE_LOGGING=TRUE
    2. Bounce oafm container using script $ADMIN_SCRIPTS_HOME/adoafmctl.sh
    3. Perform any SOA specific action like generate.
    SOA specific log would be created at : $INST_TOP/soa/SOALog.log
    This file should show you the exact error happening.
    Thanks,
    Sai.M

  • Exception occured while invoking the webservice operation

    I have deployed a Webservice that consist of a DB Adapter that fetches data from Master and detail Tabels from DB. Now i insert this data to some other data base having same types of table there. The below problem is only come when i try to insert data from one DB to other but when i only show output of my webservice it works fine and shows the master and details data. Mater table have approx 38 rows while detail have approx 500 rows. Kindly help me to resolve this issue..
    The selected operation process could not be invoked.
    An exception occured while invoking the webservice operation. Please see logs for more details.
    oracle.sysman.emSDK.webservices.wsdlapi.SoapTestException: Client received SOAP Fault from server : Transaction Rolledback.: weblogic.transaction.internal.TimedOutException: Transaction timed out after 300 seconds
    BEA1-12097AA8772D3C8BB607
    at weblogic.transaction.internal.ServerTransactionImpl.wakeUp(ServerTransactionImpl.java:1788)
    at weblogic.transaction.internal.ServerTransactionManagerImpl.processTimedOutTransactions(ServerTransactionManagerImpl.java:1676)
    at weblogic.transaction.internal.TransactionManagerImpl.wakeUp(TransactionManagerImpl.java:1988)
    at weblogic.transaction.internal.ServerTransactionManagerImpl.wakeUp(ServerTransactionManagerImpl.java:1586)
    at weblogic.transaction.internal.WLSTimer.timerExpired(WLSTimer.java:35)
    at weblogic.timers.internal.TimerImpl.run(TimerImpl.java:273)
    at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    ; nested exception is: weblogic.transaction.internal.TimedOutException: Transaction timed out after 300 seconds
    BEA1-12097AA8772D3C8BB607
    Thanks
    Nasir

    I have deployed a Webservice that consist of a DB Adapter that fetches data from Master and detail Tabels from DB. Now i insert this data to some other data base having same types of table there. The below problem is only come when i try to insert data from one DB to other but when i only show output of my webservice it works fine and shows the master and details data. Mater table have approx 38 rows while detail have approx 500 rows. Kindly help me to resolve this issue..
    The selected operation process could not be invoked.
    An exception occured while invoking the webservice operation. Please see logs for more details.
    oracle.sysman.emSDK.webservices.wsdlapi.SoapTestException: Client received SOAP Fault from server : Transaction Rolledback.: weblogic.transaction.internal.TimedOutException: Transaction timed out after 300 seconds
    BEA1-12097AA8772D3C8BB607
    at weblogic.transaction.internal.ServerTransactionImpl.wakeUp(ServerTransactionImpl.java:1788)
    at weblogic.transaction.internal.ServerTransactionManagerImpl.processTimedOutTransactions(ServerTransactionManagerImpl.java:1676)
    at weblogic.transaction.internal.TransactionManagerImpl.wakeUp(TransactionManagerImpl.java:1988)
    at weblogic.transaction.internal.ServerTransactionManagerImpl.wakeUp(ServerTransactionManagerImpl.java:1586)
    at weblogic.transaction.internal.WLSTimer.timerExpired(WLSTimer.java:35)
    at weblogic.timers.internal.TimerImpl.run(TimerImpl.java:273)
    at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    ; nested exception is: weblogic.transaction.internal.TimedOutException: Transaction timed out after 300 seconds
    BEA1-12097AA8772D3C8BB607
    Thanks
    Nasir

  • Problem when invoke the  Webservice WSDL

    Hi ,
    Use case :
    I have two applications (Webservices) A and B.They have their own WSDL urls.
    From A ---> request format at A ---->Transform that into B request format----->forward that(request) to B request --- > get B response -----> tranfrom that into A response format ----> A response
    First part of usecase:
    I need to send the request from A to B.But both A and B has different request and response schemas(they will have similar kind of fileds but their naming convention will be different.That is why transformation is required in jdeveloper)
    I have developed a composite which has one BPEL process as component.
    I am placing the A webservice as "exposed Service" swimlane and B webservice in 'external reference'.BPEL process is in component swimlane.
    I deployed that Composite which has above BPEL Process(Takes input from one wsdl url and transforms that request format to (another) webservice request format as explained above) which tries to invoke(send request to) the another webservice Wsdl.
    When I test that composite (That WSDL url),I am getting service invokation exception.
    Please see the below exception:
    java.lang.Exception: oracle.sysman.emSDK.webservices.wsdlapi.SoapTestException: javax.xml.soap.SOAPException: javax.xml.soap.SOAPException: Bad response: 401 Unauthorized at oracle.sysman.emas.model.wsmgt.WSTestModel.invokeOperation(WSTestModel.java:575) at oracle.sysman.emas.view.wsmgt.WSView.invokeOperation(WSView.java:381) at oracle.sysman.emas.view.wsmgt.WSView.invokeOperation(WSView.java:298) 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:597) at com.sun.el.parser.AstValue.invoke(Unknown Source) at com.sun.el.MethodExpressionImpl.invoke(Unknown Source) at org.apache.myfaces.trinidadinternal.taglib.util.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:53) at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcastToMethodBinding(UIXComponentBase.java:1256) at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:183) at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:92) at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361) at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96) at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:102) at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:92) at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361) at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96) at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:96) at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:475) at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:756) at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._invokeApplication(LifecycleImpl.java:765) at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:305) at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:185) at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265) at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227) at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300) at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.help.web.rich.OHWFilter.doFilter(Unknown Source) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.sysman.emSDK.license.LicenseFilter.doFilter(LicenseFilter.java:101) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106) at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446) at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60) at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446) at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271) at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177) at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.sysman.emas.fwk.MASConnectionFilter.doFilter(MASConnectionFilter.java:41) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:175) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.sysman.eml.app.AuditServletFilter.doFilter(AuditServletFilter.java:179) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.sysman.eml.app.EMRepLoginFilter.doFilter(EMRepLoginFilter.java:203) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.sysman.core.model.targetauth.EMLangPrefFilter.doFilter(EMLangPrefFilter.java:158) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.sysman.core.app.perf.PerfFilter.doFilter(PerfFilter.java:141) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.sysman.eml.app.ContextInitFilter.doFilter(ContextInitFilter.java:542) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111) at java.security.AccessController.doPrivileged(Native Method) at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313) at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413) at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94) at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161) at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681) at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321) at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120) at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277) at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183) at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454) at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207) at weblogic.work.ExecuteThread.run(ExecuteThread.java:176) Caused by: oracle.sysman.emSDK.webservices.wsdlapi.SoapTestException: javax.xml.soap.SOAPException: javax.xml.soap.SOAPException: Bad response: 401 Unauthorized at oracle.sysman.emSDK.webservices.wsdlapi.dispatch.DispatchUtil.invoke(DispatchUtil.java:260) at oracle.sysman.emSDK.webservices.wsdlparser.OperationInfoImpl.invokeWithDispatch(OperationInfoImpl.java:992) at oracle.sysman.emas.model.wsmgt.PortName.invokeOperation(PortName.java:729) at oracle.sysman.emas.model.wsmgt.WSTestModel.invokeOperation(WSTestModel.java:569) ... 79 more Caused by: javax.xml.ws.WebServiceException: javax.xml.soap.SOAPException: javax.xml.soap.SOAPException: Bad response: 401 Unauthorized at oracle.j2ee.ws.client.jaxws.DispatchImpl.invoke(DispatchImpl.java:837) at oracle.j2ee.ws.client.jaxws.OracleDispatchImpl.synchronousInvocationWithRetry(OracleDispatchImpl.java:235) at oracle.j2ee.ws.client.jaxws.OracleDispatchImpl.invoke(OracleDispatchImpl.java:106) at oracle.sysman.emSDK.webservices.wsdlapi.dispatch.DispatchUtil.invoke(DispatchUtil.java:256) ... 82 more Caused by: javax.xml.soap.SOAPException: javax.xml.soap.SOAPException: Bad response: 401 Unauthorized at oracle.j2ee.ws.saaj.client.p2p.HttpSOAPConnection.call2(HttpSOAPConnection.java:231) at oracle.j2ee.ws.common.transport.HttpTransport.transmit(HttpTransport.java:75) at oracle.j2ee.ws.common.async.MessageSender.call(MessageSender.java:64) at oracle.j2ee.ws.common.async.Transmitter.transmitSync(Transmitter.java:134) at oracle.j2ee.ws.common.async.Transmitter.transmit(Transmitter.java:90) at oracle.j2ee.ws.common.async.RequestorImpl.transmit(RequestorImpl.java:273) at oracle.j2ee.ws.common.async.RequestorImpl.invoke(RequestorImpl.java:94) at oracle.j2ee.ws.client.jaxws.DispatchImpl.invoke(DispatchImpl.java:794) ... 85 more Caused by: javax.xml.soap.SOAPException: Bad response: 401 Unauthorized at oracle.j2ee.ws.saaj.client.p2p.HttpSOAPConnection.processHttpResponseCode(HttpSOAPConnection.java:633) at oracle.j2ee.ws.saaj.client.p2p.HttpSOAPConnection.post2(HttpSOAPConnection.java:501) at oracle.j2ee.ws.saaj.client.p2p.HttpSOAPConnection$PrivilegedPost.run(HttpSOAPConnection.java:1261) at java.security.AccessController.doPrivileged(Native Method) at oracle.j2ee.ws.saaj.client.p2p.HttpSOAPConnection.call2(HttpSOAPConnection.java:229) ... 92 more
    I am getting "Webservice invokation failed" message and above exception.
    I am using some proxy server to access internet in my company. It is telling(If u see above exception u will be able to see) the below info in some part of exception.
    javax.xml.soap.SOAPException: Bad response: 401 Unauthorized at oracle.sysman.emas.model.wsmgt.WSTestModel.invokeOperation(WSTestModel.java:575) at
    Is there any problem with authentication to that wsdl url?
    I think u can understand my problem by looking at above clearly explained content.
    Hope u guys will help me out in this issue?
    Thanks in advance.
    Hope I will receive response as soon as possible as it is very critical at this point.
    Thanks

    Hi,
    Some part is requiring authentication, either the proxy or the web service provider. First thing is to determine which of them.
    Are you able to call B via SOAP-UI? Are you passing authentication in SOAP-UI? If not the problem is in you proxy server.
    Check 401 error here:
    http://www.checkupdown.com/status/E401.html
    Cheers,
    Vlad
    Give points - it is good etiquette to reward an answerer points (5 - helpful; 10 - correct) for their post if they answer your question. If you think this answer is helpful, please consider giving points.

  • Calling Web Service From Oracle PL/SQL do not invoke the webservice in SOA Server

    Hi ,
    Trying to call the webservice from oralce pl/sql Function
    created a Function
    Not able to invoke the web service of SOA Server .
    CREATE OR REPLACE FUNCTION HelloWorld_WebServices(S_STRING Varchar2) RETURN VARCHAR2 AS 
        service_ sys.utl_dbws.SERVICE; 
        call_ sys.utl_dbws.CALL; 
        service_qname sys.utl_dbws.QNAME; 
        port_qname sys.utl_dbws.QNAME; 
        response sys.XMLTYPE; 
        request sys.XMLTYPE; 
        BEGIN 
         sys.utl_dbws.set_http_proxy('Host name : Port'); 
          service_qname := sys.utl_dbws.to_qname('ns1', 'process'); 
           service_      := sys.utl_dbws.create_service(service_qname); 
           call_         := sys.utl_dbws.create_call(service_); 
            sys.utl_dbws.set_target_endpoint_address(call_, 'http:/host name : port/soa-infra/services/OFS/HelloWorld/helloworld_client_ep'); 
            sys.utl_dbws.set_property( call_, 'OPERATION_STYLE', 'process'); 
            request       := sys.XMLTYPE('<ns1:process xmlns:ns1="http://xmlns.oracle.com/OFSOrderServices/HelloWorld/HelloWorld"><ns1:input></ns1:input></ns1:process>'); 
         response      := sys.utl_dbws.invoke(call_, request); 
         return response.extract('//HelloWorld/child::text()', 'http://xmlns.oracle.com/OFSOrderServices/HelloWorld/HelloWorld').getstringval(); 
         DBMS_OUTPUT.PUT_LINE ('Values of OutputsVariables8');
    --  Return 'S';
       END;
    Execute----the below code:
      Select HelloWorld_WebServices('Hi') from dual;
    Error:
    ORA-29532: Java call terminated by uncaught Java exception: java.lang.NoClassDefFoundError
    ORA-06512: at "SYS.UTL_DBWS", line 403
    ORA-06512: at "SYS.UTL_DBWS", line 400
    ORA-06512: at "APPS.HELLOWORLD_WEBSERVICES", line 74
    29532. 00000 -  "Java call terminated by uncaught Java exception: %s"
    *Cause:    A Java exception or error was signaled and could not be
               resolved by the Java code.
    *Action:   Modify Java code, if this behavior is not intended.

    Well, you should first test if your webservice is reachable with a simple WS - Client or a Browser - Plugin, then verify the respones of the web service and after that you can take further investigations on your problem domain. The error - message refers to a line in your function, obviously, but I can't see which line and because there is more than one call to sys.utl_dbws I don't see at what point the script fails. NULL - Pointer - Execptions usually indicate that a method was invoked on a variable which should contain an object reference but is NULL.

  • Getting error in my application while starting the server.

    while start my tomcat server i am getting the error like this
    2010-02-02 11:39:26 StandardContext[HRM]Initializing Spring FrameworkServlet 'recruiting'
    2010-02-02 11:39:26 StandardContext[HRM]StandardWrapper.Throwable
    org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: Failed to import bean definitions from relative location [aopConfiguration.xml]
    Offending resource: ServletContext resource [WEB-INF/recruiting-servlet.xml]; nested exception is org.springframework.beans.factory.BeanDefinitionStoreException: Parser configuration exception parsing XML from ServletContext resource [WEB-INF/aopConfiguration.xml]; nested exception is javax.xml.parsers.ParserConfigurationException: Unable to validate using XSD: Your JAXP provider org.apache.xerces.jaxp.DocumentBuilderFactoryImpl@1ecfe07 does not support XML Schema. Are you running on Java 1.4 or below with Apache Crimson? Upgrade to Apache Xerces (or Java 1.5) for full XSD support.
    Caused by: org.springframework.beans.factory.BeanDefinitionStoreException: Parser configuration exception parsing XML from ServletContext resource [WEB-INF/aopConfiguration.xml]; nested exception is javax.xml.parsers.ParserConfigurationException: Unable to validate using XSD: Your JAXP provider org.apache.xerces.jaxp.DocumentBuilderFactoryImpl@1ecfe07 does not support XML Schema. Are you running on Java 1.4 or below with Apache Crimson? Upgrade to Apache Xerces (or Java 1.5) for full XSD support.
    Caused by: javax.xml.parsers.ParserConfigurationException: Unable to validate using XSD: Your JAXP provider org.apache.xerces.jaxp.DocumentBuilderFactoryImpl@1ecfe07 does not support XML Schema. Are you running on Java 1.4 or below with Apache Crimson? Upgrade to Apache Xerces (or Java 1.5) for full XSD support.
    at org.springframework.beans.factory.xml.DefaultDocumentLoader.createDocumentBuilderFactory(DefaultDocumentLoader.java:101)
    at org.springframework.beans.factory.xml.DefaultDocumentLoader.loadDocument(DefaultDocumentLoader.java:70)
    at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.doLoadBeanDefinitions(XmlBeanDefinitionReader.java:351)
    at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:303)
    at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:280)
    at org.springframework.beans.factory.xml.DefaultBeanDefinitionDocumentReader.importBeanDefinitionResource(DefaultBeanDefinitionDocumentReader.java:185)
    at org.springframework.beans.factory.xml.DefaultBeanDefinitionDocumentReader.parseDefaultElement(DefaultBeanDefinitionDocumentReader.java:145)
    at org.springframework.beans.factory.xml.DefaultBeanDefinitionDocumentReader.parseBeanDefinitions(DefaultBeanDefinitionDocumentReader.java:130)
    at org.springframework.beans.factory.xml.DefaultBeanDefinitionDocumentReader.registerBeanDefinitions(DefaultBeanDefinitionDocumentReader.java:90)
    at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.registerBeanDefinitions(XmlBeanDefinitionReader.java:458)
    at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.doLoadBeanDefinitions(XmlBeanDefinitionReader.java:353)
    at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:303)
    at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:280)
    at org.springframework.beans.factory.support.AbstractBeanDefinitionReader.loadBeanDefinitions(AbstractBeanDefinitionReader.java:131)
    at org.springframework.beans.factory.support.AbstractBeanDefinitionReader.loadBeanDefinitions(AbstractBeanDefinitionReader.java:147)
    at org.springframework.web.context.support.XmlWebApplicationContext.loadBeanDefinitions(XmlWebApplicationContext.java:124)
    at org.springframework.web.context.support.XmlWebApplicationContext.loadBeanDefinitions(XmlWebApplicationContext.java:92)
    at org.springframework.context.support.AbstractRefreshableApplicationContext.refreshBeanFactory(AbstractRefreshableApplicationContext.java:100)
    at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:298)
    at org.springframework.web.servlet.FrameworkServlet.createWebApplicationContext(FrameworkServlet.java:311)
    at org.springframework.web.servlet.FrameworkServlet.initWebApplicationContext(FrameworkServlet.java:258)
    at org.springframework.web.servlet.FrameworkServlet.initServletBean(FrameworkServlet.java:229)
    at org.springframework.web.servlet.HttpServletBean.init(HttpServletBean.java:115)
    at javax.servlet.GenericServlet.init(GenericServlet.java:211)
    at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1029)
    at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:862)
    at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:4013)
    at org.apache.catalina.core.StandardContext.start(StandardContext.java:4357)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1083)
    at org.apache.catalina.core.StandardHost.start(StandardHost.java:789)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1083)
    at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:478)
    at org.apache.catalina.core.StandardService.start(StandardService.java:480)
    at org.apache.catalina.core.StandardServer.start(StandardServer.java:2313)
    at org.apache.catalina.startup.Catalina.start(Catalina.java:556)
    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.apache.catalina.startup.Bootstrap.start(Bootstrap.java:287)
    at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:425)
    please give me solution where may be the problem.

    >
    When posting code, code snippets, HTML/XML or input/output, please use the code tags. The code tags help retain the indentation and formatting of the sample. To use the code tags, select the code and click the CODE button.
    while start my tomcat server i am getting the error like this
    >
    > 2010-02-02 11:39:26 StandardContext[HRM]Initializing Spring FrameworkServlet 'recruiting'
    > 2010-02-02 11:39:26 StandardContext[HRM]StandardWrapper.Throwable
    > org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: Failed to import bean definitions from relative location [aopConfiguration.xml]
    > Offending resource: ServletContext resource [WEB-INF/recruiting-servlet.xml]; So, assuming you are testing off localhost, that would equate to something like [http://localhost:8080/WEB-INF/recruiting-servlet.xml]. Is the file located there?
    Edit 1:
    And what does any of this have to do with 'Java Upgrade', beyond the fact you want to 'upgrade' your code from broken to working?
    Edited by: AndrewThompson64 on Feb 2, 2010 5:53 PM

  • I am getting following error in my application please find the sol...jax rs

    15 Mar, 2013 1:09:49 PM com.sun.jersey.spi.container.ContainerRequest getEntity
    SEVERE: A message body reader for Java class aero.omanair.flightStatus.vo.SearchCriteriaVO, and Java type class aero.omanair.flightStatus.vo.SearchCriteriaVO, and MIME media type application/octet-stream was not found.
    The registered message body readers compatible with the MIME media type are:
    application/octet-stream ->
    com.sun.jersey.core.impl.provider.entity.ByteArrayProvider
    com.sun.jersey.core.impl.provider.entity.FileProvider
    com.sun.jersey.core.impl.provider.entity.InputStreamProvider
    com.sun.jersey.core.impl.provider.entity.DataSourceProvider
    com.sun.jersey.core.impl.provider.entity.RenderedImageProvider
    */* ->
    com.sun.jersey.core.impl.provider.entity.FormProvider
    com.sun.jersey.core.impl.provider.entity.MimeMultipartProvider
    please solve the issue......
    my pojo class is
    package aero.omanair.flightStatus.vo;
    import aero.omanair.flightStatus.util.FlightStatusUtils;
    @Entity
    @XmlRootElement
    @Consumes({"MediaType.MULTIPART_FORM_DATA", "application/x-www-form-urlencoded"})
    @Produces({"MediaType.MULTIPART_FORM_DATA", "application/x-www-form-urlencoded"})
    @XStreamAlias("SearchCriteriaVO")
    public class SearchCriteriaVO implements MessageBodyReader<JSONObject>, Serializable {     
         private static final long serialVersionUID = 1L;
         static final Logger logger = Logger.getLogger(SearchCriteriaVO.class);     
         private static final DateFormat TIMESTAMP_FORMAT_DEFAULT = new SimpleDateFormat("yyyy-MM-dd");
         private static final DateFormat DATE_FORMAT_DISPLAY = new SimpleDateFormat("dd-MMM-yyyy");
         private String tripType;
         private String fromStation;
         private String toStation;
         private String beginStationCode;
         private String beginStationName;
         private String destinationStationCode;
         private String destinationStationName;
         private String flightNumber;
         private String flightDate;
         private String flightDateDisp;
         //private Date scheduledTimeDeparture;
         private Timestamp scheduledTimeDep;
         private int connectingTime;
         private String searchResult;     
         private String searchdetails;
         private String errorMessage;
         private String infoMessage;
         @XStreamImplicit
         private Map<String,String> depDateList;
         public SearchCriteriaVO(
                   String tripType,
                   String flightNumber,
                   String flightDate) {
              this.tripType = tripType;
              this.flightNumber = flightNumber;
              this.flightDate = flightDate;
              populateDateList();     
         public SearchCriteriaVO(
                   String tripType,
                   String beginStationCode,
                   String beginStationName,
                   String destinationStationCode,
                   String destinationStationName,
                   String flightDate) {
              this.tripType = tripType;
              this.beginStationCode = beginStationCode;
              this.beginStationName = beginStationName;
              this.destinationStationCode = destinationStationCode;
              this.destinationStationName = destinationStationName;
              this.flightDate = flightDate;
              populateDateList();          
         public SearchCriteriaVO(){          
              String today="";
              try {
                   Calendar cal = Calendar.getInstance();
                   today = TIMESTAMP_FORMAT_DEFAULT.format(cal.getTime());
              } catch (Exception e) {
                   logger.error("Exception in SearchCriteriaVO: ", e);
              this.setTripType("BRO");
              this.setSearchResult("");
              this.setFlightDate(today);
              populateDateList();          
         @GET
         private void populateDateList(){
         try {
                   Calendar cal = Calendar.getInstance();
                   String today = TIMESTAMP_FORMAT_DEFAULT.format(cal.getTime());
                   String todayDisplay = DATE_FORMAT_DISPLAY.format(cal.getTime());
                   cal.add(Calendar.DATE, -1);     
                   String yesterday = TIMESTAMP_FORMAT_DEFAULT.format(cal.getTime());
                   String yesterdayDisp = DATE_FORMAT_DISPLAY.format(cal.getTime());
                   cal.add(Calendar.DATE, +2);
                   String tomorrow = TIMESTAMP_FORMAT_DEFAULT.format(cal.getTime());
                   String tomorrowDisplay = DATE_FORMAT_DISPLAY.format(cal.getTime());
                   depDateList = new LinkedHashMap<String,String>();
                   depDateList.put(yesterday, yesterdayDisp);
                   depDateList.put(today, todayDisplay);          
                   depDateList.put(tomorrow, tomorrowDisplay);
              } catch (Exception e) {
                   logger.error("Exception in init: ", e);
         @GET
         public String toString() {
              StringBuffer sb = new StringBuffer("SearchCriteria{");
              sb.append("tripType :" + tripType);          
              sb.append(", beginStationCode :" + beginStationCode);
              sb.append(", beginStationName :" + beginStationName);
              sb.append(", destinationStationCode :" + destinationStationCode);
              sb.append(", destinationStationName :" + destinationStationName);               
              sb.append("}");
              return sb.toString();
         @GET
         public void setSearchInfoMsg(){
              if(getTripType().equals("BRO")){               
                   if(StringUtils.isNotBlank(getBeginStationName()) && StringUtils.isNotBlank(getDestinationStationName()) && StringUtils.isNotBlank(getFlightDateDisp())){                                        
                        StringBuffer msg = new StringBuffer("Flight details for ");
                        msg.append(getBeginStationName());
                        msg.append(" - ");
                        msg.append(getDestinationStationName());                              
                        msg.append(" on : ");
                        msg.append(getFlightDateDisp());     
                        setInfoMessage(msg.toString());
              }else if(getTripType().equals("BFL")){
                   if(StringUtils.isNotBlank(getFlightNumber()) && StringUtils.isNotBlank(getFlightDateDisp())){                                        
                        StringBuffer msg = new StringBuffer("Flight details for ");
                        msg.append("WY ");
                        msg.append(getFlightNumber());                         
                        msg.append(" on : ");
                        msg.append(getFlightDateDisp());     
                        setInfoMessage(msg.toString());
         @GET
         public String getTripType() {
              return tripType;
         @GET
         public void setTripType(String tripType) {
              this.tripType = tripType;
         @GET
         public String getFromStation() {
              return fromStation;
         @GET
         public void setFromStation(String fromStation) {
              this.fromStation = fromStation;
         @GET
         public String getToStation() {
              return toStation;
         @GET
         public void setToStation(String toStation) {
              this.toStation = toStation;
         @GET
         public String getBeginStationCode() {
              return beginStationCode;
         @GET
         public void setBeginStationCode(String beginStationCode) {
              this.beginStationCode = beginStationCode;
         @GET
         public String getBeginStationName() {
              return beginStationName;
         @GET
         public void setBeginStationName(String beginStationName) {
              this.beginStationName = beginStationName;
         @GET
         public String getDestinationStationCode() {
              return destinationStationCode;
         @GET
         public void setDestinationStationCode(String destinationStationCode) {
              this.destinationStationCode = destinationStationCode;
         @GET
         public String getDestinationStationName() {
              return destinationStationName;
         @GET
         public void setDestinationStationName(String destinationStationName) {
              this.destinationStationName = destinationStationName;
         @GET
         public String getFlightNumber() {
              return flightNumber;
         public void setFlightNumber(String flightNumber) {
              this.flightNumber = flightNumber;
         @GET
         public String getFlightDate() {
              return flightDate;
         @GET
         public void setFlightDate(String flightDate) {
              this.flightDate = flightDate;
         * @return the depDateList
         @GET
         public Map<String, String> getDepDateList() {
              return depDateList;
         * @param depDateList the depDateList to set
         @GET
         public void setDepDateList(Map<String, String> depDateList) {
              this.depDateList = depDateList;
         @GET
         public String getSearchResult() {
              return searchResult;
         @GET
         public void setSearchResult(String searchResult) {
              this.searchResult = searchResult;
         @GET
         public String getSearchdetails() {
              return searchdetails;
         @GET
         public void setSearchdetails(String searchdetails) {
              this.searchdetails = searchdetails;
         /*public Date getScheduledTimeDeparture() {
              return scheduledTimeDeparture;
         public void setScheduledTimeDeparture(Date scheduledTimeDeparture) {
              this.scheduledTimeDeparture = scheduledTimeDeparture;
         * @return the scheduledTimeDep
         @GET
         public Timestamp getScheduledTimeDep() {
              return scheduledTimeDep;
         * @param scheduledTimeDep the scheduledTimeDep to set
         @GET
         public void setScheduledTimeDep(Timestamp scheduledTimeDep) {
              this.scheduledTimeDep = scheduledTimeDep;
         @GET
         public int getConnectingTime() {
              return connectingTime;
         @GET
         public void setConnectingTime(int connectingTime) {
              this.connectingTime = connectingTime;
         @GET
         public String getErrorMessage() {
              return errorMessage;
         @GET
         public void setErrorMessage(String errorMessage) {
              this.errorMessage = errorMessage;
         @GET
         public String getInfoMessage() {
              return infoMessage;
         @GET
         public void setInfoMessage(String infoMessage) {
              this.infoMessage = infoMessage;
         @GET
         public String getFlightDateDisp() {
              flightDateDisp = getFlightDate();
              if(StringUtils.isNotBlank(flightDateDisp)){
                   flightDateDisp = FlightStatusUtils.getDisplayDate(flightDateDisp);               
              return flightDateDisp;
         @GET
         public void setFlightDateDisp(String flightDateDisp) {
              this.flightDateDisp = flightDateDisp;
         @GET
         public boolean isReadable(Class<?> arg0, Type arg1, Annotation[] arg2,
                   MediaType arg3) {
              // TODO Auto-generated method stub
              return false;
         //public Object readFrom(Class<Object> arg0, Type arg1, Annotation[] arg2,
              //     MediaType arg3, MultivaluedMap<String, String> arg4,
              //     InputStream arg5) throws IOException, WebApplicationException {
              // TODO Auto-generated method stub
              //return null;
         @GET
         public JSONObject readFrom(Class<JSONObject> arg0, Type arg1,
                   Annotation[] arg2, MediaType arg3,
                   MultivaluedMap<String, String> arg4, InputStream arg5)
                   throws IOException, WebApplicationException {
              // TODO Auto-generated method stub
              return null;
    and my service class is
    package aero.omanair.flightStatus.service.impl;
    import java.sql.Timestamp;
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.List;
    import javax.ws.rs.FormParam;
    import javax.ws.rs.GET;
    import javax.ws.rs.Path;
    import javax.ws.rs.WebApplicationException;
    import javax.ws.rs.core.MediaType;
    import javax.ws.rs.core.MultivaluedMap;
    import javax.ws.rs.ext.MessageBodyReader;
    import javax.ws.rs.ext.MessageBodyWriter;
    import javax.ws.rs.ext.Provider;
    import javax.ws.rs.Produces;
    import javax.ws.rs.Consumes;
    import javax.xml.bind.annotation.XmlElement;
    import javax.xml.bind.annotation.XmlRootElement;
    import java.io.File;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.lang.annotation.Annotation;
    import java.lang.reflect.Type;
    @Path("hello")
    @Singleton
    @Provider public class FlightStatusManagerImpl implements FlightStatusManager,Constants,MessageBodyReader<SearchCriteriaVO> {
         private static final Object FlightStatusVO = null;
         private FlightStatusDAO flightStatusDAO;
         private SectorDAO sectorDAO;
         private Object FloghtStatusVO;
         private FlightStatusVO FlightStatus;
         public FlightStatusManagerImpl()
              SearchCriteriaVO cv=new SearchCriteriaVO();
              cv.setFromStation("HYD");
              cv.setToStation("BGL");
         /*Method that returns the list of FlightStatusVO based on the searchCriteria*/
         @GET
         @Produces({"application/xml", "application/octet-stream"})
                   @Consumes({"application/xml", "application/octet-stream"})
         public List<FlightStatusVO> searchAndExport(SearchCriteriaVO searchCriteria)throws OperationFailedException{
              try{     
              //     SearchCriteriaVO searchCriteria = buildSearchCriteriaObj(searchParametersVO);
                   List<FlightStatusVO> flightStatusVO = new ArrayList<FlightStatusVO>();
                   List<FlightStatusVO> flightStatusListVO = new ArrayList<FlightStatusVO>();
                   boolean connectionFlightChk= true;               
                   //obCriteria = buildSearchCriteriaObj(request);
                   String tripType = searchCriteria.getTripType();
                   String fromStationCode = searchCriteria.getBeginStationCode();
                   String fromStationDesc = searchCriteria.getBeginStationName();
                   String toStationCode = searchCriteria.getDestinationStationCode();
                   String toStationDesc = searchCriteria.getDestinationStationName();
                   String fromStation = StringUtils.isNotBlank(fromStationCode) ? fromStationCode : "";
                   fromStation = fromStation + (StringUtils.isNotBlank(fromStationDesc) ? "("+fromStationDesc+")" : "");
                   String toStation = StringUtils.isNotBlank(toStationCode) ? toStationCode : "";
                   toStation = toStation + (StringUtils.isNotBlank(toStationDesc) ? "("+toStationDesc+")" : "");
                   searchCriteria.setFromStation(fromStation);
                   searchCriteria.setToStation(toStation);
                   flightStatusVO = flightStatusDAO.getDirectFlights(searchCriteria);
                   flightStatusDAO.setReplacementFlight(flightStatusVO, toStationCode, toStationDesc, false);
                   if(StringUtils.isNotBlank(tripType) && tripType.equals("BRO")){
                        if((StringUtils.isNotBlank(toStationCode) && toStationCode.contains(BASE_STATION_NAME))
                                  || (StringUtils.isNotBlank(toStationDesc) && toStationDesc.contains(BASE_STATION_NAME))
                                  || (StringUtils.isNotBlank(fromStationCode) && fromStationCode.contains(BASE_STATION_CODE))
                                  || (StringUtils.isNotBlank(fromStationDesc) && fromStationDesc.contains(BASE_STATION_NAME))){
                             connectionFlightChk = false;
                        if(connectionFlightChk){
                             searchCriteria.setConnectingTime(11);
                             List<FlightStatusVO> connectionFlights = flightStatusDAO.getCircularFlights(searchCriteria, BASE_STATION_CODE);
                             if(!connectionFlights.isEmpty()){
                                  flightStatusVO.addAll(connectionFlights);
                        if((StringUtils.isNotBlank(fromStationCode) && fromStationCode.contains(BASE_STATION_CODE)) || (StringUtils.isNotBlank(fromStationDesc) && fromStationDesc.contains(BASE_STATION_NAME))) {
                             String sectorPattern = StringUtils.isNotBlank(toStationCode) ? "-"+toStationCode : "";
                             List<String> toSectors = null;
                             if(StringUtils.isNotBlank(sectorPattern)){
                                  toSectors = sectorDAO.searchSectors(sectorPattern);
                                  List<String> connectingSectors = new ArrayList<String>();
                                  Iterator<String> it = toSectors.iterator();
                                  while (it.hasNext()) {
                                       String toSector = (String) it.next();
                                       String connectingStation = toSector.split("-")[0];
                                       connectingSectors.add(BASE_STATION_CODE+"-"+connectingStation);
                                  if(connectingSectors.size() > 0){
                                       List<String> validSectors = new ArrayList<String>();
                                       validSectors = sectorDAO.checkSectorExist(connectingSectors);
                                       Iterator<String> itr = validSectors.iterator();
                                       while (itr.hasNext()) {
                                            String sector = itr.next();
                                            String stopOver = StringUtils.isNotBlank(sector) ? sector.split("-")[1] : null;
                                            searchCriteria.setConnectingTime(9);                                   
                                            List<FlightStatusVO> circularFlights = flightStatusDAO.getCircularFlights(searchCriteria, stopOver);
                                            if(!circularFlights.isEmpty()){
                                                 flightStatusVO.addAll(circularFlights);
                        } else if((StringUtils.isNotBlank(toStationCode) && toStationCode.contains(BASE_STATION_CODE)) || (StringUtils.isNotBlank(toStationDesc) && toStationDesc.contains(BASE_STATION_NAME))){
                             String sectorPattern = StringUtils.isNotBlank(fromStationCode) ? fromStationCode+"-" : "";
                             List<String> fromSectors = null;
                             if(StringUtils.isNotBlank(sectorPattern)){
                                  fromSectors = sectorDAO.searchSectors(sectorPattern);
                                  List<String> connectingFSectors = new ArrayList<String>();
                                  Iterator<String> it = fromSectors.iterator();
                                  while (it.hasNext()) {
                                       String toSector = (String) it.next();
                                       String connectingFStation = toSector.split("-")[1];
                                       connectingFSectors.add(connectingFStation+"-"+BASE_STATION_CODE);
                                  if(connectingFSectors.size()!=0){
                                       List<String> validFSectors = new ArrayList<String>();
                                       validFSectors = sectorDAO.checkSectorExist(connectingFSectors);
                                       Iterator<String> itr= validFSectors.iterator();
                                       while (itr.hasNext()) {
                                            String sector = itr.next();
                                            String stopOver = StringUtils.isNotBlank(sector) ? sector.split("-")[0] : null;
                                            searchCriteria.setConnectingTime(9);
                                            List<FlightStatusVO> circularFlights = flightStatusDAO.getCircularFlights(searchCriteria, stopOver);
                                            if(!circularFlights.isEmpty()){
                                                 flightStatusVO.addAll(circularFlights);
                   flightStatusDAO.setReplacementFlight(flightStatusVO, toStationCode, toStationDesc, true);
                   searchCriteria.setBeginStationName(searchCriteria.getFromStation());
                   searchCriteria.setDestinationStationName(searchCriteria.getToStation());
                   //searchCriteria.setSearchResult("Flight Not Available");
                   //searchCriteria.setSearchdetails("Flight details for ");
                   //request.setAttribute("flightStatusList", flightStatusVO);
                   //request.setAttribute("searchCriteriaVO", obCriteria);
                   flightStatusVO = statusCalculation(flightStatusVO);
                   return flightStatusVO;          
              } catch (Exception e) {               
                   /*SearchCriteriaVO searchCriteriaVO = new SearchCriteriaVO();
                   searchCriteriaVO.setErrorMessage(e.getMessage());
                   String tripType = StringUtils.isNotBlank(request.getParameter("tripType")) ? request.getParameter("tripType").trim() : null;
                   flightDate = request.getParameter("flightDate");     
                   if(StringUtils.isNotBlank(tripType) && tripType.equals("BRO")){
                        fromStationName = StringUtils.isNotBlank(request.getParameter("fmCode_visible")) ? request.getParameter("fmCode_visible").trim() : null;                              
                        toStationName = StringUtils.isNotBlank(request.getParameter("toCode_visible")) ? request.getParameter("toCode_visible").trim() : null;
                        searchCriteriaVO.setTripType(tripType);
                        searchCriteriaVO.setFlightDate(flightDate);
                        searchCriteriaVO.setBeginStationName(fromStationName);
                        searchCriteriaVO.setDestinationStationName(toStationName);
                   } else if(StringUtils.isNotBlank(tripType) && tripType.equals("BFL")){
                        flightNumber = StringUtils.isNotBlank(request.getParameter("flightNumber")) ? request.getParameter("flightNumber").trim() : null;
                        searchCriteriaVO.setTripType(tripType);
                        searchCriteriaVO.setFlightDate(flightDate);
                        searchCriteriaVO.setFlightNumber(flightNumber);               
                   request.setAttribute("searchCriteriaVO", searchCriteriaVO);*/
                   throw new OperationFailedException(e.getMessage());               
         public SearchCriteriaVO buildSearchCriteriaObj(SearchParametersVO searchParamenterVO) throws OperationFailedException{
              String fromStationCode = null;
              String fromStationDesc = null;
              String toStationCode = null;
              String toStationDesc = null;
              String fromStation = searchParamenterVO.getFromStationName();
              String toStation = searchParamenterVO.getToStationName();
              if(StringUtils.isNotBlank(searchParamenterVO.getTripType()) && searchParamenterVO.getTripType().equals("BRO")) {
              if(StringUtils.isNotBlank(fromStation)){                                        
                   int length = (fromStation).length();               
                   if(length > 3){
                        if(fromStation.contains("(") && fromStation.contains(")")){
                             int beginIndex = fromStation.indexOf("(");
                             int endIndex = fromStation.indexOf(")");
                             fromStationCode = fromStation.substring(0, beginIndex);
                             fromStationDesc = fromStation.substring(beginIndex+1, endIndex);
                        } else if(fromStation.contains("(")){
                             int beginIndex = fromStation.indexOf("(");
                             int endIndex = length;
                             fromStationCode = fromStation.substring(0, beginIndex);
                             fromStationDesc = fromStation.substring(beginIndex+1, endIndex);
                        } else if(fromStation.contains(")")){
                             int beginIndex = 0;
                             int endIndex = fromStation.indexOf(")");
                             fromStationCode = null;
                             fromStationDesc = fromStation.substring(beginIndex, endIndex);
                        } else{
                             fromStationCode = null;
                             fromStationDesc = fromStation;
                   } else if(length == 3 && !fromStation.contains("(") && !fromStation.contains(")")) {
                        fromStationCode = fromStation;
                        fromStationDesc = null;
                   } else{
                        //request.setAttribute("message", "Please enter a valid From Station");
                        throw new OperationFailedException("Please enter a valid From Station");
                   fromStationCode = flightStatusDAO.isValidFromStationCode(fromStationCode) ? fromStationCode : null;
                   fromStationDesc = flightStatusDAO.isValidFromStationDesc(fromStationDesc) ? fromStationDesc : null;
                   if(StringUtils.isBlank(fromStationCode) && StringUtils.isBlank(fromStationDesc)){
                        //request.setAttribute("message", "Please enter a valid From Station");
                        throw new OperationFailedException("Please enter a valid From Station");                         
              if(StringUtils.isNotBlank(toStation)){                                        
                   int length = toStation.length();               
                   if(length > 3){
                        if(toStation.contains("(") && toStation.contains(")")){
                             int beginIndex = toStation.indexOf("(");
                             int endIndex = toStation.indexOf(")");
                             toStationCode = toStation.substring(0, beginIndex);
                             toStationDesc = toStation.substring(beginIndex+1, endIndex);
                        } else if(toStation.contains("(")){
                             int beginIndex = toStation.indexOf("(");
                             int endIndex = length;
                             toStationCode = toStation.substring(0, beginIndex);
                             toStationDesc = toStation.substring(beginIndex+1, endIndex);
                        } else if(toStation.contains(")")){
                             int beginIndex = 0;
                             int endIndex = toStation.indexOf(")");
                             toStationCode = null;
                             toStationDesc = toStation.substring(beginIndex, endIndex);
                        } else{
                             toStationCode = null;
                             toStationDesc = toStation;
                   } else if(length == 3 && !toStation.contains("(") && !toStation.contains(")")) {
                        toStationCode = toStation;
                        toStationDesc = null;
                   } else{
                        //request.setAttribute("message", "Please enter a valid To Station");
                        throw new OperationFailedException("Please enter a valid To Station");
                   toStationCode = flightStatusDAO.isValidToStationCode(toStationCode) ? toStationCode : null;
                   toStationDesc = flightStatusDAO.isValidToStationDesc(toStationDesc) ? toStationDesc : null;
                   if(StringUtils.isBlank(toStationCode) && StringUtils.isBlank(toStationDesc)){
                        //request.setAttribute("message", "Please enter a valid To Station");
                        throw new OperationFailedException("Please enter a valid To Station");                         
              if(StringUtils.isNotBlank(fromStationCode) && StringUtils.isNotBlank(toStationCode) && fromStationCode.equalsIgnoreCase(toStationCode)){
                   //request.setAttribute("message", "From and To Stations cannot be the same");
                   throw new OperationFailedException("From and To Stations cannot be the same");
              if(StringUtils.isNotBlank(fromStationDesc) && StringUtils.isNotBlank(toStationDesc) && fromStationDesc.equalsIgnoreCase(toStationDesc)){
                   //request.setAttribute("message", "From and To Stations cannot be the same");
                   throw new OperationFailedException("From and To Stations cannot be the same");
              SearchCriteriaVO searchCriteriaVO = new SearchCriteriaVO(searchParamenterVO.getTripType(), fromStationCode, fromStationDesc, toStationCode, toStationDesc, searchParamenterVO.getFlightDate());               
              //session.putValue("searchCriteriaVO", searchCriteriaVO);
              return searchCriteriaVO;     
         } else if(StringUtils.isNotBlank(searchParamenterVO.getTripType()) && searchParamenterVO.getTripType().equals("BFL")){               
              String flightNumber=StringUtils.isNotBlank(searchParamenterVO.getFlightNumber()) ? searchParamenterVO.getFlightNumber().trim() : null;
              searchParamenterVO.setFlightNumber(flightNumber) ;
              if(StringUtils.isBlank(searchParamenterVO.getFlightNumber())){
                   //request.setAttribute("message", "Please enter valid Flight Number");
                   throw new OperationFailedException("Please enter valid Flight Number");
              SearchCriteriaVO searchCriteriaVO = new SearchCriteriaVO(searchParamenterVO.getTripType(), flightNumber, searchParamenterVO.getFlightDate());                         
              //session.putValue("searchCriteriaVO", searchCriteriaVO);               
              return searchCriteriaVO;     
         } else{
              //request.setAttribute("message", "Please select a valid Trip Type");
              throw new OperationFailedException("Please select a valid Trip Type");
         /*This method is written for displaying Flight Status: written on 28/1/2013*/
         public List<FlightStatusVO> statusCalculation(List<FlightStatusVO> flightStatusListVO)
              List<FlightStatusVO> flightStatus = new ArrayList<FlightStatusVO>();
              //String flightStatusDescription;
              //String statusDisplay;
              if(flightStatusListVO.size()>0){
                   for(int i=0;i<flightStatusListVO.size();i++){               
                        FlightStatusVO flightStatusVO =new FlightStatusVO();
                        flightStatusVO=flightStatusListVO.get(i);
                        if(flightStatusVO.getFlightStatus() =="CNLD" || flightStatusVO.getFlightStatus() =="RTND")
                             flightStatusVO.setStatusDisplay(flightStatusVO.getFlightStatusDesc());
                        else if(flightStatusVO.getActualTimeArv() != null)
                             flightStatusVO.setStatusDisplay("ARRIVED");
                        }else if(flightStatusVO.getActualTimeDep() != null)
                             flightStatusVO.setStatusDisplay("IN FLIGHT");
                        }else
                             flightStatusVO.setStatusDisplay("NOT YET DEPARTED");               
                        flightStatus.add(flightStatusVO);
              return flightStatus;
         /*Method for displaying flight status ends here*/
         public FlightStatusDAO getFlightStatusDAO() {
              return flightStatusDAO;
         public void setFlightStatusDAO(FlightStatusDAO flightStatusDAO) {
              this.flightStatusDAO = flightStatusDAO;
         public SectorDAO getSectorDAO() {
              return sectorDAO;
         public void setSectorDAO(SectorDAO sectorDAO) {
              this.sectorDAO = sectorDAO;
         public long getSize(Object arg0, Class arg1, Type arg2, Annotation[] arg3,
                   MediaType arg4) {
              // TODO Auto-generated method stub
              return 0;
         public boolean isWriteable(Class arg0, Type arg1, Annotation[] arg2,
                   MediaType arg3) {
              // TODO Auto-generated method stub
              return false;
         public void writeTo(Object arg0, Class arg1, Type arg2, Annotation[] arg3,
                   MediaType arg4, MultivaluedMap arg5, OutputStream arg6)
                   throws IOException, WebApplicationException {
              // TODO Auto-generated method stub
         public boolean isReadable(Class<?> arg0, Type arg1, Annotation[] arg2,
                   MediaType arg3) {
              // TODO Auto-generated method stub
              return false;
         public SearchCriteriaVO readFrom(Class<SearchCriteriaVO> arg0, Type arg1,
                   Annotation[] arg2, MediaType arg3,
                   MultivaluedMap<String, String> arg4, InputStream arg5)
                   throws IOException, WebApplicationException {
              // TODO Auto-generated method stub
              return null;
    plz find the solution...
    thanks in advance
    Edited by: 992108 on Mar 15, 2013 12:54 AM

    I think I remember hearing that if you quit iTunes with your device still connected, then open iTunes up again, it should work.
    EDIT: Here, this might help: http://support.apple.com/kb/ts1567

  • Photoshop Elements 10 in Windows 8 will not open. Adobe Photoshop Elements 10 Error Message: "Microsoft Visual C++ Runtime Library Runtime Error. This application has requested the Runtime to terminate it in an unusual way. Please contact the application'

    How to get Elements 10 to open in Windows 8 ?
    See the error message quoted above in the subject line.

    See this help document:
    https://helpx.adobe.com/photoshop-elements/kb/microsoft-c-runtime-error-launcing.html

  • Trying to start Lightroom 3 this morning and I'm receiving a "Runtime Error! This application has requested the Runtime to terminate it in an unusal way. Please contact the application's support team for more inforamtion." Has anyone experienced this befo

    Didn't mention above but I have tried uninstalling and re-installing the program and I still receive the same error message.

    Try looking at the entry " Runtime Error!  after installation of Photoshop a Elements 10..." Under "More like this" on the right of your question. It might help you.

  • I have a problem installing Adobe CC apps... when i want to install Illustrator for example in the App seccion on the Adobe Creative Cloud App appears the message "download error contact client assitance" and then the link "download Crative Cloud" i had m

    d

    Link for Download & Install & Setup & Activation problems may help
    -Online Chat http://www.adobe.com/support/download-install/supportinfo/

  • Error "Problem building schema" while invoking external webservice

    Hi,
    I have following problem:
    I created 2 BPEL processes.
    One of these processes should be called from the other as a partnerlink.
    When I create the partnerlink, pointing to the deployed wsdl, I get following error "Problem building schema" when I try to access the input variable that was created by the invoke activity.
    I have tried a lot of things but keep on getting this error.
    When I create a new, empty BPEL process, and do exactly the same it does work!
    any help would be greatly appreciated.....

    Hi,
    I have given this URL 'http://ws.cdyne.com/WeatherWS/Weather.asmx?WSDL'.
    Now it is showing the following error
    Exception occured in library handler.Not implemented.
    Exception of class CX_SIDL_INTERNAL_ERROR
    Please have a look into it
    Regards,
    Dhana

  • Client unable to get the javax.activation.DataHandler object from Server

    Hi All,
    I am trying to download the file from the server to the client using Javax.Activation.Data Handler object with IBM web services. But server always returning the Data Handler object is null. I am wondering why it is behaving like this.
    My requirement is add the file to the Data Handler object from the server and read the same from the client. But I am always getting Data Handler object is  null at the client place.
    Please see the client side code and server side code below.
    Server side Code:
    This is the simple web service method, its creating the Data Handler object and adding it to the Hash Map and returning the Hash Map object to the client.
    public Hashtable download()
              DataHandler dh = null;
              HashMap hashMap =new HashMap();
              try{
                   //Sample test files contains data
                   String downLoadFName="C:/ADP/downLoadData.txt";
                   //Creating the DataHandler Object with sample file
                   dh      =      new DataHandler(new FileDataSource(new File(downLoadFName)));
                   //Keeping the DataHandler object in the HashMap.
                   hashMap.put("DATAHANDLER",dh);
                   //keeping the sample test message object in the HashMap
                   hashMap.put("TEST","Keeping the DataHandler and test messages in the hashTable");                         
              }catch(Exception e){
                   logger.error("Error :while sending the data:"+e.getMessage(), e);
              //retrun the HashMap object to the client.
              return hashMap;
    Client Side Code:
    This is the simple client code, and connecting to the server and invoking the web service method
    //This is the client code,Just invoking the webservice method from the Webspehre server.
    public class WebserviceClient {
         static DocumentTransfer controller     =     null;
         public static void main(String args[]){     
                DocumentTransferService service          =     null;
              try{
                   //Creating the service Object
                   service               =     new DocumentTransferServiceLocator();
                   //Getting the Server connection
                    controller          =      (DocumentTransfer)service.getDocumentTransfer(new java.net.URL("http://localhost:9081/eNetsRuntimeEngine/services/DocumentTransfer"));
                    //Calling the download method from the server and it returns HashMap object.
                   HashMap hashMap     = controller.download();
                   //Getting the DataHandler Object from the HashMap
                    DataHandler dh=(DataHandler)hashMap.get("DATAHANDLER");
                   System.out.println("DATAHANDLER: :"+dh);
                   //Getting the String object from the HashMap.
                   String message=(String)hashMap.get("TEST");
                   System.out.println(": :"+message);
               }catch(Exception e){
                    System.out.println("Exception :Not able to get the file :"+e.getMessage());
    Could you please give me some inputs on this?
    Thanks in advance,
    Sreeni.

    Hi Stif,
    Thanks for your response.I did debug from server side,it has printing content of Data Handler properly.
    Also i have debug request and response messages using TCP/IP monitor(RAD environment has this feature).The response from the server is going proplery.
    But the client side Data Handler is coming null.
    Any advice or solution would be greatly appreciated.
    Thanks,
    Sreeni.

  • How to invoke A CORBA-Java Client Application, from Oracle???

    Hi,
    I have a CORBA-Java Client Application, which takes the input parameters from a Oracle table and calls the CORBA Server, passes these parameters to the C++ Server Application and gets the results back thorugh CORBA.
    My problem is, this java application needs to be invoked, when ever there is a new record in the Oracle table.
    I am not sure if i can use Java Stored Procedures in Oracle in this case, because my app is in Sun JVM and i am using BEA WebLogic Enterprise 5.1 for the CORBA.
    Is there any other way by which i can invoke this app, when a new record is updated in the Oracle table?
    Currently, i have just put a TIMER in my java App, to check the oracle table in every few seconds, to see if there is a new reocrd. If it finds a new record it invokes the corresponding class(corba class), or else just keep sending a messsage that no new record is available.
    The problems i am facing in this method are as follows;
    1. Unnecessarily, the application has to keep on running if there is no request coming frequently.
    2. When there is a new record found, the Corba Class is called and the whole process (till it gets the result back from the server) takes about 20 - 30 secs. But within this period, if there is another record coming into Oracle table, my timer class doesnt invoke another corba class....(though i am using multithreading by using the RemidTask method in the timer.schedule.
    (timer.schedule(new RemindTask(),10,5*1000);)
    3. Also, if during the first call, there is some error, then the whole process exits, instead of another process running parallely (when a second new record is found).
    So how does this timer class act like a multithreading process?
    Well, i hope i am not confusing....Please let me know if anyone wants bit more elaboration on this.
    It would be really helpful if someone can suggest some answer to my problem.
    Thanks in advance.

    Thank you very much Keith.
    Though i am really getting a hope of solving this problem, from you answer, i am actually not 100% sure if i understood your reply properly.
    First of all, about
    1. "use the update stored procedure to place the updated record (or unique index) onto an Oracle Application Queue."
    -- Why do i need to put the record in the AQ. (Frankly speaking, at this moment i dont have much idea about AQ, probably i can learn more about it from oracle technet site? Or would u suggest anything else?)
    Then,
    2."Your app then waits on this queue and for each new message, consumes it, gets the data required from the AQ load (e.g the index and or record), and fires off the CORBA class"
    -- How does my application stay in the queue? and gets the data from the queue?
    Of course, as far as i understand, i am going through the same principle...keeping on running a timer class, which keeps on checking the table for a new record, and when it finds, it calls the CORBA class.
    Of course, i feel there should be a difference in running the timer continuosly and staying in queue. However i am totally unaware, how can i make my java app to wait in the queue and waits for a new record?
    Can you please elaborate your answer a bit more, because i dont know about the AQ, that you have mentioned.
    Thank you very much in advance for your time. But please know that it will be of great help to me and hence will be higly appreciated.
    Regards,
    Subhasree.

  • Open SharePoint 2013 Search Results (EML files) In The Client Application

    Hi, I have a problem about using sharepoint 2013 search for EML files:
    When i click on the search result link *.eml, the browser open for the email file, i can only view the content of the EML file, but actually i want to see the full info of it like using an email client application outlook express including From:,To:,Date:,Subject:,ect.
    How can i click on the search result link to open an email client application to view the result?
    Thanks a lot.

    Hi  ,
    According to your description, my understanding is that you want to open SharePoint 2013 Search Results (EML files) in the Client Application.
    For your issue, you can follow the steps as the blog’s:
    http://www.quercussolutions.com/blog/index.php/opening-eml-file-types-in-outlook-from-sharepoint-2010/
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Error building installer: this application has requested the runtime to terminate it in an unusual way

    Hi,
    I build an appliction using LabView 8.2 with Report Generation Toolkit for MS Office V1.1.1 on a WinXP SP3 system without any errors. When I try to build a coresponding Installer, I got the following error message:
    This application has requested the runtime to terminate it in an unusual way.
    Can anyone help me????
    Solved!
    Go to Solution.

    Hi Gunnar,
    Good Morning and I hope your well today. Thanks for your post onto the NI Discussion Forums. 
    There are several considerations and potential causes of the error. I will try my best to cover some of the potential causes.
    Firstly, you've suggested that the Report Generation Toolkit is being used:
    When building applications with Report Generation Toolkit VIs, you must complete the following additional steps:
    1. From the Source Files tab of the Build Application or Shared Library (DLL) dialog box, click the Add Dynamic VI button to add the following two VIs to the application:
    – _Excel Dynamic VIs.vi in vi.lib\addons\_office\_exclsub.llb
    – _Word Dynamic VIs.vi in vi.lib\addons\
    _office\_wordsub.llb
    2. If the application you are building contains the MS Office Report Express VI, you must add any Word or Excel templates that you use to the built application. From the Source Files tab, click the Add Support File button to add the template files to the application. By default, the custom destination for the templates is the same as the path that appears in the Destination directory field on the Target tab with a data subdirectory appended. Do not change the custom destination for the files you add.
    For example, if you are using the basic Excel template with the MS Office Report Express VI, add MSOffice_RGT_Template.xlt to the application. The basic template files are located in the templates\Report directory.
    Have you done this?
    Could you please send an image of your project and your installer options?
    The problem was that I use Office toolkit and it was not compiled with LabVIEW 8.2:
    I found a forum where the toolkit wasn't complied for LabVIEW 8.2. Could this be an issue I wonder?
    I mass compiled the complete directory c:\program files\National
    Instruments\LabVIEW 8.2 (it took quite a long time) and afterwards the
    directory lvjpeg disapeared.
    Have you tried this?
    Runtime to Terminate Error:
    1. Have you been having any trouble with LabVIEW - crashes or bug installation?
    I would suggest repairing your installation of LabVIEW and the toolkit(s) using the Add/Remove Programs.
    2. Also would it be possible to try building an installer on another machine?
    3. I have seen that not enough Hard-disk space can cause this error - what is the status of yours?
    4. Are you using any other drivers such as DAQmx or VISA?
    I hope this information starts to help us locate the root cause of the trouble your having, and if you could answer the questions above and try my suggestions that would be great! if you could also gather the extra information about your installer options that would also really help supporting the issue further.
     *edit:
    5. Also the runtime error would suggest you've selected to include a runtime in your installer options - have you tried de-selecting this and see if it installer builds correctly? If it does, then we could then work on how to add the additional installer to your build. 
    Message Edited by Hillman on 04-01-2009 10:01 AM
    Kind Regards
    James Hillman
    Applications Engineer 2008 to 2009 National Instruments UK & Ireland
    Loughborough University UK - 2006 to 2011
    Remember Kudos those who help!

Maybe you are looking for

  • Black ink not working

    my hp photosmart premium c390g-m installed a few years ago has been working fine. now will not print in black. new cartridge has been installed. cleaned printhead. alignment fails. do i need a new printer?

  • How to delete the default dashboard of 'My Dashboard'

    I first added some contents on the default dashboard "My Dashboard", then I created a new dashboard "Products". After have done so, everytime when I log in to the system (Analytics) as Administrator, the dashboard for my first sight is "My Dashboard"

  • Label report doesn't produce output

    Hi all, I have a problem with formular and label report.Exactly when i run label report in the browser using desformat(htmlcss or pdf), it does not produce any output.But in report builder it produces an output.I don't think that it's a problem of pa

  • Any key to quickly switch between controllers in Piano Roll?

    in the LPX PIano Roll, can we use key commands or ipad Remote app to quicly switch between different midi controllers? Like switch between modulation/foot control, etc.

  • IMac Shutting Down when DVD player is in use

    So, I know a lot of folks have been mentioning the new iMacs heating up and shutting down. I'm managing my heat issues okay to this point, and I use Photoshop, Illustrator, and InDesign every day. But - the thing keeps shutting down when I try to pla