Java client failing to connect to web service - help!!

Hi
I have created a Web service using ASP Web Matrix, which currently resides on my C drive in c:\Service6\HelloWorld.asmx.
The service can be tested from a browser on my local machine by calling: http://localhost/Service6/HelloWorld.asmx. This works fine, i.e. it takes a string as a parameter and returns an amended string.
When I try to access this from a Java client I created in Netbeans, however, I get the following error message:
Server did not recognize the value of HTTP Header SOAPAction: sayHiya.
at System.Web.Services.Protocols.Soap11ServerProtocolHelper.RouteRequest()
at System.Web.Services.Protocols.SoapServerProtocol.Initialize()
at System.Web.Services.Protocols.ServerProtocolFactory.Create(Type type, HttpContext context, HttpRequest request, HttpResponse response, Boolean& abortProcessing)
Can anyone advise what I am doing wrong?
[nb. I have spent over a week trying to sort this, so I have tried!!)
The code for the client follows:-
// The Axis package is used to generate and handle the SOAP call
import org.apache.axis.client.Call;
import org.apache.axis.client.Service;
import org.apache.axis.encoding.XMLType;
// The rpc package is used to create the RPC call
import javax.xml.namespace.QName;
import javax.xml.rpc.NamespaceConstants;
// The java.net package gives a URL class
import java.net.URL;
public class HelloWorldClient {
    /** Creates a new instance of HiyaClient */
    public static void main(String[] args)
try
String endpoint = "http://localhost/Service6/HelloWorld.asmx";
Service service = new Service();
Call call = (Call) service.createCall();
// Configure the call
call.setTargetEndpointAddress(new URL(endpoint));
call.setSOAPActionURI("sayHello");
call.setEncodingStyle(NamespaceConstants.NSURI_SOAP_ENCODING);
call.setOperationName(new QName("urn:HelloWorld", "sayHello"));
//call.setReturnType(XMLType.XSD_STRING);
System.out.println("**Works to here**");
//Invoke the call
String result = (String) call.invoke(new Object[] { "Diane" });
System.out.println("Sent 'Diane', got '" + result + "'");
catch(Exception e)
System.err.println(e.toString());

Hiya, did try that - tried
"http://localhost:8080/HelloWorld.asmx" and
"http://localhost:8080/Service6/HelloWorld.asmx" and it still didn't work.
Thanks anyway.
Anyone else got any bright ideas?

Similar Messages

  • Problem in updating a java client to invoke data-secured web service

