Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

DLL related issue

Status
Not open for further replies.
Feb 23, 2005
12
US
Let me give you a brief insight into what this program is doing. Our PeopleSoft developers locks batch objects (sqrs,sqc etc) everytime they make any modification to the object to prevent over-writting other developer's code. We have a tool integrated with our PeopleSoft application designer that let's developer perform this locking and unlocking mechanism.

Here's what the program is doing :

Users connect to application designer in 2-tier and request to lock or unlock batch objects via united utilities
From the back-end, batch object is grabbed from a mapped drive (\\10.104.XX.XXX\psoft\fdev8\sqr\<object_name>.sqr and locked in requestor's C drive (C:\ps\sqr). Prior to locking or unlocking the object in user's local drive, these sub-steps are completed.
1. Disconnects user's V (samba) drive
2. Retrieves the encrypted psoft username and password from T:\fs800\bin\client\winx86\cpssutil.in (developers can only access the drive as psoft group hence the psoft username password created to allow access)
3. Attempts to the reconnect the disconnected V drive with the encrypted psoft username and password from T:\fs800\bin\client\winx86\cpssutil.in
4. If step 3 is successful, object is locked/unlocked in user's C:\ps\sqr directory

The problem here is that the reconnection to user's V drive failed. The program doing all this is cpssutil.dll... The question is how do you view this dll or trace what it's doing on the window side ?. Why is the user not reconnected to V drive ??. i'll appreciate any help on this issue.

Here's a copy of the log

Parameters passed from PeopleCode:
SrcDirPath: c:\ps\sqr
TgtBaseDrive: \\10.104.XX.XXX\psoft
TgtDirPath: \\10.104.XX.XXX\psoft\fdev8\sqr
Action: 2
Type: 1
FileName: bi037uhc.sqc
ArchCount: 10

Source File Path: c:\ps\sqr\bi037uhc.sqc
Target File Path: \\10.104.XX.XXX\psoft\fdev8\sqr\bi037uhc.sqc

Server Name: 10.104.XX.XXX
Finding drives connected to 10.104.XX.XXX...
Getting the value of Username from registry key HKEY_CURRENT_USER\Network\V
Retrieved
V: is connected to \\10.104.XX.XXX\psoft
Total of 1 drive(s) connected to 10.104.XX.XXX.

Disconnecting drives connected to 10.104.XX.XXX...
Disconnecting V: from \\10.104.XX.XXX\psoft
1 of 1 drive(s) disconnected.
Successful disconnect.

Getting the value of PS_HOME from registry key HKEY_CURRENT_USER\Software\PeopleSoft\PeopleTools\Release8.10\Profiles\Default\Process Scheduler
Retrieved a value of T:\FS800 for PS_HOME from the registry.
Attempting to open T:\FS800\bin\client\winx86\cpssutil.in...Success.

Attempting to connect to target drive as MS\jdoe
Comparing \\10.104.XX.XXX\psoft to \\10.104.XX.XXX\psoft.
Connecting target drive V: to a UNC of \\10.104.XX.XXX\psoft as MS\jdoe...Success.

Checking target file status...OK
Checking source file status...OK

Archiving files...
Checking for archive directory...
Checking for max archive file...it exists.
Delete it...Success.
Moving V:\fdev8\sqr\archive\bi037uhc.sqc.09 to V:\fdev8\sqr\archive\bi037uhc.sqc.10...Success.
Moving V:\fdev8\sqr\archive\bi037uhc.sqc.08 to V:\fdev8\sqr\archive\bi037uhc.sqc.09...Success.
Moving V:\fdev8\sqr\archive\bi037uhc.sqc.07 to V:\fdev8\sqr\archive\bi037uhc.sqc.08...Success.
Moving V:\fdev8\sqr\archive\bi037uhc.sqc.06 to V:\fdev8\sqr\archive\bi037uhc.sqc.07...Success.
Moving V:\fdev8\sqr\archive\bi037uhc.sqc.05 to V:\fdev8\sqr\archive\bi037uhc.sqc.06...Success.
Moving V:\fdev8\sqr\archive\bi037uhc.sqc.04 to V:\fdev8\sqr\archive\bi037uhc.sqc.05...Success.
Moving V:\fdev8\sqr\archive\bi037uhc.sqc.03 to V:\fdev8\sqr\archive\bi037uhc.sqc.04...Success.
Moving V:\fdev8\sqr\archive\bi037uhc.sqc.02 to V:\fdev8\sqr\archive\bi037uhc.sqc.03...Success.
Moving V:\fdev8\sqr\archive\bi037uhc.sqc.01 to V:\fdev8\sqr\archive\bi037uhc.sqc.02...Success.
Moving V:\fdev8\sqr\bi037uhc.sqc to V:\fdev8\sqr\archive\bi037uhc.sqc.01...Success.
Archiving complete...
Copying c:\ps\sqr\bi037uhc.sqc to V:\fdev8\sqr\bi037uhc.sqc...Success.

Re-establishing connections....
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top