Can't find wsdl /wsdls/wsc11/wstx-wscoor-1.1-wsdl-200702.wsdl

Dear all,
I have a very simple Struts 2 application I am attempting to deploy. It has no Web Services component to it all.
Here is my web.xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" version="2.5">
     <display-name>FHEO Portal</display-name>
     <context-param>
          <param-name>org.apache.tiles.impl.BasicTilesContainer.DEFINITIONS_CONFIG</param-name>
          <param-value>/WEB-INF/tiles.xml</param-value>
     </context-param>
     <listener>
          <listener-class>org.apache.struts2.tiles.StrutsTilesListener</listener-class>
     </listener>
     <filter>
          <filter-name>struts2</filter-name>
          <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
     </filter>
     <filter-mapping>
          <filter-name>struts2</filter-name>
          <url-pattern>/*</url-pattern>
     </filter-mapping>
     <welcome-file-list>
          <welcome-file>index.html</welcome-file>
          <welcome-file>index.jsp</welcome-file>
     </welcome-file-list>
</web-app>
Here is my struts configuration file: struts.xml
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" "http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
     <constant name="struts.enable.DynamicMethodInvocation" value="false" />
     <constant name="struts.devMode" value="false" />
     <!--
     -->
     <package name="SCHO" extends="tiles-default">
          <result-types>
               <result-type name="tiles" class="org.apache.struts2.views.tiles.TilesResult" default="true"/>
          </result-types>
          <action name="FlashPage">
               <result>flashPage.jsp</result>
          </action>
     </package>
</struts>
I am the following error when I try to deploy a test build of my application to Weblogic 10.3.3.0:
Can't find wsdl /wsdls/wsc11/wstx-wscoor-1.1-wsdl-200702.wsdl
     at weblogic.wsee.deploy.WSEEModule.prepare(WSEEModule.java:146)
     at weblogic.wsee.deploy.AppDeploymentExtensionFactory.prepare(AppDeploymentExtensionFactory.java:147)
     at weblogic.wsee.deploy.AppDeploymentExtensionFactory.access$100(AppDeploymentExtensionFactory.java:27)
     at weblogic.wsee.deploy.AppDeploymentExtensionFactory$1.prepare(AppDeploymentExtensionFactory.java:427)
     at weblogic.application.internal.flow.AppDeploymentExtensionFlow.prepare(AppDeploymentExtensionFlow.java:23)
     at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.java:1223)
     at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
     at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.java:367)
     at weblogic.application.internal.SingleModuleDeployment.prepare(SingleModuleDeployment.java:43)
     at weblogic.application.internal.DeploymentStateChecker.prepare(DeploymentStateChecker.java:154)
     at weblogic.deploy.internal.targetserver.AppContainerInvoker.prepare(AppContainerInvoker.java:60)
     at weblogic.deploy.internal.targetserver.operations.ActivateOperation.createAndPrepareContainer(ActivateOperation.java:208)
     at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doPrepare(ActivateOperation.java:98)
     at weblogic.deploy.internal.targetserver.operations.AbstractOperation.prepare(AbstractOperation.java:217)
     at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentPrepare(DeploymentManager.java:749)
     at weblogic.deploy.internal.targetserver.DeploymentManager.prepareDeploymentList(DeploymentManager.java:1216)
     at weblogic.deploy.internal.targetserver.DeploymentManager.handlePrepare(DeploymentManager.java:250)
     at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.prepare(DeploymentServiceDispatcher.java:160)
     at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doPrepareCallback(DeploymentReceiverCallbackDeliverer.java:171)
     at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$000(DeploymentReceiverCallbackDeliverer.java:13)
     at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$1.run(DeploymentReceiverCallbackDeliverer.java:47)
     at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)
     at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
     at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
As I said: there is no Web Services component to this application. Could someone offer some advice regarding this issue?

Dear all,
I have a very simple Struts 2 application I am attempting to deploy. It has no Web Services component to it all.
Here is my web.xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" version="2.5">
     <display-name>FHEO Portal</display-name>
     <context-param>
          <param-name>org.apache.tiles.impl.BasicTilesContainer.DEFINITIONS_CONFIG</param-name>
          <param-value>/WEB-INF/tiles.xml</param-value>
     </context-param>
     <listener>
          <listener-class>org.apache.struts2.tiles.StrutsTilesListener</listener-class>
     </listener>
     <filter>
          <filter-name>struts2</filter-name>
          <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
     </filter>
     <filter-mapping>
          <filter-name>struts2</filter-name>
          <url-pattern>/*</url-pattern>
     </filter-mapping>
     <welcome-file-list>
          <welcome-file>index.html</welcome-file>
          <welcome-file>index.jsp</welcome-file>
     </welcome-file-list>
</web-app>
Here is my struts configuration file: struts.xml
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" "http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
     <constant name="struts.enable.DynamicMethodInvocation" value="false" />
     <constant name="struts.devMode" value="false" />
     <!--
     -->
     <package name="SCHO" extends="tiles-default">
          <result-types>
               <result-type name="tiles" class="org.apache.struts2.views.tiles.TilesResult" default="true"/>
          </result-types>
          <action name="FlashPage">
               <result>flashPage.jsp</result>
          </action>
     </package>
</struts>
I am the following error when I try to deploy a test build of my application to Weblogic 10.3.3.0:
Can't find wsdl /wsdls/wsc11/wstx-wscoor-1.1-wsdl-200702.wsdl
     at weblogic.wsee.deploy.WSEEModule.prepare(WSEEModule.java:146)
     at weblogic.wsee.deploy.AppDeploymentExtensionFactory.prepare(AppDeploymentExtensionFactory.java:147)
     at weblogic.wsee.deploy.AppDeploymentExtensionFactory.access$100(AppDeploymentExtensionFactory.java:27)
     at weblogic.wsee.deploy.AppDeploymentExtensionFactory$1.prepare(AppDeploymentExtensionFactory.java:427)
     at weblogic.application.internal.flow.AppDeploymentExtensionFlow.prepare(AppDeploymentExtensionFlow.java:23)
     at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.java:1223)
     at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
     at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.java:367)
     at weblogic.application.internal.SingleModuleDeployment.prepare(SingleModuleDeployment.java:43)
     at weblogic.application.internal.DeploymentStateChecker.prepare(DeploymentStateChecker.java:154)
     at weblogic.deploy.internal.targetserver.AppContainerInvoker.prepare(AppContainerInvoker.java:60)
     at weblogic.deploy.internal.targetserver.operations.ActivateOperation.createAndPrepareContainer(ActivateOperation.java:208)
     at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doPrepare(ActivateOperation.java:98)
     at weblogic.deploy.internal.targetserver.operations.AbstractOperation.prepare(AbstractOperation.java:217)
     at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentPrepare(DeploymentManager.java:749)
     at weblogic.deploy.internal.targetserver.DeploymentManager.prepareDeploymentList(DeploymentManager.java:1216)
     at weblogic.deploy.internal.targetserver.DeploymentManager.handlePrepare(DeploymentManager.java:250)
     at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.prepare(DeploymentServiceDispatcher.java:160)
     at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doPrepareCallback(DeploymentReceiverCallbackDeliverer.java:171)
     at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$000(DeploymentReceiverCallbackDeliverer.java:13)
     at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$1.run(DeploymentReceiverCallbackDeliverer.java:47)
     at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)
     at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
     at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
As I said: there is no Web Services component to this application. Could someone offer some advice regarding this issue?

Similar Messages

  • Can't find wsdl /wsdls/wsat.wsdl Error But i have not  web service

    İ am using ADF 11G. When i am deploying ear file getting this error.
    An error occurred during activation of changes, please see the log for details.
    Message icon - Error weblogic.application.ModuleException:
    Message icon - Error When processing WebService module 'Evrak_ViewController_webapp1.war'. Can't find wsdl /wsdls/wsat.wsdl
    Have u got any idea?
    Edited by: Mehmet Özkan on Jul 9, 2009 10:07 AM

    i hate this workarounds.
    04:37:04 PM] Weblogic Server Exception: weblogic.management.DeploymentException: Error encountered during prepare phase of deploying WebService module 'worklistTeste.war'. Error encountered while deploying WebService module 'worklistTeste.war'. port component 'ParticipantPortImpl' - wsdl port:{http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantPort is not found in wsdl.
    [04:37:04 PM] Caused by: weblogic.wsee.ws.WsException: Error encountered while deploying WebService module 'worklistTeste.war'. port component 'ParticipantPortImpl' - wsdl port:{http://docs.oasis-open.org/ws-tx/wsat/2006/06}ParticipantPort is not found in wsdl.
    [04:37:04 PM] See server logs or server console for more details.
    Edited by: José Carlos on 26/08/2010 12:37

  • I generated web service from function module.Where can I find .wsdl file ?

    Hi,
    I generated web service from function module.
    Where can I find .wsdl file ?
    I want to use .wsdl file in .Net application.
    Thanks.

    Hii Cemil Bozlagan,
      All Remote enabled Function Modules in Web AS 6.20 and Above are available as Webservices and the WSDL documents are available in the web service repository at
    [http://<host>:<port>/sap/bc/bsp/sap/webservicebrowser/search.html]
    Find the respective BAPI.
    Click on the WSDL link in the browser and download the WSDL document and use it as per the requirement
    Regards,
    Varun

  • OSB Email Can't find wsdl for Proxy?

    Hi,
    OSB 11G
    Req: System A will invoke OSB Service and OSB should send an email.
    I have created a Business Service and Proxy Service for Email in OSB like:-
    Business Service:
    1.Selected Service Type as Message Service.
    2. Req Message Type as Text
    3.Select Protocol=Email ad gave End Point URI
    4. Selected SMTP Server .
    Proxy Service
    1. I created XML(for incoming request content in Proxy) and imported in my Proxy and selected http Protocol in Proxy.
    2. In Proxy, I created Route Node. In Route Node, I used Communication->Transport. and set the Transport Headers Subject as $body/ema:Email/ema:subject/text() =expression
    To as $body/ema:Email/ema:to/text() =expression.
    3. I added an action -replace with variable body and expression=$body/ema:Email/ema:content/text().
    Both Business and Proxy are working fine. But I cannot see WSDL for OSB Service? As I want this OSB Service to be called from System A.
    Thanks

    You will not find a WSDL for http type service.
    You have to create your own WSDL and create a WSDL based proxy service.

  • Can't find wsdl /wsdls/wsat.wsdl

    Hi,
    I encounter this problem when deploy my application. My war file is deployed inside an ear file and My war file does not include the model package. Any Suggestion?

    I finally found the solution for this :S, the solution is (in my case) remove any reference to WebServices(JAX-WS Web Services) libreries into Jdeveloper and thats it, i hope it can help you.
    pd. i dont know why Oracle is so complicated!

  • AS can't generate WSDL

    Hi,
    I have the following problem. I have Oracle AS 10.1.3.3 installed and I am trying to generate the WSDL from WSDD file, which is a part of an application deployed on the server. The server was able to generate WSDL for a Hello World WebService, but if I try to use for example my own exceptions extended from Exception, I got the following message:
    AXIS error
    Sorry, something seems to have gone wrong... here are the details:
    Fault - ; nested exception is:
         java.lang.ClassCastException: com.ibm.wsdl.extensions.soap.SOAPFaultImpl
    AxisFault
    faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException
    faultSubcode:
    faultString: java.lang.ClassCastException: com.ibm.wsdl.extensions.soap.SOAPFaultImpl
    faultActor:
    faultNode:
    faultDetail:
         {http://xml.apache.org/axis/}hostname:marvin.ba.dynatech.sk
    I am little bit confused, because my previous 10gR2 AS generated WSDL from the same WSDD without any problems.
    Can anybody help me?
    Thanx
    Martin

    Jose, you say you can't find much about Flex calling remote
    objects. Really? There are many, many such resources.
    But maybe you mean that refer to this badversion error. Doing
    a little digging, I see references to issues related to SSL/HTTPS.
    Is that a part of what you're doing? Check out these.
    http://www.adobeforums.com/webx/.59b4dc44
    http://www.nabble.com/SSL-Https-communication-between-swf-and-data-service---life-cycle-is -failed-td18922452.html
    Here also is an entry where someone writes about calling a
    CFC from Flex, and in a comment he mentions the badversion error.
    Though he never mentions resolving it specifically, he seems to
    have gotten things working, so maybe among the few things discussed
    is a solution for you.
    http://www.flashcomguru.com/index.cfm/2006/11/11/flex2remoting
    I also see one that suggests that the badversion error is
    just a generic error reflecting another problem in the connection.
    While it discusses AMFPHP, which is an open alternative to the
    FlashRemoting built into CF, it may still offer insight:
    http://www.5etdemi.com/blog/archives/2005/06/i-did-it-i-killed-netconnectioncallbadversion
    If none of them are it, since it seems maybe you're having
    difficulty calling ANY CFC component from AIR/Flex, check out any
    of these examples to see if you can get them to run:
    http://livedocs.adobe.com/flex/3/html/help.html?content=data_access_4.html
    http://tutorial519.easycfm.com/
    http://www.cftips.net/post.cfm/flex-data-grid-with-coldfusion-flash-remoting-using-cfc
    Just be careful as you're looking at resources for Flex
    examples: some are for 1.5, some for 2, some for 3.
    Hope that helps.

  • Failed to find WSDL definition and/or locate WSDL file

    I am getting this exception
    Failed to find WSDL definition and/or locate WSDL file:
    - WSDLException: faultCode=OTHER_ERROR: Failed to read WSDL from http://10.126.2.78:6001/HPSDAdapter-HPSDAdapter-webapp/HPSDAdapterService/HPSDAdapterService?wsdl: HTTP connection error code is 407
    oracle.j2ee.ws.wsdl.LocalizedWSDLException: WSDLException: faultCode=OTHER_ERROR: Failed to read WSDL from http://10.126.2.78:6001/HPSDAdapter-HPSDAdapter-webapp/HPSDAdapterService/HPSDAdapterService?wsdl: HTTP connection error code is 407
    while opening my SOA composite on Jdeveloper 11.1.1.5, this webservice I have added before and it was working fine but now I am getting exception continuously, I am not using proxy in Jdev and can't go for new release as other teams have this version only.
    Please suggest what should I do for that.
    Thanks.

    If the server containing the webservices is not running or something in the signature of the webservice has changed, you most likely will get this error. When opening the composite, JDev always validates that all the services that are referenced are alive.
    Juan C.

  • Find WSDL from Proxy class

    Hi,
    i have abap proxy class and i want to find the wsdl of it ?
    How can i find it?
    BR
    Michael

    >
    Michael  A wrote:
    > HI Matt,
    >
    > When developer create proxy class he has to enter WSDL,
    > I think that this data have to persist somewhare.
    >
    > Best regards
    > Michael
    Indeed, that's what I thought.  But I couldn't find it anywhere.  When I configure the logical port in SOAMANAGER, I had to resupply the WSDL.

  • How to find WSDL url for a portlet

    Hi,
    I am using webcenter 11.1.1.4. I have created one portlet and successfully deployed in application server. For registering portlet into webcenter i have to enter WSDL url. After deploying portlet i didnt get WSDL url. After completion of deployment the following message is getting
    [02:34:47 PM] ---- Deployment started. ----
    [02:34:47 PM] Target platform is (Weblogic 10.3).
    [02:34:48 PM] Retrieving existing application information
    [02:34:48 PM] Running dependency analysis...
    [02:34:48 PM] Building...
    [02:35:11 PM] Deploying 3 profiles...
    [02:35:11 PM] Exporting portlet metadata and customizations.
    [02:35:12 PM] Creating portlet producer application for deployment.
    [02:35:15 PM] Deploying a WSRP producer.
    [02:35:18 PM] Wrote Web Application Module to E:\Aruna\Workspace\jdeveloper\winxp\mywork\mailtest\ViewController\deploy\mailtest_ViewController_webapp1.war
    [02:35:19 PM] Info: Namespace '/oracle/adf/portlet' is mapped to deploy-target metadata-store-usage 'WebCenterFileMetadataStore' in adf-config.xml but no metadata from the namespace is included in the MAR.
    [02:35:19 PM] Info: Namespace '/oracle/adf/portletappscope' is mapped to deploy-target metadata-store-usage 'WebCenterFileMetadataStore' in adf-config.xml but no metadata from the namespace is included in the MAR.
    [02:35:19 PM] Info: Namespace '/oracle/adf/share/prefs' is mapped to deploy-target metadata-store-usage 'WebCenterFileMetadataStore' in adf-config.xml but no metadata from the namespace is included in the MAR.
    [02:35:19 PM] Info: Namespace '/oracle/webcenter/lifecycle/importexport' is mapped to deploy-target metadata-store-usage 'WebCenterFileMetadataStore' in adf-config.xml but no metadata from the namespace is included in the MAR.
    [02:35:19 PM] Info: Namespace '/oracle/webcenter/lock' is mapped to deploy-target metadata-store-usage 'WebCenterFileMetadataStore' in adf-config.xml but no metadata from the namespace is included in the MAR.
    [02:35:19 PM] Info: Namespace '/oracle/webcenter/rc' is mapped to deploy-target metadata-store-usage 'WebCenterFileMetadataStore' in adf-config.xml but no metadata from the namespace is included in the MAR.
    [02:35:19 PM] Info: Namespace '/persdef' is mapped to deploy-target metadata-store-usage 'WebCenterFileMetadataStore' in adf-config.xml but no metadata from the namespace is included in the MAR.
    [02:35:19 PM] Info: Namespace '/shared/oracle/wcps' is mapped to deploy-target metadata-store-usage 'WebCenterFileMetadataStore' in adf-config.xml but no metadata from the namespace is included in the MAR.
    [02:35:19 PM] Info: Namespace '/oracle/webcenter/collab/mail/scopedMD' is mapped to deploy-target metadata-store-usage 'WebCenterFileMetadataStore' in adf-config.xml but no metadata from the namespace is included in the MAR.
    [02:35:19 PM] Info: Auto generated MAR archive was empty, not added to EAR.
    [02:35:19 PM] Wrote Enterprise Application Module to E:\Aruna\Workspace\jdeveloper\winxp\mywork\mailtest\deploy\mailtest_application1.ear
    [02:35:20 PM] Entering Oracle Deployment Plan Editor
    [02:35:28 PM] Deploying Application...
    [02:35:31 PM] [Deployer:149191]Operation 'deploy' on application 'mailtest_application1' is initializing on 'WC_Portlet'
    [02:35:32 PM] [Deployer:149192]Operation 'deploy' on application 'mailtest_application1' is in progress on 'WC_Portlet'
    [02:35:34 PM] [Deployer:149194]Operation 'deploy' on application 'mailtest_application1' has succeeded on 'WC_Portlet'
    [02:35:34 PM] Application Deployed Successfully.
    [02:35:34 PM] Elapsed time for deployment: 47 seconds
    [02:35:34 PM] ---- Deployment finished. ----
    Where can i get WSDL url? ? ?
    Please anyone help me.
    Thanks,
    SEWSupport

    Hi Hoque,
    I changed the war name. Then Test Point is getting as "     http://10.50.7.72:8888/ZohoMail-ViewController-context-root". But when i am clicking on that url the error message is getting like the following
    Error 404--Not Found
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.4.5 404 Not Found
    The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent.
    If the server does not wish to make this information available to the client, the status code 403 (Forbidden) can be used instead. The 410 (Gone) status code SHOULD be used if the server knows, through some internally configurable mechanism, that an old resource is permanently unavailable and has no forwarding address.
    Thanks,
    SEWSupport

  • Can not load WSDL.

    It seemed so strange,got me frustrated.
    I create a new data connection and I input the wsdl file url:http://192.168.2.58/FormService/service1.asmx?wsdl, LiveCycle prompt that "can not load .....",i also tried the url http://192.168.2.58/FormService/service1.wsdl.
    The two url can be visited in IE browser and if i select the same wsdl from local file system it's OK,why?
    Give me a hand,please.
    Jasper.

    Paul Guerette:
    It's been fixed.I can add the WSDL connection on annother computer.
    I'm not sure that it's Livecycle'r problem or you can not set the current computer IP as the WSDL host.

  • [Urgent] can not find Web service diagram in new gallery

    New Gallery -> Business Tier -> Web services
    can not find web services diagram item.
    But i read book about 10g there is web services diagram
    my version is 10.1.3.3

    Hi,
    I think the book means the WSDL editor that opens when you click on a WSDL file
    Frank

  • I can't find my webservice under the wsnavigator

    Hello,
    I have created my firs web service following the steps explained in [http://help.sap.com/saphelp_nw04/helpdata/en/f5/30c5aca7f92f418d889b99ccc9ee08/frameset.htm|http://help.sap.com/saphelp_nw04/helpdata/en/f5/30c5aca7f92f418d889b99ccc9ee08/frameset.htm] and deployed it but when I try to test it in the wsnavigator I can't find it.
    Anybody has any idea of what is missing? As I said, is my first webservice and maybe I forget to do something (anyway, I have checked all with my mates and nobody has found nothing wrong).
    Thanks
    Mireia

    By the way, I have created a dummy WD application to test the Bean and calling the methods of my session bean from the WD works fine, but in the wsnavigator thw WS didn't appear.
    I tried to enter the URL to the WSDL and I get the following error:
    Cannot download WSDL from http://xxxx:50100/ExpedientesWS/Config1?wsdl: Invalid Response Code: (404) Not Found. The request URL was:"http://xxxx:50100/ExpedientesWS/Config1?wsdl". Check, whether the URL is correct, and the Web Service that you are requesting is up and running.
    Thanks

  • I have bought a film from itunes and the credit has come out of my account, but i can't find the film anywhere, it said it was downloading, then i left the laptop and on return i couldn't find the film. how do i find the film?

    i have bought a film from itunes and the credit has come out of my account, but i can't find the film anywhere, it said it was downloading, then i left the laptop and on return i couldn't find the film. how do i find the film?

    Maybe it is in the Purchased category of iTunes,
    Try going there

  • Podcasts downloaded to "wrong" folder, then ITunes can't find it anymore

    Hi
    When I subscribe to a podcast or download the newest podcast, it will be saved not to the folder of itunesmusic/podcasts/name of podcast, but to /itunesmusic/downloads/podcasts/name of podcast, apparently as tmp-folder. Synchronising just then with my IPOD works, but when I exit ITunes and restart it, the podcast is not found anymore and I get the exclamation mark. When I search for it I can't find the podcast then anymore.
    I have ITunes 7.0.2.16 and running Windows XP.
    Any one has an idea how to solve this?
    Also is there a way to downgrade ITunes to version 6 or so? Because there it worked without problems.
    Appreciate any feedback.

    Too my a bit to work out *** was going on, but it was driving me insane with podcasts vanishing on me.
    To clarify, this is a full description of the issue:
    I have a problem with iTunes losing podcasts. They'd download, seem to play, but when I exited and reloaded iTunes a load of them would be lost and give me the exclamation icon. I've managed to work out why iTunes is losing my podcasts, but have no idea how to fix it.
    I've got a folder specified which I want iTunes to use to store my stuff in (E:\Media\itunes).
    When I subscribe to a new podcast it downloads to a file called E:\Media\itunes\Downloads\Podcasts\File on 4_ Phone tap evidence - 21 N.tmp\download.mp3 and creates a folder called E:\Media\itunes\Podcasts\File on
    I think it's supposed to save it to the first location and then copy it across to the second folder when it's finished. Except it doesn't. iTunes can run the podcast now, but from the temp folder.
    When you restart itunes, it nukes everything in the E:\Media\itunes\Downloads\Podcasts folder - I assume as it thinks I have no downloads outstanding and anything in here is just junk.
    Apart from manually copying, renaming and point itunes to this file - how do I get around this problem. It's only started since I went to iTunes7 and a complete uninstall/registry/config cleanse followed by a reinstall doesn't fix the problem.

  • Aio remote can't find printer

    I have a HP Envy 4507. My AiO Remote app can't find it. This is not a compatibility issue as I have been selling 4507's which I demonstrate by connecting to them. I originally was able to connect on the one at home but not lately. I keep on seeing the one from work. HP ePrint sees the home one fine. I have reinstalled AiO Remote and now it cannot see any printers, no matter how I try to connect. Tried ip address, direct (which was working before) and through wireless router which worked when I first set it up.

    Hi,
    Thinsg to quickly check would that there has been no recent  wifi password changes - if there has been any, they password would need to be re-entered into both the mobile device and printer.
    Another quick thing to try is restarting the mobile device - this sometimes helps re-establish the  connection.
    "Although I work for HP, I'm speaking for myself and not on behalf of HP"
    "Say "Thanks" by clicking the Kudos Star in the post that helped you.
    --Please mark the post that solves your problem as "Accepted Solution"

Maybe you are looking for

  • [solved] urxvt and .Xdefaults

    edit: I totally forgot about xrdb -load ~/.Xdefaults Last edited by dax965 (2008-01-19 23:34:58)

  • ACH file IL Child support Garnishment

    Hi, I working on to activate the Third party remittance (US Payroll) functionality for garnishment. Every thing is working fine, but I am not able to produce correct format ACH file for IL Child support. Should be <705DEDCSCSIL02101507400.00> coming

  • Adobe interactive forms in Webdynpro

    I installed Adobe LiveCycle Designer. When I edit the interactive form from NWDS, it says "could not find the required product, Install adobe Live cycle designer" Do we have to perform some additional settings after the installation.

  • User exit for proforma invoice preparation vf01

    Hi experts, I using Enhancement SDVFX008 for VF01 its working fine, but its not fire while STO(JEX) invoice preparation. In Proforma invoice i need to check road permit. User should not save without roadpermit in particular states only. Kindly give U

  • How to remove cells interection line in JTable

    Hello I am new to Java Programming I am facing a problem which i did not know how to solve so i need help from experts of this forum I have JTable of lets say 5 columns and from that i want to hide some columsn e.g i want to get only column 0(or ist