Problem testing feeed

Hello everyone,
I'm having problems testing my feed on iTunes, I can subscribe to it, but it doesn't download the episodes, when I try to download it gives me the following error:
"There are no playable episodes. the URL might point to text-only episodes, or contain file types that iTunes cannot play"
Which is very confusing because I followed Apple's guideliness to encode my M4V videos and I tested the feed with other validators and it passed.
My feed is at: http://blog.menstyledigest.com/feed.xml
I've looked all over for a solution to my problem but couldn't find any help so I'm hoping somebody here can help me.
Thanks in davance,
RG

The URL of the media file for each episode is carried in the 'enclosure' tag within each set of 'item' tags. Here is one of yours:
<enclosure url="http://blog.menstyledigest.com/index.html" length="8858464" type="video/x-m4v" />
You've linked to a web page: you need to link directly to the media file itself.

Similar Messages

  • Problem testing on localhost with vista 64 bit

    Hello,
    i have a new computer system on which vista 64 bit is
    installed.
    when i want to test my asp pages on localhost it does not
    work.
    when i test directly on the server it works fine. So there
    are no code mistakes.
    When i add a new site to dreamweaver and define the testing
    server with asp vbscript i get this error message :
    the site url prefix for the testing server does not match the
    site url prefix ...
    when i test a html file it works fine, when i test an asp
    page which has to retieve info from an access db it fails.
    I used to work with xp for several years and had no problems.
    Could anyone help me out here ?
    Tx .
    Peter

    See if these help:
    http://www.fordwebs.com/iis7testing.cfm
    http://blogs.iis.net/bills/archive/2007/5/21/1718507.aspx
    Ken Ford
    Adobe Community Expert Dreamweaver/ColdFusion
    Adobe Certified Expert - Dreamweaver CS3
    Adobe Certified Expert - ColdFusion 8
    Fordwebs, LLC
    http://www.fordwebs.com
    "Petsof" <[email protected]> wrote in
    message
    news:gca3dg$36d$[email protected]..
    > Hello,
    > i have a new computer system on which vista 64 bit is
    installed.
    > when i want to test my asp pages on localhost it does
    not work.
    > when i test directly on the server it works fine. So
    there are no code
    > mistakes.
    >
    > When i add a new site to dreamweaver and define the
    testing server with
    > asp
    > vbscript i get this error message :
    > the site url prefix for the testing server does not
    match the site url
    > prefix
    > ...
    > when i test a html file it works fine, when i test an
    asp page which has
    > to
    > retieve info from an access db it fails.
    >
    > I used to work with xp for several years and had no
    problems.
    > Could anyone help me out here ?
    >
    > Tx .
    > Peter
    >

  • Problem testing WebMethod. Throwing javax.xml.bind.JAXBException

    Hi guys,
    Another Newbie.
    Specifications:
    NetBeans5.5
    Sun App Server 9.0_01 (build b02-p01)
    MySQL
    Problem: Not able to test run the Webmethod with webparams.
    I have an entity class with some methods as shown below
    public class Country {
        private Integer countryID;
        private ServerDatabaseInteraction di;
        private String countryName;
        /** Creates a new instance of Country */
        public Country(ServerDatabaseInteraction di) {
            this.di = di;
         * Creates a new instance of Country with the specified values.
         * @param countryID the countryID of the Country
        public Country(Integer countryID) {
            this.countryID = countryID;
         * Creates a new instance of Country with the specified values.
         * @param countryID the countryID of the Country
         * @param countryName the countryName of the Country
        public Country(Integer countryID, String countryName, ServerDatabaseInteraction di) {
            this.di = di;
            this.countryID = countryID;
            this.countryName = countryName;
         * Gets the countryID of this Country.
         * @return the countryID
        public Integer getCountryID() {
            return this.countryID;
         * Sets the countryID of this Country to the specified value.
         * @param countryID the new countryID
        public void setCountryID(Integer countryID) {
            this.countryID = countryID;
         * Gets the countryName of this Country.
         * @return the countryName
        public String getCountryName() {
            return this.countryName;
         * Sets the countryName of this Country to the specified value.
         * @param countryName the new countryName
        public void setCountryName(String countryName) {
            this.countryName = countryName;
        public void insert() throws SQLException {
            di.update("INSERT INTO Country (CountryName) VALUES ('"+getCountryName()+"')");
        public ArrayList list() throws SQLException {
            ArrayList queryAL = new ArrayList();
            ResultSet rs = di.queryToResultSet("SELECT CountryID, CountryName FROM Country");
            while(rs.next()) {
                String temp = rs.getInt(1)+"#"+rs.getString(2);
                queryAL.add(temp);
             return queryAL;
    }    then I created a Web service having two methods as follows
    @WebService
    public class CountryWS {
        ServerDatabaseInteraction di;
        Country country;
        public CountryWS() {
            try {
                di = new ServerDatabaseInteraction();
            } catch (Exception ex) {
                ex.printStackTrace();
            country = new Country(di);
         * Web service operation
        @WebMethod
        public ArrayList listPKobjects() {
            try {
                return country.list();
            } catch (SQLException ex) {
                ex.printStackTrace();
                return null;
         * Web service operation
        @WebMethod
        public String insert(@WebParam(name = "CountryName") String CountryName) {
            // TODO implement operation
            country.setCountryName(CountryName);
            try {
                country.insert();
                return "Inserted";
            } catch (SQLException ex) {
                ex.printStackTrace();
                return "Insert Failed";
    }Now the problem is Im able to test (by right clicking on webservice from IDE) the webmethod listPKObjects but not the insert method. only difference is the second one is having webparms.
    the log shows as follows..
    CountryName is not a valid property on class myhost.fli.ws.jaxws.Insert
    javax.xml.bind.JAXBException: CountryName is not a valid property on class myhost.fli.ws.jaxws.Insert
         at com.sun.xml.ws.encoding.EncoderDecoderBase.getRawAccessor(EncoderDecoderBase.java:128)
         at com.sun.xml.ws.encoding.EncoderDecoderBase.getWrapperChildValue(EncoderDecoderBase.java:81)
         at com.sun.xml.ws.encoding.soap.EncoderDecoder.fillData(EncoderDecoder.java:78)
         at com.sun.xml.ws.encoding.soap.ServerEncoderDecoder.toMessageInfo(ServerEncoderDecoder.java:97)
         at com.sun.xml.ws.protocol.soap.server.SOAPMessageDispatcher.toMessageInfo(SOAPMessageDispatcher.java:209)
         at com.sun.xml.ws.protocol.soap.server.SOAPMessageDispatcher$SoapInvoker.invoke(SOAPMessageDispatcher.java:573)
         at com.sun.xml.ws.protocol.soap.server.SOAPMessageDispatcher.receive(SOAPMessageDispatcher.java:147)
         at com.sun.xml.ws.server.Tie.handle(Tie.java:90)
         at com.sun.enterprise.webservice.JAXWSServlet.doPost(JAXWSServlet.java:195)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at org.apache.catalina.core.ApplicationFilterChain.servletService(ApplicationFilterChain.java:397)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:278)
         at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:536)
         at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:240)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:179)
         at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566)
         at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:73)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:182)
         at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566)
         at com.sun.enterprise.web.VirtualServerPipeline.invoke(VirtualServerPipeline.java:120)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:939)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:137)
         at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:536)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:939)
         at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:239)
         at com.sun.enterprise.web.connector.grizzly.ProcessorTask.invokeAdapter(ProcessorTask.java:667)
         at com.sun.enterprise.web.connector.grizzly.ProcessorTask.processNonBlocked(ProcessorTask.java:574)
         at com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(ProcessorTask.java:844)
         at com.sun.enterprise.web.connector.grizzly.ReadTask.executeProcessorTask(ReadTask.java:287)
         at com.sun.enterprise.web.connector.grizzly.ReadTask.doTask(ReadTask.java:212)
         at com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:252)
         at com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThread.java:75)
    Caused by: javax.xml.bind.JAXBException: CountryName is not a valid property on class myhost.fli.ws.jaxws.Insert
         at com.sun.xml.bind.v2.runtime.JAXBContextImpl.getElementPropertyAccessor(JAXBContextImpl.java:816)
         at com.sun.xml.ws.encoding.EncoderDecoderBase.getRawAccessor(EncoderDecoderBase.java:124)
         ... 34 moreCan't find a reason, why one webmethod is working and the other one is not.
    Any help would be much appriciated.

    I'm encountering the same problem, but it's very inconsistent. I've got three web services that I'm deploying. If I clean, rebuild, and redeploy, then different combinations of the three throw this error.
    My specifications:
    NetBeans 6.0
    GlassFish v2
    Oracle 10g
    In browsing around online, I came across the following link which suggested to me that this issue is known and is being addressed.
    https://jax-ws.dev.java.net/issues/show_bug.cgi?id=419
    I discovered that the reason that I was getting this error was because my web services all had the same operation names. When I renamed my operations in each service so that they had different names, this fixed the problem.
    Hope this helps!
    - Erich Musick

  • Problem testing JAXRPC based web services

    Hello,
    I have a JAXRPC based web service. The application was easily tested using earlier versions of sun java system application server.
    But when I am trying to test it using sun java Application Server 9 it is showing an error.
    Do I need to change some configurations?
    Hope to receive solutions.
    Shalmoli

    Hi Eoin,
    I had the exact problem. Struggled a lot and still couldn't figure out. I think its a problem in 8.1. Not sure. Might want to check with the support guys. If you are struck with 8.1 and still couldn't figure out, AXIS would be a option for you. Just an FYI. Thats what we are doing now.
    Luckily for us we are migrating to 9.1 and I just completed a POC for doc oriented webservices in 9.1. It works like a charm.
    Thanks and good luck
    - Aspert

  • Problem testing Standard BOR object : CATS

    Hey SAPians,
    I have issue with one of the standard BOR objects in SAP.
    BOR Object: CATS
    1. When i try to test the object, it gives a program dump, both in Development and Production environment.
    2. The dump contains the following text: "ASSIGN_LENGTH_0"
    This occurs in program SWO_DIALOG_OBJECT_KEY_EDIT". A sample screenshot of the dump location is given below:
    The Error occurs at LINE NO 68
        65   SORT info BY editorder.                                  
        66   LOOP AT info.                                            
        67     MOVE-CORRESPONDING info TO objid.                   
        68     ASSIGN old_id+objid-offset(objid-ddlength) TO <obj_id>.
        69     IF objid-outlength > width.                            
        70       width = objid-outlength.                             
        71     ENDIF.                                                 
        72     IF objid-memoryid NE space AND                         
        73        <obj_id> = space AND                                
        74        objid_control-display = false.                      
        75       GET PARAMETER ID objid-memoryid FIELD <obj_id>.      
        76     ENDIF.                                                 
        77     objid-value = <obj_id>.                                
        78     APPEND objid.                                          
        79     ADD 1 TO height.                                       
        80   ENDLOOP.
    The problem according to me is in the field "DDLENGTH" which holds value '000000'. If this field value is changed at runtime, then everything works perfect.
    Now, the question is from where his value gets populated ??
    Further debugging led me to a Function module : "SWO_QUERY_VERBS"
    which exports a internal table with values that match exactly to the values in internal table "INFO" in the above code on whom the loop is executed.
    Ppl, please guide me on this function module or the source of the function module contents...
    Is it any config issue ?? If yes, what needs to be done ??
    If not, then how it needs to be resolved ???
    Thanks in advance.
    Shashank Shirali

    Hey Mates, thanks for your valuable suggestions. However, the problem was solved. I regenerated the BOR object "CATS". This is the only thing i did. This may be due to inconsistencies during upgrade....
    Thanks
    Shashank

  • //solved // pacman local repository problem / testing vs testing

    i have a serious problem with pacman, i hope someone can help me out.
    i've tried to create a local repo and made a really stupid mistake by calling it 'testing' (i used repo-add)
    now if i try to update the system with -Syu I get a flood of warnings for all my packages being newer than platform core etc
    there is obviously a conflict with the usual 'testing' and I couldn't find a way to revert this. repo-remove didn't help either.
    is there a way to fix it?
    tia
    Last edited by JYQ (2013-04-04 10:02:58)

    parazyd wrote:Try editing your pacman.conf and remove it.
    I tried it already. Didn't help.
    jasonwryan, thanks but i have a little experience with pacman. the problem is a confict in the database.
    manpages do not cover this.
    "Creating & Modifying Packages( Discussion and support regarding building packages with makepkg and ABS)
    was a natural choice for the thread because there are people who do the same thing.
    Last edited by JYQ (2013-04-04 10:23:30)

  • Problem Testing A Movie CS4

    Hello
    I am encountering a problem when using a 144kb flash document and running it as a test movie.  The exporting SWF movie process can take up to 1 to 2 minutes or longer to complete or the program stops responding and has to be restarted. Why is this occurring and is there a solution to the problem? Thank you for your assistance.

    It plays as a movie. For example the file has my name and it play as a movie.

  • Problem testing deployment of SAP Data Source

    Following the Installation Guide for SAP Data Source on Oracle iAS10g 9.0.4.0.0 on Windows 2000 Server SP4 Im stuck with error
    500 Internal Server Error
    java.io.IOException: javax.servlet.ServletException: Class oracle.webdb.reformlet.ReformletPortlet has no set or add method for tag "localePersonalizationLevel" at oracle.webdb.provider.v2.adapter.soapV1.ProviderAdapter.showTestPageURI.... (full shown at end)
    when testing URL
    http://sgr-a31.dk.ementor.dom/portalTools/omniPortlet/providers/sap
    Can anybody help ?
    Creating the External Application logon etc. worked fine !
    500 Internal Server Error
    java.io.IOException: javax.servlet.ServletException: Class oracle.webdb.reformlet.ReformletPortlet has no set or add method for tag "localePersonalizationLevel" at oracle.webdb.provider.v2.adapter.soapV1.ProviderAdapter.showTestPageURI(Unknown Source) at oracle.webdb.provider.v2.adapter.soapV1.ProviderAdapter.showTestPage(Unknown Source) at oracle.webdb.provider.v2.adapter.soapV1.ProviderAdapter.handleHttp(Unknown Source) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at oracle.webdb.provider.v2.adapter.SOAPServlet.doHTTPCall(Unknown Source) at oracle.webdb.provider.v2.adapter.SOAPServlet.service(Unknown Source) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:765) at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:317) at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790) at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:208) at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:125) at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192) at java.lang.Thread.run(Thread.java:534)

    PUBLISHING THE SAP DATA SOURCE PLUGIN FOR OMNIPORTLET FOR SAP, UNSUCEFULL
    ### What kind of problem do you have? ###
    Managing External Applications
    ### Describe the problem you are having in detail. Include any notes, guides, o Documentation:
    OracleAS Portal Integration Solutions
    Installation Guide for SAP Data Source
    Revision No Last Update
    1.0 December 19, 2003
    1.1 January 16, 2004
    Follow step-by-step.
    1 - Upgraded portalTools to Version: 9.0.4.1
    2 - Used the 'Upgrading the Portal Tools Application' instroctions, making sure
    to stop OC4J's before copying files 'onto' my system.
    3 - Restarting the OC4J_Portal
    4 - Testing the deployment @ Provider Test
    Page:
    http://portaldev:7778/portalTools/omniPortlet/providers/sap
    Welcome
    Congratulations!! You have successfully set up the SAP Data Source
    Provider.
    5 - Creating the external application was successful.
    SAPExternalApp
    6 - Publishing the SAP Data Source
    Okey...
    Fill up Filds, as describe..
    Application Name: SAPExternalApp
    Login URL:http://portaldev:7778/portalTools/omniPortlet/servlet/login
    User Name/ID Field Name: Username
    Password Field Name: Password
    POST
    VALID SAP CLIENT (TESTED!!!)
    clientId 400 Check this box
    language EN Check this box
    systemId 00 Uncheck this box
    hostname xxx.xxx.xxx.xxx Uncheck this box
    connectionPoolSize 5 Uncheck this box
    7 - When click on the link SAPExternalApp , got following error ...
    500 Internal Server Error java.lang.NoClassDefFoundError:
    com/sap/mw/jco/JCO
    ### Provide any error numbers, or error text that you are receiving. Include any
    500 Internal Server Error
    java.lang.NoClassDefFoundError: com/sap/mw/jco/JCO
    and so on ...
    TAR has been assigned to an analyst -- Sending email.
    03-JUN-05 11:44:44 GMT
    Hi,
    Thank you for using MetaLink. We are currently reviewing/researching the situation and will update the SR / call you as soon as we have releva
    nt information. Thank you for your patience.
    Best Regards,
    Pascal Brand
    Oracle EMEA Portal Competency.
    STATUS
    =======
    @WIP -- Work In Progress
    03-JUN-05 11:49:30 GMT
    UPDATE
    =======
    It seems one of the classes in missing in the OC4J class path. (com/sap/mw/jco/JCO).
    03-JUN-05 11:50:15 GMT
    OWC Conference 25816178
    Start : 03-Jun-2005 11:50:15 GMT
    Duration : 121 minutes
    Hosted by : BRAND,PASCAL
    Rating : Good
    Finish status : graceful
    Playback URL : The recording of this conference is not published
    Comments :
    Attendees : 2
    peres () From: to
    peres () From: to
    peres () From: 12:07:10 GMT to 13:51:27 GMT
    PASCAL BRAND ([email protected]) From: 11:50:33 GMT to 13:51:41 GMT
    03-JUN-05 11:51:18 GMT
    OWC REQUEST
    ============
    Hi,
    I would like to collaborate with you in a 20 minute Web Conference (OWC) to progress your issue. Please follow these
    steps:
    1. Log into Metalink (http://metalink.oracle.com) using INTERNET EXPLORER.
    2. Click on Oracle Collaborative Support button on lower left side
    3. Under the list of Upcoming Public Conferences, identify the conference with the Confere
    nce Title which matches your TAR#4414221.994, and click Join Meeting. (If you do
    not see your conference, click on Full List button)
    OR
    Enter the Conference ID: 25816178
    4. Enter your CSI# as the Conference Key, your name, email address, and company name and click Join Conference.
    Please join this collaboration session as soon as possible.
    Thank you,
    Pascal
    STATUS
    =======
    @CUS -- Waiting for Customer Update
    03-JUN-05 12:06:30 GMT
    ISSUE CLARIFICATION
    ====================
    After configuring the SAP Data Source Provider, customer can reach the test page but can't configure the external app
    lication.
    500 Internal Server Error
    java.lang.NoClassDefFoundError: com/sap/mw/jco/JCO
    at oracle.webdb.reformlet.plugin.datasource.sap.jco.JCOUtils.
    testForAuthentication(Unknown Source)
    at oracle.webdb.reformlet.plugin.datasource.sap.jco.JCOUtils.
    testForAuthentication(Unknown Source)
    at oracle.webdb.reformlet.plugin.datasource.sap.LoginServlet.
    doGet(Unknown Source)
    eos (end of section)
    ACTION PLAN
    ============
    1. Can you check in which jar or zip file this class is located.
    com/sap/mw/jco/JCO
    2. Add the jar or zip file in the orion-applications.xml library path definitions.
    3. restart the OC4J instance where the SAP provider is located.
    eos (end of section)
    Let me know if this helps,
    Pascal
    03-JUN-05 12:06:44 GMT
    Email Update button has been pressed: Sending email to [email protected].
    br.
    DATA COLLECTED
    ===============
    COLLABORATION
    After adding the sapds.jar and the sapjco.jar in the $ORACLE_HOME/portal/jlib and having restarted the OC4J_POrtal, we have and other error
    with something like:
    NOEXEC shared libraries..
    It seems to be related to the SAP librairies for AIX.
    Customer will upload the complete error message on metalink.
    We have tried to set LD_LIBRARY_PATh and LIBPATH in the environement and in the opmn.xml for OC4J_Portal.
    This didn't help.
    eos (end of section)
    ACTION PLAN
    ============
    1. Can you upload the complete error message we have seen on the screen.
    eos (end of section)
    Thanks,
    Pascal
    03-JUN-05 14:05:21 GMT
    Email Update button has been pressed: Sending email to [email protected].
    br.
    03-JUN-05 14:24:30 GMT
    UPDATE
    =======
    Hi,
    I'm afraid but I have the feeling the problem is due to wrong AIX shared libraries.
    ACTION PLAN
    ============
    1. Can you ask for reloading the libraries from the SAP services site and make sure they are for
    AIX.
    eos (end of section)
    UPDATE
    =======
    The SAP provider is not suported by Oracle support as it is written in the SAP plugin installation guide:
    NOTE: The OracleAS Data Source Plugin for Omniportlet for SAP is a sample released for
    test, evaluation, and education purposes. It is not supported through formal Ora
    cle Support mechanisms. We are, however, very interested in receiving your feedb
    ack. Please post any suggestions, questions, or issues to the 'Portal - Portal
    Development Kit' Discussion Forum on OTN. We will respond as quickly as possibl
    e."
    The developers are checking the forum for the questions.
    Please use this forum for futur investigation.
    I'm sorry not beeing able to help more.
    UPDATE
    =======
    Hi,
    I am inactivating this SR, as the OracleAS Data Source Plugin for Omniportlet for SAP is a sample released for test, evaluation, and ed
    ucation purposes. It is not supported through formal Oracle Support mechanisms.
    Best Regards,
    Pascal Brand
    Oracle EMEA Portal Competency.
    +++++++++++++++++++++++++++++++++++++++++++++++++++
    Try with SAJCO 2.1.5 but haven´t worked.., paperwork sugested 2.0.5, can´t find anywhere...
    Doesn´t work with: 2.0.5 or 2.0.10
    Any help???

  • A problem testing input channels on 6527 card, they won't turn on via studio

    Hi.
    I have installed the card correctly (it passes the test) and wrote an application catching events in case of output/input changes.
    I wanted to test the application via the measurment studio, but I can not turn the input channels on, i.e. nothing happens when I press the "Make input button". The output channels testing works great.
    Thanks 4 your time.

    Hello;
    You can do two tests at this point to make sure the digital lines are working properly. The first one is to run Test Panel in MAX, go to the digital tab, configure the same digital line you are having problems on Measurement Studio, and see if that works fine in MAX. If it doesn't the board is probably defected.
    If that works out fine, you can now run one of the shipping examples that shows how to do digital lines, for Measurement Studio. You can find those examples at C:\Program Files\National Instruments\NI-DAQ\examples\Visual Basic. If that works out fine too, the problem is most likely on your Software.
    Hope this helps.
    Filipe A.
    Applications Engineer
    National Instruments

  • Problem testing XSQL Servlet, XSQL-0007

    Hi,
    I'm testing the XSQL Servlet, as a lot of people do. I installed
    it on Apache Web Server with JRUN servlet engine, following the
    Release Notes, but it does not work at all. I get the following
    message, when I try to run helloworld.xslq:
    Oracle XSQL Servlet Error
    XSQL-0007: XML Parsing error on requested page
    <2,1>: Expected EOF
    I checked it several times but it seems to be right, exactly as
    in the release notes.
    I read here that other people (SHankar) had the same problem, but
    your answer did not solve it:
    : : Oracle XML Team wrote:
    : : : I presume by XML source code, you are referring to
    the .xsql
    : : : source code. If that is the case then you have not
    : registered
    : : : the XSQL servlet to that extension in the web server you
    are
    : : : using. Check out that section of the installation
    : : instructions.
    Please, tell me what can I do to start testing it, since I can
    test nothing, it does not work.
    Regards,
    Esteban
    null

    Oracle XML Team wrote:
    : The only thing that can cause
    : this error is if the page you
    : are requesting is not a well-formed
    : XML document.
    : Oracle XML Team
    : http://technet.oracle.com
    : Oracle Technology Network
    I'm requesting the page that you provide as a demo:
    helloworld.xsql
    I checked it and it is a well-formed XML document.
    Anyway, other examples that you provide with the xsqlservlet zip
    file don't work either.
    null

  • WiFi connection problem testing

    I am also one of many having the intermittent WiFi connection problem at home.
    From a technical testing mode. Get the free the "FreePing" application by Marcel Lanz in the app store.
    What you will find is when you are having the internet connection problem, you can not ping your Router. However, you can ping any wired Mac or desktop computer on your router/switch network.
    This tells you, you are on the network, getting an IP address from the router DHCP server.
    The problem is not related to the Wi-Fi connection or connecting to the network (OSI Layer 2 model).
    It appears to be a problem at the OSI Network Layer 3. The router is having a problem in the routing table. The hard part is the Layer 3 problem can be either in the Touch or the router in this configuration. Meaning, the combination of both Touch and router is causing the problem. Thus, the intermittent operation.
    Yes, this is probably more technical than anyone here cares to know.

    Hi,
    You should be debugging the driver / contact the vendor. Seems like netrtwlanu is realtek based chipset.
    The abort points to this driver (at least the PC). 
    Regards,
    Balaji.

  • Problem testing a Proxy / Web Service

    hi everybody.
    I created a proxy / web service for an interface defined in the xi repository. i can test this service in the Enteprise Service Browser in SE80 (F8) sending a soap request and and everything works fine.
    now my intention is to call this web service from outside. I defined an endpoint using transaction SOAMANAGER and used the wsdl document for that binding (from the given link) to send a soap request using the testing tool soapUI.
    if I do not define username and password i receive: Logon Error Message. but giving the information I also receive a error:
    <soap-env:Fault>
      <faultcode>soap-env:Server</faultcode>
        <faultstring xml:lang="en">SRT: Authorization denied</faultstring>
           <detail>
              <ns:SystemFault xmlns:ns="http://www.sap.com/webas/710/
    soap/runtime/abap/fault/system/">
                   <Host>Provider</Host>
                   <Component>SECURITY</Component>
                   <ChainedException>
                      <Exception_Name>CX_SOAP_CORE</Exception_Name>
                      <Exception_Text>SRT: Authorization denied</Exception_Text>
                   </ChainedException>
                </ns:SystemFault>
         </detail>
    </soap-env:Fault>
    for the service and point I have activated http authentification and checked the box user-id/password (authentification method is sapsp:HTTPBasic)
    by the way I did not configure a J2EE host and port in the system settings of SOAMANAGER. is this a must? where and why do I need this for?
    thanks for any help!

    hi everybody.
    when calling the web service/abap proxy with an user having SAP_ALL everything works.
    for me this seems curious because before we gave me all the user roles mentioned in sap help and the tutorials:
    SAP_BC_WEBSERVICE_ADMIN
    SAP_BC_WEBSERVICE_ADMIN_BIZ
    SAP_BC_WEBSERVICE_ADMIN_TEC
    SAP_BC_WEBSERVICE_CONSUMER
    SAP_BC_WEBSERVICE_DEBUGGER
    SAP_BC_WEBSERVICE_OBSERVER
    SAP_BC_WEBSERVICE_SERVICE_USE
    which role is missing which is necessary for using web services via soap? does anybody know?

  • Problems testing a Connection to the OCI8 Driver for Oracle 8.1.7  from the Command Line

    Hello,
    I am configuring a JDBC Connection to an Oracle 8.1.7 from WebLogic 7.0.0. I want
    to use an OCI driver.
    When I am testing the driver, I execute the command (From DOS console in Win 2k
    Professional):
    java utils.dbping ORACLE myUser myPassword myDB
    But it produces the next error:
    Error encountered:
    java.sql.SQLException: System.loadLibrary(weblogicoci38) threw java.lang.Unsatis
    fiedLinkError: C:\bea\weblogic700\server\bin\oci817_8\weblogicoci38.dll: No se
    e
    ncontr¾ el proceso especificado
    at weblogic.jdbc.oci.Driver.loadLibraryIfNeeded(Driver.java:218)
    at weblogic.jdbc.oci.Driver.connect(Driver.java:94)
    at java.sql.DriverManager.getConnection(DriverManager.java:517)
    at java.sql.DriverManager.getConnection(DriverManager.java:146)
    at utils.dbping.main(dbping.java:175)
    Also, a window appears and displays the next message:
    "It does not find the entry point to procedure OCILobLocatorAssign" in the dll
    OCI.dll"
    My environment variable PATH is defined as follows:
    Path=C:\bea\weblogic700\server\bin;
    C:\bea\jdk131_02\bin;C:\bea\weblogic700\server\bin\oci817_8; C:\orant\bin;C:\local\bin;c:\DMI\WIN32\BIN;H:\AURORA\BIN;C:\WINDOWS;
    C:\WINDOWS\system32;C:\WINDOWS\system32\WBEM
    Can you help me !
    In advance thanks !
    - Ricardo (Bogota-Colombia-South America).

    Do you see a folder lib32 instead. Otherwise you will have to install Oracle
    client on the machine to use OCI.
    sree
    "Ricardo De la Rosa" <[email protected]> wrote in message
    news:[email protected]...
    >
    Sree,
    In this moment I don't have an environment variable ORACLE_HOME, and Ihave two
    candidate directories to be the value of this variable: The firstcandidate directory
    is C:\orant, and C:\orant\bin exists but C:\orant\lib doesn't exist.
    The second candidate is C:\local; and C:\local\bin exists, butC:\local\lib doesn't
    exist, and C:\local\oci80\lib\borland\oci.lib & andC:\local\oci80\lib\borland\ociw32.lib
    and C:\local\oci80\lib\msvc\oci.lib & andC:\local\oci80\lib\msvc\ociw32.lib
    >
    >
    I tested the conection with both candidates but it doesn't work withanyone.
    >
    Sree, do you know what happen ??
    Thank you !!
    - Ricardo (Colombia-South America).
    "Sree Bodapati" <[email protected]> wrote:
    Hi Ricardo,
    You need to have a environment variable ORACLE_HOME set and then make
    sure
    you have "%WL_HOME%\bin\oci817_8; %ORACLE_HOME%\bin;ORACLE_HOME%\lib"
    in the
    path .
    (replace WL_HOME with what ever your path to the WLS bin folder is)
    hth
    sree
    "Ricardo De la Rosa" <[email protected]> wrote in message
    news:[email protected]...
    Hello,
    I am configuring a JDBC Connection to an Oracle 8.1.7 from WebLogic7.0.0.
    I want
    to use an OCI driver.
    When I am testing the driver, I execute the command (From DOS consolein
    Win 2k
    Professional):
    java utils.dbping ORACLE myUser myPassword myDB
    But it produces the next error:
    Error encountered:
    java.sql.SQLException: System.loadLibrary(weblogicoci38) threwjava.lang.Unsatis
    fiedLinkError:
    C:\bea\weblogic700\server\bin\oci817_8\weblogicoci38.dll:
    No se
    e
    ncontr¾ el proceso especificado
    at
    weblogic.jdbc.oci.Driver.loadLibraryIfNeeded(Driver.java:218)
    at weblogic.jdbc.oci.Driver.connect(Driver.java:94)
    at java.sql.DriverManager.getConnection(DriverManager.java:517)
    at java.sql.DriverManager.getConnection(DriverManager.java:146)
    at utils.dbping.main(dbping.java:175)
    Also, a window appears and displays the next message:
    "It does not find the entry point to procedure OCILobLocatorAssign"in the
    dll
    OCI.dll"
    My environment variable PATH is defined as follows:
    Path=C:\bea\weblogic700\server\bin;
    C:\bea\jdk131_02\bin;C:\bea\weblogic700\server\bin\oci817_8;C:\orant\bin;C:\local\bin;c:\DMI\WIN32\BIN;H:\AURORA\BIN;C:\WINDOWS;
    C:\WINDOWS\system32;C:\WINDOWS\system32\WBEM
    Can you help me !
    In advance thanks !
    - Ricardo (Bogota-Colombia-South America).

  • Problem testing EMail adapter

    Hi All, I have deployed EMail adapter succesfully. I am trying to test that. Could
    anybody tell How to test this ? what i want to know what is the XML input to test
    the email adapter application. ? Thanks in advance.

    This is how I configured
    Configure the JMS Queue Resource (Jndi name=>>> jms/demoMsgQueue)
    Configured the JMS Connection Factory Resource
    configured the demoCF JMS connection factory
    Created a JMS Adapter Connection Pool
    Associate the Connection Pool with the Connection Factory
    Redeployed the JMS Adapter with the New Resources
    How I can do bouning app server?

  • Problem testing JMS adapter

    I have create and configure JMS resource but still i am getting this exception
    Exception occured when binding was invoked. Exception occured during invocation of JCA binding: "JCA Binding execute of Reference operation 'sendMessage' failed due to: ERRJMS_ERR_CR_QUEUE_PROD. ERRJMS_ERR_CR_QUEUE_PROD. Unable to create Queue producer due to JMSException. Please examine the log file to determine the problem. ". The invoked JCA adapter raised a resource exception. Please examine the above error message carefully to determine a resolution.
    Fault
    BINDING.JCA-12563 Exception occured when binding was invoked. Exception occured during invocation of JCA binding: "JCA Binding execute of Reference operation 'sendMessage' failed due to: ERRJMS_ERR_CR_QUEUE_PROD. ERRJMS_ERR_CR_QUEUE_PROD. Unable to create Queue producer due to JMSException. Please examine the log file to determine the problem. ". The invoked JCA adapter raised a resource exception. Please examine the above error message carefully to determine a resolution.
    Kindly help

    This is how I configured
    Configure the JMS Queue Resource (Jndi name=>>> jms/demoMsgQueue)
    Configured the JMS Connection Factory Resource
    configured the demoCF JMS connection factory
    Created a JMS Adapter Connection Pool
    Associate the Connection Pool with the Connection Factory
    Redeployed the JMS Adapter with the New Resources
    How I can do bouning app server?

Maybe you are looking for