cancel
Showing results for 
Search instead for 
Did you mean: 

How to deploy my web application .war file into SAP netweaver Engine

Former Member
0 Kudos

Hi All,

I want to deploy web application which is developped using JAVA web technology into SAP netweaver Engine.

I tried to deploy .war file through SDM but it complained the following error

"Error loading archive

C;\Document and Settings\cr1adm\Desktop\MyProject.war

(server side name is: F:\usr\sap\JR1\JC01\SDM\program\temp\MyProject.war)

com.sap.sdm.util.sduread.IIIFormattedSduFileException: The information about development component found in the manifest is either missing or incomplete!

Manifest attributes are missing or have badly formatted value:

attribute keylocation missing

attribute keyname is missing

attribute keyvendor is missing

attribute keycounter is missing

(F:\usr\sap\JR1\JC01\SDM\program\temp\MyProject.war)"

Can any one please suggest how to deploy external web application into SAP netweaver engine.

Is there any procedure to follow to do this.

your inputs will be highly appreciated...

Thanks in advance

JM

Accepted Solutions (0)

Answers (4)

Answers (4)

ErvinSzolke
Product and Topic Expert
Product and Topic Expert
0 Kudos

Hi JM,

please check this forum:

How to deploy web application .war file into SAP NetWeaver Engine?

Best Regards,

Ervin

thunder_feng
Active Participant
0 Kudos

Hi JM

Did you try to deploy it with SDM remote gui? which is available at

/usr/sap/<SID>/<instance>/SDM/program/remoteGui.bat or remoteGUI.sh(on Unix/Linux)

And regarding the "web application", are you meaning only a "J2EE Web Module", do you have the corresponding

"EJB Module" if it is a J2EE applicationi?

Thanks

Thunder'

Former Member
0 Kudos

You can use SDM RemoteGui to deploy any kind of app.

http://help.sap.com/saphelp_nw70ehp1/helpdata/en/22/a7663bb3808c1fe10000000a114084/frameset.htm

Regards,

Snehal

Former Member
0 Kudos

You may need to convert the .war archive to SDA/SCA file format before deploying it to SAP Netweaver Engine.

Check out the below SAP NOTE if it is usefull.

Note 1223957 - Usage of NetWeaver Packaging Tool.

Apart from SDM you can also deploy the files through telnet...

Note 859444 - How to deploy libraries on J2EE Engine 6.40

1)Connect to telnet as below

Start --> Run

telnet hostname/ip address portno

Ex: telnet xxx.xx.xx.x 5<Instance no>08

2)Login with administrator id:

Use the below command to deploy the files.

deploy <directory path to the SDAs location> version_rule=all on_prerequisite_error=stop on_deploy_error=stop

Example: deploy E:\usr\sap\trans\EPS\in\VCBASE03_0-10006939.SCA version_rule=all on_prerequisite_error=stop on_deploy_error=stop.

Also have a look at this note which talks about the error you are getting.

Note 1171457 - IllFormattedSduManifest/SduFileException during deployment

Hope it helps.

Edited by: Khaiser Khan Mohammed on Nov 7, 2010 12:17 PM