- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Re: Subject: SYSTEM-F-ACCVIO, access violation, re...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-14-2008 11:40 PM
тАО07-14-2008 11:40 PM
%SYSTEM-F-ACCVIO, access violation, reason mask=04, virtual address=000000007FFC
FB82, PC=0000000000041A24, PS=0000001B
%TRACE-F-TRACEBACK, symbolic stack dump follows
image module routine line rel PC abs PC
CUSTUPLD CUSTUPLD CUSTUPLD 483 000000001A24 0000000000041A24
CUSTUPLD 0 00000000000B6E40 00000000000B6E40
0 FFFFFFFF8026DEF4 FFFFFFFF8026DEF4.
line 483 is where i'm trying to move a value to linkage section variable.Actually this Cobol program is called by a java program.It is working fine if it called by another cobol program.But this error occurs when ever i'm trying to call it from a Java program.Kindly help me.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-14-2008 11:55 PM
тАО07-14-2008 11:55 PM
Re: Subject: SYSTEM-F-ACCVIO, access violation, reason mask=04
Wim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-14-2008 11:58 PM
тАО07-14-2008 11:58 PM
SolutionConsider setting $ SET PROC/DUMP before you run your program, this should cause an image dump to be written (imagename.DMP), if this problem occurs. You can then look at the image dump ($ ANAL/PROC) to find out the failing instruction, the instruction stream and the relevant source code.
Volker.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-15-2008 01:12 AM
тАО07-15-2008 01:12 AM
Re: Subject: SYSTEM-F-ACCVIO, access violation, reason mask=04
I have used dmp to know the error and it showed this.
%SYSTEM-F-ACCVIO, access violation, reason mask=04, virtual address=000000007FFC
FB82, PC=0000000000041A24, PS=0000001B
break on unhandled exception at CUSTUPLD\%LINE 483+24
%DEBUG-W-UNAOPNSRC, unable to open source file VOL090:[IFS_SKUMAR.FMSSRCE]CUSTUP
LD.COB;2
-RMS-F-DEV, error in device name or inappropriate device type for operation
483: Source line not available
DBG> exit
here is the error i got when i used SOAP and WSIT for java programming
ERROR:CustomerUploadSoapBindingImp1:Failed in Customer Upload Module in JAVA program: com.hp.wsi.WsiServerException: %CMA-F-EXIT_THREAD, current thread current thread has been requested to exit.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-15-2008 02:34 AM
тАО07-15-2008 02:34 AM
Re: Subject: SYSTEM-F-ACCVIO, access violation, reason mask=04
Wim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-15-2008 03:00 AM
тАО07-15-2008 03:00 AM
Re: Subject: SYSTEM-F-ACCVIO, access violation, reason mask=04
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-15-2008 03:44 AM
тАО07-15-2008 03:44 AM
Re: Subject: SYSTEM-F-ACCVIO, access violation, reason mask=04
Consider to also look at the failing instruction with:
DBG> EXA/INS @PC
Look at the instruction stream with:
DBG> EXA/INS @PC-24:@PC
Creating a COBOL listing file including /MACHINE (machine code listing) may also help iunderstand, which access fails.
Volker.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-15-2008 04:44 AM
тАО07-15-2008 04:44 AM
Re: Subject: SYSTEM-F-ACCVIO, access violation, reason mask=04
Is that the line "MOVE "Y" TO LK_CUST_FLAG."
In 1000-PROGRAM-INITIALIZATION?
So that is the first time any linkage field is use, write or read. Correct?
Since callign from Cobol works, we must for now assume that the attached cobol is not really intersting, at least approximately right. The trouble is likely in how java passes the parameter.
Cobol expects a single pointer to a 5*150+1 byte variable. Is that what is being passed?
When you run under debug control, can you 'see' the argument?
Hein.
I Could not help but notice some intersting (lack of) error handling in the attached cobol:
1)
"MOVE CUSTPROF-FILE-STATUS TO CUSTPROF-FILE-STATUS."
Just in case?!
2)
>> IF HITSLOG-FILE-STATUS = "92"
GO TO 1110-OPEN-HITS-IO
Testing for a locked record with hard loop?
Just as well that OPEN can not possibly return status 92.
3) main logic in a 'close section'
PERFORM 1111-WRITE-HITS-IO THRU 1111-EXIT ?
4) files opened and closed on every activation?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-15-2008 10:24 PM
тАО07-15-2008 10:24 PM
Re: Subject: SYSTEM-F-ACCVIO, access violation, reason mask=04
sorry that i cudn't reply soon.
i got the error at this line
MOVE "Y" TO LK_CUST_FLAG.
yeah files are opened and closed at every activation.
i got this error even when i'm running it as a stand alone cobol program with out java.i cannot proceed further. :(
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-16-2008 01:28 AM
тАО07-16-2008 01:28 AM