Closed GoogleCodeExporter closed 9 years ago
even the wpf sample provided does not return the image results , web and news
work fine
Original comment by suhailka...@gmail.com
on 28 Oct 2011 at 9:43
I will check this. Can you show me the specific options you setted?
Maas
Original comment by Maas...@gmail.com
on 28 Oct 2011 at 3:39
for wcf use any options it will not work
from code is below
Dim dl As New YahooManaged.Search.BOSS.API.SearchDownload
dl.UniversalOptions.HttpsUsed = False
dl.UniversalOptions.ConsumerKey = ConsumerKey
dl.UniversalOptions.ConsumerSecret = New System.Security.SecureString
For Each c In ConsumerSecret
dl.UniversalOptions.ConsumerSecret.AppendChar(c)
Next
dl.UniversalOptions.ConsumerSecret.MakeReadOnly()
Dim imageSearch As New YahooManaged.Search.BOSS.API.ImageSearchOptions
imageSearch.Start = start1
imageSearch.Count = SearchImagesCount
imageSearch.QueryText = Query
imageSearch.Culture = New YahooManaged.Culture(YahooManaged.Language.en, YahooManaged.Country.US)
imageSearch.Dimensions = YahooManaged.Search.BOSS.ImageSearchDimensions.All
imageSearch.RefererUrl = Nothing
imageSearch.Url = Nothing
Try
If SearchImageFilter.ToLower = "no" Then
imageSearch.AllowAdultContent = False
Else
imageSearch.AllowAdultContent = True
End If
Catch ex As Exception
imageSearch.AllowAdultContent = False
End Try
Original comment by suhailka...@gmail.com
on 28 Oct 2011 at 5:59
fixed/done
It was a problem of parsing process (size property).
I uploaded the new files (0.10.0.1).
Original comment by Maas...@gmail.com
on 28 Oct 2011 at 9:01
why is Thumbnail.Width is always returned zero ?
Original comment by suhailka...@gmail.com
on 29 Oct 2011 at 11:56
Same problem...
Files updated.
Thx for bug reporting!
Original comment by Maas...@gmail.com
on 31 Oct 2011 at 11:23
why do i get a warning in VS 2010
Could not load file or assembly 'MaasOne.Base' or one of its dependencies. An
attempt was made to load a program with an incorrect format
the warning is on line
<%@ Page Language="vb" %>
Original comment by suhailka...@gmail.com
on 1 Nov 2011 at 12:21
Did you use AnyCPU dll?
It seems there was a problem with compiling, because my Config Manager was
setted to AnyCPU, but the compiling setting in the Project was setted to x64. I
don't know why, but I compiled it new and it should be OK now.
Original comment by Maas...@gmail.com
on 1 Nov 2011 at 1:20
yes AnyCpu i downloaded the new one but still the same issue
Original comment by suhailka...@gmail.com
on 1 Nov 2011 at 1:31
I tested AnyCPU on x86 and x64 systems. Both are OK.
Did you tried x86 or x64? It could be (if you have an x64 OS) that you have to
use x86 for WCF.
Original comment by Maas...@gmail.com
on 1 Nov 2011 at 1:43
i am still getting
Could not load file or assembly 'MaasOne.Base' or one of its dependencies. An attempt was made to load a program with an incorrect format.
but now the application fails to run and throws the above message
i am running on x64 OS
when i add x86 or x64 assembly my application does not compile and VS throw the
same error
only when i add x86 version of assembly then my applications complies fine but
then it throw the same error in browser
my application configuration is set to AnyCPU
Original comment by suhailka...@gmail.com
on 11 Nov 2011 at 9:54
Original issue reported on code.google.com by
suhailka...@gmail.com
on 28 Oct 2011 at 9:24