    hello
    i'm following the document 'programming weblogic web services' to use ws-security
    functionality to encrypt & digitally sign SOAP Request & Response
    and I first made a client that calls a secure weblogic web service.
    ( using a keystore having RSA key pair. )
    the code is like below -----------------------------------------------------------------
    final KeyStore keystore = loadKeystore(CLIENT_KEYSTORE, KEYSTORE_PASS);
    TestEJB_Impl service = new TestEJB_Impl("file:///C:/bea/user_projects/domains/FirstDomain/working/TestEJB_with_Security_surpport.wsdl");
    WebServiceContext context = service.context();
    System.out.println("passing context info to the client");
    X509Certificate clientcert;
    clientcert = getCertificate(CLIENT_KEYNAME, keystore);
    PrivateKey clientprivate;
    clientprivate = getPrivateKey(CLIENT_KEYNAME, CLIENT_KEYPASS, keystore);
    WebServiceSession session = context.getSession();
    session.setAttribute(WSSEClientHandler.CERT_ATTRIBUTE, clientcert);
    session.setAttribute(WSSEClientHandler.KEY_ATTRIBUTE, clientprivate);
    UserInfo ui = new UserInfo(AUTHENTICATION_USER, AUTHENTICATION_USER_PASS);
    session.setAttribute(WSSEClientHandler.REQUEST_USERINFO, ui);
    TestEJBPort port = service.getTestEJBPort();
    String result = null;
    result = port.firstMethodTest("A123");
    System.out.println(result);
    and there comes error stacktrace like below ------------------------------
    <Info> <WebService> <BEA-220024> <Handler
    weblogic.webservice.core.handler.WSSEClientHandler threw an exception from its
    h
    andleRequest method. The exception was:
    weblogic.xml.security.SecurityConfigurationException: Failed adding encryption
    t
    o request - with nested exception:
    [weblogic.xml.security.SecurityProcessingException: No keywrapping algorithm ava
    ilable for DSA keys].>
    Exception in thread "main" java.rmi.RemoteException: SOAP Fault:javax.xml.rpc.so
    ap.SOAPFaultException: Exception during processing: weblogic.xml.security.Securi
    tyConfigurationException: Failed adding encryption to request - with nested exce
    ption:
    [weblogic.xml.security.SecurityProcessingException: No keywrapping algorithm ava
    ilable for DSA keys] (see Fault Detail for stacktrace)
    Detail:
    <detail>
    <bea_fault:stacktrace xmlns:bea_fault="http://www.bea.com/servers/wls70/webse
    rvice/fault/1.0.0">
    </bea_fault:stacktrace>weblogic.xml.security.SecurityProcessingException: No
    ke
    ywrapping algorithm available for DSA keys
    at weblogic.xml.security.wsse.v200207.SecurityImpl.getWrappingAlgorithm(
    SecurityImpl.java:200)
    at weblogic.xml.security.wsse.v200207.SecurityImpl.addEncryption(Securit
    yImpl.java:175)
    at weblogic.xml.security.wsse.v200207.SecurityImpl.addEncryption(Securit
    yImpl.java:153)
    i am using RSA key pair but, when i use DSA key pair , the error message is same
    as above.
    what is problem? and what am i missing?

    Hello,
    The current implementation only supports RSA key types as legal
    wrapping. It is on the TODO list to expand this to other algorithms.
    Regards,
    Bruce
    dolso wrote:
    >
    hello
    i'm following the document 'programming weblogic web services' to use ws-security
    functionality to encrypt & digitally sign SOAP Request & Response
    and I first made a client that calls a secure weblogic web service.
    ( using a keystore having RSA key pair. )
    the code is like below -----------------------------------------------------------------
    final KeyStore keystore = loadKeystore(CLIENT_KEYSTORE, KEYSTORE_PASS);
    TestEJB_Impl service = new TestEJB_Impl("file:///C:/bea/user_projects/domains/FirstDomain/working/TestEJB_with_Security_surpport.wsdl");
    WebServiceContext context = service.context();
    System.out.println("passing context info to the client");
    X509Certificate clientcert;
    clientcert = getCertificate(CLIENT_KEYNAME, keystore);
    PrivateKey clientprivate;
    clientprivate = getPrivateKey(CLIENT_KEYNAME, CLIENT_KEYPASS, keystore);
    WebServiceSession session = context.getSession();
    session.setAttribute(WSSEClientHandler.CERT_ATTRIBUTE, clientcert);
    session.setAttribute(WSSEClientHandler.KEY_ATTRIBUTE, clientprivate);
    UserInfo ui = new UserInfo(AUTHENTICATION_USER, AUTHENTICATION_USER_PASS);
    session.setAttribute(WSSEClientHandler.REQUEST_USERINFO, ui);
    TestEJBPort port = service.getTestEJBPort();
    String result = null;
    result = port.firstMethodTest("A123");
    System.out.println(result);
    and there comes error stacktrace like below ------------------------------
    <Info> <WebService> <BEA-220024> <Handler
    weblogic.webservice.core.handler.WSSEClientHandler threw an exception from its
    h
    andleRequest method. The exception was:
    weblogic.xml.security.SecurityConfigurationException: Failed adding encryption
    t
    o request - with nested exception:
    [weblogic.xml.security.SecurityProcessingException: No keywrapping algorithm ava
    ilable for DSA keys].>
    Exception in thread "main" java.rmi.RemoteException: SOAP Fault:javax.xml.rpc.so
    ap.SOAPFaultException: Exception during processing: weblogic.xml.security.Securi
    tyConfigurationException: Failed adding encryption to request - with nested exce
    ption:
    [weblogic.xml.security.SecurityProcessingException: No keywrapping algorithm ava
    ilable for DSA keys] (see Fault Detail for stacktrace)
    Detail:
    <detail>
    <bea_fault:stacktrace xmlns:bea_fault="http://www.bea.com/servers/wls70/webse
    rvice/fault/1.0.0">
    </bea_fault:stacktrace>weblogic.xml.security.SecurityProcessingException: No
    ke
    ywrapping algorithm available for DSA keys
    at weblogic.xml.security.wsse.v200207.SecurityImpl.getWrappingAlgorithm(
    SecurityImpl.java:200)
    at weblogic.xml.security.wsse.v200207.SecurityImpl.addEncryption(Securit
    yImpl.java:175)
    at weblogic.xml.security.wsse.v200207.SecurityImpl.addEncryption(Securit
    yImpl.java:153)
    i am using RSA key pair but, when i use DSA key pair , the error message is same
    as above.
    what is problem? and what am i missing?

