Error in result of storeproc

I have a problem with cfstoredproc and Informix database,
when I invoke a stored procedure by cfstoredproc, it returns me
several columns with the same name (EXPRESSION) and repeat the
value of first column.
I am running CFMX 8.0.1 Enterprise, with Informix 9.40 and
built-in driver, wich works great, but when i try to use CFMX 8.0.1
with JDBC 3.50 for IBM Informix cfstoredproc error occurs. I need
this version of JDBC because I will upgrade to informix 11.50 and
CFMX 8.0.1.
This is the stored procedure...
CREATE PROCEDURE admgcn.stpbacklog (unidad1 char(1))
returning char(10), char(12), char(12), char(30), char(7), char(1),
char(40), char(30), char(8), int, varchar(255,0), varchar(255,0),
varchar(255,0), char(1), char(40), char(12), char(8);
define r_fecemision char(10);
define r_numaviso like r3avisos.numaviso;
define r_numorden like r3avisos.numorden;
define r_ubicacion like r3avisos.ubicacion;
define r_inop like r3otinopcd.noinop;
define r_prior like r3avisos.prior;
define r_descaviso like r3avisos.descaviso;
define r_resp like r3avisosop.responsable;
define r_numsem like r3avisosop.numsem;
define r_porc like r3activ.porcentaje;
define r_coment like r3avisosop.comentop;
define r_solpeds like r3avisosop.solpeds;
define r_comentab like r3avisosop.comentab;
define r_repercusion like r3avisos.repercusion;
define r_status like r3avisos.status;
define r_pn like r3avisos.numaviso;
define r_ptotrbres like r3avisos.ptotrbres;
define valor int;
let valor = 1;
if (weekday(today) = 1) then let valor = 3;
end if;
begin
set isolation to dirty read;
foreach
SELECT
a.fecemision, a.numaviso, a.numorden, a.ubicacion, ao.inop,
a.prior prioridad, a.descaviso descripcion, ao.responsable,
ao.numsem, 0 porcentaje, nvl(trim(ao.comentop),'') comentop,
nvl(trim(ao.solpeds),'') solpeds,
nvl(trim(ao.comentab[1,234]), '') comentab, a.repercusion,
a.status,trim((select a.numaviso from r3avisos avs where unaviso =
unidad1 and status[1,4] <> 'MECE' and edodisp = '2' and
prior is not null and a.numaviso = avs.numaviso)) PN, ptotrbres
INTO
r_fecemision, r_numaviso, r_numorden, r_ubicacion, r_inop,
r_prior, r_descaviso, r_resp, r_numsem, r_porc, r_coment,
r_solpeds, r_comentab, r_repercusion, r_status, r_pn, r_ptotrbres
FROM
r3avisos a, outer r3avisosop ao
WHERE
a.status[1,4] <> ('MECE') and
a.prior in ('1', '2', '3', '4', '5') and
(a.repercusion <> 'A' or a.repercusion is null) and
a.claseaviso = 'AN' and
ao.numaviso = a.numaviso and
a.unaviso = unidad1 and
a.numorden is null {and
(DATE(TO_DATE(creado,'%d/%m/%Y')) >= today - valor and
DATE(TO_DATE(creado,'%d/%m/%Y')) <= today)}
UNION
SELECT
a.fecemision, a.numaviso, a.numorden, a.ubicacion, '',
r3o.prioridad, r3o.descripcion, ao.responsable, r3o.pep numsem,
r3a.porcentaje porcentaje, nvl(trim(ao.comentop),'') comentop,
nvl(trim(ao.solpeds),'') solpeds,
nvl(trim(ao.comentab[1,234]), '') comentab, a.repercusion,
r3o.statussist,trim((select a.numaviso from r3avisos avs where
unaviso = unidad1 and status[1,4] <> 'MECE' and edodisp = '2'
and prior is not null and a.numaviso = avs.numaviso)) PN,
r3o.ptotrbres
FROM
r3avisos a, outer r3avisosop ao, r3orden r3o, r3activ r3a
WHERE
r3o.statusus[1,4] <> 'CANC' and r3o.statussist[1,4] in
('LIBD','LIBE', 'ABIE') and
r3o.prioridad in ('1', '2', '3', '4', '5') and
(a.repercusion <> 'A' or a.repercusion is null) and
r3o.claseorden = 'LV01' and
r3o.claseact = 'N00' and
a.unaviso = unidad1 and
ao.numaviso = a.numaviso and
a.numorden = r3o.numorden and
r3a.numorden = a.numorden and
r3a.porcentaje < 100 and
r3a.numope is not null
UNION
SELECT
a.fecemision, a.numaviso, a.numorden, a.ubicacion, '',
r3o.prioridad, r3o.descripcion, ao.responsable, r3o.pep numsem,0
porcentaje, nvl(trim(ao.comentop),'') comentop,
nvl(trim(ao.solpeds),'') solpeds,
nvl(trim(ao.comentab[1,234]), '') comentab, a.repercusion,
r3o.statussist,trim((select a.numaviso from r3avisos avs where
unaviso = unidad1 and status[1,4] <> 'MECE' and edodisp = '2'
and prior is not null and a.numaviso = avs.numaviso)) PN,
r3o.ptotrbres
FROM
r3avisos a, outer r3avisosop ao, r3orden r3o
WHERE
r3o.statusus[1,4] <> 'CANC' and r3o.statussist[1,4] in
('LIBD','LIBE', 'ABIE') and
r3o.prioridad in ('1', '2', '3', '4', '5') and
(a.repercusion <> 'A' or a.repercusion is null) and
r3o.claseorden = 'LV01' and
r3o.claseact = 'N00' and
a.unaviso = unidad1 and
ao.numaviso = a.numaviso and
a.numorden = r3o.numorden and
r3o.numorden not in (select numorden from r3activ where
numorden is not null and numorden <> 'N/A')
ORDER BY
ptotrbres, prioridad, numaviso
return
r_fecemision, r_numaviso, r_numorden, r_ubicacion,
r_inop, r_prior, r_descaviso, r_resp, r_numsem, r_porc,
r_coment,
r_solpeds, r_comentab, r_repercusion, r_status, r_pn,
r_ptotrbres with resume;
end foreach;
end;
end procedure
as you can see I return several columns with different names
This is the way how I invoke the stored
<cfstoredproc datasource="prueba"
procedure="stpbacklog">
<cfprocparam cfsqltype="CF_SQL_CHAR" value="1">
<cfprocresult name="RS">
</cfstoredproc>
<cfdump var="#RS#"/>
This is the result
query
(EXPRESSION) (EXPRESSION) (EXPRESSION) (EXPRESSION)
(EXPRESSION) (EXPRESSION) (EXPRESSION) (EXPRESSION) (EXPRESSION)
(EXPRESSION) (EXPRESSION) (EXPRESSION) (EXPRESSION) (EXPRESSION)
(EXPRESSION) (EXPRESSION) (EXPRESSION)
1 06/01/2009 06/01/2009 06/01/2009 06/01/2009 06/01/2009
06/01/2009 06/01/2009 06/01/2009 06/01/2009 06/01/2009 06/01/2009
06/01/2009 06/01/2009 06/01/2009 06/01/2009 06/01/2009 06/01/2009
2 07/01/2009 07/01/2009 07/01/2009 07/01/2009 07/01/2009
07/01/2009 07/01/2009 07/01/2009 07/01/2009 07/01/2009 07/01/2009
07/01/2009 07/01/2009 07/01/2009 07/01/2009 07/01/2009 07/01/2009
3 06/01/2009 06/01/2009 06/01/2009 06/01/2009 06/01/2009
06/01/2009 06/01/2009 06/01/2009 06/01/2009 06/01/2009 06/01/2009
06/01/2009 06/01/2009 06/01/2009 06/01/2009 06/01/2009 06/01/2009
4 23/06/2008 23/06/2008 23/06/2008 23/06/2008 23/06/2008
23/06/2008 23/06/2008 23/06/2008 23/06/2008 23/06/2008 23/06/2008
23/06/2008 23/06/2008 23/06/2008 23/06/2008 23/06/2008 23/06/2008
5 23/06/2008 23/06/2008 23/06/2008 23/06/2008 23/06/2008
23/06/2008 23/06/2008 23/06/2008 23/06/2008 23/06/2008 23/06/2008
23/06/2008 23/06/2008 23/06/2008 23/06/2008 23/06/2008 23/06/2008
6 23/12/2008 23/12/2008 23/12/2008 23/12/2008 23/12/2008
23/12/2008 23/12/2008 23/12/2008 23/12/2008 23/12/2008 23/12/2008
23/12/2008 23/12/2008 23/12/2008 23/12/2008 23/12/2008 23/12/2008
7 28/12/2008 28/12/2008 28/12/2008 28/12/2008 28/12/2008
28/12/2008 28/12/2008 28/12/2008 28/12/2008 28/12/2008 28/12/2008
28/12/2008 28/12/2008 28/12/2008 28/12/2008 28/12/2008 28/12/2008
8 24/12/2008 24/12/2008 24/12/2008 24/12/2008 24/12/2008
24/12/2008 24/12/2008 24/12/2008 24/12/2008 24/12/2008 24/12/2008
24/12/2008 24/12/2008 24/12/2008 24/12/2008 24/12/2008 24/12/2008
9 20/12/2008 20/12/2008 20/12/2008 20/12/2008 20/12/2008
20/12/2008 20/12/2008 20/12/2008 20/12/2008 20/12/2008 20/12/2008
20/12/2008 20/12/2008 20/12/2008 20/12/2008 20/12/2008 20/12/2008
10 18/10/2008 18/10/2008 18/10/2008 18/10/2008 18/10/2008
18/10/2008 18/10/2008 18/10/2008
You see how repeat first column? This is the problem I have.
I hope you can support me.
In advance,
Thanks a lot.

