92 messaggi dal 16 agosto 2004
Salve a tutta la comunità
sto utilizzato iTextSharp per la creazione di un pdf,
ma ho un problema in locale mi funziona, quando lo carico mi genera il seguente errore:"Server Error in '/' Application. "
Le istruzione che utilizzo sono:
'Pdf
Dim Pdf As iTextSharp.text.Document = New iTextSharp.text.Document
Dim pdfWriter As iTextSharp.text.pdf.PdfWriter

Dim File As FileStream = New FileStream("d:\inetpub\webs\AnestesiaOnLinecom\public\" & Session("id") & "1.pdf", FileMode.Create)

pdfWriter.getInstance(Pdf, File)
Pdf.Open()

Dim Testo As iTextSharp.text.Phrase = New iTextSharp.text.Phrase
Dim Tabella As iTextSharp.text.Table = New iTextSharp.text.Table(1)
Dim m_testo As String
m_testo = Label2.Text & vbCrLf & vbCrLf & Label1.Text & vbCrLf & Label3.Text & vbCrLf & Label4.Text & vbCrLf
Testo.Add(m_testo)
Dim i, m_spazio, m_righe
i = 0
m_spazio = ""
m_righe = Int(Len(TxtNote.Text) / 62)
For i = 1 To 30 - m_righe
m_spazio = m_spazio & vbCrLf
Next
Tabella.addCell(" " & TxtNote.Text & m_spazio)

Pdf.Add(Testo)
Pdf.Add(Tabella)

Pdf.Close()


Quello che succede è che crea il pdf con dimensione 0 è poi va in errore.
Qualcuno ha qualche suggerimento?
Ciao
Gino
unixgino wrote:
Quello che succede è che crea il pdf con dimensione 0 è poi va in errore. Qualcuno ha qualche suggerimento?

potrebbero essere problemi di permissioni, attiva la modalità debug e poi posta l'errore completo.

Daniele Bochicchio | ASPItalia.com | Libri
Chief Operating Officer@iCubed
Microsoft Regional Director & MVP
92 messaggi dal 16 agosto 2004
Ciao,
la modalita debug nel progetto è attivata, mentre l'errore che mi da èil seguente:

Server Error in '/' Application.
--------------------------------------------------------------------------------

Runtime Error
Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.

Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".
92 messaggi dal 16 agosto 2004
Non penso che sia un problema di permessi, perchè io provo a creare i file
pdf sia nella cartella public che mdb-database.
unixgino wrote:
Ciao,
la modalita debug nel progetto è attivata, mentre l'errore che mi da èil seguente:

ok, ma l'errore esteso non si vede per i motivi che questo errore stesso ti dice.
una volta che hai l'errore nel dettaglio, forse si può capire meglio quale sia il tuo effettivo problema.

Daniele Bochicchio | ASPItalia.com | Libri
Chief Operating Officer@iCubed
Microsoft Regional Director & MVP
92 messaggi dal 16 agosto 2004
Ecco il dettaglio del''errore:
Security Exception


Description: The application attempted to perform an operation not allowed by the security policy. To grant this application the required permission please contact your system administrator or change the application's trust level in the configuration file.

Exception Details: System.Security.SecurityException: That assembly does not allow partially trusted callers.

Source Error:

The source code that generated this unhandled exception can only be shown when compiled in debug mode. To enable this, please follow one of the below steps, then request the URL:

1. Add a "Debug=true" directive at the top of the file that generated the error. Example:

<%@ Page Language="C#" Debug="true" %>

or:

2) Add the following section to the configuration file of your application:

<configuration>
<system.web>
<compilation debug="true"/>
</system.web>
</configuration>

Note that this second technique will cause all files within a given application to be compiled in debug mode. The first technique will cause only that particular file to be compiled in debug mode.

Important: Running applications in debug mode does incur a memory/performance overhead. You should make sure that an application has debugging disabled before deploying into production scenario.

Stack Trace:

[SecurityException: That assembly does not allow partially trusted callers.]
AnestesiaOnLine.WebStep4_Esito2.ButtonSAlva_Click(Object sender, EventArgs e) in C:\Inetpub\wwwroot\AnestesiaOnLine\WebStep4_Esito2.aspx.vb:298
System.Web.UI.WebControls.Button.OnClick(EventArgs e) +105
System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument) +107
System.Web.UI.WebControls.Button.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument) +7
System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) +11
System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) +33
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +6953
System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +154
System.Web.UI.Page.ProcessRequest() +86
System.Web.UI.Page.ProcessRequestWithNoAssert(HttpContext context) +18
System.Web.UI.Page.ProcessRequest(HttpContext context) +49
ASP.webstep4_esito2_aspx.ProcessRequest(HttpContext context) +29
System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +154
System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +64




--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:2.0.50727.42; ASP.NET Version:2.0.50727.42


Ciao
Gino
unixgino wrote:
Exception Details: System.Security.SecurityException: That assembly does not allow partially trusted callers.

ok, se ne deduce che sei su Aruba, visto che in passato altra gente ha già postato con lo stesso problema.
http://blogs.aspitalia.com/daniele/post1667/ASP.NET-2.0-AllowPartiallyTrustedCallers-Medium-Trust.aspx

Daniele Bochicchio | ASPItalia.com | Libri
Chief Operating Officer@iCubed
Microsoft Regional Director & MVP
92 messaggi dal 16 agosto 2004
Ciao,
ho inserito nel mio assembly questa istruzione:
<Assembly: AllowPartiallyTrustedCallers()>
Ma mi da lo stesso errore.
Ciao
gino

Torna al forum | Feed RSS

ASPItalia.com non è responsabile per il contenuto dei messaggi presenti su questo servizio, non avendo nessun controllo sui messaggi postati nei propri forum, che rappresentano l'espressione del pensiero degli autori.