  • Java client for calling a XI web service

    Hello,
    does anyone have created a Java client
    with Apache Axis? I tried it and it works
    for web service which aren't provided by
    SAP XI, but if I use to call a XI web service
    something went wrong.
    The XI web service works. I tested it with
    XML Spy.
    I think there must be something special with
    XI web service.
    So anyone got a tutorial/guide for this???
    thanks
    chris

    Hola mi  nombre es Luis,
    Creyendo que eres español te escribo en tal idioma.
    He visto que a ti también te devolvía un error de autentificación 401, y que lo subsanaste, pero a mi con la solución que te dieron no me vale, ya que implemento el código que te ofrecieron para arreglarlo y ahora me da un fallo de "Server Error" poniendo en usuario y password, los correspondientes a XI.
    +Request_MI_outTurnoverDetailsDisplay_MI_outTurnoverDetailsDisplay req=new Request_MI_outTurnoverDetailsDisplay_MI_outTurnoverDetailsDisplay();
    wdContext.nodeRequest_MI_outTurnoverDetailsDisplay_MI_outTurnoverDetailsDisplay().bind(req);
    req._setUser("username");
    req._setPassword("password");+
    No sé si es que ese usuario y contraseña son otros distintos.
    Si pudieras ayudarme, te lo agradecería.
    Un saludo, Luis

  • Java.lang.NullPointerException while creating virtual classroom via Adobe Connect 9 Web Services

    Hello all, I am trying to create a virtual classroom via Adobe Connect 9 Web Services with the code below.
    https://XXXXXXXX.adobeconnect.com/api/xml?action=sco-update&type=virtual-classroom&name=My Virtual Classroom&folder-id=1358451232&date-begin=2014-01-02T10:00&date-end=2014-01-02T11:00
    And the result below:
    <results>
    <status code="internal-error">
    <exception>java.lang.NullPointerException</exception>
    </status>
    </results>
    What could be the reason of this problem? I need your help.

    Hi Teomanx
    To create a virtual classroom, you have to give type=meeting & icon = virtual-classroom. So the correct syntax is :
    https://XXXXXXXX.adobeconnect.com/api/xml?action=sco-update&type=meeting&icon=virtual-clas sroom&name=My Virtual Classroom&folder-id=1358451232&date-begin=2014-01-02T10:00&date-end=2 014-01-02T11:00.
    Hope that helps.
    Thank you

  • Web service client behind a proxy server connecting to web service over SSL

