Unable to start xsp web service - Windows Client

Hi all,
I've got a problem with the Windows client (Windows 7 64-bit). When I start the client I get an error that says:
Unable to start xsp web service, iFolder will not be able to work, restart the application.
The client actually starts up. However, I'm unable to do anything with it. Are there any logs I can provide that may give you a bit more insight into what's going on?
I can connect from my mac client and a colleague can connect (from outside the firewall) from his Windows client.
Any thoughts?
Many thanks,
Andrew

I am still getting Unable to start xsp web service.
I've found some more info in my event log. I have this error. Any ideas?
Event code: 3008
Event message: A configuration error has occurred.
Event time: 3/25/2011 7:24:10 AM
Event time (UTC): 3/25/2011 12:24:10 PM
Event ID: c80ae9a584df49e181d063b3caf3b747
Event sequence: 1
Event occurrence: 1
Event detail code: 0
Application information:
Application domain: d418b072-1-129455294438750000
Trust level: Full
Application Virtual Path: /simias10
Application Path: C:\program files\ifolder\lib\simias\web\
Machine name: XXX001892
Process information:
Process ID: 6016
Process name: Simias.exe
Account name: 123\Test
Exception information:
Exception type: HttpException
Exception message: Could not load file or assembly 'System.EnterpriseServices, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified.
Request information:
Request URL: http://127.0.0.1:1353/simias10/Simias.asmx
Request path: /simias10/Simias.asmx
User host address: 127.0.0.1
User:
Is authenticated: False
Authentication Type:
Thread account name: 123\Test
Thread information:
Thread ID: 8
Thread account name: 123\Test
Is impersonating: False
Stack trace: at System.Web.Compilation.BuildManager.ReportTopLevel CompilationException()
at System.Web.Compilation.BuildManager.EnsureTopLevel FilesCompiled()
at System.Web.Hosting.HostingEnvironment.Initialize(A pplicationManager appManager, IApplicationHost appHost, IConfigMapPathFactory configMapPathFactory, HostingEnvironmentParameters hostingParameters)
Custom event details:
For more information, see Help and Support Center at

