XML load using PL/SQL (XSU) problem with dtd file.

Hi,
I'm trying to load a xml file and receives this errormassage:
SQL> exec loadxml;
In Exception
ORA-29532: Java call terminated by uncaught Java exception:
oracle.xml.sql.OracleXMLSQLException: Error opening external DTD
'Businesscard.DTD'.
Any idea what I can change? Below is the things I've done and also how the xml file looks
and the dtd file.
Regards
Jorgen
CREATE DIRECTORY XML_DIR AS 'C:\XML';
CREATE TABLE XML_TEMP (key NUMBER, f_lob BFILE);
INSERT INTO XML_TEMP VALUES (1,BFILENAME('XML_DIR','TeleAdressVKI0209021728.xml'));
CREATE TABLE XML_DOC (
Key1 VARCHAR2(32),
Key2     VARCHAR2(32),
Key3 VARCHAR2(32),
Terminate     VARCHAR2(3),
LegalName     VARCHAR2(420),
PopName          VARCHAR2(420),
StreetName     VARCHAR2(60),
StreetNumber     VARCHAR2(10),
PostNumber     VARCHAR2(10),
PostAdress VARCHAR2(30),
CordinateLevel     VARCHAR2(32),
xCor          VARCHAR2(10),
yCor VARCHAR2(10),
PoiCategory VARCHAR2(32),
Telephone VARCHAR2(30));
CREATE OR REPLACE PROCEDURE loadxml AS
fil BFILE;
buffer RAW(32767);
len INTEGER;
insrow INTEGER;
BEGIN
SELECT f_lob INTO fil FROM xml_temp WHERE key = 1;
DBMS_LOB.FILEOPEN(fil,DBMS_LOB.FILE_READONLY);
len := DBMS_LOB.GETLENGTH(fil);
DBMS_LOB.READ(fil,len,1,buffer);
xmlgen.resetOptions;
insrow := xmlgen.insertXML('xml_doc',UTL_RAW.CAST_TO_VARCHAR2(buffer));
DBMS_OUTPUT.PUT_LINE(insrow);
IF DBMS_LOB.FILEISOPEN(fil) = 1 THEN
DBMS_LOB.FILECLOSE(fil);
END IF;
EXCEPTION
WHEN OTHERS THEN
DBMS_OUTPUT.PUT_LINE('In Exception');
DBMS_OUTPUT.PUT_LINE(SQLERRM(SQLCODE));
IF DBMS_LOB.FILEISOPEN(fil) = 1 THEN
DBMS_LOB.FILECLOSE(fil);
END IF;
end;
The xml file look like this:
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE Cards SYSTEM 'Businesscard.DTD'>
<Cards>
<Comment>TeleAdress initial</Comment>
<OldFile>xxxx</OldFile>
<NewFile>xxxx</NewFile>
<Card>
<Key1>95352</Key1>
<Key2>159651</Key2>
<Key3>3807868</Key3>
<Terminate>no</Terminate>
<Cardholder>
<LegalName>
<Name>
<Full>AXFOOD DIREKT AB</Full>
</Name>
</LegalName>
<PopName>
<Name>
<Full>WILLYS LEGPRIS AB</Full>
</Name>
</PopName>
</Cardholder>
<Location>
<Address>
<StreetInfo>
<StreetName>BAGARBYVDGEN</StreetName>
<StreetNumber>61</StreetNumber>
</StreetInfo>
<ZipCode>19134</ZipCode>
<City>SOLLENTUNA</City>
<Coordinate>
<Level>1</Level>
<xCor>1620480</xCor>
<yCor>6592717</yCor>
</Coordinate>
</Address>
<Business>
<POI>
<POIId>46</POIId>
<POIId>84</POIId>
</POI>
<InfoRow>
<Subscriptions>
<TelAddress>08 6234540</TelAddress>
</Subscriptions>
</InfoRow>
</Business>
</Location>
</Card>
<Card_Count>1</Card_Count>
</Cards>
the dtd file looks like this:
<!-- BusinessCard.dtd -->
<!-- History:          See end of this file -->
<!-- Description:      This DTD is used for transferring business cards-->
<!--               from TeleAdress Information AB to its customers. -->
<!--===================== Root Element ===========================-->
<!ELEMENT     Cards     (Comment,OldFile?,NewFile,Card*,Card_Count)>
     <!ELEMENT     Comment                         (#PCDATA)>
     <!ELEMENT     OldFile                         (#PCDATA)>
     <!ELEMENT     NewFile                         (#PCDATA)>
<!--===================== Card ============================-->
<!ELEMENT     Card     (Key1, Key2, Key3, Terminate, (RegNo?, Cardholder, Row*)?)>
     <!ELEMENT     Key1          (#PCDATA)>
     <!ELEMENT     Key2          (#PCDATA)>
     <!ELEMENT     Key3          (#PCDATA)>
     <!ELEMENT     Terminate     (#PCDATA)> <!-- Values can be yes or no-->
<!--====================== Cardholder ============================-->
<!ELEMENT     Cardholder     (RegNo, OrgType, LegalName, PopName?, Location)     >
     <!ELEMENT     RegNo          (#PCDATA)>
     <!ELEMENT     OrgType          (#PCDATA) >
<!--====================== RegName ==================================-->
<!ELEMENT     LegalName          (Name)>
<!--====================== PopName ==================================-->
<!ELEMENT     PopName          (Name+)>
<!--====================== Location ==================================-->
<!ELEMENT     Location          (Adress+, Unit*, Business)>
<!--====================== Unit ==================================-->
<!ELEMENT     Unit          (UnitNo, UnitName?, Status, HQ, SNI1?, SNI2?, SNI3?, WorkPlaceNo, WorkPlaceName?)>
     <!ELEMENT     UnitNo          (#PCDATA)>
     <!ELEMENT     UnitName     (#PCDATA)>
     <!ELEMENT     Status          (#PCDATA)>
     <!ELEMENT     HQ          (#PCDATA)> <!-- Values can be yes or no-->
     <!ELEMENT     SNI1          (#PCDATA)>
     <!ELEMENT     SNI2          (#PCDATA)>
     <!ELEMENT     SNI3          (#PCDATA)>
     <!ELEMENT     WorkPlaceNo     (#PCDATA)>
     <!ELEMENT     WorkPlaceName     (#PCDATA)>
<!--====================== Business ==================================-->
<!ELEMENT     Business          (POI?, InfoRow*)>
<!--====================== POI =======================================-->
<!ELEMENT     POI          (POIId+)>
     <!ELEMENT     POIId          (#PCDATA)>
<!--====================== InfoRow ===================================-->
<!ELEMENT     InfoRow          (Number,Heading*,Name?, Address?, Text?, HomePageAddresses?, EMailAddresses?, Subscriptions?)>
     <!ELEMENT     Number          (#PCDATA)>
<!--====================== Heading =================================-->
<!ELEMENT     Heading          (LevelNo, LevelName)>
     <!ELEMENT      LevelNo          (#PCDATA)>
     <!ELEMENT     LevelName     (#PCDATA)>
<!--====================== Name =================================-->
<!ELEMENT     Name          (Full,First?,Middle?,Last?)>
     <!ELEMENT      Full          (#PCDATA)>
     <!ELEMENT     First          (#PCDATA)>
     <!ELEMENT     Middle          (#PCDATA)>
     <!ELEMENT     Last          (#PCDATA)>
<!--====================== Address ==============================-->
<!ELEMENT     Address               (Type, StreetInfo?,TextBeforeZipCode?,ZipCode?,City?,AReg?,
                         Municipality?,County?,Country?,Coordinate?)>
     <!ELEMENT     Type               (#PCDATA)>     
     <!--====================== StreetInfo ==============================-->
     <!ELEMENT     StreetInfo          (PostBox?, StreetName?,StreetNumber?,Entrance?, CO?)>
          <!ELEMENT     PostBox               (#PCDATA)>
          <!ELEMENT     StreetName          (#PCDATA)>
          <!ELEMENT     StreetNumber          (#PCDATA)>
          <!ELEMENT     Entrance          (#PCDATA)>
          <!ELEMENT     Co               (#PCDATA)>
     <!ELEMENT     TextBeforeZipCode     (#PCDATA)>
     <!ELEMENT     ZipCode               (#PCDATA)>
     <!ELEMENT     City               (#PCDATA)>
     <!ELEMENT     AReg               (#PCDATA)>     
     <!ELEMENT     Municipality          (#PCDATA)>
     <!ELEMENT     County               (#PCDATA)>
     <!ELEMENT     Country               (#PCDATA)>
     <!--====================== Coordinate ==============================-->
     <!ELEMENT     Coordinate          (Level, xCor,yCor)>
          <!ELEMENT     Level          (#PCDATA)>
          <!ELEMENT     xCor          (#PCDATA)>
          <!ELEMENT     yCor          (#PCDATA)>
<!--====================== Text =================================-->
<!ELEMENT     Text          (InfoText+)>
     <!ELEMENT     InfoText          (#PCDATA)>     
<!--====================== HomePageAddresses =================================-->
<!ELEMENT     HomePageAddresses          (HomePage+)>
     <!ELEMENT     HomePage          (#PCDATA)>     
<!--====================== EMailAddresses =================================-->
<!ELEMENT     EMailAddresses          (EMail+)>
     <!ELEMENT     EMail          (#PCDATA)>     
<!--======================= Subscriptions ===========================-->
<!ELEMENT     Subscriptions     (ClassifiedCode?, Type, TelAddress, TextAfter?)     >
     <!ELEMENT     TelAddress     (#PCDATA)>
     <!ELEMENT     TextAfter     (#PCDATA)>
<!ELEMENT     Card_Count               (#PCDATA)>
<!--==============================================================-->
<!-- History:          2002-06-06 created this file -->
<!--                2002-07-04 Added Source on Coordinates -->
<!--               2002-08-15 Changed Source to Level -->
<!--               2002-08-15 Changed RegName to LegalName-->

I've got the same problem,
How to define the directory in witch the DTD is????
We need something like DBMS_XMLSave.setdirectoryDTD, that doesn't exist.
ben
ERREUR ` la ligne 1 :
ORA-29532: appel Java arrjti par une exception Java non interceptie :
oracle.xml.sql.OracleXMLSQLException: Error opening external DTD
'annoncesv22.dtd'.
ORA-06512: ` "SDEV.SIMPORT", ligne 205
ORA-06512: ` ligne 1

Similar Messages

  • JAXB problem with DTD file

    Hi All,
    I just started to learn JAXB and I come to a point in which I need to run xjc on a dtd file and jxs file. The problem is that is gives me an ERROR :
    "parsing a schema...
    [ERROR] The markup in the document preceding the root element must be well-forme
    d.
    line 1 of checkbook.dtd
    This is my dtd file:
    <!ELEMENT checkbook ( transactions, balance ) >
    <!ELEMENT transactions ( deposit | check | withdrawal )* >
    <!ELEMENT deposit ( date, name, amount )>
    <!ATTLIST deposit category ( salary | interest-income | other ) #IMPLIED >
    <!ELEMENT check ( date, name, amount, ( pending | void | cleared ), memo? )>
    <!ATTLIST check number CDATA #REQUIRED category ( rent | groceries | other ) #IMPLIED >
    <!ELEMENT withdrawal ( date, amount ) >
    <!ELEMENT balance (#PCDATA) >
    <!ELEMENT date (#PCDATA ) >
    <!ELEMENT name (#PCDATA) >
    <!ELEMENT amount (#PCDATA) >
    <!ELEMENT memo (#PCDATA) >
    <!ELEMENT pending EMPTY >
    <!ELEMENT void EMPTY >
    <!ELEMENT cleared EMPTY >
    What is the problem with it?
    Need your help and THANKS in advance
    A.B

    Try adding dom4j.jar (http://www.dom4j.org/) to your classpath and compiling with the -dtd switch. E.g.:
    xjc -dtd foo.dtd
    -- Ed

  • Problem is occurring in docx format; it is not printing "New Line" character in extracted txt using IFilter (offfiltx.dll) while with doc file IFilter (OffFilt.dll) is working fine.

    Problem: Problem
    is occurring in docx format; it is not printing “New Line” character in extracted txt using IFilter (offfiltx.dll) while with doc file IFilter (OffFilt.dll) is working fine.
    Environment: -
    Operating
    System:
    Windows XP SP2/7
    Language:
    C#
    MS
    Office Version: - MS Office 2007/2010/2013
    Problem
    Description: -
    We
    havedocx
    file with new line character, and we are processing this file in IFilter for extracting text, and it is giving output with concatenation of lines.
    Docx
    file format (Sample.docx)
    Test this music
    Word processing
    Testing docx file
    Output:
    - Test this music Word processing Testing docx file
    Requirement:
    - We
    have requirement to get following text in particular format with New Line from docx because client is using docx format only.
    Test this music
    Word processing
    Testing docx file
    Attempt:
    We have tried a lot after changing IFilter configuration,
    but it is not giving required output. Then we saved same file in doc format (Sample.doc), which is giving required output.
    Because it is application specific problem, kindly
    assist to resolve issue on priority. We are sharing IFilter paths for extracting text for doc and docx.
    Doc Filter Location: - %systemroot%\system32\OffFilt.dll
    Docx Filter Location: - <Drive>:\PROGRA~1\COMMON~1\MICROS~1\Filters\offfiltx.dll
    Code Snippet for setting property of filter
    internal static IFilter LoadAndInitIFilter(string fileName, string extension)
                IFilter filter
    = LoadIFilter(extension);
                if (filter
    == null)
                    return null;
                IPersistFile persistFile
    = (filter as IPersistFile);
                if (persistFile
    != null)
    persistFile.Load(fileName, 0);
                    IFILTER_FLAGS flags;
                    IFILTER_INIT iflags
    =
                                IFILTER_INIT.CANON_HYPHENS
    |
                                IFILTER_INIT.CANON_PARAGRAPHS
    |
                                IFILTER_INIT.CANON_SPACES
    |
                                IFILTER_INIT.APPLY_INDEX_ATTRIBUTES
    |
                                IFILTER_INIT.HARD_LINE_BREAKS
    |
                                IFILTER_INIT.FILTER_OWNED_VALUE_OK;
                    if (filter.Init(iflags,
    0, IntPtr.Zero, out flags)
    ==IFilterReturnCode.S_OK)
                        return filter;
                Marshal.ReleaseComObject(filter);
                return null;
    Kindly
    assist to resolve this issue and also let us know if any input is required.
    For any help, we would be really
    thankful.

    Kindly
    assist to resolve this issue and also let us know if any input is required.
    For any help, we
    would be really thankful.

  • Farmville will not load using Firefox, but it will with IE, for over a week now.

    Farmville will not load using Firefox, but it will with IE, for over a week now. I have cleared the cache and cookies multiple times, updated flash player, did a virus and malware scan, allowed java script, allowed mozilla in the Windows firewall, contacted Zynga multiple times, and yet Farmville still will not load using Firefox, my main and preferred browser. I'm very frustrated and want this fixed.

    Thanks for the advice cor-el, but if you would read the info I posted, I already did that, SEVERAL TIMES. That's not the solution unfortunately.

  • Using techtool pro found problem with "volume structure".  What to do?

    Using techtool pro found problem with "volume structure" and this was not fixed by TECHTOOL PRO.  What do you suggest I do?

    I would boot from my gray install disk (put the disk in the drive and restart holding down the C key). Then choose Utilities and run Disk Utility and click Repair Disk. As always, be sure you have a back up of your data first.

  • Is anyone using iPhoto having a problem with the slide show using shatter where it does not let you put a title over photo?

    Is anyone using iPhoto having a problem with the slide show using shatter where it does not let you put a title over photo? It use to work but it no longer lets you place a title over the opening photo.

    Is your signature still current?(iPhoto '08, OS X Mountain Lion (10.8.4))    I can confirm this for iPhoto '11; Shatter will only show the text slide title between the slides. Ken Burns and Classic theme can still be set to overlay the caption and title directly over the slides.

  • MacBook will not start. I have restarted with original CD. I have used Utilities and "no problem" with hard drive. I have reset PRAM. I have tried safe boot. Nothing is work. Gray screen with Apple logo and rotating wheel. Thanks for any suggestions!

    MacBook will not start. I have restarted with original CD. I have used Utilities and "no problem" with hard drive. I have reset PRAM. I have tried safe boot. Nothing is work. Gray screen with Apple logo and rotating wheel. Thanks for any suggestions!

    Snow Leopard is a Mac OS X version. You say that it's the version you have in your Mac (10.6.8). Do a back up of your files, format the hard drive (using Disk Utility) and reinstall again

  • What is the exact problem with this file?

    Hi all,
    There is an old form , which was not in use from many days.
    Now when we tried to run the form, i got the error saying "FRM-40734:Internal Error:Pl/SQL error occured.", in the login form.
    When i tried to open the fmb file in Oracle Forms Builder 6i, i got the following error:
    FRM-10102: Cannot attach PL/SQL library d2kwutil. This library attachment will be lost if the module is saved., but the fmb file got open.
    The login button has the following code:
    DECLARE
      UNAME VARCHAR2(30);
      --USER_ID PARAMLIST;
      V_USER APUSERMA.USER_NAME%TYPE;
      V_PASSWED APUSERMA.USER_PASSWD%TYPE;
    BEGIN
    select user_CD INTO :GLOBAL.USER_ID from apuserma 
    where user_CD = :TI_USER_NAME AND user_PASSWD = :IT_USER_PASSWD
    AND SYSDATE BETWEEN USER_VALID_FRM AND USER_VALID_TO;
    :global.user_id  := substr(win_api_environment.read_registry('HKEY_LOCAL_MACHINE\system\currentcontrolset\control\computername\computername','computername'),1,10);
    :global.compname := :compname;
    compnm(:compname);
    --USER_ID := CREATE_PARAMETER_LIST('USER_id_NAME');
    call_form('Forms\MAIN_SCREEN',hide,DO_REPLACE);
    exception
      when no_data_found then
      MESSAGE('Incorrect Username or Password.  Please Re-Enter');
      message(' ');
      RAISE FORM_TRIGGER_FAILURE;
    END;
    EXIT_FORM;
    When i tried to compile, i got error saying ,
    Error 201 at line 10, column 28
    identifier 'WIN_API_ENVIRONMENT.READ_REGISTRY' must be declared.
    I am not getting to know What is the exact problem with this file?
    Help me with this please.
    Thank You.
    Oracle forms builder 6i.
    Oracle 9i.

    Vijetha wrote:
    I also want to know what is the use of  win_api_environment.read_registry('HKEY_LOCAL_MACHINE\system\currentcontrolset\control\computername\computername','computername') ??
    What does it do??
    If i comment the following line , will it be a problem??
    :global.user_id  := substr(win_api_environment.read_registry('HKEY_LOCAL_MACHINE\system\currentcontrolset\control\computername\computername','computername'),1,10);
    Because i commented the above line & compiled, so it is not giving any error now.
    So please tell me what win_api_environment.read_registry does??
    it's read windows registry value. So, no problem if you comment it.
    Thanks

  • Problem with Offline Files with Cisco NSS322 (firmware 1.3)

    Hi
    We've recently bought a new NSS322 NAS box to replace an ageing Windows SBS 2003 file server. We've upgraded the firmware to 1.3, and begun moving files across from the Windows server to the new NAS box. However, we're having a problem with Offline Files on the NAS, as attempting to make directories available offline on Windows clients (only tried Vista Business 32-bit so far) we get loads of errors stating that these files cannot be made available offline "because they are in use" (or something like that).
    Any suggestions as to why this might be? It doesn't appear to affect all files, but most of them.
    I've read somewhere that the "allow oplocks" setting can affect this if disabled, but it is already enabled on the device, so this can't be the cause of the problem.
    Any help you could provide would be much appreciated, as at the moment this issue is rendering our NAS unusable as we rely heavily on the offline files functionality.
    Thanks in advance.
    I have some more information - this appears to be related to the ownership permissions of the files on the NAS. New files created on the NAS can be made available offline, and have the ownership of the person who created the file, however, the files we moved across from the server are all listed as being owned by the user "guest" (I think this may be related to the fact that when we moved the files over, the user was logged in as "admin" rather than a user on the AD Domain). I should be able to resolve this through changing the owner of the files on the NAS, but I can't seem to do this, as I get an "access denied" error each time I try to change ownership.
    Message was edited by: redcitrus
    Is there any chance someone's going to be able to help me with this? I've currently spent £500 on a box that I can't use. If it can't handle Offline Files satisfactorily, it's no use to us.
    I've been looking at this a bit more - if appears that each user can make files they have created available offline, but files created by other people cannot - the error message that appears is: "The process cannot access the file because it is being used by another process".
    I'm getting desperate here...can anyone help?
    Message was edited by: redcitrus

    Sorry, but I don1 speak very good english..
    I was Try this quick test: As a quick test, you can do a forward all and make sure you can get into the ftp server.
    but result it is to same.
    I think, that problem is in firmware, becasue I know more people who own this router with to same firmware version (2.0.1.3), and have they to same problem how I.
    I have DISABLED FIREWALL on my router and problem hold over.
    If I replace router Cisco Linksys WRVS4400N by Ovislink router or any other, issue (problem) already no is.
    Configuration in Cisco Linksys WRVS4400N and configurations in any other router is to same, but FTP connection via Cisco Lynksys always will crash.
    If I connect to any other FTP server, sometimes requieres from me ftp login and password. It is OK, but if I assign login and password, after connect me to this FTP server, i see folders and files on this server, but without reason connecting fall down.
    Few seconds later if I connect to the to same FTP server, sometime either not request login and password and connection fall down.

  • Problem with OutBound file binding

    Hi,
    I have a problem with sun-file-binding for write files in a directory.
    I have a service engine that send a message to the file-binding and the binding-component must write the file
    on a directory.
    But I have this error:
    FILEBC-E00791: Solicited Read Failed. service: {http://www.sun.com/jbi/examples/sample-service/echo}echoService2, endpoint: echoEP_JBIPort2, operation: {http://www.sun.com/jbi/examples/sample-service/echo}echo. Error was: FILEBC_E00760: Missing required Input properties for outbound file operation [{http://www.sun.com/jbi/examples/sample-service/echo}echo]..
    Consumer:Processing Message Exchange with status Error
    The log message is null.
    java.lang.Exception: Consumer:INOUT Message Exchange status ERROR.
    java.lang.Exception: FILEBC-E00791: Solicited Read Failed. service: {http://www.sun.com/jbi/examples/sample-service/echo}echoService2, endpoint: echoEP_JBIPort2, operation: {http://www.sun.com/jbi/examples/sample-service/echo}echo. Error was: FILEBC_E00760: Missing required Input properties for outbound file operation [{http://www.sun.com/jbi/examples/sample-service/echo}echo]..
    at com.sun.jbi.filebc.OutboundMessageProcessor.setError(OutboundMessageProcessor.java:820)
    at com.sun.jbi.filebc.OutboundMessageProcessor.processRequestReplyOutbound(OutboundMessageProcessor.java:301)
    at com.sun.jbi.filebc.OutboundMessageProcessor.run(OutboundMessageProcessor.java:174)
    at java.lang.Thread.run(Thread.java:619)
    Caused by: java.lang.Exception: FILEBC_E00760: Missing required Input properties for outbound file operation [{http://www.sun.com/jbi/examples/sample-service/echo}echo].
    at com.sun.jbi.filebc.OutboundMessageProcessor.validateOutboundMessageExchangeProperties(OutboundMessageProcessor.java:1499)
    at com.sun.jbi.filebc.OutboundMessageProcessor.processRequestReplyOutbound(OutboundMessageProcessor.java:272)
    ... 2 more
    at it.ditech.jbi.component.utils.RingOneMessageHandler.processInOutMessageExchangeOnConsumer(RingOneMessageHandler.java:262)
    at it.ditech.jbi.component.utils.RingOneMessageHandler.doInOutMessageExchange(RingOneMessageHandler.java:130)
    at it.ditech.jbi.component.utils.RingOneMessageHandler.processInOutMessageExchangeOnProvider(RingOneMessageHandler.java:325)
    at it.ditech.jbi.component.utils.RingOneMessageHandler.receiveAndProcessMessageExchange(RingOneMessageHandler.java:355)
    at it.ditech.jbi.component.utils.RingOneMessageHandler$1.run(RingOneMessageHandler.java:191)
    at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
    at java.lang.Thread.run(Thread.java:619)
    this is my WSDL file:
    <?xml version='1.0' encoding="UTF-8" standalone="yes" ?>
    <definitions
    targetNamespace="http://www.sun.com/jbi/examples/sample-service/echo"
    name="echo"
    xmlns:tns="http://www.sun.com/jbi/examples/sample-service/echo"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:file="http://schemas.sun.com/jbi/wsdl-extensions/file/">
    <types>
    <xsd:schema targetNamespace="http://www.sun.com/jbi/examples/sample-service/echo">
    <xsd:element name="item">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element type="xsd:string" name="value"/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:schema>
    </types>
    <message name="echo">
    <part name="part"
    element="tns:item">
    </part>
    </message>
    <portType name="echo">
    <operation name="echo">
    <input name="echo" message="tns:echo"/>
    </operation>
    </portType>
    <binding name="Binding" type="tns:echo">
    <file:binding/>
    <operation name="echo">
    <file:operation verb="write">
    <input name="echo" message="tns:echo">
    <file:message use="literal" fileName="output-%t.xml" fileNameIsPattern="true"/>
    </input>
    </file:operation>
    </operation>
    </binding>
    <service name="echoService2">
    <port name="echoEP_JBIPort2" binding="tns:Binding">
    <file:address fileDirectory="/home/roger/Scrivania/in-out"/>
    </port>
    </service>
    </definitions>
    Is there anyone that can help me?
    Thanks
    Roberto

    Hi,
    I have a problem with sun-file-binding for write files in a directory.
    I have a service engine that send a message to the file-binding and the binding-component must write the file
    on a directory.
    But I have this error:
    FILEBC-E00791: Solicited Read Failed. service: {http://www.sun.com/jbi/examples/sample-service/echo}echoService2, endpoint: echoEP_JBIPort2, operation: {http://www.sun.com/jbi/examples/sample-service/echo}echo. Error was: FILEBC_E00760: Missing required Input properties for outbound file operation [{http://www.sun.com/jbi/examples/sample-service/echo}echo]..
    Consumer:Processing Message Exchange with status Error
    The log message is null.
    java.lang.Exception: Consumer:INOUT Message Exchange status ERROR.
    java.lang.Exception: FILEBC-E00791: Solicited Read Failed. service: {http://www.sun.com/jbi/examples/sample-service/echo}echoService2, endpoint: echoEP_JBIPort2, operation: {http://www.sun.com/jbi/examples/sample-service/echo}echo. Error was: FILEBC_E00760: Missing required Input properties for outbound file operation [{http://www.sun.com/jbi/examples/sample-service/echo}echo]..
    at com.sun.jbi.filebc.OutboundMessageProcessor.setError(OutboundMessageProcessor.java:820)
    at com.sun.jbi.filebc.OutboundMessageProcessor.processRequestReplyOutbound(OutboundMessageProcessor.java:301)
    at com.sun.jbi.filebc.OutboundMessageProcessor.run(OutboundMessageProcessor.java:174)
    at java.lang.Thread.run(Thread.java:619)
    Caused by: java.lang.Exception: FILEBC_E00760: Missing required Input properties for outbound file operation [{http://www.sun.com/jbi/examples/sample-service/echo}echo].
    at com.sun.jbi.filebc.OutboundMessageProcessor.validateOutboundMessageExchangeProperties(OutboundMessageProcessor.java:1499)
    at com.sun.jbi.filebc.OutboundMessageProcessor.processRequestReplyOutbound(OutboundMessageProcessor.java:272)
    ... 2 more
    at it.ditech.jbi.component.utils.RingOneMessageHandler.processInOutMessageExchangeOnConsumer(RingOneMessageHandler.java:262)
    at it.ditech.jbi.component.utils.RingOneMessageHandler.doInOutMessageExchange(RingOneMessageHandler.java:130)
    at it.ditech.jbi.component.utils.RingOneMessageHandler.processInOutMessageExchangeOnProvider(RingOneMessageHandler.java:325)
    at it.ditech.jbi.component.utils.RingOneMessageHandler.receiveAndProcessMessageExchange(RingOneMessageHandler.java:355)
    at it.ditech.jbi.component.utils.RingOneMessageHandler$1.run(RingOneMessageHandler.java:191)
    at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
    at java.lang.Thread.run(Thread.java:619)
    this is my WSDL file:
    <?xml version='1.0' encoding="UTF-8" standalone="yes" ?>
    <definitions
    targetNamespace="http://www.sun.com/jbi/examples/sample-service/echo"
    name="echo"
    xmlns:tns="http://www.sun.com/jbi/examples/sample-service/echo"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:file="http://schemas.sun.com/jbi/wsdl-extensions/file/">
    <types>
    <xsd:schema targetNamespace="http://www.sun.com/jbi/examples/sample-service/echo">
    <xsd:element name="item">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element type="xsd:string" name="value"/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:schema>
    </types>
    <message name="echo">
    <part name="part"
    element="tns:item">
    </part>
    </message>
    <portType name="echo">
    <operation name="echo">
    <input name="echo" message="tns:echo"/>
    </operation>
    </portType>
    <binding name="Binding" type="tns:echo">
    <file:binding/>
    <operation name="echo">
    <file:operation verb="write">
    <input name="echo" message="tns:echo">
    <file:message use="literal" fileName="output-%t.xml" fileNameIsPattern="true"/>
    </input>
    </file:operation>
    </operation>
    </binding>
    <service name="echoService2">
    <port name="echoEP_JBIPort2" binding="tns:Binding">
    <file:address fileDirectory="/home/roger/Scrivania/in-out"/>
    </port>
    </service>
    </definitions>
    Is there anyone that can help me?
    Thanks
    Roberto

  • Problems with .ARW files and auto toning

    problems with .ARW files and auto toning
    let me try to explain this because this has happened in past and never found a way to resolve but i lived with it
    now that I have a Sony A7R the problem is more serious
    Firstly i take pride it making the picture happen all in camera, i use DRO lvl 5 to get enough light, like when i'm shooting at dusk. DRO its like doing HDR but in a single file, it lightens the darks. in my camera i'm happy with results
    but when I upload them to lightroom, they come out near black.
    allow me to explain
    lets say I import 100 images
    i double check my preferences and everything is UNCHECKED when it comes to importing options, there is no auto toning, nothing.
    as the images import i see a preview in the thumbnail which looks fine.
    i double click on one to enlarge it, hence leave grid view.
    for a brief 1 or 2 seconds, i see the full image in all its glory but than lightroom does something funny, it darkens the image
    one by one as it inspects each image, if it was a DRO image it makes it too dark.
    to make this clear, the image is perfect as it was in the beginning but after a few seconds lightroom for some reason thinks it needs to correct it.
    how to prevent lightroom from doing this, i want the image exactly as it is, why must lightroom apply a correction>?
    i think it has to do something with interpreting the raw file and lightroom applies its own algorithm.
    but here is what i dont get.....before lightroom makes the change i'm able to witness the picture exactly as it was taken and want it unchanged..
    now i have to tweak each file or find a profile for it which is added work.
    any ideas how to prevent lightroom from ruining my images and just leave them as they were when first detected...
    there are 2 phases...one is when it originally imports and they look fine
    second is scanning each image and applying some kind of toning which darkens it too much.
    thanks for the help

    sorry thats the auto reply message from yahoo email.
    i've disabled it now
    thing is, there is no DRO jpg to download from the camera
    its only ARW. so my understanding is when i use DRO setting, the camera makes changes to the ARW than lightroom somehow reads this from the ARW.
    but then sadly reverts it to no DRO settings.
    because i notice if i take normal picture in raw mode its dark but if i apply dro to it, it comes out brighter, yet when i d/l the image from camera to lightroom, which is an ARW - there are no jpgs. lightroom decides to mess it up
    so in reality there is no point in using DRO because when i upload it lightroom removes it.
    is there a way to tell lightroom to preserve the jpg preview as it first sees it.
    its just lame, picture appears perfect...than lightroom does something, than bam, its ruined,.
    what do i need to do to prevent lightroom from ruining the image? if it was good in the first place.

  • Problems with compressing  files with right hand click. it does not work.

    Problems with compressing files with right hand click.
    I am using the compress function in the Mac OS (File > Compress XX) from time to time. Today it does not work anymore. OS 10.5.6
    I get a message: The content list cannot be created for compressing.
    I tried it with files and folders and keep getting this message. Anybody any idea as to how to fix this

    Thanks I love my macbook!!!!
    I also got further problems such as copy-paste not working etc.
    so I fixed it just this morning by running Applejack 1.5 and am back up running noticing your post.
    thanks for helping though!

  • SFTP MGET of large files fails - connection closed - problem with spool file

    I have a new SFTP job to get files from an FTP Server.  The files are large (80mg, 150mg).  I can get smaller files from the ftp site with no issue, but when attempting the larger files the job completes abnormally after 2 min 1 sec. each time.  I can see the file is created on our local file system with 0 bytes, then when the FTP job fails, the 0 byte file is deleted.
    Is there a limit to how large an ftp file can be in Tidal?  How long an ftp job can run?
    The error in the job audit is Problem with spool file for job XXXX_SFTPGet and an exit code of 127 (whatever that is).
    In the log, the error is that the connection was closed.  I have checked with the ftp host and their logs show that we are disconnecting unexpectedly also.
    Below is an excerpt from the log
    DEBUG [SFTPMessage] 6 Feb 2015 14:17:33.055 : Send : Name=SSH_FXP_STAT,Type=17,RequestID=12
    DEBUG [SSH2Channel] 6 Feb 2015 14:17:33.055 : Transmit 44 bytes
    DEBUG [ChannelDataWindow] 6 Feb 2015 14:17:33.055 : Remote window size decreased to 130808
    DEBUG [PlainSocket] 6 Feb 2015 14:17:33.071 : RepeatCallback received 84 bytes
    DEBUG [SSH2Connection] 6 Feb 2015 14:17:33.071 : ProcessPacket pt=SSH_MSG_CHANNEL_DATA
    DEBUG [SFTPMessageFactory] 6 Feb 2015 14:17:33.071 : Received message (type=105,len=37)
    DEBUG [SFTPMessageStore] 6 Feb 2015 14:17:33.071 : AddMessage(12) - added to store
    DEBUG [SFTPMessage] 6 Feb 2015 14:17:33.071 : Reply : Name=SSH_FXP_ATTRS,Type=105,RequestID=12
    DEBUG [SFTPMessage] 6 Feb 2015 14:17:33.071 : Send : Name=SSH_FXP_OPEN,Type=3,RequestID=13
    DEBUG [SSH2Channel] 6 Feb 2015 14:17:33.071 : Transmit 56 bytes
    DEBUG [ChannelDataWindow] 6 Feb 2015 14:17:33.071 : Remote window size decreased to 130752
    DEBUG [PlainSocket] 6 Feb 2015 14:17:33.087 : RepeatCallback received 52 bytes
    DEBUG [SSH2Connection] 6 Feb 2015 14:17:33.087 : ProcessPacket pt=SSH_MSG_CHANNEL_DATA
    DEBUG [SFTPMessageFactory] 6 Feb 2015 14:17:33.087 : Received message (type=102,len=10)
    DEBUG [SFTPMessageStore] 6 Feb 2015 14:17:33.087 : AddMessage(13) - added to store
    DEBUG [SFTPMessage] 6 Feb 2015 14:17:33.087 : Reply : Name=SSH_FXP_HANDLE,Type=102,RequestID=13
    DEBUG [SFTPMessage] 6 Feb 2015 14:17:33.087 : Send : Name=SSH_FXP_READ,Type=5,RequestID=14
    DEBUG [SSH2Channel] 6 Feb 2015 14:17:33.087 : Transmit 26 bytes
    DEBUG [ChannelDataWindow] 6 Feb 2015 14:17:33.087 : Remote window size decreased to 130726
    DEBUG [PlainSocket] 6 Feb 2015 14:17:33.118 : RepeatCallback received 0 bytes
    DEBUG [SFTPChannelReceiver] 6 Feb 2015 14:17:33.118 : Connection closed:  (code=0)
    ERROR [SFTPMessageStore] 6 Feb 2015 14:17:33.118 : Disconnected unexpectedly ( [errorcode=0])
    ERROR [SFTPMessageStore] 6 Feb 2015 14:17:33.118 : EnterpriseDT.Net.Ftp.Ssh.SFTPException:  [errorcode=0]
    ERROR [SFTPMessageStore] 6 Feb 2015 14:17:33.118 :    at EnterpriseDT.Net.Ftp.Ssh.SFTPMessageStore.CheckState()
    ERROR [SFTPMessageStore] 6 Feb 2015 14:17:33.118 :    at EnterpriseDT.Net.Ftp.Ssh.SFTPMessageStore.GetMessage(Int32 requestId)

    I believe there is a limitation on FTP and what you are seeing is a timeout built into the 3rd party application that tidal uses (I feel like it was hardcoded and it would be a big deal to change but this was before Cisco purchased tidal)  there may have been a tagent.ini setting that tweaks that but I can't find any details.
    We wound up purchasing our own FTP software (ipswitch MOVEit Central & DMZ) because we also had the need to host as well as Get/Put to other FTP sites. It now does all our FTP and internal file delivery activity (we use it's api and call from tidal if we need to trigger inside a workflow)

  • Problems with the File System Repository & User Mapping!

    Hi All
    I am having a problem with a file system repository, and setting up user mapping for that repository.
    I have done the following:
    Created a File System Repository
    Created a Network Path
    Created a System (Including the alias)
    Now when I go into User Administration and select my user the is no user mapped systems to select.
    All this system is doing is connecering to a folder on our File System.
    Any help would be great as this is really frustrating!
    Thanks
    Phil

    I am using EP7 Stack 11 and unfortunately the only options I have are:
    user
    admin
    admin,user
    It is currently set to admin, user and does not seem to work!
    Phil
    Message was edited by:
            Phil Wade

  • [SkyDrive] Files can't be uploaded because there's a problem with a file or folder.

    On Windows 8.1 RTM, the SkyDrive metro client shows a message that "Files can't be uploaded because there's a problem with a file or folder." and lists one particular file. When I installed the PC, I have switched then Access all files offline
    option to On.
    The file resides in a directory I have deleted from the disk. When attempting to get rid of this "problem" (as there are no hints nor UI available) I have manually checked that the directory does not exists on the disk any more, as well as deleting
    the directory from cloud storage using a web browser. However, the message is still there.
    Restarting the computer several times nor keeping it idle for a significant amount of time did not help.
    How to get rid of that "problem" / how to fix it?

    Hi
    Let’s try to redirect the skydrive folder and sync again to see what’s going on:
    1. Open regedit and find following key:
    HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\SkyDrive
    2. Change “UserFolder” to another location.
    3. Open the SkyDrive Metro app to confirm your files and new directory.
    Then check the issue again. 
    Regards,
    Kate Li
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

Maybe you are looking for

  • The menu screen does not appear on the apple tv but after some time my photos appearing

    When I turn on my apple TV nothing come up but after some time my photo's from my iCloud account start to appear. Why would this be?

  • Change Value based on Dynamical Object

    Goal: The goal is to make the variable with value '2014-06-14 09:00:00.000' Problem: The syntax code is created as a dynamical object how do you make it from '2014-06-14 16:20:10.000' into value '2014-06-14 09:00:00.000'? DECLARE @a datetime = '2014-

  • No landlline for 3 weeks and counting

    We have had a phone fault for 3 weeks now, since 25th April. no incoimg calls and no outgoing calls. BT said they would redirect calls to a mobile but have failed to do this. BT have not contacted us to tell us when the fault will be fixed, nor how t

  • Assignment %tage maintain in a column

    My project has 8 ressources. I assign them by %tage to relevant tasks. Currently, I do this by rightclicking on the task, then selecting Resources and then assigning the resources. Please explain, if I can do this in columns instead? I would then hav

  • SQL INDEX TUNING

    Hi, I am having a table with proper index. While selecting query, some time index is taken and some time table access full going on. The table having following columns Acc Id - Number Account key = Number Account Number - Varchar2(25) Account Date -