    Hi Friends,
    A web service is exposed by an external system over SSL. We are behind a proxy server and are trying to get connected to web service over SSL. <p>
    We are getting the following error on the test browser of workshop<p><p>
    External Service Failure: FATAL Alert:HANDSHAKE_FAILURE - The handshake handler was unable to negotiate an acceptable set of security parameters.<p><p>
    the whole trace is <p>
    <p>JDIProxy attached
    <Sep 24, 2005 9:27:25 AM EDT> <Warning> <WLW> <000000> <Id=creditCheckCtrl:salesExpertServiceControl; Method=creditcheckcontr
    ol.SalesExpertServiceControl.doCreditVerification(); Failure=com.bea.control.ServiceControlException: SERVICE FAULT:
    Code:javax.net.ssl.SSLHandshakeException
    String:FATAL Alert:HANDSHAKE_FAILURE - The handshake handler was unable to negotiate an acceptable set of security parameters
    Detail:
    END SERVICE FAULT>
    <Sep 24, 2005 9:27:26 AM EDT> <Warning> <WLW> <000000> <Id=creditCheckCtrl; Method=creditcheckcontrol.CreditCheck.testCreditC
    heck(); Failure=com.bea.control.ServiceControlException: SERVICE FAULT:
    Code:javax.net.ssl.SSLHandshakeException
    String:FATAL Alert:HANDSHAKE_FAILURE - The handshake handler was unable to negotiate an acceptable set of security parameters
    Detail:
    END SERVICE FAULT [ServiceException]>
    <Sep 24, 2005 9:27:26 AM EDT> <Warning> <WLW> <000000> <Id=top-level; Method=processes.CreditCheck_wf.$__clientRequest(); Fai
    lure=com.bea.wli.bpm.runtime.UnhandledProcessException: Unhandled process exception [ServiceException]>
    <Sep 24, 2005 9:27:26 AM EDT> <Error> <WLW> <000000> <Failure=com.bea.wli.bpm.runtime.UnhandledProcessException: Unhandled pr
    ocess exception [ServiceException]><p>
    I am not able to make out what could be possibly wrong. Please let me know if you guys have any ideas about how to resolve it.
    Thanks
    Sridhar

    did you resolve this problem. I am looking at the same issue. If you did I would really appreciate your response.
    Thanks.

  • Failed to connect to OLAP Service

