Weird Error with imported (streamed) FLV

The error being thrown is "The video player is in the connection error state. It enters this state when a video stream attempted to load but was unsuccessful. There are two possible reasons for the error: no connection to the server or the stream was not found."
The reason it's weird is that the video plays just fine when the program is run.
The error only pops up at random, generally when I'm doing other things (editing objects, drawing, selecting objects, navigating the timeline) and not when I'm actually compiling or running the application.
The video is being streamed locally, so there's no issue connecting to a server, and the file exists, so it's not missing.
WTH?

I didn't say I've never done a drag/drop.... After learning how to use that option many years ago, I've just never chosen to use that method for any of my Web videos. The drag/drop as well as the Import Video wizard are very "Flash 101ish" and often present problems for inexperienced users..... as you are seeing.
When I trouble shoot problems posted here I try to recreate the exact steps used in an attempt to replicate the problem so it can be solved. While you might find that frustrating to describe... it often resolves the problem.
So I would venture to say that I have a little more experience than you in all aspects of Flash video.
You may have missed it in my earlier response but I said that I could not replicate your problem (following the steps you describe), I was always presented with the option to choose between streaming server and local file.... which the links above pointed out.
I stick by the reason I gave for the error, Flash is assuming you are attempting to connect to a streaming server and because no RTMP URL is listed, the connection always fails... hence the error message
There was also the suggesting to place the FLVPlayback on the stage manually and set contentPath.... bypassing any Import Wizard problems..
If those offers/suggestions don't satify you... oh well, I'll move on
Best wishes,
Adninjastrator

