Hi!
I'm newbie in BSP and faced with problem with it.
I've created a simple BSP app (named "z_bsp_test") with one page and one MIME-object (actually, it is imported MSOffice document, named "order.doc") . Also, my app is assigned to a service user in transaction SICF. HTML code of my page is something like that:
<html>
<head>
script for="button1" event="onclick" language="vbscript"
set wordApp = CreateObject("Word.Application")
wordApp.documents.open("http://test.prv/sap/bc/bsp/sap/z_bsp_test/order.doc")
wordApp.visible = true
/script
</head>
<body>
<input type="button" name="button1" value="Print" />
</body>
</html>
I can view my page in browser (IE 6.0) without any login prompt (because I've set logon options in SICF for my app), but when I click button "Print" on my page, MSWord prompts me for username and password. How can I remove this prompt? Maybe I didn't set some options in SICF? Any suggests?
Thanks