Omniportlet won't display web service

When I put in a valid WSDL link ie.
http://www.extensio.com:8080/ExtensioInfoServer/mbsoap/MBWSSoapServices.wsdl
I only ever get:
Failed to load WSDL file. Check the location of the WSDL. The WSDL file may have syntax errors.
This is the case for all web services on xmethods.net.
Any ideas?
This is for a competitive situation.
Many Thanks,
Colin

Hello Colin,
In you are into a LAN you need to check the proxt configuration of the OmniPortlet (and Web Clipping)
Go to the PortalTools application page:
http://server:port/portalTools
Regards
Tugdual Grall

Similar Messages

  • Mozilla won't display web cam feed from web site

    Mozilla won't display web cam feed from web site: http://www.fs.usda.gov/wps/portal/fsinternet/!ut/p/c4/04_SB8K8xLLM9MSSzPy8xBz9CP0os3gDfxMDT8MwRydLA1cj72DTUE8TAwjQL8h2VAQAMtzFUw!!/?ss=110803&navtype=BROWSEBYSUBJECT&cid=fsm9_029107&navid=091000000000000&pnavid=null&position=Not%2520Yet%2520Determined.Html&ttype=detailfull&pname=Chattahoochee-Oconee%2520National%2520Forest-%2520Home
    I have the latest Java software and can load the above feed in IE but not Mozilla. I can also load a similar Java feed from
    http://www.brmemc.net/brasstown/ in both IE and Mozilla.

    (Glad to see you're still lurking around here, Wyrenut.  Your posts have helped me tremendously.  And this comes form somebody who has run and internal developer's support group for quite a few years.)
    I also started having this problem after getting my TX hooked up through my home network.  I had to set up a wireless access point with only WPA security to get around having to change the WPA2 security on all my other equipment.  I applied the ESU upgrade, but that didn't seem to help with WPA2 Personal.  Previously, I could get at least half of the pages to come up through the open hotspot in the lobby of our building at work, but I haven't tried that since I applied the ESU upgrade this morning.
     I can get to the internet through the access point using a laptop, and I can see the IP address of the Palm coming through the access point on the router's admin page, and the DNS addresses of the PC and the Palm are the same.  So I think I'm through, but every page I try gets the 'Page not available' message, even if I enter the IP address of the page rather than the URL.
    Is there any other method of debugging available to see if the page is really coming back and locking up Blazer, or whether it's really not coming back at all?  Or any other suggestions? 
    Personally, I sort of liked the old Internet Explorer that counted off how many K were coming through as the page was being loaded.  At least you could tell something was happening.
    Thanks,

  • Displaying Web Service Results in a Report

    have a web service registered with APEX (GET_DAY_OF_THE_WEEK).
    It tests fine from the Web Service References Panel.
    I am trying to follow the steps in the Oracle Database Application Express
    User's Guide [Release 2.2 Part Number B28550-01] under the Displaying Web
    Service Results in a Report topic.
    When I get to step 6 = "For Result Tree to Report On, select the portion of the
    resulting XML document that contains the information you want to include in the
    report." ... THERE IS NO PLACE TO -->"...select the portion of the resulting
    XML document that contains the information you want to include in the report".
    Is this a bug? Is there a workaround?
    Steve

    Hi,
    I'm having a similar problem - I have a work_date column and I want to use a date picker to select tasks performed between 2 dates.
    For example, on Page 3 I have a username,client_name and task fields. I have 2 date pickers, one for start date and one for end date, and a submit button.
    I want to be able to select '01-AUG-10' from the start_date, then '31-AUG-10' from the end_date, then redirect to a page (Page 41) when I click the button to run this:
    select username,client_name,task,work_date
    from replicon where
    username = :P3_USERNAME and
    work_date between to_date(:P3_START_DATE,'DD-MON-RR') and
    to_date(:P3_END_DATE,'DD-MON-RR')
    order by work_date
    but I'm getting this error:
    ORA-01858: a non-numeric character was found where a numeric was expected
    The date format is "DD-MON-RR', and the work_date column is a "DATE" data type.
    The button items are "P3_USERNAME","P3_START_DATE" and "P3_END_DATE" with the same values (&P3_USERNAME etc), and the button redirects to page 41.
    I can't see how I can pass the username, start_date and end_date from Page 3 to Page 41. Am I using the correct ITEMS, or is it the query?
    Help appreciated.

  • OmniPortlet and Vignette VBIS Web Services

    Has anyone used OmniPortlet to connect to a Vignette Business Integration Studio (VBIS) developed web service? We have several VBIS web services which we've been using for a few years. When we attempt to configure an OmniPortlet to access these web services, OmniPortlet claims the WSDL doesn't define any methods. The WSDL looks valid and XMLSpy is able to detect the various WSDL components, so I have some confidence that the WSDL is valid. I've been able to access other (non-VBIS) WSDL and things work. So the question is why does OmniPortlet fail to detect methods in VBIS WSDL?
    Thanks.

    We almost gave up on webservices.oracle.com to get weather portlet working. Before I get convinced this a sample only, i wanted to install Oracle UDDI webservices registry on our apache server oracle home. I'd be interested in any developments in this direction.

  • How to display web service child attributes in an adf table

    I have a web service that return a Patient object and here is the Patient object definition in Java format:
    public class Patient
    String name;
    Address[] address;
    String mrn;
    public class Address
    String addressType;
    String[] streetline;
    String city;
    String state;
    String country;
    I want to create an adf table that displays the patient name, patient home address and mrn. When I create a data control base on the WSDL and drag the nested child address but the address does not show up in the adf table. What is the solution to display a web service top object attributes and child object attributes in one adf table?
    Thanks.

    Thanks for your response.
    After reading the link that you provided, the link seems to show how to resolve the web service complex type that is not display correctly in data control. My web service return type shows up correctly in the data control. Actually most of our child attribute is using complex type,
    Public class Patient
    Name name;
    String mrn;
    Address[] address;
    Public class Name
    String personFirstName;
    String personLastName;
    String orgName;
    I have tried the following approaches:
    1. Create web service data control based on a WSDL, try to display mrn, person first name (child attribute) and person last name (child attribute) in an adf table, when running the UI, there is only mrn attribute shows up. Even it is one-to-one cardinality I cannot have the child attribute's value show up.
    2. Create a java bean that has the exact attributes that are needed for the adf table region. Create a POJO facade class that has a method that return this java bean. I then create data control for this POJO facade class. The adf UI will base on this POJO facade. I have included the code in the POJO facade method to call the web service proxy and when get the web service return complex type; I have to programmatically map the attributes back to the java bean.
    The second approach is working but I need to write extra code to map the web service return type to the java bean. Is there any other option?
    Thanks.

  • HP LaserJet Professional P1102w won't print Web Services Information Sheet

    Hi there.
    I've spent the last frustrating three hours trying to get the Web Services Information sheet to print on this printer. I need this sheet in order to register for ePrint.
    I connect fine wirelessly on my computer to the printer. I have updated the firmware. Twice, to be sure.
    I have gone to HP Web Services and clicked Enable
    The message I then get is:
    "A Web Services information sheet will be printed. Review the sheet for important information."
    However, nothing prints.
    I have tried this process with the computer connected wirelessly through my network. I have tried it with the computer connected to the printer via USB. I have printed other things on the computer this way.
    I have tried rebooting the network and the printer and then reconnecting
    I have tried these steps:
    http://h30434.www3.hp.com/t5/ePrint-Print-Apps-Mobile-Printing-and-ePrintCenter/eprint-printer-code-...
    (I changed the preferred DNS from 10.0.1.11 and the alternate DNS from 8.8.4.4. to the values suggested)
    Afterwards, there was no change. My printer continued to print in every way possible. However, it will not print the Web Services Information Sheet.
    I'm very keen on getting my hands on this email so that I can register for ePrint. Can anybody help me? I would be hugely grateful.

    Sorry to hear you were unable to setup the wireless again on the p1102w.
    I have provided some steps in resetting up the p1102w on wireless network if you decide
    to do it again in the future.
    Reset the printer back to factory settings.
    (turn printer off then hold down the x and the wireless button while turning on the printer until the lights start blinking then release the buttons.
    Disconnect the usb cable from the printer.
    Disconnect the routers power cable for 10 seconds and then reconnect it again.
    Uninstall the p1102w from the computer.
    (open cd  and select uninstall or go to uninstall a program from the control panel.)
    Run the cd again or download depending what operating system you are running.
    Connect the usb cable when prompted to setup the wireless again.
    Enter passwords for the network when prompted.
    Disconnect the usb cable when prompted.
    Should be able to print out the test page now.
    Then you should be able to get the web services information sheet to print but will need to print out a self test on the printer to get the new ip address for the printer.
    If further issues you can contact HP technical support at 1-800-474-6836.
    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" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • ColdFusion 9 suddenly won't consume Web Services...

    Ok, the weirdest problem has cropped up, and I'm hoping someone will have a solution...
    Suddenly none of the Web Services we're consuming will work from our production server...
    Our test-server, locally-hosted, will consume all these web-services just fine.  But when we try to consume the very same web-services on our production server, it'll just hang forever.  No time-out, no error of any kind; just hangs there forever...
    We do not publish these web-services, we're just consuming them...  These web-services are being published by several different companies (our clients), so it's not that they're all coming from one source and it's the source that has the problem...  Every last web-service we consume has suddenly quit working when we try to access them from our production server...
    So why would we be able to consume them on one server, but not on another?  I've gone through the ColdFusion administrator line-by-line and both the test-server and the production-server are set up precisely the same way...  The only difference between the two servers is the OS and the fact that the production server is quite a bit more powerful...  Test server: 2-core AMD CPU, 4GB RAM, Windows 2003, IIS6,  ColdFusion 9;  Production server: 4-core Intel Xeon CPU, 8GB RAM, Windows Server 2008, IIS 7, ColdFusion 9...
    I'm really confused about this -- it's almost like the production server has had all outgoing requests blocked somehow...  But even if we completely turn off the firewall, we still can't consume any Web Services...
    Has anyone had a problem remotely like this?  I'd appreciate any kind of help you can offer...
    Thanks,

    The only other thing that I can think of would be permissions.
    ^_^

  • Displaying Web Service XML Return

    Hi,
    I'm looking for some help with web services. I have created a web service based on a PL/SQL package (using JDeveloper wizards) and deployed this successfully to Oracle 10g App server.
    I can execute the webservice through a java client and get each of the attributes defined in the WSDL.
    Now my problem is that I need to be able to execute the webservice through a HTML page and have the resultant SOAP/XML passed through to the HTML page so it can be dealt with by the Stylesheet. I cannot get the XML to be passed through to the calling HTML page.
    I have a HTML/JS page that can execute the service - but it does not return anything which I think is because the webservice doesn't have an explict return in it.
    Any help would be most appreciated.
    Regards
    Neil Catton

    Please install patch from OSS note 506603. This should correct the problem.

  • Palm TX won't display web page

    Each time I try to connect to the web via my wi-fi, I get an error saying the URL may be temporarily available or cannot be resolved. I am sure that the site is active and available, however. My wi-fi signal is strong and is connected, but I continuously get this error with any site.
    Post relates to: Palm TX

    (Glad to see you're still lurking around here, Wyrenut.  Your posts have helped me tremendously.  And this comes form somebody who has run and internal developer's support group for quite a few years.)
    I also started having this problem after getting my TX hooked up through my home network.  I had to set up a wireless access point with only WPA security to get around having to change the WPA2 security on all my other equipment.  I applied the ESU upgrade, but that didn't seem to help with WPA2 Personal.  Previously, I could get at least half of the pages to come up through the open hotspot in the lobby of our building at work, but I haven't tried that since I applied the ESU upgrade this morning.
     I can get to the internet through the access point using a laptop, and I can see the IP address of the Palm coming through the access point on the router's admin page, and the DNS addresses of the PC and the Palm are the same.  So I think I'm through, but every page I try gets the 'Page not available' message, even if I enter the IP address of the page rather than the URL.
    Is there any other method of debugging available to see if the page is really coming back and locking up Blazer, or whether it's really not coming back at all?  Or any other suggestions? 
    Personally, I sort of liked the old Internet Explorer that counted off how many K were coming through as the page was being loaded.  At least you could tell something was happening.
    Thanks,

  • IP address won't open Web services

    My laptop was stolen and now I have a chromebook, I'm trying to add the printer to the google cloud print but I don't have the email address. I've followed every step to get it, I wanted to get a claim code so I could add a device on hp connected. When I typed the IP address it says "This webpage is not available". What do I do next?
    Thanks.
    The IP address I got from the configuration page is: 192.168.223.1
    This question was solved.
    View Solution.

    Hi Aenor,
    If you see the blue light is blinking it means that, the WIFI on the printer is ON but not connected to any router.
    The Blue light becomes stable when the printer gets connected to your router.
    Keep the wifi button pressed for 3 seconds and leave it, immediately press the push button on the router to get the printer connected to your router.
    Now the blue light should become stable after some seconds.
    Now you can print the configuration page and check the IP address of your printer. Press and hold the product cancel button until the ready light blinks, and then release the button to print the configuration page.
    Try this IP address on your chrome book after connecting the chrome book on the same router network.
    Kind Regards,
    Oliver
    "Although I work for HP, I'm speaking for myself and not on behalf of HP"--Please mark the post that solves your problem as "Accepted Solution"
    "Say "Thanks" by clicking the Kudos Star in the post that helped you.

  • APEX 3.0.1 fails to consume Web Services

    I am running APEX 3.0.1 in a 10.2.0.2 EE database on Windows XP.
    I am trying to get APEX to use a simple web service that I have created in BPEL. The web service functions perfectly in SoapUI.
    APEX seems to be using the response document rather than the request document when invoking the service.
    Here is the request generated by APEX:
    <inputVariable><part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="payload"><ns1:Item xmlns:ns1="http://TargetNamespace.com/GetItemResponse">
    <ns1:SETID>SHARE</ns1:SETID>
    <ns1:ITEM_ID>810002</ns1:ITEM_ID>
    </ns1:Item>
    </part></inputVariable>
    Here is the request generated by SoapUI:
    <inputVariable><part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="payload"><get:Item xmlns:get="http://TargetNamespace.com/GetItemRequest">
    <get:SETID>SHARE</get:SETID>
    <get:ITEM_ID>810002</get:ITEM_ID>
    </get:Item>
    </part></inputVariable>
    The primary difference is that APEX is referencing GetItemResponse rather than GetItemRequest.
    Here is the WSDL:
    <definitions name="ItemGet" targetNamespace="http://xmlns.oracle.com/ItemGet" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="http://xmlns.oracle.com/ItemGet" xmlns:ns1="http://TargetNamespace.com/GetItemRequest" xmlns:plnk="http://schemas.xmlsoap.org/ws/2003/05/partner-link/" xmlns:ns2="http://TargetNamespace.com/GetItemResponse" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:client="http://xmlns.oracle.com/ItemGet">
    <types>
    <schema xmlns="http://www.w3.org/2001/XMLSchema">
    <import namespace="http://TargetNamespace.com/GetItemRequest" schemaLocation="GetItemRequest.xsd"/>
    </schema>
    <schema xmlns="http://www.w3.org/2001/XMLSchema">
    <import namespace="http://TargetNamespace.com/GetItemResponse" schemaLocation="GetItemResponse.xsd"/>
    </schema>
    </types>
    <message name="ItemGetRequestMessage">
    <part name="payload" element="ns1:Item"/>
    </message>
    <message name="ItemGetResponseMessage">
    <part name="payload" element="ns2:Root-Element"/>
    </message>
    <portType name="ItemGet">
    <operation name="process">
    <input message="tns:ItemGetRequestMessage"/>
    <output message="tns:ItemGetResponseMessage"/>
    </operation>
    </portType>
    <binding name="ItemGetBinding" type="tns:ItemGet">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <operation name="process">
    <soap:operation style="document" soapAction="process"/>
    <input>
    <soap:body use="literal"/>
    </input>
    <output>
    <soap:body use="literal"/>
    </output>
    </operation>
    </binding>
    <service name="ItemGet">
    <port name="ItemGetPort" binding="tns:ItemGetBinding">
    <soap:address location="http://xpvm.us.oracle.com:8888/orabpel/default/ItemGet/1.0"/>
    </port>
    </service>
    <plnk:partnerLinkType name="ItemGet">
    <plnk:role name="ItemGetProvider">
    <plnk:portType name="tns:ItemGet"/>
    </plnk:role>
    </plnk:partnerLinkType>
    </definitions>
    As you can see from the WSDL, the input message is tns:ItemGetRequestMessage and the output is tns:ItemGetResponseMessage.
    The APEX design time environment is accurately recognizing ItemRequest for the input parameters and ItemResponse for the output parameters.
    It looks like a potential APEX bug.
    Anyone run into this? Anyone have any suggestions?
    Thanks!
    Kurt

    Kurt:
    It does look like a bug. I can offer the following workaround.
    Create a Manual Web reference as described here:
    http://download-west.oracle.com/docs/cd/B32472_01/doc/appdev.300/b32471/advnc.htm#BABCBBHJ
    section "Creating a Web Service Manually"
    based on the WSDL below, you would enter the following for URL and Action:
    URL: http://xpvm.us.oracle.com:8888/orabpel/default/ItemGet/1.0
    Action: process
    Also, enter a name for an APEX collection to store the response, such as GET_ITEM_RESPONSE.
    For the SOAP Envelope, paste in the one that works from SOAPUI or use BPEL Control to get the envelope. Instead of static values for the parameters you use #ITEM_NAME# substitutions. So if the page generated by the wizard was on page 1, it would look something like:
    <inputVariable><part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="payload"><get:Item xmlns:get="http://TargetNamespace.com/GetItemRequest">
    <get:SETID>#P1_SETID#</get:SETID>
    <get:ITEM_ID>#P1_ITEM_ID#</get:ITEM_ID>
    </get:Item>
    </part></inputVariable>
    (with the proper SOAP Envelope wrapper around it)
    Now go to page 1 (assuming that was the page created by the wizard) and remove the current process of type Web service on that page. Add a new process of type Web service, choose Manual, and choose the manual one you created above.
    Follow the instructions in the section titled "Displaying Web Service Results in a Report" at the link above to create a report on the result.
    There is also an advanced tutorial using Manual Web references you may wish to review:
    http://download-west.oracle.com/docs/cd/B32472_01/doc/appdev.300/b32469/web_serv.htm#CHDEFEGH
    Hope that helps,
    Jason

  • Using Eclipse 3.1 SDK to implement Web Services

    Hi
    I am using Eclipse3.1 as the SDK for developing Web Services from Java Classes, and I have created two Web Services: X and Y. I need to make X a client to Y; therefore, I have been searching the Internet on how I can implement this. I got many references; some of them uses JAX and others use "com.ibm.cowbell" and "com.ibm.ws packages", but so far I cannot make it. When I try to import "com.ibm.ws", I got an error that the name of the package cannot be resolved. If any one has a suggestion of best practice in this or telling me why I cannot import "com.ibm.cowbell", I will be really appreciating as this is very impotant for my MSc. Thesis.
    Best regards for all
    Sherif

    Kurt:
    It does look like a bug. I can offer the following workaround.
    Create a Manual Web reference as described here:
    http://download-west.oracle.com/docs/cd/B32472_01/doc/appdev.300/b32471/advnc.htm#BABCBBHJ
    section "Creating a Web Service Manually"
    based on the WSDL below, you would enter the following for URL and Action:
    URL: http://xpvm.us.oracle.com:8888/orabpel/default/ItemGet/1.0
    Action: process
    Also, enter a name for an APEX collection to store the response, such as GET_ITEM_RESPONSE.
    For the SOAP Envelope, paste in the one that works from SOAPUI or use BPEL Control to get the envelope. Instead of static values for the parameters you use #ITEM_NAME# substitutions. So if the page generated by the wizard was on page 1, it would look something like:
    <inputVariable><part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="payload"><get:Item xmlns:get="http://TargetNamespace.com/GetItemRequest">
    <get:SETID>#P1_SETID#</get:SETID>
    <get:ITEM_ID>#P1_ITEM_ID#</get:ITEM_ID>
    </get:Item>
    </part></inputVariable>
    (with the proper SOAP Envelope wrapper around it)
    Now go to page 1 (assuming that was the page created by the wizard) and remove the current process of type Web service on that page. Add a new process of type Web service, choose Manual, and choose the manual one you created above.
    Follow the instructions in the section titled "Displaying Web Service Results in a Report" at the link above to create a report on the result.
    There is also an advanced tutorial using Manual Web references you may wish to review:
    http://download-west.oracle.com/docs/cd/B32472_01/doc/appdev.300/b32469/web_serv.htm#CHDEFEGH
    Hope that helps,
    Jason

  • Why JDEVADF11.1.1.3 can not test web service in IE for  Integrated WebLogic

    Hi,
    Testing a web service deployed to Integrated WebLogic Server.
    1.When you deploy the web service to Integrated WebLogic Server, examine the contents of the log window. Find http://IP_address:port/Project1-context-root/MyWebService1
    2.Copy the URL and paste it into browser. The browser shows a simple page which lists the operations available on the service.
    3.Enter a parameter, and click Enter. The result from the web service is displayed.
    My question:
    Why only display Web Services Endpoint and Information . Can not have Enter a parameter and operations available on the service.
    HttP analyzer test web service is OK.
    Thanks

    Hi,
    That is because you are looking at the endpoint information.
    If you want to test the service in a browser, then you can use the Weblogic Test Client.
    When your Integrated WLS is running, point the browser to the following url: http://localhost:7101/wls_utc/
    Thanks,
    Vishal

  • External Business Component vs Web Service

    Hello,
    We are using Siebel 8.1 and we are in need of referencing data in a external data source (DB2) that needs to present in a read only format this information within Siebel. We are trying to find the best path based on using
    1. External Business Component
    2. Obtain the data when needed via a web service
    Option 1 is described in the training materials we have from the training courses we've taken, but web services are the corporate standard, since using a web service would insulate the Siebel application from changes that happen to the external database and would be reusable.
    So far, we have been unable to determine how to call a web service from an applet that displays the data. The closest we've been able to come is to create a task flow to run the web service, and then place the data into a transient business component.
    Does anyone have any recommendations or past experiences related to this they can share for the best path?
    Thanks,
    Bob

    Hi Bob,
    As you said you would be using web service approach. I feel following would be good method to display web service data in Siebel Applets
    1.     Create Virtual Business Component (VBC)
    2.     Create Applet Based on VBC
    3.     Create Customer Business Service which will call web service and display data in applet
    You can use “SIA Billing Extern Service” to minimize script. This Service uses input output in the form of integration object structure. So using it you can directly map web service output to VBC fields.
    Thank you,
    Sharad

  • Testing failed when adding Web Service by OmniPortlet

    I am using Portal of 10gAS. In "Define your OmniPortlet", I selected "Web Service" as the data type. After I typed in the WSDL URL and selected a method, I clicked on Test button under the setion "Enter values for the method parameters". But I got error saying login failed. What's the account it tries to login? How can I fix it?
    The error varys, depending on which Method is selected from the list:
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Web Service: Test Result
    Error
    Call to Web Service Failed. [SOAP-ENV:Server : java.sql.SQLException: ORA-01017: invalid username/password; logon denied at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:188)]
    ~~~~ or ~~~~~~~~~~~~~~~~~~~~~~~~~`
    <ns1:getEmpXMLResponse xmlns:ns1="oracle.otn.ws.scott.OTNDeptEmp" SOAP-ENV:encodingStyle="http://xml.apache.org/xml-soap/literalxml" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
    <return>
    <ERROR>
    oracle.xml.sql.OracleXMLSQLException: ORA-01017: invalid username/password; logon denied
    </ERROR>
    </return>
    </ns1:getEmpXMLResponse>

    Hi,
    I beleive you are using the WebService
    http://otn.oracle.com/ws/oracle.otn.ws.scott.OTNDeptEmp?WSDL
    The error message displayed is what the web server
    is returning. Web server may encounter exceptions while executing any method.
    As a web service client, OmniPortlet will display the error messages returned
    by the web server.
    You can try a differrent WebService , it seems to be the issue with WebService
    Thanks
    Vineet

Maybe you are looking for

  • How can I prevent a memory flow error from occuring when using 3D contour plots?

    After displaying a single contour plot a number of times, LabVIEW crashes and reports a memory overflow error.  I only load a single 2D array, never storing previouls ones. I always index the data for contour plot 0, and don't explicitly store multip

  • Value not flowing to CO-PA

    Hi, The requirement is to know the value of packing cost agaist sales from CO-PA. We did following configuration. Assigned cost component to value field. (We are maintaining standard costing) We are not getting any copa document while confirming the

  • Setting resolution, deciding file type, for very LARGE Canvas prints. 36MP camera.

    Okay, so I noticed my lightroom was on 240 PPI resolution. I changed it to 300 because I read 300 was for standard prints. What would I need to set the export to in the resolution box for a very large Canvas? Is it better to choose Tiff instead of Jp

  • Datasource 0HR_PT_3 and end of month

    Hi experts We are using datasource 0HR_PT_3 for extraction of leave data. At the following screen you can see the change log of a standard DSO. A change has made on 25.08.2014. This change has been stored as new image. The new image is correct. At th

  • URLConnection to filename question

    Not sure if this is the right forum for this but I hope so. I have a program which I created that takes a http address and then downloads the file from that address. The program looks at the entered URL and downloads its content into a temp file with