Portal | IBM Manuals | Downloads | Products | Refer | Info | Programs | JCLs | Forum Rules*| Site Map | Mainframe CD 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index
 
Register
 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index FAQ Search Memberlist Usergroups Profile Log in to check your private messages Log in
 
xml generate CDATA in cobol

 
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> Mainframe COBOL
Author Message
elvin buno

New User


Joined: 08 May 2008
Posts: 2
Location: nyv

PostPosted: Thu May 08, 2008 11:07 pm    Post subject: xml generate CDATA in cobol
Reply with quote

I just started learning XML GENERATE using cobol and I need to know how to generate CDATA.

I tried to move ![CDATA[......]] to the field and when I execute the generate its not creating a correct xml CDATA format..

thanks..
Back to top
View user's profile Send private message
References
PostPosted: Thu May 08, 2008 11:07 pm    Post subject: Re: xml generate CDATA in cobol Reply with quote

dick scherrer

Global Moderator


Joined: 23 Nov 2006
Posts: 6943
Location: 221 B Baker St

PostPosted: Fri May 09, 2008 4:53 am    Post subject:
Reply with quote

Hello,

If you have not done so already, i'd suggest looking in the ENTERPRISE COBOL Programming Guide which is available via the "IBM Manuals" link at the top of the page.
Back to top
View user's profile Send private message
Aaru

Senior Member


Joined: 03 Jul 2007
Posts: 821
Location: Chennai - India

PostPosted: Sat May 10, 2008 3:54 am    Post subject: Reply to: xml generate CDATA in cobol
Reply with quote

elvin,

welcome to the forums. Could you please post more details on the problem you are facing?

XML generate would work fine provided the other things are set/populated correctly.

1) First check whether the XML copybook (structure of the final XML) is populated with data.

2) Then check whether you have used the correct syntax for the generate command. It is usually XML generate followed by the 01/03 level of the XML copybook.


Post more details.
Back to top
View user's profile Send private message
elvin buno

New User


Joined: 08 May 2008
Posts: 2
Location: nyv

PostPosted: Mon May 12, 2008 6:05 pm    Post subject: Reply to: xml generate CDATA in cobol
Reply with quote

Hi thanks for the reply...
This is what I did..

05 OPEN-CDATA.
10 FILLER PIC X(02) VALUE '<!'.
10 OPEN-SQUARE-BRACKET1 PIC X(01) VALUE x'BA'.
10 FILLER PIC X(05) VALUE 'CDATA'.
10 OPEN-SQUARE-BRACKET2 PIC X(01) VALUE x'BA'.
05 CLOSE-CDATA.
10 CLOSE-SQUARE-BRACKET2 PIC X(01) VALUE x'BB'.
10 CLOSE-SQUARE-BRACKET1 PIC X(01) VALUE x'BB'.
10 FILLER PIC X(01) VALUE '>'.

01 daterec.
.
05 x-cdata pic x(80).
.
.

STRING open-cdata DELIMITED BY size
'This,< test> is for CDATA' DELIMITED BY sizE
close-cdata DELIMITED BY size
INTO x-cdata.

Xml generate xml-data from datarec count in numChars

I'm expecting part of my xml to have.

<![CDATA[This,<test> is for CDATA]]>
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> Mainframe COBOL All times are GMT + 6 Hours
Page 1 of 1