Advertisement

09.10.2008 at 05:56AM PDT, ID: 23718971
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

7.8

Got a Fix? ON A 10.2.0.4 LINUX DATABASE, AN XML PROCEDURES IS RETURNING NULL VALUES

Asked by JSTBLSD in Oracle 10.x, Linux, Oracle Database

Scenario: We are sending information between Appro Loan Center and OSI via the OSI CMC Interface application. A connection is made to OSI to retrieve data to verify account existence so that the XML file can be populated with authentication and account data from Appro to be sent over to OSI.  
How process should work:Appro asks for permission to connect to OSI and verify if an account exists  OSI sends information to the appro call letting it know if the account exists or not. If so Appro sends the XML file. If not Appro creates the account, with permission from OSI, and sends the XML file over.
Scenario:  Appro asks for permission to connect and connects
Issue: OSI does not send a response

ISSUE Enviornment:
Oracle Server - Enterprise Edition
Linux x86

Findings: The issue is due to the following:
 ON A 10.2.0.4 LINUX DATABASE, AN XML PROCEDURES IS RETURNING NULL VALUES.
The same code returns valid data on a 10.2.0.2 database. Is there a known bug and fix for this issue?
Can SOMEBODY please help me? This critical issue has my project at a standstill. I cannot perform testing if the systems are unable to communicate with each other.


On a 10.2.0.4 Linux database, an XML procedures is returning null values. The same code returns valid data on a 10.2.0.2 database. Is there a known bug and fix for this issue?

### List the exact error messages and message text: ###
DECLARE

out_ERRORNBR NUMBER;
out_ERRORMSG VARCHAR2(200);
out_ORAERRORMSG VARCHAR2(200);
out_XML CLOB;
idx integer;
len integer;
Lenb integer;

XMLin CLOB := '<Transaction commitRollbackYN="N">
<Input>
<UserAuthentication connectId="1" authTyp="2">
<UserId>JMARINO</UserId>
<Passwd></Passwd>
<ApplNbr>7726</ApplNbr>
<PhysAddr>001560c71cfa</PhysAddr>
<NtwkNodeName>4548A</NtwkNodeName>
</UserAuthentication>

<Requests>
<Request reqNbr="1" reqTypCd="7711">
<Person persNbr="1" memberNbr="" taxId=""/>
</Request>
</Requests>
</Input>
</Transaction>';

BEGIN
PACK_Core_API_Main.Proc_Core_Api_Main(XMLin, out_XML);
DBMS_OUTPUT.PUT_LINE(to_char(SYSDATE, 'mm/dd/yyyy hh:mi:ss PM'));
DBMS_OUTPUT.PUT_LINE('XML in ....');
idx := 1;
len := length(XMLin);
Lenb := mod(len, 200);
while idx <=Len Loop
dbms_output.put_line(SUBSTR(XMLin,idx,200));
idx := idx + 200 ;
end loop;
DBMS_OUTPUT.PUT_LINE('----------------------------------------------------------
-------------------------------------------');

DBMS_OUTPUT.PUT_LINE('XML out ....');
idx := 1;
len := length(out_XML);
Lenb := mod(len, 200);
while idx <=Len Loop
dbms_output.put_line(SUBSTR(out_XML,idx,200));
idx := idx + 200 ;
end loop;
DBMS_OUTPUT.PUT_LINE('----------------------------------------------------------
-------------------------------------------');
END;Start Free Trial
[+][-]09.13.2008 at 07:15AM PDT, ID: 22467577

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 7-day free trial to view this Administrative Comment or ask the Experts your question.

 
[+][-]09.16.2008 at 05:58AM PDT, ID: 22487860

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 7-day free trial to view this Administrative Comment or ask the Experts your question.

 
[+][-]09.16.2008 at 06:53AM PDT, ID: 22488364

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]09.19.2008 at 05:23AM PDT, ID: 22520322

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]10.08.2008 at 07:06AM PDT, ID: 22669117

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]10.08.2008 at 07:10AM PDT, ID: 22669153

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: Oracle 10.x, Linux, Oracle Database
Sign Up Now!
Solution Provided By: JSTBLSD
Participating Experts: 1
Solution Grade: A
 
 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628