Tom,
thanks for your support. My problem is when CFSTOREDPROC
returns the result, because it returns me several columns with the
same name (EXPRESSION). In CFMX 8 with Informix Driver, it returned
COMPUTED_COLUMN_1, COMPUTED_COLUMN_2 and so, but now, with CFMX
8.0.1 and JDBC driver for Informix 11.50 returns (EXPRESSION) and
repeat the value of first row first column. I tryed with Centauro
(ColdFusion 9) using Informix Driver and all works great. What I am
doing is transform my StoredProcedures to CFQUERY and CFC, but of
course, it is a lot of work, :D

Similar Messages

  • Mainstage 2.1.3 - an error occurred Result code = -39

    mainstage 2.1.3 - an error occurred Result code = -39  .
    What does this mean.
    How can I find out what error messages mean.
    And what can I do to fix it.
    My session became very unstable- previously saved versions (lighter ) were stable but still got error message which doesn't fill one with confidence.
    HELP using this live !!!!
    using motu traveller, 2x edirol PCR keyboards, behringer FCB1010 and touch OSC app on iphone.

    Usually error -39 means a file not found error and it's a system error...
    Would be nice to know when does it happens... maybe a exs24 sample not found? Or some component?
    go to /Applications/Utility and start up "Console".
    then run Mainstage and look at the messages you see in console. Chanches are you'll see a more detailed explanation of the error from mainstage.
    Hope this helps.

  • QM-Calibration Procedure -Error during Result Recording

    Dear Sir,
    During mapping of Calibration Process in SAP,I am getting error ( status check error ) for Result recording of Inspection lot (QM-Calibration).I have follow all the required steps,I am not getting reason of error,Please Advice.
    Thanks

    Dear
    Maintain in sampling procedure radio button palnt maintainance. then check if ur using inspection plan with inspection point.
    else make sampling management radio button on..
    regards
    SANIL

  • I have a G5 Dual 2.3GHZ 10.4.10 running Logic Pro with various AU plugs. Battery 3 was fine but now doesn't work. I tried everything already posted, but this is the msg: FATAL ERROR: OpenAComponent: result: -1,0xFFFFFFFF

    I did do an upgrade since the G5 had been out in a studio for some time, away from internet. This may have efected it...? Battery is still on the hard drive and all components. I says that it cannot find the Installer... and refuses to read it from the disk. I'm struggling here folks. Would really appreciate some help if anyone knows more.
    Here is a the full message it gives:
    VALIDATING AUDIO UNIT: 'aumu' - 'NBa3' - '-NI-'
    Manufacturer String: Native Instruments
    AudioUnit name: Battery 3
    Component Info: Native Instruments Battery 3
    Component Version: 3.0.0 (0x30000)
    Component's Bundle Version: 0.0.0
    * * PASS
    TESTING OPEN TIMES:
    COLD:
    Debugger() was called!
    Debugger() was called!
    FATAL ERROR: OpenAComponent: result: -1,0xFFFFFFFF
    validation result: couldn't be opened
    updating properties of AU Battery 3 by Native Instruments...FAILED!

    Sorry, I'm also using QT Pro 7.1.6.
    Lloyd

  • APD ' Error in Result Management:DB_ERROR' error

    I created an APD and it checked out fine. But when I try to run an intermediate result on one of the filters, I get a "Error in Result Management: DB_ERROR". Has anyone experienced this error before? Its very odd. It is a very simple APD with a couple of filters and joins and probably a volume of about 100,000 records. We have other complex APDs that run fine though.
    System specs:
    SAP BW Release 701 (SAP EHP 1 for SAP NetWeaver 7.0).
    I appreciate if anyone can suggest an idea to fix it.
    Thanks.

    HI Vivek,
    I am also getting the same error, can you please tell me how you have resolved the error.
    Thanks in Advance..

  • When pressing the "R" on the keyboard to record the following pop up - "Beta-only warning message-not to be localized Can't create record files please report" and then this "error occurred Result= -48"  What does this mean?

    When pressing the "R" key on the keyboard to record the following pops up - "Beta-only warning message-not to be localized.  Can't create record file, Please Report"  I press O.K. and this pops up - "Error occurred Result= -48".  Can't figure out why.  First time I have every had problems>  What's up with this?

    a -48 error is a duplicate filename.
    the first things i'd try are the oddball problems fixes:
    http://www.bulletsandbones.com/GB/GBFAQ.html#oddballprobs
    (Let the page FULLY load. The link to your answer is at the top of your screen)

  • ADM Error processing results from query: Error: Index 0 out of range

    11.1.2.1
    When running quite a large book, we are getting the following error:
    ADM Error processing results from query: Error: Index 0 out of range
    The individual reports in the books are running fine.
    PS.  The report books that are giving this error run fine on 9.3.1
    Could this be a time-out issue and how do we resolve it?

    what is background datasource Essbase or HFM
    do you have lot of data in pov please try below
    >Do you have pov prompt
    >increase jvm heap size for report server in reporting server
    >Fr log files has some more detail

  • SUP 2.1 LDAP error "Partial results returned."

    Hi everybody,
    I'm configuring a SUP 2.1 server to authenticate users using a MS Active Directory server.
    I'm facing the following issue: whenever I try to login to my test app I get the following error:
    Partial results returned. Operation not completed (Unprocessed Continuation Reference(s)).
    even if I set referral=follow and scope=subtree. The strange thing is that I get the same error with a java-based Ldap broser (JXplorer) but not with a non-java one.
    Anyone faced the same issue before?
    Thank you very much,
    Francesco

    Hi,
    thank you for your answer.
    We tried as you suggested but no luck.
    I suspect that this error is due to some AD configuration on this (DEV) server. We tried connecting the LoginModule to a PROD server (with a lot of users) and everything works fine.
    The AD teams told me that the only difference is that the DEV server is not behind a DNS so I have to use the IP address in the configuration.
    Thank you again,
    F

  • Validating AUDIO UNIT - FATAL ERROR: OpenAComponent : result : -1,0xFFFFFFFF

    Was producing . I stopped, turned off all when I came suddenly this happened : I can not open some plugins within the logic . Just 4 more plugins that use, after trying to reinstall several times , when I update the plugin manager 's logic appears this message :
    validating Audio Unit Sylenth1 by LennarDigital :     AU Validation Tool     Version : 1.6.1a1     Copyright 2003-2013 , Apple Inc. All Rights Reserved.     Specify -h ( -help ) for command options -------------------------------------------------- Validating AUDIO UNIT : ' aumu ' - ' syl1 ' - ' LNDG ' -------------------------------------------------- 01/26/2015 22: 50: 56,664 auvaltool [ 415 : d07 ] 22: 50: 56,663 WARNING : [ 0x7fff7a7cd310 ] > compload > AudioComponentPluginLoader.cpp : 662 : RegisterComponentsFromArray : Manufacturer String : LennarDigital AudioUnit Name : Sylenth1 Component Version : 2.2.0 ( 0x20200 ) Component Bundle 's Version : 2.2.0 * * PASS -------------------------------------------------- TESTING TIMES OPEN : COLD : FATAL ERROR: OpenAComponent : result : -1,0xFFFFFFFF validation result: Could Not Be opened updating properties of AU Sylenth1 by LennarDigital ... FAILED ! FAILED !
    Can someone help me ?
    Thx!

    I assume you are using 32Lives to run Sylenth.... as Sylenth is a 32bit plugin that normally doesn't work with LPX
    You may need to go back into the 32Lives app and 'unwrap' and then 'resurrect' Sylenth again...
    If the other plugins you say, are not working.... are also 32lives wrapped 32bit plugins then you will need to do the same with those too.
    Note: Make sure you are using the latest version of 32lives for full compatibility with LPX

  • Error MDX result contains too many cells (more than 1 million). (WIS 10901)

    Hi,
    We have developed an universe on BI query and developed report on it. But while running this BO query in Web Intelligence we get the following error
    A database error occured. The database error text is: Error in MDDataSetBW.GetCellData.  MDX result contains too many cells (more than 1 million). (WIS 10901)
    This BO query is restricted for one document number.
    Now when i check in the BI cube there are not more than 300-400 records for that document number.
    If i restrict the BO query for document number, delivery number, material and acknowledged date then the query runs successfully.
    Can anyone please help with this issue.

    follow this article to get the mdx generated by the webi report.
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/90b02218-d909-2e10-1988-a2ca74547900
    then try to execute the same in mdxtest transaction in bw

  • Query Error Information: Result set is too large; data retrieval ......

    Hi Experts,
    I got one problem with my query information. when Im executing my report and drill my info in my navigation panel, Instead of a table with values the message "Result set is too large; data retrieval restricted by configuration" appears. I already applied "Note 1127156 - Safety belt: Result set is too large". I imported Support Package 13 for SAP NetWeaver 7. 0 BI Java (BIIBC13_0.SCA / BIBASES13_0.SCA / BIWEBAPP13_0.SCA) and executed the program SAP_RSADMIN_MAINTAIN (in transaction SE38), with the object and the value like Note 1127156 says... but the problem still appears....
    what Should I be missing ??????  How can I fix this issue ????
    Thank you very much for helping me out..... (Any help would be rewarded)
    David Corté

    You may ask your basis guy to increase ESM buffer (rsdb/esm/buffersize_kb). Did you check the systems memory?
    Did you try to check the error dump using ST22 - Runtime error analysis?
    Edited by: ashok saha on Feb 27, 2008 10:27 PM

  • Mapping proc output to vars gets error extracting result into a variable of type (DBTYPE_UI2)

    Hi, we run std 2012.  I have a proc (sets nocount on) whose params r shown in the first block .   My execute ssis sql task mapping is shown in the block following that (same order as shown, the param sizes are all -1).  The variable
    characteristics and initial values are shown in the 3rd block.  The execute sql task command is
    exec usp_fileArrivalStatus ?,?,?,?,?,? output,? output,? output
    when I run the proc in ssms followed by a select on the output fields, I get stat 0, instance id -1 and file name empty string (aka tick tick aka '')
    The error is:
    [Execute SQL Task] Error: Executing the query "exec usp_fileArrivalStatus ?,?,?,?,?,? output,? ou..." failed with the following error:
    "An error occurred while extracting the result into a variable of type (DBTYPE_UI2)".
    Possible failure reasons: Problems with the query, "ResultSet" property not set correctly, parameters not set correctly, or connection not established correctly.
    Does anybody know what is wrong?
    CREATE PROCEDURE [dbo].[usp_fileArrivalStatus] @NewFilePattern varchar(500),
    @PkgName varchar (257),
    @appid int,
    @MsgHistCreateDate date,
    @messageFriendlyName varchar(500),
    @arrivalStatus int output,
    @instanceId bigint output,
    @fileName varchar(500) output
    VariableName Direction DataType ParamName
    User::TranFilePattern Input VARCHAR 0
    System::PackageName Input VARCHAR 1
    User::AppID Input SHORT 2
    User::todaysDate Input DATE 3
    User::TranFileArriveStatus OUTPUT SHORT 5
    User::TranFileInstanceId OUTPUT LARGE_INTEGER 6
    User::TranFileName OUTPUT VARCHAR 7
    User::TranFileFriendlyName Input VARCHAR 4
    User::TranFilePattern,string,tranfile05-Nov-2014
    User::fileDate,string,05-Nov-2014
    System::PackageName,
    User::AppID,int32,12
    User::todaysDate,DateTime, set by select getdate()
    User::TranFileArriveStatus,int32,0
    User::TranFileInstanceId,Int64,0
    User::TranFileName,string
    User::TranFileFriendlyName,string,Tran File

    I may have gotten past this.  The ui showed the first execution of that proc as the aborting component but when I looked at my error code (-1073548784), and component name in the
    message sent with notification email, I noticed the second component name.  It too executes that proc and still had ushort for appid in sql task mapping and long for instance id.  I changed these characteristics to match what I posted and got green
    on the seq container that runs both.
    I think I go thru this kind of adventure every time I try to map proc output to ssis vars.   

  • Error message - Result code= -39

    I'm getting an error message everytime I open an existing Logic song in 9.1.1.
    It says, "Logical end-of-file reached during read operation, Result code= -39"
    it doesn't seem to affect the song, but what the heck is it?

    Ask your question here:
    https://discussions.apple.com/community/ilife/garageband
    where people who know about Garageband will, I'm sure, be more than happy to help you.

  • Web Service Error - No Result Tree to Report On

    After successfully creating a web service reference and then using the 'Form and Report on Web Service' wizard I get an error, after defining the input items, at the 'Web Service results' Stage.
    It states :
    "No Result Tree to Report On
    This Web service does not have a result tree in its definition that is appropriate for a report. You may wish to run the Form on Web Service wizard instead."
    This web service returns an array of records and runs successfully outside of HTML_DB. Has anyone else had this problem ? I cannot find any information about this so far. I am using App Ex v2, 10g App Server and 9i (9.2.0.4.0) DB. The WSDL file for the web service is below.
    Thanks
    <?xml version="1.0" encoding="UTF-8" ?>
    - <!-- Generated by the Oracle JDeveloper 10g Web Services WSDL Generator
    -->
    - <!-- Date Created: Wed Jun 21 10:10:07 BST 2006
    -->
    - <definitions name="18_WS" targetNamespace="http://TESTDB/18_WS.wsdl" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://TESTDB/18_WS.wsdl" xmlns:ns1="http://TESTDB/_WS.xsd">
    - <types>
    - <schema targetNamespace="http://TESTDB/_WS.xsd" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/">
    - <complexType name="TESTDB_CollectCountTable" jdev:packageName="TESTDB" xmlns:jdev="http://xmlns.oracle.com/jdeveloper/webservices">
    - <all>
    <element name="array" type="ns1:ArrayOfTESTDB_CollectCountRecordUser" />
    </all>
    </complexType>
    - <complexType name="TESTDB_CollectCountRecordUser" jdev:packageName="TESTDB" xmlns:jdev="http://xmlns.oracle.com/jdeveloper/webservices">
    - <all>
    <element name="code" type="string" />
    <element name="category" type="string" />
    <element name="total" type="decimal" />
    </all>
    </complexType>
    - <complexType name="ArrayOfTESTDB_CollectCountRecordUser" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
    - <complexContent>
    - <restriction base="SOAP-ENC:Array">
    <attribute ref="SOAP-ENC:arrayType" wsdl:arrayType="ns1:TESTDB_CollectCountRecordUser[]" />
    </restriction>
    </complexContent>
    </complexType>
    </schema>
    </types>
    - <message name="getCollectionCount0Request">
    <part name="pNumlink" type="xsd:decimal" />
    </message>
    - <message name="getCollectionCount0Response">
    <part name="return" type="ns1:TESTDB_CollectCountTable" />
    </message>
    - <portType name="_WSPortType">
    - <operation name="getCollectionCount">
    <input name="getCollectionCount0Request" message="tns:getCollectionCount0Request" />
    <output name="getCollectionCount0Response" message="tns:getCollectionCount0Response" />
    </operation>
    </portType>
    - <binding name="_WSBinding" type="tns:_WSPortType">
    <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http" />
    - <operation name="getCollectionCount">
    <soap:operation soapAction="" style="rpc" />
    - <input name="getCollectionCount0Request">
    <soap:body use="encoded" namespace="18_WS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
    </input>
    - <output name="getCollectionCount0Response">
    <soap:body use="encoded" namespace="18_WS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
    </output>
    </operation>
    </binding>
    - <service name="18_WS">
    - <port name="_WSPort" binding="tns:_WSBinding">
    <soap:address location="http://testserver:7778/RCAHMS_WebServices-NMRSPK18_WS-context-root/_WS" />
    </port>
    </service>
    </definitions>

    This has been the subject of bug 5394491 for several weeks now without any resolution. It looks like this error will prevent the use of Jdeveloper web services that use array parameters in the current versions of Application Express. We are not planning to use Application Express for this purpose any more as there is no information about the bug (or fix) forthcoming.

  • Error on result page.

    Hello there,
    I'm doing a search and results page for my DB, I did the recordset on the results page and the form on the search page as explained in the DW's Docs but when I try a search I get this error:
    Parse error: syntax error, unexpected ')', expecting T_PAAMAYIM_NEKUDOTAYIM in /hermes/web05/b797/pow.jntservices/htdocs/results.php on line 33
    Being line 33:
    $ciudades_rsSearch = "ciudadsrch";
    if (isset(ciudadsrch)) {
    $ciudades_rsSearch = ciudadsrch;
    $tipos_rsSearch = "tiposrch";
    if (isset(tiposrch)) {
    $tipos_rsSearch = tiposrch;
    Anyone has an idea?

    Nevermind, sorry for the post...the problem was the return value was not correct...
    Thanks anyways

Maybe you are looking for