Similar Messages

  • Weird error with taglib

    Hello, I'm getting this weird error. Sometimes when I'm using taglibs I get org.apache.jasper.JasperException: /mypage.jsp(11,4) According to TLD or attribute directive in tag file, attribute value does not accept any expressions. I refresh the page, and it displays, refresh again and the error is there again, this keeps happening randomly.
    In this post I found a solution http://forum.java.sun.com/thread.jspa?threadID=683007&messageID=9423383, changing the taglib to the "_rt" works, but some guy says this is not a preferred solution.
    This is my code without the "fix":
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    <%@taglib uri="http://java.sun.com/jstl/fmt" prefix="fmt"%>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <html>
        <head>
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
            <title><fmt:message key="appTitle"/></title> 
        </head>
        <body>      
            <h3><fmt:message key="news"/></h3>
            <c:forEach items="${model.news}" var="news">
                <p>
                    <strong><c:out value="${news.title}"/></strong> - <i> <fmt:formatDate value="${news.daten}" pattern="dd/MM/yyyy"/> </i> - <a href="<c:url value="deleteNews.htm?newsId="/><c:out value="${news.id}"/>">Delete</a> - <a href="<c:url value="editNews.htm?newsId="/><c:out value="${news.id}"/>">Edit</a> <br>
                    <c:out value="${news.content}"/><br>
                    <small>Source:<c:out value="${news.source}"/></small>
                </p>
            </c:forEach>       
            <a href="<c:url value="addNews.htm"/>">Add News</a>       
        </body>
    </html>How can I fix this issue using the normal taglibs?
    Thanks in advance

    You seem to be mixing the versions of JSTL taglibs in your page.
    For the c taglib you are using the JSTL1.1 URI
    For the fmt taglib you are using the JSTL1.0 URI
    Change the import line to use the JSTL1.1 URI, and you should be set
    <%@taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
    (note the subtle change with /jsp in there)
    As I mentioned in the other post, use of the _rt taglib should be restricted to JSP1.2 containers (eg Tomcat4)
    In JSP2.0 containers (Tomcat5+) you should use JSTL1.1, and it should work perfectly, provided your web.xml file is up to date.
    Some other posts on the subject you might find useful, that explain why the JSTL1.0 tags did not accept runtime expressions:
    http://forum.java.sun.com/thread.jspa?threadID=628740
    http://forum.java.sun.com/thread.jspa?threadID=629437&tstart=0
    Cheers,
    evnafets (some guy)

  • Problems with FMS2 streaming flv through xml playlist

    I've been testing for the first time FMS2 and has been quite
    a pain to make it work, I've been able to stream a single flv file
    but now that I've tried to stream multiple flv using a xml playlist
    (using the same example provided in
    http://www.adobe.com/devnet/flash/articles/video_player.html)
    and it wont work.
    I have IIS and FMS2 in the same computer.
    In the example provided by Adobe was an error in
    VideoSource.as in line originally was:
    my_FLVPlybk.contentPath = nav.attributes.url + "/_definst_/"
    + stream.attributes.name+".flv";
    And had to change "/_definst_/" to "_definst_/" to make it
    work, since path are:
    rtmp://localhost/videsource/_definst_/fish.flv for example
    and not:
    rtmp://localhost/videsource//_definst_/fish.flv
    Once that was solved and tested it works locally (in the same
    machine where the server is installed) but when testing from
    another computer it doesn't stream any videos.
    All the files are place the way it supposed to be in:
    \applications\videosource\streams\_definst_ (here are the
    videos)
    \applications\videosource (here is the main.asc)
    Then in IIS:
    \Inetpub\wwwroot\playlist (playlist-demo-1.xml,
    VideoThumb.as, VideoSource.as, VideoSource2.html, VideoSource2.swf,
    SteelExternalAll.swf).
    When tested local with
    http://localhost/playlist/VideoSource2.html
    or
    http://localhost/playlist/VideoSource2.swf
    works, but
    when trying from another computer in the same network or
    outside with
    http://my_server/playlist/VideoSource2.html
    wont stream like I said before.
    In the single flv stream (without xml playlist) I seem to be
    able to stream, just made a .fla with a FLVPlayback component
    pointing to: rtmp://localhost/test/_definst_/test.flv
    And trying
    http://my_server/test.html
    works fine.
    I've done the following:
    1. Added a MIME type to IIS for .flv and .swf
    2. Vhost.xml is open for all networks
    (<Allow>All</Allow>)
    3. Change the Global Security Settings for the Flash Player
    to access the .flv on the IIS server.
    4. No firewalls activated (for testing purposes).
    And it works with the single .flv stream but not with the
    xml playlist and I've run out of ideas or what to do, so I'm in
    need of anyone who can help me out and give me some insight.
    Thanks in advance.

    Sounds like a Flash Player security issue because you are
    running from a desktop. One of the items that can be different
    between Test Movie and a published test is security and any
    internet protocol. Flash Security errors fail silently.
    Look at
    NetConnection.connect
    method for the security warnings and references.
    If you plan to deploy from a web server, test there and it
    will likely work.

  • Weird error with sync

    I have an older 10GB iPod with the buttons across the top. I am trying to sync it with my computer and it starts to and then brings up a weird error message. It says that it can not be done because the folder can not be found. I dont even get a chance to restore my ipod because as soon as i plug it in it starts to do it and then brings up the message and ejects and shuts off the ipod. Please help.

    Just wanted to add some more info. I have done a proper restart of my iPad. I have also restarted first iTunes (no difference) and then the computer. No difference.
    Then I went into Preferences and deleted the device backup for my iPad. Plugged the iPad back in and it did a new backup VERY quickly. Unplugged, plugged back in and synced again... AND it's still installing all the apps (which are already on my iPad)... AGAIN
    I really don't know what to try next...

  • Weird error of load streaming sound

    I developed Listening Internet Radio Program.
    It`s very simple.
    var sound:Sound=new Sound();
    var url:String='http://211.43.215.158:8388'
    Security.loadPolicyFile(url+'/crossdomain.xml');
    sound.addEventListener('progress',sound_progress)
    function sound_progress(e:Event):void{
      sound.play();
              sound.removeEventListener('progress',sound_progress)
    sound.load( new URLRequest(url) )
    And this works very very fine.
    But I got some weird error.
    This program works in Local.
    This program works in Internet Explorer 6.
    But This program doesn`t work in Google Chrome.
    same swf file, same website, same html.....
    But why not works in Google Chrome???????????????????????????????????????

    hi
    u can configure enveroment variables using oracle entriprice manager
    try to add env "PAHT" to server properties and set this to ur libs
    Do not forgrt to add nessary paths to this env .Okay ......
    this may work ...
    Asnka

  • Object reference not set to an instance of an object error with Import data

    Hi Experts,
    We are using BPC 7.5M with SQL Server 2008 in Multiserver environment, I am getting an error "Object reference not set to an instance of an object." while running Import data package, earlier we use to get this error sometime(once in a month) but it goes away if we reboot the application server but this time I have rebotted the Application server multiple times but still getting the same error.
    Please Advice.
    Thanks & Regards,
    Rohit

    Hi Rohit,
    please see the sap note 1615837, maybe this help you.
    Best regards
    Roberto Vidotti

  • Error with import of new compiled java package

    Hi,
    in order to change some code in the java classes of the packages stored in the VV2-Content, 1.0 of SAP -> http://sap.com/xi/ISU-IDEX-GE/VV2 -> Mapping Objects -> Imported Archive, I exported all packages in this folder, extracted them, decompiled some classes (using jad), in which I would like to change some code, and imported these classes associated with other exported packages in a new project of eclipse. after changing the code and successfully compiling these java classes (with no error), I exported the ".class" from eclipse, replaced the old ".class" in the packages with the newly compiled ones(in a zip file) and at the end imported the changed packages (in zip files) in the folder "Imported Archive". After saving and activating the change, I sent an IDOC from R3 system to the XI system for test. In the monitor of the XI system, there was an error, which is
    "Inkompatible Versionen von Klassen (Linkage Error)" (in English "incompatible versions of classes (linkage error)"). Can anyone tell me, how I can do with this error? Thanks.

    Vishal,
    thanks for your reply. Actually I did change some code in the decompilied class "XEdixml2EdiConverter". I think this class does nothing with mapping(transformation), but it converts the tranformed edixml to final edifact. Can I test it in the repository as you said?
    regards
    Bin

  • Having issues with importing a FLV from Adobe Connect. Either the file is too large to import, the file corrupt or the sound will not play. In the Flash Pro 5.5 version it can only be viewed with sound but will not import so it cannot be converted, the ne

    Anyone have a clue how I can open or convert the Adobe Connect FLV file?

    I'm searching for an answer to almost the same exact problem, using almost the same exact hardware and software. Has an answer been found?
    The files that I'm trying to burn come from eMusic, and they are formatted mp3. Recently, (after the iTunes update to 9.2.3?,) they would not drag and drop from iTunes into Toast. From several different discussions I've tried working around this by dragging to the desktop first then dragging and dropping to Toast, going to Toast from a programmer's homemade help window, " iToons," and today, after talking with Apple support, going directly to Toast from my eMusic folder. Alas, all recordings do not perform like they use to. Sometimes they play and sometimes not. There is one I managed, that is listenable, but sometimes I have to put it in my car stereo over and over again as it gets ejected with an error code, sometimes, finally it takes it... Some of the recordings on other disks I've burned are not clean - they have white-noise sounds creeping in... I use to have none of these problems. One time as I was listening to a CD that managed to play, and it just stopped playing... Is there an answer out there to get back to how it use to be? Thanks for you help.

  • Eclipse plugin & errors with imports

    I've been using the Eclipse plugin and it's working well. Then I added an
    import to my class, and now the Kodo enhancer gives me an error (error in
    build) but it's not specific. I removed the import and it goes away. I
    then tried adding one line to my class:
    private static org.apache.log4j.Logger log =
    org.apache.log4j.Logger.getLogger(URLMonitor.class.getName());
    And I get the error. When I run jdoc from a windows prompt it works fine.
    I'm using Eclipse 2.1 build
    200302190010.
    Also, when running jdoc by hand with the -properties flag, I get:
    Exception in thread "main" java.lang.IllegalArgumentException: The specified
    cla
    ss "-properties" could not be loaded. javax.jdo.JDOFatalUserException:
    java.lan
    g.ClassNotFoundException: -properties
    NestedThrowables:
    java.lang.ClassNotFoundException: -properties
    But it still seems to pick up my properties file and it works.

    Thanks for helping!
    in the windows->preferences->Kodo Preferences, my parameters are below:
    License key: [license key censored by [email protected]], evalud key from email
    Connection driver: mysql-connector-java-3.0.6-stable-bin.jar
    Connection URL: jdbc:mysql://localhost:3306/MONSOON
    connection username: root
    connection password: foobar
    Dictionary class: com.mysql.jdbc.Driver
    "Stephen Kim" <[email protected]> wrote in message
    news:[email protected]...
    How did you configure your Preferences panel? The Eclipse plugin
    doesn't use a kodo.properties file. You should specify your driver
    name, not the jar, in the preferences page.
    Charle Wang wrote:
    I think I have similar problem as followed: I use eclipse2.02 + kodo
    2.4.2 +
    Windows 2000
    By following dev_doc, I imported petshop project. The menu->" Enhancer"part
    works fine, and build successed, but for the file Animal.jdo, "kodo->Addto
    Database" failed. Error message is bellow: (I even can not copy+pasteit)
    >>
    <error>-SchemaTool Failed. The message included was:
    {0}
    javax.jdo.JDOFatalUserException:java.lang.ClassNotFoundException:mysql-conne
    ctor-java-3/0/6-stable-bin/jar
    NestedThrowables:
    java.lang.ClassNotFoundException:mysql-connector-java-3/0/6-stable-bin/jar
    >>
    <info>-Done
    1. I remove the possiblity of the JDBC driver issues. because I use same
    driver and parameters for Quantum_DB plugin. it works fine. I canmanipulate
    the whole mySQL tables.
    2. part of plugin.xml is as bellow:
    <?xml version="1.0" encoding="UTF-8"?>
    <plugin id="com.solarmetric.kodo"
    name="%name"
    version="1.0.0"
    provider-name="%provider-name"
    class="com.solarmetric.modules.integration.eclipse.KodoPlugin">
    <runtime>
    <!--
    Put your jdbc driver in this directory and enter the filename
    here (and configure in Preferences the changes you make) -->
    <library name="mysql-connector-java-3.0.6-stable-bin.jar"/>
    <!-- library name="jdbc-hsql-1_7_0.jar"/ -->
    <!-- ########### do not modify below ######### -->
    3. kodo.properties is bellow:
    #Thu Nov 07 12:32:12 EST 2002
    com.solarmetric.kodo.LicenseKey=[license key censored by
    [email protected]
    com.solarmetric.kodo.PersistenceManagerClass=PetShopPersistenceManager
    com.solarmetric.kodo.impl.jdbc.SynchronizeSchema=true
    javax.jdo.PersistenceManagerFactoryClass=com.solarmetric.kodo.impl.jdbc.JDBC
    PersistenceManagerFactory
    javax.jdo.option.ConnectionDriverName=com.mysql.jdbc.Driver
    javax.jdo.option.ConnectionPassword=foobar
    javax.jdo.option.ConnectionURL=jdbc:mysql://localhost:3306/MONSOON
    javax.jdo.option.ConnectionUserName=root
    javax.jdo.option.MaxPool=0
    4.I have spent a whole day, still can not make the thing move. Did Imiss
    some tip? or .. ?
    "Petr" <[email protected]> wrote in message
    news:[email protected]...
    Hi Guys,
    Loosely related question, is there any chance that build of an
    individual
    class will some day trigger enhancement where appropriate? Currently it
    seems that only full project re-build does the trick ...
    It is a minor thingy, probably in 'nice to have' category.
    Cheers,
    Petr
    Stephen Kim wrote:
    Can you specify what version of Kodo you are using?
    java com.solarmetric.kodo.conf.JDOVersion
    If you enhance using the wrench icon/menu, do you get a more verbose
    logging in the Kodo view?
    On Mon, 03 Mar 2003 15:33:58 +0100, Michael Mattox wrote:
    I've been using the Eclipse plugin and it's working well. Then I
    added an
    import to my class, and now the Kodo enhancer gives me an error (errorin
    build) but it's not specific. I removed the import and it goes away.I
    then tried adding one line to my class:
    private static org.apache.log4j.Logger log =
    org.apache.log4j.Logger.getLogger(URLMonitor.class.getName());
    And I get the error. When I run jdoc from a windows prompt it worksfine.
    I'm using Eclipse 2.1 build
    200302190010.
    Also, when running jdoc by hand with the -properties flag, I get:
    Exception in thread "main" java.lang.IllegalArgumentException: Thespecified
    cla
    ss "-properties" could not be loaded.
    javax.jdo.JDOFatalUserException:
    java.lan
    g.ClassNotFoundException: -properties
    NestedThrowables:
    java.lang.ClassNotFoundException: -properties
    But it still seems to pick up my properties file and it works.--
    Stephen Kim
    [email protected]
    SolarMetric, Inc.
    http://www.solarmetric.com
    Stephen Kim
    [email protected]
    SolarMetric, Inc.
    http://www.solarmetric.com

  • Error with Object stream

    Hi ,
    I have to transfer a file using socket.
    Iam using java.util.zip to zip file the file to be transfered..
    At client,
    Iam getting the ZipOutputStream from the file to be transfered and wrtiing it to the SocketOutputStream
    At Server,
    Iam getting the ZipInputStream and extracting the zip file to get the original file.
    This is working fine.
    At the end of sending the zip file iam sending an object to acknowledge the server that data is transfered completely.
    At Client,
    iam getting the OutputStream from the socket and iam creating an ObjectOutputStream from that. Iam writing the Object to be transfered.
    At Server,
    Iam getting and inputStream from the socket. and when creating an objectInputStream over it iam getting the Invalid Stream Header Exception.
    Programs are as follows . . . .
    TestClient.java
    public class TestClient {
    public static void main ( String args[]) throws Exception {
    if (args.length < 2) {
    throw new Exception ("First arg is to be IP Addr." + "\n" +
    "and then the files to repliacte with path separated by blankspaces");
    String ip = new String();
    ip = args[0];
    String [] filenames = new String [(args.length - 1)];
    for (int i = 1; i < args.length; i ++) {
    filenames[i-1] = args;
    Socket s = new Socket();
    s = new Socket(ip, 4678);
    try {
    byte[] buf = new byte[1024*1024];
    OutputStream os = s.getOutputStream();
    ObjectOutputStream oos = null;
    ZipOutputStream out = new ZipOutputStream(os);
    for (int i=0; i<filenames.length; i++) {
    File f = new File(filenames[i]);
    FileInputStream in = new FileInputStream(f);
    ZipEntry ze = new ZipEntry(filenames[i]);
    ze.setSize(f.length());
    Date d = new Date(f.lastModified());
    System.out.println(d);
    ze.setTime(f.lastModified());
    out.putNextEntry(ze);
    System.out.println("Finished Writing zipEntry: " + ze +
    " with size: " + ze.getSize());
    int len;
    if (in.available() == 0) {
    System.out.println("No data is available in the " +
    "FileInputStream");
    continue;
    while ((len = in.read(buf)) > 0) {
    // System.out.println("Writing " + len +
    // "bytes of data into stream");
    out.write(buf, 0, len);
    in.close();
    out.closeEntry();
    out.finish();
    oos = new ObjectInputStream(s.getOutputStream());
    obj = new String("zipping");
    oos.writeObject(obj);
    } catch (IOException e) {
    e.printStackTrace();
    TestServer.java
    public class TestServer {
    public static void main ( String a[]) throws Exception {
    ServerSocket server = new ServerSocket(4678);
    while ( true ) {
    try {
    System.out.println( " Waiting for client ..." );
    Socket socket = server.accept();
    System.out.println( " Socket :: --> " + socket );
    InputStream is = socket.getInputStream();
    if (is == null ) {
    System.out.println("Socket Input Stream is null. Skipping");
    continue;
    while (is.available() <= 0 ) {
    System.out.println("No data vailable in Socket Input Stream");
    ObjectInputStream ois = null;
    ZipInputStream zis = new ZipInputStream(is);
    int len;
    System.out.println("conn status :: " + socket.isConnected());
    System.out.println("Reading from Zip Stream");
    try {
    byte[] buf = new byte[1024*1024];
    // while (zis.available() != 0) {
    ZipEntry ze = zis.getNextEntry();
    if (ze == null) {
    System.out.println("zipEntry is null. Exiting loop");
    break;
    System.out.println("Got a zipEntry: " + ze);
    long lastModified = ze.getTime();
    File fname = new File(ze.getName());
    DataOutputStream dos =
    new DataOutputStream(new FileOutputStream(fname));
    while (zis.available() <= 0 ) {
    System.out.println(
    "No data vailable in Zip Input Stream. Waiting...");
    long size = 2731;
    System.out.println("Going to read " + size + " bytes...");
    if((len = zis.read(buf)) >= 0) {
    System.out.println("Read data len: " + len);
    dos.write(buf,0,len);
    System.out.println("Done reading zipped data");
    zis.closeEntry();
    dos.close();
    fname.setLastModified(lastModified);
    ois = new ObjectInputStream(socket.getInputStream(socket.getInputStream());
    if (ois == null) {
    System.out.println("Object inputStream is null");
    while ((ois.available()) <= 0) {
    System.out.println("Nothing is there in object outputStream");
    System.out.println("available in object inputStream is " + ois.available());
    obj = ois.readObject();
    System.out.println("Object read is " + obj);
    } catch (Exception e) {
    System.out.println("couldn't read completely");
    e.printStackTrace();
    } catch (Exception e) {
    e.printStackTrace();
    Iam getting the exception
    java.io.StreamCorruptedException: invalid stream header
    at java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:737)
    at java.io.ObjectInputStream.<init>(ObjectInputStream.java:253)
    at TestServer.main(TestServer.java:91)
    How to fix this exception
    With Regards
    Vara Prasad

    you're right da.futt. This is what I'm trying to get at. I wrote a program that has the zips and the objects matched up properly.
    package mypackage;
    import java.io.*;
    import java.util.zip.*;
    public class ziptest {
        static class MyBean implements Serializable {
            String beanName = "test";
        public static void main(String[] args) throws Exception {
            MyBean myBean = new MyBean();
            FileOutputStream fos = new FileOutputStream("mybean.zip");
            ZipOutputStream zos = new ZipOutputStream(fos);
            zos.putNextEntry(new ZipEntry("myBean.ser"));
            ObjectOutputStream oos = new ObjectOutputStream(zos);
            oos.writeObject( myBean );
            oos.close();
            FileInputStream fis = new FileInputStream("mybean.zip");
            ZipInputStream zis = new ZipInputStream(fis);
            ZipEntry zipEntry = null;
            while( (zipEntry = zis.getNextEntry()) != null ) {
                System.out.println("processing file'" + zipEntry.getName() +
               ObjectInputStream ois = new ObjectInputStream(zis);
               MyBean m = (MyBean)ois.readObject();
                System.out.println("file contains property '" +
                    m.beanName + "'");
            zis.close();
    }

  • Weird Error with open dataset

    I am trying to read a .csv file using WS_upload. Please see the foll code:
    IF FILE1+0(1) <> '\'.
    CALL FUNCTION 'WS_UPLOAD'
         EXPORTING
             FILENAME = dataset
              FILENAME = FILE1
             FILETYPE = 'DAT'
              FILETYPE = 'ASC'
         TABLES
              DATA_TAB = rec.
    ENDIF.
    OPEN DATASET FILE1 IN TEXT MODE for INPUT.
    IF sy-subrc = 0.
      DO.
        READ DATASET FILE1 INTO rec2.
        IF sy-subrc <> 0.
          EXIT.
        ELSE.
         WRITE / rec2.
          rec-INFO = rec2.
          APPEND REC.
        ENDIF.
      ENDDO.
    ENDIF.
    The system is behaving different when I run in foreground on our test server and it gives error while running on produciton server. The open dataset block does not execute on the test server but on production server it does. And it ahs suddenly started doing it with any CSV file.. including the ones which earlier it did not ahve any problem with. Because the open dataset block executes on the production server it adds around 10000 lines to the file... the file ofcourse contain all garbage values for eg gwrd.exe, instance.lst , car.exe, dll etc. I have no clue why this has started happening suddenly when it was not happeing 1 hour before.
    please help/
    thanks.

    Hi Pranav,
    For the first IF condition where you determine whether to use WS_UPLOAD or to call OPEN DATASET.
    What will happen if the first IF condition is satisfied? It will trigger the WS_UPLOAD logic and after that it will also try to trigger the OPEN DATASET logic rite?
    Did u check if the program is trying to trigger the OPEN DATASET also? Coz if its trying to call OPEN DATASET after trying to call WS_UPLOAD it might either end up in error or might try to read some junk.
    Try to use the MESSAGE option of OPEN DATASET command and see if there is any error message issued.
    Hope this helps
    Cheers
    VJ

  • Weird errors with css11501s

    Hello all,
    A company I work for is hosting an application at a popular managed hosting provider and are using the css11501s to do layer-5 load balancing between a set of application servers.
    We are seeing a strange error that seems to occur when the following conditions are satisfied:
    1) The client of the application is running Internet Explorer (which separated HTTP headers with a \r\n as opposed to a single \n)
    2) The client is using a connection with a low mtu (thus there is a good deal of fragmentation and the http request fragments somewhere in the headers)
    Assume we have a packet which reaches the css with a trailing carriage return ('\r') charater, the following newline being at the begining of the next continuation packet, the CSS is errouniosly appending a \n\r\n to the packet before combining it with the continuation and sending it on to the server. For example, I'm currently looking at a dump where we recieve a packet which ends in this line
    Connection: Keep-Alive\r
    and the subequent packet's http section begins with
    \nCache-Control... etc
    This is being modified by the css and sent through as one packet with the follwing structure:
    Connection: Keep-alive\r\n
    \r\n
    Cache-Control:... etc
    Which is completely screwing up our application for obvious reasons. Has anybody else experienced this? I'm no expert on this piece of hardware but it seems our managed host isn't either...

    I just did the test and there is no problem.
    I sent the exact same lines as you indicated above and it works fine.
    Also, FYI, the \r\n is mandatory per HTTP RFC.
    So all browsers send the \r\n, not just IE.
    Regards,
    Gilles.

  • HL7 schema modification error with imported schema namespace

    I have created a variant of one of the out of the box HL7 schemas.  The changes were made to the related Segments schema.  I have a custom namespace identified on both the "master" schema and one on the modified schema which is being
    imported into the "master".  I have verified that the namespace of the imported schema matches the namespace identified in the import statement of the master schema.  However, I am getting the following error and I'm not sure how to proceed.
    There was a failure executing the receive pipeline: "MyProject, MyProject.Pipelines, Version=1.0.0.0, Culture=neutral, PublicKeyToken=318a75bd6cda7207" Source: "BTAHL7 2.X Disassembler" Receive Port: "rp_ReceiveHL7" URI: "10.26.146.39:11001"
    Reason: The namespace attribute 'http://MyProject/2XHL7/MDM/Segments_23' of an import should be the same value as the targetNamespace 'http://microsoft.com/HealthCare/HL7/2X/2.3/Segments' of the imported schema. 

    Indeed, however, the namespace of the import is same as the value of the imported schema, but the namespace of neither schema is http://microsoft.com/HealthCare/HL7/2X/2.3/Segments,
    since I changed it when I made the modification.  That namespace does not exist in my project, nor does it exist locally, so i'm not sure where this error message is trying to lead me.

  • Error with import 'SAP_APPLICATION'

    Hello,
    I am writing an abap program and for some reason, when i import 'SAP_APPLICATION' the draw table is empty even if i have a selected document(s).
    1-Does anyone know why DRAW is empty ?
    2-And can you please explain to me what is 'SAP_APPLICATION' and who takes care of it.    I mean that in my program i am doing an import, but who is initially exporting data to 'SAP_APPLICATION' ?
    Thank You

    Hello Nishant,
    You are 100% correct. I am expecting SAP to do the exporting at sometime but i guess that it is not doing so. Here is what i am trying to do and i hope you can provide me with some insight.
    after performing search using cv04n, i want the user to select the file(s) that he/she want and then press on a specific button to activate my abap program. Now in my abap, i need to get the list of documents that have been selected by the user. In a similar abap program i have i saw that they are importing 'SAP_APPLICATION' and their draw table is not empty and it contains the selected document. But in my program when i import, my draw table is empty and thus i can not know the selected document. Any ideas on how to proceed ?
    regards
    Hassan

  • Weird error with AFP shares

    Hi everyone,
    I am using an OS X 10.8.5 Server with mostly 10.6.8 Clients. The clients usually open, save, copy to and from AFP shares provided by the server. Sometimes it happens that a client gets thrown out of a folder it is currently viewing on the AFP share. Once this behaviour starts it is near impossible to navigate down on the folder hierarchy since you get teleported back 1 to 3 levels. The number of levels depends on how fast you managed to drill down before you get thrown back. So an example would be:
    The client views folder A on /Volumes/AFPShare/Stuff/Folder1
    You start to navigate to a folder residing inside Folder1. If you now wait for a few seconds Finder will throw you out and back to Folder1. If you mangage to drill a few levels down really fast you might make it to /Volumes/AFPShare/Stuff/Folder1/data/more/here. But then you immediately are teleported back to /Volumes/AFPShare/Stuff/Folder1.
    From this point it won’t ever work again until you unmount and remount the share. Sometimes even a reboot of the client is neccessary. It happens with ~10 clients so it is not just one isolated client acting weird. On the Server side I did not notice anything wrong or weird happening. There are no backups, syncs or other tasks running on the server while this occurs. It seems to happen more often when you are using list view (cmd+2), but I have already seen it with column view, too.
    I’ve read about similar problems with SMB, but I am really stumped at where to look next. I already ruled out that it’s just with 1 client Mac. Deleting .DS_Store files did not help (not that I counted on that one).
    Another weird thing in addition to that is that sometimes the Finder shows folders twice or even more often. These are exactly named the same. Sometimes they disappear when you want to click on one of them.
    Any ideas anyone?
    Thanks
    Björn

    I believe I've seen a similar problem in my development.
    This was occurring in Beta 2 and I believe I had it happen in Beta 3 as well.
    This might be a way to repro the issue?
    1.  Have several collections.
    2.  Follow Robin's post to combine the collections into one:
    http://social.technet.microsoft.com/Forums/en-US/3c55b873-a0c7-4cc8-9bab-eaf809f62ab0/exporting-data?forum=projectsiena
    3. Change one of the underlying collections - add another column to the collection without using the function 'addcolumn' for example)
    What I saw happening is that the 'master collection' would say there was a problem.  To fix it, I simply had to drop off the last part of the function and then add it back (similar to what Ptr is saying in his posting). 
    The function in this example looked like this:  Collect(MasterBackup, Import1!Data) 
    By removing Import1!Data and then typing it back in the problem would be resolved.
    I hope this helps to add some insight -
    Thor

Maybe you are looking for