Hi!
I used DPBuddy to upload some files to the DataPower. It worked fine.
But today when I tryed to use the same command I've received such an
error
D:\soft\DataPower\DataPower>dpconfig.bat
Buildfile: test.ant
copy:
[dp:copy] Executing DataPower file upload command...
[dp:copy] Copying 2 file(s) to the device...
[dp:copy] Executing request 'do-action/CreateDir' against
'
ERIB.EXT.DEV' domain
[dp:copy] Executing request 'set-file' against '
ERIB.EXT.DEV' domain
BUILD FAILED
D:\soft\DataPower\DataPower\test.ant:62: Request failed with the error
'Access Denied (from client)'
Total time: 35 seconds
Nothing changed in DataPower configuration and DPBuddy script
properties since it worked fine. I tryed different files and amount of
files being uploaded, but always get such an error.
Does anybody know what does it mean? How can I get it work again?
The DPBuddy copy command I used is as follows
<!-- Upload files to the device -->
<target name="copy">
<!-- root directory for out wsdl files on the device -->
<property name="destination" value="PhizIC-res" />
<!-- cleanDirectories="true" will automatically delete all
files from any directory
on the device where we're uploading the files to -->
<dp:copy>
<dpFileset prefix="${destination}"
dir="PhizIC-res" includes="**/* **/*"/>
</dp:copy>
</target>