Similar Messages

  • Web service proxy client with client cert cause SSLSessionNotFoundErr

    Hi,
    I tried to run web service proxy client with certification from JDeveloper 10.1.3.0.4 to call PKI enabled web service got folllowing error:
    WARNING: Unable to connect to URL: due to java.security.PrivilegedActionException: javax.xml.soap.SOAPException: Message send failed: javax.net.ssl.SSLException: SSL handshake failed: SSLSessionNotFoundErr
    Web service deployed on OAS

    Hi,
    i am trying to invoke from JDeveloper (10.1.3) a CRM On Demand's Web Service and I hava the same problem:
    ADVERTENCIA: Unable to connect to URL: https://secure-ausomxgfa.crmondemand.com/Services/Integration due to java.security.PrivilegedActionException: javax.xml.soap.SOAPException: Message send failed: javax.net.ssl.SSLException: SSL handshake failed: SSLSessionNotFoundErr
    java.rmi.RemoteException: ; nested exception is:
         HTTP transport error: javax.xml.soap.SOAPException: java.security.PrivilegedActionException: javax.xml.soap.SOAPException: Message send failed: javax.net.ssl.SSLException: SSL handshake failed: SSLSessionNotFoundErr
         at testerlast.runtime.Contact_Stub.contactInsert(Contact_Stub.java:96)
         at testerlast.ContactClient.contactInsert(ContactClient.java:88)
         at testerlast.ContactClient.main(ContactClient.java:69)
    Caused by: HTTP transport error: javax.xml.soap.SOAPException: java.security.PrivilegedActionException: javax.xml.soap.SOAPException: Message send failed: javax.net.ssl.SSLException: SSL handshake failed: SSLSessionNotFoundErr
         at oracle.j2ee.ws.common.util.exception.JAXRPCExceptionBase.<init>(JAXRPCExceptionBase.java:93)
         at oracle.j2ee.ws.common.util.exception.JAXRPCExceptionBase.<init>(JAXRPCExceptionBase.java:89)
         at oracle.j2ee.ws.client.ClientTransportException.<init>(ClientTransportException.java:33)
         at oracle.j2ee.ws.client.http.HttpClientTransport.invokeImpl(HttpClientTransport.java:144)
         at oracle.j2ee.ws.client.http.HttpClientTransport.invoke(HttpClientTransport.java:121)
         at oracle.j2ee.ws.client.StreamingSender._sendImpl(StreamingSender.java:169)
         at oracle.j2ee.ws.client.StreamingSender._send(StreamingSender.java:111)
         at testerlast.runtime.Contact_Stub.contactInsert(Contact_Stub.java:80)
         ... 2 more
    To do the invocation I have done a proxy to consume this Web Service, with the follow main:
    public static void main(String[] args) {
    try {
    testerlast.ContactClient myPort = new testerlast.ContactClient();
    System.out.println("calling " + myPort.getEndpoint());
    myPort.setUsername(nameUser);
    myPort.setPassword(password);
    ListOfContactData llista = new ListOfContactData();
    ContactData[] contacts=new ContactData[2];
    ContactData contact=new ContactData();
    ContactInsert_Input input=new ContactInsert_Input();
    // Login WS HTTPS
    String idSesion=connexioWS_CRM.logon(URL,nameUser,password);
    // Add contact
    for (int i = 0; i < contacts.length; i++) {
    contact.setId("ProvaWSCRM"+i);
    contact.setContactFirstName("JDeveloper"+i);
    contact.setContactLastName("prove"+i);
    contact.setCellularPhone("77777777"+i);
    contact.setDescription("Add contact with Id:"+contact.getId());
    contacts=contact;
    System.out.println("Id:"+contacts[i].getId()+" firstName:"+contacts[i].getContactFirstName()+" lastName:"+contacts[i].getContactLastName());
    llista.setContact(contacts);
    input.setListOfContact(llista);
    input.setEcho("off");
    System.out.println("Pwd:"+myPort.getPassword()+" Port:"+myPort._port+" endpoint:"+myPort.getEndpoint()+" user:"+myPort.getUsername());
    myPort.contactInsert(llista,"LIC","Broadset","OFF");
    // Logout en WS (HTTPS)
    connexioWS_CRM.logoff(URL, idSesion);
    } catch (Exception ex) {
    ex.printStackTrace();
    What's wrong? Any idea?
    Thank you
    Edited by: user12085357 on 31-oct-2009 10:39

  • Web Service Proxy client to invoke a Web service on SSL (Jdev 10.1.3.1)

    Hi,
    I have to develope a Web Service proxy client to invoke a web service on SSL. First I'm testing with OC4J 10.1.3.1 and JDEV 10.1.3.1 and did this:
    1) Developed a basic PL/SQL Web Service with JDEV and publish on my standalone OC4J.
    2) Made a test with a browser, it worked OK
    3) Generated a proxy client from JDev 10.1.3.1 to invoke web service, it worked OK
    --- Now make it work on SSL----
    4) Then, added SSL configuration to oc4j , generated a certificate with keytool (updated server.xml, secure-web-site.xml), and shutting down and starting the OC4j instance.
    5) Import the certificate to JAVA_HOME/jre/lib/security/cacerts
    6) Test web service from browser on https and worked OK.
    7) When tried to modified proxy client (generated in step 3) to make it work on SSL, I realized that just changing the END_POINT to the new url (https) it worked!
    Questions----
    1.- By default the proxy client generated from JDEV 10.1.3.1 knows how to deal with SSL conections?
    2.- If I dont have previously the server certificate to import it into JAVA keystore (cacerts) how could I ,from proxy client code, capture it and import it before the validation occurs... because if the certificate is not in keystore , the program fails.
    Thanks in advance
    J.

    Hi,
    Could you please provide me with the steps necessary to create a web service proxy client through JDeveloper or any other mechanism when 2 way SSL (requiring client authentication) is enabled.
    Thanks a lot in advance
    Nilesh

  • (Basis)Unable to start some XI services in the J2EE Engine

    Hello,
    Our XI system was up & running Fine, however suddenly the
    J2EE engine  is unable to start some XI services like XI.Repository,XI directory,
    XI RWB etc .. However the Adapter Framework services are up & running fine .
    The Application startup fails to start even when we manually start through Visual
    Admin tool . (cluster ->server->services->Deploy) .
    We had many times stopped & started the J2EE Engine also . ABAP Stack works fine .
    We get the Class not found exception error .
    Start application
    Warning occurred on server 9573750 during startApp sap.com/com.sap.xi.repository : ORB is not bound in JNDI. It is impossible to lookup org.omg.CORBA.ORB from EJBean sap.com/com.sap.xi.repository/UploadService.
    Warning occurred on server 9573750 during startApp sap.com/com.sap.xi.repository : ORB is not bound in JNDI. It is impossible to lookup org.omg.CORBA.ORB from EJBean sap.com/com.sap.xi.repository/MapServiceBean.
    Warning occurred on server 9573750 during startApp sap.com/com.sap.xi.repository : ORB is not bound in JNDI. It is impossible to lookup org.omg.CORBA.ORB from EJBean sap.com/com.sap.xi.repository/CrossTransport.
    Warning occurred on server 9573750 during startApp sap.com/com.sap.xi.repository : ORB is not bound in JNDI. It is impossible to lookup org.omg.CORBA.ORB from EJBean sap.com/com.sap.xi.repository/RepSpecMiscServicesBean.
    Warning occurred on server 9573750 during startApp sap.com/com.sap.xi.repository : ORB is not bound in JNDI. It is impossible to lookup org.omg.CORBA.ORB from EJBean sap.com/com.sap.xi.repository/ConnTestServiceBean.
    Warning occurred on server 9573750 during startApp sap.com/com.sap.xi.repository : ORB is not bound in JNDI. It is impossible to lookup org.omg.CORBA.ORB from EJBean sap.com/com.sap.xi.repository/RepLoginServiceBean.
    Warning occurred on server 9573750 during startApp sap.com/com.sap.xi.repository : ORB is not bound in JNDI. It is impossible to lookup org.omg.CORBA.ORB from EJBean sap.com/com.sap.xi.repository/RepObjectAccessBean.
    Warning occurred on server 9573750 during startApp sap.com/com.sap.xi.repository : ORB is not bound in JNDI. It is impossible to lookup org.omg.CORBA.ORB from EJBean sap.com/com.sap.xi.repository/RepObjectAccessBeanSwcv.
    Warning occurred on server 9573750 during startApp sap.com/com.sap.xi.repository : ORB is not bound in JNDI. It is impossible to lookup org.omg.CORBA.ORB from EJBean sap.com/com.sap.xi.repository/RepHmiBean.
    Warning occurred on server 9573750 during startApp sap.com/com.sap.xi.repository : ORB is not bound in JNDI. It is impossible to lookup org.omg.CORBA.ORB from EJBean sap.com/com.sap.xi.repository/RepPvcMigrationBean.
    Warning occurred on server 9573750 during startApp sap.com/com.sap.xi.repository : ORB is not bound in JNDI. It is impossible to lookup org.omg.CORBA.ORB from EJBean sap.com/com.sap.xi.repository/RepDiagBean.
    Warning occurred on server 9573750 during startApp sap.com/com.sap.xi.repository : ORB is not bound in JNDI. It is impossible to lookup org.omg.CORBA.ORB from EJBean sap.com/com.sap.xi.repository/RepQueryServiceBean.
    Warning occurred on server 9573750 during startApp sap.com/com.sap.xi.repository : ORB is not bound in JNDI. It is impossible to lookup org.omg.CORBA.ORB from EJBean sap.com/com.sap.xi.repository/RepRoaBean.
    Warning occurred on server 9573750 during startApp sap.com/com.sap.xi.repository : ORB is not bound in JNDI. It is impossible to lookup org.omg.CORBA.ORB from EJBean sap.com/com.sap.xi.repository/RepTransformationServiceBean.
    Warning occurred on server 9573750 during startApp sap.com/com.sap.xi.repository : ORB is not bound in JNDI. It is impossible to lookup org.omg.CORBA.ORB from EJBean sap.com/com.sap.xi.repository/RepEOAServiceBean.
    Warning occurred on server 9573750 during startApp sap.com/com.sap.xi.repository : ORB is not bound in JNDI. It is impossible to lookup org.omg.CORBA.ORB from EJBean sap.com/com.sap.xi.repository/RepTransportServiceBean.
    Warning occurred on server 9573750 during startApp sap.com/com.sap.xi.repository : ORB is not bound in JNDI. It is impossible to lookup org.omg.CORBA.ORB from EJBean sap.com/com.sap.xi.repository/RepChangeListMgmtBean.
    Warning occurred on server 9573750 during startApp sap.com/com.sap.xi.repository : ORB is not bound in JNDI. It is impossible to lookup org.omg.CORBA.ORB from EJBean sap.com/com.sap.xi.repository/RepConflictResolutionBean.
    Warning occurred on server 9573750 during startApp sap.com/com.sap.xi.repository : ORB is not bound in JNDI. It is impossible to lookup org.omg.CORBA.ORB from EJBean sap.com/com.sap.xi.repository/RepPrintViewServiceBean.
    Warning occurred on server 9573750 during startApp sap.com/com.sap.xi.repository : ORB is not bound in JNDI. It is impossible to lookup org.omg.CORBA.ORB from EJBean sap.com/com.sap.xi.repository/RepMiscServicesBean.
    Warning occurred on server 9573750 during startApp sap.com/com.sap.xi.repository : ORB is not bound in JNDI. It is impossible to lookup org.omg.CORBA.ORB from EJBean sap.com/com.sap.xi.repository/RepVersionHistoryBean.
    Warning occurred on server 9573750 during startApp sap.com/com.sap.xi.repository : ORB is not bound in JNDI. It is impossible to lookup org.omg.CORBA.ORB from EJBean sap.com/com.sap.xi.repository/RepAuthorizationBean.
    Error occurred on server 9573750 during startApp sap.com/com.sap.xi.repository : com.sap.engine.services.servlets_jsp.server.exceptions.WebDeploymentException: Error in starting application [sap.com/com.sap.xi.repository].
         at com.sap.engine.services.servlets_jsp.server.container.StartAction.prepareStart(StartAction.java:118)
         at com.sap.engine.services.servlets_jsp.server.container.WebContainer.prepareStart(WebContainer.java:398)
         at com.sap.engine.services.deploy.server.application.StartTransaction.prepareCommon(StartTransaction.java:223)
         at com.sap.engine.services.deploy.server.application.StartTransaction.prepare(StartTransaction.java:171)
         at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:301)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.makeAllPhasesImpl(ParallelAdapter.java:342)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.runMe(ParallelAdapter.java:89)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter$1.run(ParallelAdapter.java:233)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    Caused by: com.sap.engine.services.servlets_jsp.server.exceptions.WebDeploymentException: Error while deploying web application [rep].
         at com.sap.engine.services.servlets_jsp.server.runtime.context.ApplicationContext.init(ApplicationContext.java:630)
         at com.sap.engine.services.servlets_jsp.server.container.WebContainerHelper.createContext(WebContainerHelper.java:540)
         at com.sap.engine.services.servlets_jsp.server.container.StartAction.prepareStart(StartAction.java:51)
         ... 10 more
    Caused by: org.omg.CORBA.INITIALIZE: can't instantiate default ORB implementation com.sun.enterprise.iiop.POAEJBORB  vmcid: 0x0  minor code: 0  completed: No
         at org.omg.CORBA.ORB.create_impl(ORB.java:297)
         at org.omg.CORBA.ORB.init(ORB.java:336)
         at com.sap.engine.services.servlets_jsp.server.runtime.context.WebApplicationConfig.parse(WebApplicationConfig.java:116)
         at com.sap.engine.services.servlets_jsp.server.runtime.context.ApplicationContext.init(ApplicationContext.java:617)
         ... 12 more
    Caused by: java.lang.ClassNotFoundException: com.sun.enterprise.iiop.POAEJBORB
    Loader Info -
    ClassLoader name: [sap.com/com.sap.xi.repository]
    Parent loader name: [Frame ClassLoader]
    References:
       common:service:http;service:servlet_jsp
       service:ejb
       common:service:iiop;service:naming;service:p4;service:ts
       service:jmsconnector
       library:jsse
       library:servlet
       common:library:IAIKSecurity;library:activation;library:mail;library:tcsecssl
       library:ejb20
       library:j2eeca
       library:jms
       library:opensql
       interface:resourcecontext_api
       common:library:com.sap.security.api.sda;library:com.sap.security.core.sda;library:security.class;library:webservices_lib;service:adminadapter;service:basicadmin;service:com.sap.security.core.ume.service;service:configuration;service:connector;service:dbpool;service:deploy;service:jmx;service:jmx_notification;service:keystore;service:security;service:userstore
       interface:webservices
       interface:cross
       interface:ejbserialization
       library:tc~jmx
       library:opensqlextensions
       service:applocking
       interface:keystore_api
       library:com.sap.exception
       library:com.sap.guid
       library:sapxmltoolkit
       library:com.sap.tc.Logging
       library:com.sap.mw.jco
       library:com.sap.mdi
       library:com.sap.lcr.api.cimclient
       library:com.sap.rprof.dbprofiles
       library:compilation_lib
       service:tcsecsecurestorage~service
       library:tci18ns2x
       library:com.sap.xi.jnlp.servlet
       library:com.sap.util.monitor.jarm
       sap.com/com.sap.aii.security.ws.proxy
       service:tcsecwssec~service
       library:tc.httpclient
       library:tcSLCMS~IDEClient
       library:tcSLCMS~Util
       library:com.sapportals.htmlb
       service:com.sap.aii.af.svc
       library:tcsldsldclient_sda
    Resources:
       C:\usr\sap\XI3\DVEBMGS00\j2ee\cluster\server0\apps\sap.com\com.sap.xi.repository\aii_ib_core.jar
       C:\usr\sap\XI3\DVEBMGS00\j2ee\cluster\server0\apps\sap.com\com.sap.xi.repository\aii_map_api.jar
       C:\usr\sap\XI3\DVEBMGS00\j2ee\cluster\server0\apps\sap.com\com.sap.xi.repository\sap.comtcdtrcsimpl.jar
       C:\usr\sap\XI3\DVEBMGS00\j2ee\cluster\server0\apps\sap.com\com.sap.xi.repository\aii_ibrep_core.jar
       C:\usr\sap\XI3\DVEBMGS00\j2ee\cluster\server0\apps\sap.com\com.sap.xi.repository\sap.comtcdtrutilbasic~impl.jar
       C:\usr\sap\XI3\DVEBMGS00\j2ee\cluster\server0\apps\sap.com\com.sap.xi.repository\aii_ib_rb.jar
       C:\usr\sap\XI3\DVEBMGS00\j2ee\cluster\server0\apps\sap.com\com.sap.xi.repository\aii_util_xml.jar
       C:\usr\sap\XI3\DVEBMGS00\j2ee\cluster\server0\apps\sap.com\com.sap.xi.repository\EJBContainer\clientjars\clientaii_ibrep_sbeans.jar
       C:\usr\sap\XI3\DVEBMGS00\j2ee\cluster\server0\apps\sap.com\com.sap.xi.repository\aii_ib_server.jar
       C:\usr\sap\XI3\DVEBMGS00\j2ee\cluster\server0\apps\sap.com\com.sap.xi.repository\EJBContainer\applicationjars\aii_ib_sbeans.jar
       C:\usr\sap\XI3\DVEBMGS00\j2ee\cluster\server0\apps\sap.com\com.sap.xi.repository\aii_util_rb.jar
       C:\usr\sap\XI3\DVEBMGS00\j2ee\cluster\server0\apps\sap.com\com.sap.xi.repository\aii_mt_rb.jar
       C:\usr\sap\XI3\DVEBMGS00\j2ee\cluster\server0\apps\sap.com\com.sap.xi.repository\aii_ibrep_rb.jar
       C:\usr\sap\XI3\DVEBMGS00\j2ee\cluster\server0\apps\sap.com\com.sap.xi.repository\aii_utilxi_misc.jar
       C:\usr\sap\XI3\DVEBMGS00\j2ee\cluster\server0\apps\sap.com\com.sap.xi.repository\EJBContainer\applicationjars\aii_ibrep_sbeans.jar
       C:\usr\sap\XI3\DVEBMGS00\j2ee\cluster\server0\apps\sap.com\com.sap.xi.repository\aii_util_cimaccess.jar
       C:\usr\sap\XI3\DVEBMGS00\j2ee\cluster\server0\apps\sap.com\com.sap.xi.repository\sap.comtcdtrpvcimpl.jar
       C:\usr\sap\XI3\DVEBMGS00\j2ee\cluster\server0\apps\sap.com\com.sap.xi.repository\sap.comtcdtrutilimpl.jar
       C:\usr\sap\XI3\DVEBMGS00\j2ee\cluster\server0\apps\sap.com\com.sap.xi.repository\servlet_jsp\rep\work
       C:\usr\sap\XI3\DVEBMGS00\j2ee\cluster\server0\apps\sap.com\com.sap.xi.repository\aii_upload_sap.jar
       C:\usr\sap\XI3\DVEBMGS00\j2ee\cluster\server0\apps\sap.com\com.sap.xi.repository\aii_ibrep_server.jar
       C:\usr\sap\XI3\DVEBMGS00\j2ee\cluster\server0\apps\sap.com\com.sap.xi.repository\aii_util_sql.jar
       C:\usr\sap\XI3\DVEBMGS00\j2ee\cluster\server0\apps\sap.com\com.sap.xi.repository\aii_mt_rt.jar
       C:\usr\sap\XI3\DVEBMGS00\j2ee\cluster\server0\apps\sap.com\com.sap.xi.repository\EJBContainer\clientjars\clientaii_ib_sbeans.jar
       C:\usr\sap\XI3\DVEBMGS00\j2ee\cluster\server0\apps\sap.com\com.sap.xi.repository\aii_upload_core.jar
       C:\usr\sap\XI3\DVEBMGS00\j2ee\cluster\server0\apps\sap.com\com.sap.xi.repository\aii_util_xsd.jar
    Loading model: {parent,references,local}
         at com.sap.engine.frame.core.load.ReferencedLoader.loadClass(ReferencedLoader.java:382)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:219)
         at org.omg.CORBA.ORB.create_impl(ORB.java:295)
         ... 15 more
    We had referered to notes 803145 & 753567 , but could find much help .
    Please Help .
    Regards
    Kumar

    Hi
    Refer to the link
    See the troble shooting guide
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/bd5950ff-0701-0010-a5bc-86d45fd52283
    Regards,
    Kumar

  • Error: Unable to start Citadel 5 services

    I am running LabVIEW v7.1 Developer Suite with DSC v7.1
    Running Windows 2000
    I am using LabVIEW to access data from an OPC server located in the PC running LabVIEW. I set up a vi to read the wanted data with no problems. Today, when I tried to open the saved vi I recieved this error message: "Unable to start Citadel 5 services". I have never recieved this error message before. As a result, I can not access the Tag Configuration Editor. Does anyone have any suggestions/comments that may help me? Thank you.
    Tom

    tidstein,
    I'm sure you have tried rebooting your PC. If this did not solve the error try repairing the installation of the DSC Module from Add/Remove Programs in the Control Panel.
    Citadel 5 is the database portion of the DSC module. It is dependent on several other components that should be installed/updated by the DSC Module installer. Another component that Citadel depends on is Microsoft's MSDE (http://www.microsoft.com/sql/msde/default.asp). This shows up as sqlservr.exe in the task manager (This component is automatically installed when you install the DSC Module). Citadel must be able to start this service in order to run.
    Let me know if you were able to resolve this issue.
    Regards,
    -Nick F
    Product Support Engineer
    National Instruments
    ~~

  • HP touchsmart 520, error unable to start bluetooth stack service

    I am wanting to use the bluetooth feature on my Touchsmart 520 for transferring pics, audio files etc.  My periphal device is a Samsung Galaxy S5.   My phone shows that it is paired with my pc, when i try to access via bluetooth I get the error message unable to start bluetooth stack service.  My Touchsmart uses the Broadcom adapter that came with the pc.  Help!!!
     CapnRon1

    Hello @CapnRon1,
    Welcome to the HP Forums, I hope you enjoy your experience! To help you get the most out of the HP Forums I would like to direct your attention to the HP Forums Guide First Time Here? Learn How to Post and More.
    I understand you are having issues transferring files between your Samsung Galaxy S5 and your HP touchsmart 520 Desktop PC. I am providing you with some steps you can try below:
    Step 1. Go to device manager
    Step 2. Right click on "Bluetooth Peripheral Device" that you want
    Step 3. Select "Update Driver Software..."
    Step 4. Choose "Browse my computer for driver software"
    Step 5. Choose "Let me pick from a list of device drivers on my computer"
    Step 6. Select "Ports (COM & LPT)"
    Step 7. Select "Microsoft" at "Manufacturer" list
    Step 8. Finally select "Standard Serial over Bluetooth link"
    If you are still unable to pair with a Bluetooth device try the following:
    Step 1. Search for "Change device" in the Windows 8 Start menu.
    Step 2. Click on where it says Change device installation settings.
    Step 3. Select the No, let me choose what to do option.
    Step 4. Check the automatically get the device app option
    Step 5. Click Save changes to save the settings you just chose
    As well you can try this:
    Step 1: Go to RUN (Windows Logo + R) and type “services.msc” and Enter
    Step 2: Now find “Bluetooth Support Service” and double click on it
    Step 3: Now click on Log On Tab and Type in "Local Service" without quotes
    Step 4. Click on “This Account”
    Step 5: Now remove any passwords leave the password field blank
    Step 6: Underneath the upper left title should be a hyperlink "Start" Click it
    You can also check:
    Power Management tab and unchecked the box that said "Allow the computer to turn off this device to save power."  Problem solved.  Thank you for your willingness and persistance in helping me resolve the issue.
    I would be happy to assist you further is you require it, but first I would encourage you to post your product number for your computer. I am linking an HP Support document below that will show you how to find your product number. As well, if you could indicate which operating system you are using. And whether your operating system is 32-bit or 64-bit as with this and the product number I can provide you with accurate information.
    How Do I Find My Model Number or Product Number?
    Which Windows operating system am I running?
    Is the Windows Version on My Computer 32-bit or 64-bit?
    Please re-post with the requested information and I would be happy to provide you with assistance. Thank you for posting on the HP Forums. Have a great day!
    Please click the "Thumbs Up" on the bottom right of this post to say thank you if you appreciate the support I provide!
    Also be sure to mark my post as “Accept as Solution" if you feel my post solved your issue, it will help others who face the same challenge find the same solution.
    Dunidar
    I work on behalf of HP
    Find out a bit more about me by checking out my profile!
    "Customers don’t expect you to be perfect. They do expect you to fix things when they go wrong." ~ Donald Porter

  • HP 7520 Unable to connect to web services while trying to scan

    I have tried the scan doctor and was able to scan from that program but was unabe to scan using buttons on printer for both Windows 8 and MAC OS X. Error message is consistent Unable to connect to web services. I am trying to scan to email on both Windows 8 and IOS X
    It appears to be a common issue. Is there a downloable fix for all of the owners users of your product?
    Thank you

    Hi Kitray,
    I see that you are trying to scan to your Email, but are unable to. Which Email provider are you trying to scan into? I have found great success by follow the steps I have offered here: Re: Trouble scanning using Photosmart 6520
    Don't worry about the printer not being the exact model as yours as the firmware, steps and settings are all the same.
    Please let me know how you make out with those steps.
    JERENDS
    I work on behalf of HP
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to the left of the reply button to say “Thanks” for helping!

  • Unable to connect to web services

    whenever I try to use an app on my printer photosmart 7520, I get a error message "Unable to connect to Web Services Confirm Internet access and try again", my meb service is on I can connect to the printer through the network and from the printer I can connect to the internet. My computer is a HP Pavilion model # p7-1380t and I am useing Windows 7.

    Hi monkeyhead,
    Welcome back to the HP Support forums, it's been a while since you last posted.  I understand that you are getting an error message when you try to enable your web services.
    Please set a static ip address for the printer. I have included a link to another post on the forums where I have screen shots on how to do this.  Please don't worry that the screen shots are for an Officejet 8500, the steps are the same.  Please note that if you don't have 'IPv4' along the left hand side menu please look for 'Network' or 'Network Address (IP)'.
    HP Support forums post by Happytohelp01
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

  • Invoke Bpel Processes via API or Web Service Proxy Clients

    Hi all,
    I was wondering if any of the felow community members have found information regarding best practices in invoking bpel processes from a user interface other than ADF Faces?
    Currently I'm using Web Service Proxy Clients to invoke my bpel processes, but I was wondering if it would be better to use the BPEL API?
    Considerations I have regarding these 2 different approaches are mostly tight integration when using the BPEL API, because this means I have to port the BPEL (Oracle Code) inside my UI-application which isn't the case when using Web Service Proxy Clients.
    What is the best way to instantiate bpel processes from a user interface, is that by using web service proxy clients or by using the bpel i
    nvocation API?
    Kind regards,
    Nathalie

    Hi Marc,
    These were my considerations as well, but I was looking for some kind of benchmarking regarding these 2 approaches. What's best practices when hooking up bpel inside UI Applications regarding performance, future-proofness (SOA Grid, SOA Composites, ...) etc.
    I think I need to discuss this with the product team to make sure I'm taking the wright decisions.
    Kind regards,
    Nathalie

  • Enable Web Service access for a Web service-enabled client

    Hi,
    I want to access data in Oracle CRM On Demand from a Web services-enabled client. The "Oracle Web Services On Demand Guide" suggest the Web Services Access should be granted by Customer Care representative. By default, this access is enabled for the Administrator role for new companies. However my admin account can't access web services from a web enable client.
    Can anyone please suggest me the setting/step that i need to enable Oracle On Demand Web service access from a Web services-enabled client?
    Note: I am new to oracle on demand so my query can be a silly thing.
    Thanks & Regards
    Ravish

    I was able to resolve this issue. Actually, i was trying with trial account that don't allow the OCOD web service integration.

  • Workshop 9.2 - Web Service Test Client - java.util.NoSuchElementException

    I've found an issue with the Web Services Test Client while developing a web service application in the Weblogic Workshop 9.2 tool. The same schema / code in Workshop 8.1 SP4 works okay in its version of the test client.
    The error seems to manifest itself, when I add the "addresses" element to the "locations" element.
    The error displayed in the weblogic service console is
    <BLOCKQUOTE>
    java.lang.RuntimeException: java.util.NoSuchElementException
    at weblogic.testclient.ConnectionState.createWsdl(ConnectionState.java:63)
    at Controller.refreshWsdl(Controller.java:304)
    at Controller.begin(Controller.java:173)
    at jrockit.reflect.VirtualNativeMethodInvoker.invoke(Ljava.lang.Object;[Ljava.lang.Object;)Ljava.lang.Object;(Unknown Source)
            at java.lang.reflect.Method.invoke(Ljava.lang.Object;[Ljava.lang.Object;I)Ljava.lang.Object;(Unknown Source)
            at org.apache.beehive.netui.pageflow.FlowController.invokeActionMethod(FlowController.java:878)
            at org.apache.beehive.netui.pageflow.FlowController.getActionMethodForward(FlowController.java:808)
            at org.apache.beehive.netui.pageflow.FlowController.internalExecute(FlowController.java:477)
            at org.apache.beehive.netui.pageflow.PageFlowController.internalExecute(PageFlowController.java:305)
            at org.apache.beehive.netui.pageflow.FlowController.execute(FlowController.java:335)
            at org.apache.beehive.netui.pageflow.internal.FlowControllerAction.execute(FlowControllerAction.java:51)
            at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:419)
            at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.access$201(PageFlowRequestProcessor.java:95)
            at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor$ActionRunner.execute(PageFlowRequestProcessor.java:2042)
            at org.apache.beehive.netui.pageflow.interceptor.action.internal.ActionInterceptors.wrapAction(ActionInterceptors.java:90)
            at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.processActionPerform(PageFlowRequestProcessor.java:2114)
            at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:224)
            at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.processInternal(PageFlowRequestProcessor.java:554)
            at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.process(PageFlowRequestProcessor.java:851)
            at org.apache.beehive.netui.pageflow.AutoRegisterActionServlet.process(AutoRegisterActionServlet.java:630)
            at org.apache.beehive.netui.pageflow.PageFlowActionServlet.process(PageFlowActionServlet.java:157)
            at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
            at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:225)
            at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:127)
            at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
            at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
            at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3211)
    Caused by: java.util.NoSuchElementException
            at java.util.AbstractList$Itr.next(AbstractList.java:427)
            at weblogic.testclient.RequestTemplate.addSoapForParameter(RequestTemplate.java:341)
            at weblogic.testclient.RequestTemplate.addSoapForParameter(RequestTemplate.java:334)
            at weblogic.testclient.RequestTemplate.addSoapForParameter(RequestTemplate.java:334)
            at weblogic.testclient.RequestTemplate.addSoapForParameter(RequestTemplate.java:334)
            at weblogic.testclient.RequestTemplate.addSoapForParameter(RequestTemplate.java:334)
            at weblogic.testclient.RequestTemplate.addSoapForParameter(RequestTemplate.java:334)
            at weblogic.testclient.RequestTemplate.addSoapForParameter(RequestTemplate.java:334)
            at weblogic.testclient.RequestTemplate.addSoapForParameter(RequestTemplate.java:334)
            at weblogic.testclient.RequestTemplate.addSoapForParameter(RequestTemplate.java:334)
            at weblogic.testclient.RequestTemplate.createMessageBody(RequestTemplate.java:220)
            at weblogic.testclient.RequestTemplate.buildRequest(RequestTemplate.java:169)
            at weblogic.testclient.RequestTemplate.createRequestTemplate(RequestTemplate.java:103)
            at weblogic.testclient.RequestTemplate.<init>(RequestTemplate.java:85)
            at weblogic.testclient.WebServiceOperation.<init>(WebServiceOperation.java:120)
            at weblogic.testclient.WsdlOperationParser.createOperation(WsdlOperationParser.java:115)
            at weblogic.testclient.WebService.createOperation(WebService.java:242)
            at weblogic.testclient.WebService.<init>(WebService.java:86)
            at weblogic.testclient.Wsdl.parseWsdl(Wsdl.java:127)
            at weblogic.testclient.Wsdl.<init>(Wsdl.java:59)
            at weblogic.testclient.ConnectionState.createWsdlFromHttpUrl(ConnectionState.java:113)
            at weblogic.testclient.ConnectionState.createWsdl(ConnectionState.java:54)
            at Controller.refreshWsdl(Controller.java:304)
            at Controller.begin(Controller.java:173)
            at jrockit.reflect.VirtualNativeMethodInvoker.invoke(Ljava.lang.Object;[Ljava.lang.Object;)Ljava.lang.Object;(Unknown Source)
            at java.lang.reflect.Method.invoke(Ljava.lang.Object;[Ljava.lang.Object;I)Ljava.lang.Object;(Unknown Source)
            at org.apache.beehive.netui.pageflow.FlowController.invokeActionMethod(FlowController.java:878)
            at org.apache.beehive.netui.pageflow.FlowController.getActionMethodForward(FlowController.java:808)
            at org.apache.beehive.netui.pageflow.FlowController.internalExecute(FlowController.java:477)
    </BLOCKQUOTE>
    The code in the Web Service control is...
    <BLOCKQUOTE>
    package services;
    import javax.jws.WebMethod;
    import javax.jws.WebService;
    import weblogic.jws.WLHttpTransport;
    import au.com.suncorp.services.payment.schema.x0.RequestIdDocument;
    import au.com.suncorp.services.payment.schema.x0.VendorDocument;
    @WebService(targetNamespace="http://suncorp.com.au/services/payment/wsdl/0")
    @WLHttpTransport(serviceUri="services/PaymentService")
    public class Payment {
         @WebMethod
         public RequestIdDocument setupVendor(VendorDocument request) {
              System.out.println(request.xmlText());
              RequestIdDocument result = RequestIdDocument.Factory.newInstance();
              RequestIdDocument.RequestId response = result.addNewRequestId();
              response.setCorrelationId("CorrelationId-" + request.getVendor().getName());
              return result;
    </BLOCKQUOTE>
    The XSD schema is as follows....
    <BLOCKQUOTE>
    <?xml version="1.0" encoding="UTF-8"?>
    <schema xmlns="http://www.w3.org/2001/XMLSchema"
    targetNamespace="http://suncorp.com.au/services/payment/schema/0"
    xmlns:tns="http://suncorp.com.au/services/payment/schema/0">
    <!-- ***************************************************************** -->
    <simpleType name="correlationIdType">
    <annotation>
    <documentation>
    The CorrelationId field.
    </documentation>
    </annotation>
    <restriction base="string"></restriction>
    </simpleType>
    <simpleType name="estTimeIntervalType">
    <annotation>
    <documentation>
    The Estimated Time Interval field.
    </documentation>
    </annotation>
    <restriction base="integer"></restriction>
    </simpleType>
    <simpleType name="vendorIdType">
    <annotation>
    <documentation>
    The Vendor Id field.
    </documentation>
    </annotation>
    <restriction base="string"></restriction>
    </simpleType>
    <simpleType name="nameType">
    <annotation>
    <documentation>
    The Vendor Name field.
    </documentation>
    </annotation>
    <restriction base="string"></restriction>
    </simpleType>
    <simpleType name="persistenceType">
    <annotation>
    <documentation>
    The Persistence field.
    </documentation>
    </annotation>
    <restriction base="boolean"></restriction>
    </simpleType>
    <simpleType name="ownerType">
    <annotation>
    <documentation>
    The Owner field.
    </documentation>
    </annotation>
    <restriction base="string"></restriction>
    </simpleType>
    <simpleType name="sourceReferenceType">
    <annotation>
    <documentation>
    The vendor Source Reference field.
    </documentation>
    </annotation>
    <restriction base="string"></restriction>
    </simpleType>
    <simpleType name="abnType">
    <annotation>
    <documentation>
    The vendor ABN field.
    </documentation>
    </annotation>
    <restriction base="string"></restriction>
    </simpleType>
    <simpleType name="countryType">
    <annotation>
    <documentation>
    The Country field.
    </documentation>
    </annotation>
    <restriction base="string"></restriction>
    </simpleType>
    <simpleType name="stateType">
    <annotation>
    <documentation>
    The State field.
    </documentation>
    </annotation>
    <restriction base="string"></restriction>
    </simpleType>
    <simpleType name="cityType">
    <annotation>
    <documentation>
    The City field.
    </documentation>
    </annotation>
    <restriction base="string"></restriction>
    </simpleType>
    <simpleType name="postcodeType">
    <annotation>
    <documentation>
    The Postcode field.
    </documentation>
    </annotation>
    <restriction base="string"></restriction>
    </simpleType>
    <simpleType name="gstRegisteredType">
    <annotation>
    <documentation>
    The GST Registered field.
    </documentation>
    </annotation>
    <restriction base="boolean"></restriction>
    </simpleType>
    <simpleType name="withHoldingType">
    <annotation>
    <documentation>
    The WithHolding field.
    </documentation>
    </annotation>
    <restriction base="boolean"></restriction>
    </simpleType>
    <simpleType name="vendorClassType">
    <annotation>
    <documentation>
    The Vendor Class field.
    </documentation>
    </annotation>
    <restriction base="string"></restriction>
    </simpleType>
    <simpleType name="statusType">
    <annotation>
    <documentation>The Status field.</documentation>
    </annotation>
    <restriction base="string">
    <enumeration value="ACTIVE">
    <annotation>
    <documentation>an enumerated value.</documentation>
    </annotation>
    </enumeration>
    <enumeration value="INACTIVE">
    <annotation>
    <documentation>an enumerated value.</documentation>
    </annotation>
    </enumeration>
    </restriction>
    </simpleType>
    <simpleType name="locationIdType">
    <annotation>
    <documentation>
    The Location Id field.
    </documentation>
    </annotation>
    <restriction base="string"></restriction>
    </simpleType>
    <simpleType name="effectiveDateType">
    <annotation>
    <documentation>
    The Effective Date field.
    </documentation>
    </annotation>
    <restriction base="dateTime"></restriction>
    </simpleType>
    <simpleType name="addressIdType">
    <annotation>
    <documentation>
    The AddressId field.
    </documentation>
    </annotation>
    <restriction base="string"></restriction>
    </simpleType>
    <simpleType name="addressType">
    <annotation>
    <documentation>
    The Address field.
    </documentation>
    </annotation>
    <restriction base="string"></restriction>
    </simpleType>
    <simpleType name="contactIdType">
    <annotation>
    <documentation>
    The ContactId field.
    </documentation>
    </annotation>
    <restriction base="string"></restriction>
    </simpleType>
    <simpleType name="contactMethodType">
    <annotation>
    <documentation>
    The Address field.
    </documentation>
    </annotation>
    <restriction base="string">
    <enumeration value="FAX">
    <annotation>
    <documentation>an enumerated value.</documentation>
    </annotation>
    </enumeration>
    <enumeration value="PHONE">
    <annotation>
    <documentation>an enumerated value.</documentation>
    </annotation>
    </enumeration>
    <enumeration value="EMAIL">
    <annotation>
    <documentation>an enumerated value.</documentation>
    </annotation>
    </enumeration>
    </restriction>
    </simpleType>
    <simpleType name="dispatchMethodType">
    <annotation>
    <documentation>
    The Dispatch Method field.
    </documentation>
    </annotation>
    <restriction base="string">
    <enumeration value="EFT">
    <annotation>
    <documentation>an enumerated value.</documentation>
    </annotation>
    </enumeration>
    <enumeration value="FAX">
    <annotation>
    <documentation>an enumerated value.</documentation>
    </annotation>
    </enumeration>
    <enumeration value="EMAIL">
    <annotation>
    <documentation>an enumerated value.</documentation>
    </annotation>
    </enumeration>
    </restriction>
    </simpleType>
    <simpleType name="currencyType">
    <annotation>
    <documentation>
    The Currency field.
    </documentation>
    </annotation>
    <restriction base="boolean"></restriction>
    </simpleType>
    <simpleType name="payGroupType">
    <annotation>
    <documentation>
    The Pay Group field.
    </documentation>
    </annotation>
    <restriction base="string"></restriction>
    </simpleType>
    <simpleType name="payHoldType">
    <annotation>
    <documentation>
    The Pay Hold field.
    </documentation>
    </annotation>
    <restriction base="boolean"></restriction>
    </simpleType>
    <simpleType name="freightTermsType">
    <annotation>
    <documentation>
    The Freight Terms field.
    </documentation>
    </annotation>
    <restriction base="string"></restriction>
    </simpleType>
    <simpleType name="payHandlingType">
    <annotation>
    <documentation>
    The Pay Handling field.
    </documentation>
    </annotation>
    <restriction base="string"></restriction>
    </simpleType>
    <simpleType name="delayDaysType">
    <annotation>
    <documentation>
    The Delay Days field.
    </documentation>
    </annotation>
    <restriction base="integer"></restriction>
    </simpleType>
    <simpleType name="payFromBankType">
    <annotation>
    <documentation>
    The Pay From Bank field.
    </documentation>
    </annotation>
    <restriction base="string"></restriction>
    </simpleType>
    <simpleType name="paymentInstructionsType">
    <annotation>
    <documentation>
    The Payment Instructions field.
    </documentation>
    </annotation>
    <restriction base="string"></restriction>
    </simpleType>
    <simpleType name="paymentTermsType">
    <annotation>
    <documentation>
    The Payment Terms field.
    </documentation>
    </annotation>
    <restriction base="string">
    <enumeration value="COD">
    <annotation>
    <documentation>an enumerated value.</documentation>
    </annotation>
    </enumeration>
    <enumeration value="SEVEN_DAYS">
    <annotation>
    <documentation>an enumerated value.</documentation>
    </annotation>
    </enumeration>
    <enumeration value="FOURTEEN_DAYS">
    <annotation>
    <documentation>an enumerated value.</documentation>
    </annotation>
    </enumeration>
    <enumeration value="TWENTYONE_DAYS">
    <annotation>
    <documentation>an enumerated value.</documentation>
    </annotation>
    </enumeration>
    <enumeration value="THIRTY_DAYS">
    <annotation>
    <documentation>an enumerated value.</documentation>
    </annotation>
    </enumeration>
    </restriction>
    </simpleType>
    <simpleType name="paymentMethodType">
    <annotation>
    <documentation>
    The Payment Method field.
    </documentation>
    </annotation>
    <restriction base="string">
    <enumeration value="EFT">
    <annotation>
    <documentation>an enumerated value.</documentation>
    </annotation>
    </enumeration>
    <enumeration value="CHEQUE">
    <annotation>
    <documentation>an enumerated value.</documentation>
    </annotation>
    </enumeration>
    </restriction>
    </simpleType>
    <simpleType name="payBankIdType">
    <annotation>
    <documentation>
    The PayBankId field.
    </documentation>
    </annotation>
    <restriction base="string"></restriction>
    </simpleType>
    <simpleType name="descriptionType">
    <annotation>
    <documentation>
    The Pay Bank Description field.
    </documentation>
    </annotation>
    <restriction base="string"></restriction>
    </simpleType>
    <simpleType name="bankIdType">
    <annotation>
    <documentation>
    The BankId field.
    </documentation>
    </annotation>
    <restriction base="string"></restriction>
    </simpleType>
    <simpleType name="branchIdType">
    <annotation>
    <documentation>
    The BranchId field.
    </documentation>
    </annotation>
    <restriction base="string"></restriction>
    </simpleType>
    <simpleType name="bankAccountType">
    <annotation>
    <documentation>
    The BankAccount field.
    </documentation>
    </annotation>
    <restriction base="string"></restriction>
    </simpleType>
    <!-- ***************************************************************** -->
    <complexType name="payBankDetailsType">
    <sequence>
    <element name="payBankId" type="tns:payBankIdType" maxOccurs="1" minOccurs="0" nillable="true"></element>
    <element name="description" type="tns:descriptionType" maxOccurs="1" minOccurs="0" nillable="true"></element>
    <element name="bankId" type="tns:bankIdType" maxOccurs="1" minOccurs="0" nillable="true"></element>
    <element name="branchId" type="tns:branchIdType" maxOccurs="1" minOccurs="0" nillable="true"></element>
    <element name="bankAccount" type="tns:bankAccountType" maxOccurs="1" minOccurs="0" nillable="true"></element>
    <element name="effectiveDate" type="tns:effectiveDateType" maxOccurs="1" minOccurs="0" nillable="true"></element>
    </sequence>
    </complexType>
    <complexType name="paymentDetailsType">
    <sequence>
    <element name="paymentTerms" type="tns:paymentTermsType" maxOccurs="1" minOccurs="0" nillable="true"></element>
    <element name="paymentMethod" type="tns:paymentMethodType" maxOccurs="1" minOccurs="0" nillable="true"></element>
    <element name="dispatchMethod" type="tns:dispatchMethodType" maxOccurs="1" minOccurs="0" nillable="true"></element>
    <element name="payGroup" type="tns:payGroupType" maxOccurs="1" minOccurs="0" nillable="true"></element>
    <element name="currency" type="tns:currencyType" maxOccurs="1" minOccurs="0" nillable="true"></element>
    <element name="payHold" type="tns:payHoldType" maxOccurs="1" minOccurs="0" nillable="true"></element>
    <element name="freightTerms" type="tns:freightTermsType" maxOccurs="1" minOccurs="0" nillable="true"></element>
    <element name="payHandling" type="tns:payHandlingType" maxOccurs="1" minOccurs="0" nillable="true"></element>
    <element name="delayDays" type="tns:delayDaysType" maxOccurs="1" minOccurs="0" nillable="true"></element>
    <element name="payFromBank" type="tns:payFromBankType" maxOccurs="1" minOccurs="0" nillable="true"></element>
    <element name="paymentInstructions" type="tns:paymentInstructionsType" maxOccurs="1" minOccurs="0" nillable="true"></element>
    <element name="bankDetails" type="tns:payBankDetailsType" maxOccurs="1" minOccurs="1"></element>
    </sequence>
    </complexType>
    <complexType name="contactDetailsType">
    <sequence>
    <element name="contactId" type="tns:contactIdType" maxOccurs="1" minOccurs="0" nillable="true"></element>
    <element name="effectiveDate" type="tns:effectiveDateType" maxOccurs="1" minOccurs="0" nillable="true"></element>
    <element name="name" type="tns:nameType" maxOccurs="1" minOccurs="0" nillable="true"></element>
    <element name="contactMethod" type="tns:contactMethodType" maxOccurs="1" minOccurs="0" nillable="true"></element>
    <element name="dispatchMethod" type="tns:dispatchMethodType" maxOccurs="1" minOccurs="0" nillable="true"></element>
    <element name="status" type="tns:statusType" maxOccurs="1" minOccurs="1"></element>
    </sequence>
    </complexType>
    <complexType name="arrayOfContactDetails">
    <sequence>
    <element name="contact" type="tns:contactDetailsType" maxOccurs="unbounded" minOccurs="0"></element>
    </sequence>
    </complexType>
    <complexType name="addressDetailsType">
    <sequence>
    <element name="addressId" type="tns:addressIdType" maxOccurs="1" minOccurs="0" nillable="true"></element>
    <element name="effectiveDate" type="tns:effectiveDateType" maxOccurs="1" minOccurs="0" nillable="true"></element>
    <element name="name" type="tns:nameType" maxOccurs="1" minOccurs="0" nillable="true"></element>
    <element name="address" type="tns:addressType" maxOccurs="1" minOccurs="1"></element>
    <element name="postcode" type="tns:postcodeType" maxOccurs="1" minOccurs="1"></element>
    <element name="city" type="tns:cityType" maxOccurs="1" minOccurs="1"></element>
    <element name="state" type="tns:stateType" maxOccurs="1" minOccurs="1"></element>
    <element name="country" type="tns:countryType" maxOccurs="1" minOccurs="1"></element>
    <element name="contacts" type="tns:arrayOfContactDetails" maxOccurs="1" minOccurs="0"></element>
    </sequence>
    </complexType>
    <complexType name="arrayOfAddressDetails">
    <sequence>
    <element name="address" type="tns:addressDetailsType" maxOccurs="unbounded" minOccurs="0"></element>
    </sequence>
    </complexType>
    <complexType name="locationDetailsType">
    <sequence>
    <element name="locationId" type="tns:locationIdType" maxOccurs="1" minOccurs="0" nillable="true"></element>
    <element name="effectiveDate" type="tns:effectiveDateType" maxOccurs="1" minOccurs="0" nillable="true"></element>
    <element name="orderingVendorId" type="tns:vendorIdType" maxOccurs="1" minOccurs="0" nillable="true"></element>
    <element name="invoicingVendorId" type="tns:vendorIdType" maxOccurs="1" minOccurs="0" nillable="true"></element>
    <element name="remittingVendorId" type="tns:vendorIdType" maxOccurs="1" minOccurs="0" nillable="true"></element>
    <element name="returningVendorId" type="tns:vendorIdType" maxOccurs="1" minOccurs="0" nillable="true"></element>
    <element name="status" type="tns:statusType" maxOccurs="1" minOccurs="1"></element>
    <element name="paymentDetails" type="tns:paymentDetailsType" maxOccurs="1" minOccurs="1"></element>
    <element name="addresses" type="tns:arrayOfAddressDetails" maxOccurs="1" minOccurs="0"></element>
    </sequence>
    </complexType>
    <complexType name="arrayOfLocationDetails">
    <sequence>
    <element name="location" type="tns:locationDetailsType" maxOccurs="unbounded" minOccurs="0"></element>
    </sequence>
    </complexType>
    <!-- ***************************************************************** -->
    <element name="Vendor">
    <complexType mixed="true">
    <annotation>
    <documentation>
    The Vendor request object.
    </documentation>
    </annotation>
    <sequence>
    <element name="vendorId" type="tns:vendorIdType" maxOccurs="1" minOccurs="1"></element>
    <element name="name" type="tns:nameType" maxOccurs="1" minOccurs="1"></element>
    <element name="persistence" type="tns:persistenceType" maxOccurs="1" minOccurs="1" default="true"></element>
    <element name="owner" type="tns:ownerType" maxOccurs="1" minOccurs="0" nillable="true"></element>
    <element name="sourceReference" type="tns:sourceReferenceType" maxOccurs="1" minOccurs="0" nillable="true"></element>
    <element name="corporateVendorId" type="tns:vendorIdType" maxOccurs="1" minOccurs="0" nillable="true"></element>
    <element name="abn" type="tns:abnType" maxOccurs="1" minOccurs="0" nillable="true"></element>
    <element name="country" type="tns:countryType" maxOccurs="1" minOccurs="1" default="AUS"></element>
    <element name="gstRegistered" type="tns:gstRegisteredType" maxOccurs="1" minOccurs="0" nillable="true" default="true"></element>
    <element name="withHolding" type="tns:withHoldingType" maxOccurs="1" minOccurs="0" nillable="true" default="false"></element>
    <element name="status" type="tns:statusType" maxOccurs="1" minOccurs="1" default="ACTIVE"></element>
    <element name="vendorClass" type="tns:vendorClassType" maxOccurs="1" minOccurs="1"></element>
    <element name="locations" type="tns:arrayOfLocationDetails" maxOccurs="1" minOccurs="0"></element>
    </sequence>
    </complexType>
    </element>
    <element name="RequestId">
    <complexType mixed="true">
    <annotation>
    <documentation>The typical response object for requests.
    </documentation>
    </annotation>
    <sequence>
    <element name="correlationId" type="tns:correlationIdType" maxOccurs="1" minOccurs="1"></element>
    <element name="estTimeInterval" type="tns:estTimeIntervalType" maxOccurs="1" minOccurs="0" nillable="true" default="24"></element>
    </sequence>
    </complexType>
    </element>
    </schema>
    </BLOCKQUOTE>

    Hi Paul
    I believe there is some issue with the TestClient.
    Instead to test, can you please try this?
    1) Right click on Payment.java and choose Webservices -> generate wsdl
    2) Right click on the wsdl and choose Webservices -> Test with WebServices Explorer.
    3) Click on setVendor method
    4) Enter the request parameters
    Sample one:
    <ns:Vendor xmlns="http://www.openuri.org/" xmlns:ns="http://suncorp.com.au/services/payment/schema/0">
    <vendorId xmlns="">Vendor Id</vendorId>
    <name xmlns="">My correlation Id</name>
    <persistence xmlns="">false</persistence>
    <country xmlns="">USA</country>
    <status xmlns="">ACTIVE</status>
    <vendorClass xmlns="">VendorClass</vendorClass>
    </ns:Vendor>
    5) Hit the button 'Go'. The entire soap response will be displayed in the bottom.
    I have tested this and it works fine.
    Output I got:
    <m:setupVendorResponse xmlns:m="http://suncorp.com.au/services/payment/wsdl/0">
    <RequestId xmlns="http://suncorp.com.au/services/payment/schema/0">
    <correlationId>CorrelationId-My correlation Id</correlationId>
    </RequestId>
    </m:setupVendorResponse>
    Thanks,
    Vimala

  • Error Starting up Web Services

    I am using FuegoBPM Studio 5.5. Every time I click "start server" button in the studio, I always get an error message "Error starting up Web Services in 'http://mycomputername:9000'. Details: Address already in use: JVM_Bind". I can still launch my work portal but I just don't like to see the error message. Does anyone know how to get rid of it?
    Thanks.

    Port 9000 is used for process web service (listener port) by default. So if in your machine some other software is using that port, it will throw the message.
    In studio this port is embedded. I am not sure if there is any way through the studio interface you can change it.
    But if you have enterprise installation then you can change the port number by going to the Web Console/Process Administrator and looking for "Web Services Listener Port" in Engine's Services tab.

  • Failure - Unable to start App and Service SRA001_PCAPPROVAL failed. Contact your system administrator

    Hi,
    We are getting "Failure - Unable to start App" and "Service SRA001_PCAPPROVAL failed. Contact your system administrator" error.
    we have already activated the service and assigned the required role to User.
    Regards,
    Trilochan
    Tags edited by: Michael Appleby

    Hi Masa,
    we are able to see these services:
    but we are not able to find service SRA001_PCAPPROVAL in
    Activate and Maintain services (/IWFND/MAINT_SERVICE) .
    Could you please guide us how we can get those Odate services for application ,what are the activities we have to perform.
    Regards,
    Trilochan

  • Unable to start Bluetooth stack service

    I'm getting the message "Unable to start Bluetooth stack service" and cannot connect any new bluetooth devices. My notebook is a Pavilion tx 2000. Any ideas??

    Hi,
    Reinstall drivers for bluetooth module.
    ** Say thanks by clicking the "Thumb up" icon which is on the left. **
    ** Make it easier for other people to find solutions, by marking my answer with "Accept as Solution" if it solves your issue. **

  • HP7520 Unable to Connect To Web Services

    I just (today) purchased a HP Photosmart 7520. I set it up and configured it to my wireless network. I have an Mac Airport Router. I have 1 Mac and 2 PC's printing to it fine (off the wireless network). The problem is that when I go to setup my eprint it says Unable to Connect to Web Services. The wireless report shows no errors and says its connected to the internet. HP support had me go into the service mode (a series of button pressing) and do a semi full reset which did not help the problem. Any ideas on why I can not connect to web services? HP spent about an hour on the phone with me and could not resolve.
    Thanks

    Hi jreyn25,
    Thank you for taking the time to respond.
    Please run the wireless setup wizard on the front panel of the printer. If you are unsure how to do this, the steps can be found on page 48 of your User Guide in the section titled “To connect the product with the Wireless Setup Wizard”. After connecting the printer you will be prompted to print a report. Please choose to do so. I have included a screen shot of what the report should like.
    I highlighted where you should find the printer’s IP address on the report. Please try and connect to the printer’s IP address that is showing on the report.   If you get a security pop-up when trying to get the embedded web server (EWS), choosing to continue will not harm your computer while you navigate within the EWS for your printer. If you encounter this error outside of your printer’s EWS, your computer could be at risk. You can find this information in the document titled Printer Does Not Maintain Wireless Connection.
    Please let me know how it goes.
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

Maybe you are looking for