    I create a demo cube with two dimensions. When I try connect from Excel I get the following error:
    (it is very strange because my schema is DWH and not D_DWH)
    Failed to connect to OLAP Service
    oracle.olapi.metadata.DuplicateMetadataIDException: D_DWH.D_TIME
    at
    oracle.olapi.metadata.BaseMetadataProvider.registerMetadataObject(BaseMetadataProvider.java:331)
    at
    oracle.olapi.metadata.BaseMetadataObjectFactory.registerObject(BaseMetadataObjectFactory.java:73)
    at
    oracle.olapi.metadata.mdm.MdmObjectFactory.createStandardDimension(MdmObjectFactory.java:110)
    at
    oracle.olapi.metadata.MdmXMLReaderObjectFactory.createMetadataObject(MdmXMLReaderObjectFactory.java:48)
    at
    oracle.olapi.metadata.MetadataXMLReaderElementState.enter(MetadataXMLReaderElementState.java:69)
    at
    oracle.olapi.metadata.MetadataXMLReader.startElement(MetadataXMLReader.java:159)
    at
    org.xml.sax.helpers.ParserAdapter.startElement(ParserAdapter.java:597)
    at
    oracle.xml.parser.v2.XMLContentHandler.startElement(XMLContentHandler.java:180)
    at
    oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1224)
    at
    oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:311)
    at
    oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:278)
    at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:184)
    at org.xml.sax.helpers.ParserAdapter.parse(ParserAdapter.java:431)
    at
    oracle.olapi.metadata.MetadataFetcher.processXML(MetadataFetcher.java:224)
    at
    oracle.olapi.metadata.MetadataFetcher.fetchBaseMetadataObjects(MetadataFetcher.java:179)
    at
    oracle.olapi.metadata.BaseMetadataProvider.fetchMetadataObject(BaseMetadataProvider.java:154)
    at
    oracle.olapi.metadata.BaseMetadataProvider.fetchMetadataObject(BaseMetadataProvider.java:109)
    at
    oracle.olapi.metadata.mdm.MdmMetadataProvider.getMetadataObject(MdmMetadataProvider.java:169)
    at
    oracle.olapi.metadata.mdm.MdmMetadataProvider.getRootSchema(MdmMetadataProvider.java:196)
    at
    oracle.express.mdm.MdmMetadataProvider.getRootSchema(MdmMetadataProvider.java:133)
    at
    oracle.dss.metadataManager.server.drivers.mdm._92.MDMMetadataDriverImpl_92.getMdmSchema(MDMMetadataDriverImpl_92.java:1449)
    at
    oracle.dss.metadataManager.server.drivers.mdm._92.MDMMetadataDriverImpl_92.getRoot(MDMMetadataDriverImpl_92.java:1110)
    at
    oracle.dss.metadataManager.server.drivers.mdm._92.MDMMetadataDriverImpl_92.addToObjectModel(MDMMetadataDriverImpl_92.java:2511)
    at
    oracle.dss.metadataManager.server.drivers.mdm.MDMMetadataDriverImpl.addToObjectModel(MDMMetadataDriverImpl.java:280)
    at
    oracle.dss.metadataManager.server.MetadataManagerImpl.buildObjectModel(MetadataManagerImpl.java:1198)
    at
    oracle.dss.metadataManager.server.MetadataManagerImpl.attach(MetadataManagerImpl.java:1027)
    at
    oracle.dss.metadataManager.client.MetadataManager.attach(MetadataManager.java:943)
    at
    oracle.dss.metadataManager.client.MetadataManager.attach(MetadataManager.java:840)
    at
    oracle.dss.xladdin.bibeans.oraolapxl.ConHandler.populateConLink(ConHandler.java:1003)
    at
    oracle.dss.xladdin.bibeans.oraolapxl.ConHandler.connect2(ConHandler.java:312)
    at
    oracle.dss.xladdin.bibeans.oraolapxl.ConHandler.connect(ConHandler.java:178)
    at oracle.dss.xladdin.bibeans.oraolapxl.Core.connect(Core.java:467)
    at
    oracle.dss.xladdin.bibeans.oraolapxl.XLQuery.connectToServer(XLQuery.java:836)
    at oracle.dss.xladdin.bibeans.oraolapxl.Editor.edit2(Editor.java:203)
    at oracle.dss.xladdin.bibeans.oraolapxl.Editor.edit(Editor.java:128)
    at
    oracle.dss.xladdin.bibeans.oraolapxl.XLQuery.editQuery(XLQuery.java:417)
    at
    oracle.dss.xladdin.bibeans.oraolapxl.XLQuery.editQuery(XLQuery.java:400)
    at
    oracle.dss.xladdin.bibeans.oraolapxl.XLQuery.newQuery(XLQuery.java:544)
    at oracle.dss.xladdin.bibeans.oraolapxl.XLQM.newQuery(XLQM.java:4254)
    at oracle.dss.xladdin.bibeans.oraolapxl.XLQM.onMenuEvent(XLQM.java:895)
    at
    oracle.dss.xladdin.bibeans.oraolapxl.OraMenu.fireMenuEvent(OraMenu.java:146)
    at
    oracle.dss.xladdin.bibeans.oraolapxl.Core.fireMenuEvent(Core.java:825)
    About my configurations:
    => Database: Oracle 10g (patchset 10.1.0.4)
    => Oracle Analytic Worksapace Manager Version 10.0.0.1.0
    => Oracle Enterprise Manager 10g Grid Control Release 10.1.0.3.0
    Supported Target Databases 10.1.0.x
    9.2.0.4
    9.0.1.4
    8.1.7.4
    Supported Target Application Servers 9.0.4.x
    9.0.3.x
    9.0.2.x
    Accessibility Mode Disabled
    => Microsoft Office Excel 2003(11.5612.5606)
    => OracleBI Spreadshet Add-In - Release 1 version 10.1.2.0.0
    I need some help.

    OK. First off, the D_DWH is correct in the referencing of your AW. The reference that you are seeing is the metadata manager definition of the analytic workspace. It appends the D_ by default.
    An excerpt and some code from the online help...
    Most classes that extend oracle.dss.metadataManager.common.MDObject are client-side representations of objects that exist in an analytic workspace. To find the analytic workspace name for an object, use the following methods of MDObject: isAWObject -- Determines whether an object is a logical representation of an analytic workspace data object getAWObjectName -- Retrieves the analytic workspace name for an object Example: Retrieving the analytic workspace name for an object The following code assumes that myObject is an existing MDObject. //Confirms that an MDObject is a logical representation of
    //an analytic workspace object and then prints the object's name.
    public void printAWObjectName (MDObject myObject)
    if (myObject.isAWObject())
    system.out.println ("AWObjectName = " +
    myObject.getAWObjectName());
    That being said, here is the trick to verifying the internal metadata name for the AW objects.
    Knowing this, I'm going to guess that naming your dimension D_TIME may not be the best idea as this may confuse the MDM. Rename the dimension and give it another shot.

  • HP Photosmart 7525 unable to connect to Web Services

    Pretty much the same issue as everyone else...bought the printer at Costco last year.
    It was working great for a while, printer was connected to the internet, prints perfectly from different devices, scan-to-email, fax, etc...
    But lately, when I try to use the scan-to-email function, I get a "Unable to connect to Web Services".
    I tried several suggested solutions, including changing the DNS, the Semi-Full reset, etc... to no avail.
    PLEASE HELP!

    Hi vincesfo,
    Welcome to the HP Support Forums.  I see that the scan to email feature of your Photosmart 7525 printer is giving you a scan failed message.
    Please call HP’s Cloud Services at 1-855-785-2777 if you live in the USA/Canada region. If you live outside the USA/Canada region please click here to find the Technical Support number for your country/region.
    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

  • Authomatic task periodical​ly opened using Connect-IT web services

    Hi all,
    I have a question about Connect-It web service connector.
    We have change requests such as giving someone temporary local admin authority, usb usage etc. Since this authority must be taken back in a certain time, we thought that there should be an authomatic task periodically opened when the times come.
    For example, if I give an authority to someone for USB usage authority for two weeks upon a change request, then I need an automatic change task to take back this authority after two weeks.
    According to this, can we create an automatic task with Connect-IT using HP Service Manager change web services and how should we create a scenario? Also is it possible to make a task periodically opened with Connect-IT web services without using any scheduler program
    Thanks in advance,
    Best regards.

    So, in reality, this issue has nothing at all to do with "it was working; now it is not", because you've destroyed all of the evidence that would exist in a "was working; now is not" scenario. What we really have here is a NEW installation that has failed.
    So, from the perspective of a NEW installation that is not working...
    Are there any other roles, features, services, or applications installed on this server?
    Did you install the Web Server Role exactly as described in the documentation?
    Did you install the WSUS Role exactly as described in the documentation?
    Were there any other roles, features, services, or applications installed onto this server
    after your original (working) installation of WSUS?
    Lawrence Garvin, M.S., MCITP:EA, MCDBA, MCSA
    Principal/CTO, Onsite Technology Solutions, Houston, Texas
    Microsoft MVP - Software Distribution (2005-2011)
    My MVP Profile: http://mvp.support.microsoft.com/profile/Lawrence.Garvin
    My Blog: http://onsitechsolutions.spaces.live.com
    Oh, well, I have red and followed the documentation exactly step-by-step on the technet library, and I can guarantee you nothing went wrong because this is not my first installation for it
    When I told you about the old damaged installation and the new installation which is also failed and showed me the same symptoms as the old one, I was sure that nothing wrong with the WSUS itself, but rather it is something wrong with the environment
    Answering to your above questions, the answer for all is that: that server is only used for WSUS, nothing more
    Anyway, I have managed to restore the service thanks to your previous reply where you point to the CONFIG folder inside the NET framework folder, I checked the files in there, some were changed to the date I think has stopped the service, so I repaired the
    NET framework 2, and restarted
    It is working fine now and syncing with the update server
    Saleh Ramadan

  • How to print SOAP request at client program when program calls web service.

    Hi friends,
    While calling a web service, I am getting following error: javax.xml.rpc.JAXRPCException: Failed to parse WSDL
    I believe it is due to an invalid parameter set for the request soap. I need to analysis this error. Can you help me to print SOAP request at client program when program calls web service.
    Is there any way to print SOAP request XML?
    Thanks.
    Jaykishan

    Is this question related to Oracle SOA suite? Which client are you using? Use SOAPUI to validate whether WSDL is correct.
    Regards,
    Anuj

  • [DOM_10033] Service [informatica_repository] does not exist in domain [Domain_Shan]. [FAULT_PCSFCONFIGEXCEPTION]]. 08/05/2015 16:17:06-[REP_55102] Failed to connect to repository service [informatica_repository]

    Hi Experts, I have aquestion, I am getting phone number as A=123,B = 456C = 7890D= 123(Extension) I need to concatenate like this in informatica power center: (123)456-7890*123  If I dont get any extension, then we should only populate  (123)456-7890 in the target, I need to remove *ext if ext is null...  can somebody help me out with example. Thanks in advance

    Hi All, I have installed informatica Powercemtre and Oracle on windows 7. Have completed the below steps:1. Installed Oracle2. Informatica server and client Configured domain and node3. Created repository and integration service both the services are up running4. Created informatica_repository in client  
    getting the below error while trying to connect or add to the repository 08/05/2015 16:16:05-[REP_12164] Domain-related error: [[DOM_10033] [DOM_10033] Service [informatica_repository] does not exist in domain [Domain_Shan]. [FAULT_PCSFCONFIGEXCEPTION]].08/05/2015 16:16:08-[REP_55102] Failed to connect to repository service [informatica_repository].08/05/2015 16:17:03-[REP_12164] Domain-related error: [[DOM_10033] [DOM_10033] Service [informatica_repository] does not exist in domain [Domain_Shan]. [FAULT_PCSFCONFIGEXCEPTION]].08/05/2015 16:17:06-[REP_55102] Failed to connect to repository service [informatica_repository]. Domain Name: Domain_ShanHost: ShanPort : 6001  tried the below possible solutions1. Update hosts file with machine ip and host name2. Checked for Oracle services and Informatica services 3. Tried deleting and recreatinf repository  Please can anyone suggest solution for this. Thanks,Avinash

  • HP Color Laserjet PRO MFP M177FW Cannot connect to web services

    I bought a HP Color Laserjet PRO MFP M177FW  today and I set up it. It can print and scan over wireless network. However, It cannot connect to web services correctly. I set the DNS numbers with google DNS addresses. I changed its IP address with manually. The IP address is unique. Normally It doesn't enable/remove webservices. But when I restart it, it can do for few minutes. It can take an e-mail address but It doesn't print any information sheet. When I try to print a sheet It says "Connection Problem" at first few minutes and later it says "Connecting"and it waits, there is no error message. What am I suppossed to do? Please help me. 
    This question was solved.
    View Solution.

    Hello rasitbolukcu,
    Welcome to the HP Support forums.  I understand that you are having difficulties enabling the web services for your Laserjet Pro MFP M177fw printer.
    I appreciate all the information you gave me, it makes it much easier to assist you with the troubleshooting. I have included the Getting the Latest Firmware and Product Updates document.  It will walk you through ensuring the printer has the latest firmware.  Once you have updated the printer, please try to enable the web services again. 
    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

  • My new i phone 5 wont sync with my laptop, keeps saying failed to connect to sync services. any help?

    I just purchased a new i phone 5. when i go to connect with my laptop it says 'failed to connect to sync services, try again later' it shows my phone, and i can see my app screens, however it wont let me sync, back up or make changes. this is my first apple product, any help would be greatly appreciated.

    Hello there, load dogg.
    The following Knowledge Base article provides some in-depth steps to help troubleshoot the issue you are descibing:
    iTunes for Windows: "Unable to load data class" or "Unable to load provider data" sync services alert
    http://support.apple.com/kb/ts2690
    Thanks for reaching out to Apple Support Communities for answers to your question.
    Cheers,
    Pedro D.

  • Laserjet Color MFP M276nw Cannot connect to Web Services, tried every suggestion on forum

    I've tried every suggestion possible on the forum. I opened up all ports suggested by HP support on my Belkin wireless N600 router. Changed DMZ to IP address on printer. We even directly wired ethernet to printer, still cannot connect to Web Services. Now I have to wait till April 4 for a engineer to call me back. Everything else is working fine. I can print wirelessly from my laptop & smartphone. Just cannot access Web Services, oh & firmware is up to date on printer & router. We changed DNS settings to 8.8.8.8 & 8.8.4.4.
    This question was solved.
    View Solution.

    It sounds like you have done everything to connect the web services.  Web services will not connect if you are on a guest network but if you are connected via ethernet it should be on the right band.  What is the printer's IP address? Sometimes it can be too high. Is this for a company that has a proxy on the network?  How far away is the printer from the router?  Are there any metal shelves, wireless devices or anything else near the printer or between the printer and the router?  Check that the router is on Channel 11. 
    --Printer Does Not Connect To Web Services--
    Have you heard back from the engineer?  I am anxious to know how it went.  I am happy to help if they don't, otherwise keep me posted on what happens.  I possibly have one more step for you. 
    Don't forgot to say thanks by giving "Kudos" if I helped solve your problem.
    When a solution is found please mark the post that solves your issue.
    Every problem has a solution!

  • Connect Enterprise Web Services

    Hi all,
    I need a copy of the "firstapp.zip" sample application. It is
    suppose to be available for developers who want to use Connect
    Enterprise Web Services but I cannot find it.
    Thanks,
    A

    Hi Mark,
    I have logged a bug for this https://bugs.adobe.com/jira/browse/FB-27335
    -Radhakrishna

  • "Failed to connect to the service manager" when I try to add nodes to a cluster on Windows Server 2008 R2

    Hello,
    I get the following error message everytime I try to add a node to an existing cluster "Failed to connect to the service manager".
    I'm running Windows Server 2008 R2,
    Any ideas?

    Hi saeedawadx,
    Please run the cluster validation and post the error or warning information, in normal scenario the “Failed to connect to the service manager” issue often caused by the firewall
    or AV soft block the others node connect, please try to disable the firewall and AV soft then try again.
    The following related article will give more helpful tips,
    The case of the server who couldn’t join a cluster – operation returned because the timeout period expired
    http://blogs.technet.com/b/roplatforms/archive/2010/04/28/the-case-of-the-server-who-couldn-t-join-a-cluster-operation-returned-because-the-timeout-period-expired.aspx
    Trouble Connecting to Cluster Nodes? Check WMI!
    http://blogs.msdn.com/b/clustering/archive/2010/11/23/10095621.aspx
    I’m glad to be of help to you!
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

Maybe you are looking for

  • Scheduler in a webdynpro java application

    Hello Experts, we are trying to develope a custom webdynpro application and we need to schedule an action (that starts pushing a botton). we're using the IService class  to implement our scheduling ... following, the code used in the pdf project : Se

  • Converting from XML to pdf: looping in XSL FO

    I have a set of data which is dynamic.i.e the no. of rows is unpredictable. So, I want to use a <xsl:for-each . My code looks like: <xsl:for-each select="parent::EC-REPORT/TITLE-HEADER"> <fo:block line-height="19pt" font-weight="bold" font-size="10pt

  • Is the apple watch compatible with the iPod touch 5

    Is the apple watch compatible with the iPod touch 5

  • Error while accessing siebel application

    Hi, I installed Siebel 8.1 on Windows 2003. But when i try to access the application via http://localhost/service_enu I am getting the error: The server you are trying to access is either busy or experiencing difficulties. Please close the Web browse

  • Excise Invoices are shown as Reversed - J1IP

    Dear Friends, Tcode: J1IP -The status of few Excise Invoices are shown as Reversed, but when checked the table display J_1IEXCHDR against CEIV ETT, these excise invoices are not listed and also checked the document flow which shows these excise invoi