[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

microsoft.public.dotnet.framework.sdk

Quickstart MatchClient sample network error

<.>

7/6/2003 2:11:00 AM

I am trying to run the Html Text Pattern Matching Sample (MatchClient) and
get this:

A network error occured or the service was unable to locate the symbol,
please try again.

???


2 Answers

<.>

7/6/2003 11:01:00 AM

0

More on the problem.....It crashes in this sub......There is no reference
anywhere in the SDK (v1.1) of a TestIt() constructor.

Sub GetQuote(Src As Object, E As EventArgs)
Try
Dim matcher As New TestIt()
Dim matches As TestHeadersMatches
matches = matcher.TestHeaders()
Title.InnerHtml = matches.Title
H1.InnerHtml = matches.H1
StockDetails.Visible = true
Catch Exc As Exception
Message.InnerHtml = "A network error occured or the service was
unable to locate the symbol, please try again."
End Try
End Sub


brianco

7/7/2003 7:03:00 PM

0

Actually the TestIt() function resides in the file ''MatchService.vb''. When
you build that directory, it creates a ''MatchServiceVB.dll'' that contains
the function and is called by ''MatchClient.aspx''. Make sure you''ve setup
the Quickstarts correctly through the shortcut (Program
Files/Microsoft.NET/SDK/v1.1/Samples/Setup/ConfigSamples.exe).

-Brian
Longhorn SDK QA

--------------------
| From: <.>
| References: <ebvGQP2QDHA.3880@tk2msftngp13.phx.gbl>
| Subject: Re: Quickstart MatchClient sample network error
| Date: Sun, 6 Jul 2003 07:01:16 -0400
|
| More on the problem.....It crashes in this sub......There is no reference
| anywhere in the SDK (v1.1) of a TestIt() constructor.
|
| Sub GetQuote(Src As Object, E As EventArgs)
| Try
| Dim matcher As New TestIt()
| Dim matches As TestHeadersMatches
| matches = matcher.TestHeaders()
| Title.InnerHtml = matches.Title
| H1.InnerHtml = matches.H1
| StockDetails.Visible = true
| Catch Exc As Exception
| Message.InnerHtml = "A network error occured or the service
was
| unable to locate the symbol, please try again."
| End Try
| End Sub
|
|
|