Click here to Skip to main content
15,887,477 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: triggering javascript confirm dialog via a function (not button event) Pin
Grapes-R-Fun24-Jul-06 13:22
Grapes-R-Fun24-Jul-06 13:22 
GeneralRe: triggering javascript confirm dialog via a function (not button event) Pin
RichardGrimmer25-Jul-06 7:16
RichardGrimmer25-Jul-06 7:16 
GeneralRe: triggering javascript confirm dialog via a function (not button event) Pin
Grapes-R-Fun25-Jul-06 8:35
Grapes-R-Fun25-Jul-06 8:35 
QuestionHow to read data from xml file to dataset [modified] Pin
B Desai21-Jul-06 9:56
B Desai21-Jul-06 9:56 
AnswerRe: How to read data from xml file to dataset Pin
Grapes-R-Fun21-Jul-06 15:17
Grapes-R-Fun21-Jul-06 15:17 
GeneralRe: How to read data from xml file to dataset Pin
B Desai22-Jul-06 17:20
B Desai22-Jul-06 17:20 
GeneralRe: How to read data from xml file to dataset Pin
Grapes-R-Fun23-Jul-06 8:25
Grapes-R-Fun23-Jul-06 8:25 
QuestionCrystal Reports fail to load in web comonent Pin
icestatue21-Jul-06 9:11
icestatue21-Jul-06 9:11 
While using the Crystal Report SDK and Business Objects Enterprise XI R2 on a web site that is not hosted on the same machine as the Business Objects server all attempts to retrieve a report from any binding senario available from business objects all fail. A sample block of code for any who are curious.

<br />
string temp=null;<br />
string sampleReportName = "Report1.rpt		<br />
SessionMgr sessionMgr = new SessionMgr();<br />
EnterpriseSession enterpriseSession;<br />
EnterpriseService enterpriseService;<br />
EnterpriseService RasService;<br />
InfoStore infoStore;<br />
nfoObjects infoObjects;<br />
InfoObject infoObject;<br />
					<br />
ReportAppFactory reportAppFactory;<br />
ReportClientDocument reportClientDocument;<br />
 enterpriseSession = sessionMgr.Logon           (UserName,password,"BOHost","secEnterprise");<br />
<br />
try<br />
{		<br />
   enterpriseService = enterpriseSession.GetService("BOHost","InfoStore");<br />
//the code dies here if it is hosted on a server other then the B.O. server<br />
RasService = enterpriseSession.GetService("BOHost",","RASReportFactory");<br />
			<br />
 infoStore = new InfoStore(enterpriseService);<br />
 infoObjects = infoStore.Query("Select SI_ID From CI_INFOOBJECTS Where    SI_NAME Like '" + sampleReportName +"'");<br />
<br />
 infoObject = infoObjects[1];<br />
 temp = infoObject.ID.ToString();<br />
<br />
 reportAppFactory = (ReportAppFactory)RasService.Interface;<br />
 reportClientDocument = reportAppFactory.OpenDocument(infoObject.ID,0);<br />
 CrystalReportViewer1.ReportSource = reportClientDocument;<br />
}<br />
catch(Exception et)<br />
{<br />
	temp =et.Message;<br />
	enterpriseSession.Logoff();	<br />
}<br />
enterpriseSession.Logoff();<br />


I wish those dead beats at Business Objects would spend more time fixing their buggy products then going around advertising to all the idiot managers who think this product is the answer to all their problems. We have a saying for this in America that the French don't understand, its called "False Advertising" Thanks again. I will try to stop complaining.Mad | :mad:

nothing

Questionneed help about DataView [modified] Pin
mahesh kukkadapu21-Jul-06 9:07
mahesh kukkadapu21-Jul-06 9:07 
AnswerRe: need help about DataView Pin
leckey21-Jul-06 11:51
leckey21-Jul-06 11:51 
AnswerRe: How to pass List collection to a web method??? Pin
Felipe Dalorzo21-Jul-06 7:48
Felipe Dalorzo21-Jul-06 7:48 
GeneralRe: How to pass List collection to a web method??? Pin
JimFeng21-Jul-06 8:37
JimFeng21-Jul-06 8:37 
AnswerRe: How to pass List collection to a web method??? Pin
Felipe Dalorzo21-Jul-06 10:12
Felipe Dalorzo21-Jul-06 10:12 
GeneralRe: How to pass List collection to a web method??? Pin
JimFeng24-Jul-06 7:04
JimFeng24-Jul-06 7:04 
QuestionNot loading ascx in some websites only Pin
SIJUTHOMASP21-Jul-06 6:36
professionalSIJUTHOMASP21-Jul-06 6:36 
QuestionNon Item Selected on RadioButtonList Pin
Armando_Ramirez21-Jul-06 6:33
Armando_Ramirez21-Jul-06 6:33 
AnswerRe: Non Item Selected on RadioButtonList Pin
Grapes-R-Fun21-Jul-06 14:45
Grapes-R-Fun21-Jul-06 14:45 
QuestionType.GetType() Pin
Mircea Grelus21-Jul-06 6:10
Mircea Grelus21-Jul-06 6:10 
AnswerRe: Type.GetType() Pin
Felipe Dalorzo21-Jul-06 8:11
Felipe Dalorzo21-Jul-06 8:11 
GeneralRe: Type.GetType() Pin
Mircea Grelus21-Jul-06 8:28
Mircea Grelus21-Jul-06 8:28 
GeneralRe: Type.GetType() Pin
Felipe Dalorzo21-Jul-06 10:05
Felipe Dalorzo21-Jul-06 10:05 
GeneralRe: Type.GetType() Pin
Mircea Grelus21-Jul-06 10:23
Mircea Grelus21-Jul-06 10:23 
GeneralRe: Type.GetType() Pin
Felipe Dalorzo21-Jul-06 10:40
Felipe Dalorzo21-Jul-06 10:40 
GeneralRe: Type.GetType() Pin
Mircea Grelus21-Jul-06 12:53
Mircea Grelus21-Jul-06 12:53 
Questionreporting tool with printing option Pin
cdotpal21-Jul-06 6:07
cdotpal21-Jul-06 6:07 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.