top button
Flag Notify
Site Registration

Error while accessing the Informatica web service methods

+2 votes
833 views

I am facing the following error while accessing the Informatica web services methods:

This represents an internal error at the Informatica PowerCenter Web Services Hub. error code is : WSH_95000

I am able to login and able to get the sessionid provided by the login response. I am passing the same session id for every SOAP call. But able to initializeDIserverConnection, unable to do any other calls in DI services.

Please help me if anyone knows the resolution

posted Apr 23, 2014 by Madhavi Kumari

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

According to Informatica Knowledge Base article 105634:

This error occurs when the Servicename (Integration service name) is not provided
under the DIServiceInfo section of Start Workflow operation.
answer Apr 25, 2014 by Shweta Singh
Similar Questions
+3 votes

I went through this Discussion:

http://stackoverflow.com/questions/7087036/fetching-images-from-server-while-drawing-the-cell

I have a web server server-1.example.com. There is a JSON-Server running on another server server-2.example.com. What I have to achieve is to fetch a list of URLs (in form of JSON response) from server-2 and loop through the urls and fetch them from the server-1. In the meantime i have to animate these images on the browser by Fading the images one after the another.

The algorithm is something like this:-

START:
   FETCH the URLs from server-1 and store them in a cache C
   Loop until C.length
      Fetch first K images by forking a thread.
      animate k images
 END

How can I optimize K? Is my approach right?

...