askSam Forums Home   Search   Login   Register   Member List   Help  

 Search
   
  

Viewing Page 1. More matches available? Yes
Prev Next
1.Re: Programming askSam in C
Posted by eric on 1/26/2004 2:37:12 PM
You will need a copy of the askSam SDK to use the C/C++ APIs.

Eric Sites, CTO
askSam Systems
2.Re: string compare bug?
Posted by eric on 5/17/2004 12:09:53 PM
Bram,

Did you try setting that key up as a non-tokenizing key?

Also try using the contains or contains-all function.

Cheers,
Eric
3.Re: Outlook 2003 import broken
Posted by eric on 2/12/2004 6:03:34 PM
We know about this problem and we are currently working on a fix.

We should have a new build ready in a day or two that will fix this problem and I will post you a message when it is done.

Cheers,
Eric
4.Re: String compare crash
Posted by eric on 3/3/2004 11:02:59 AM
Bram,

This has been fixed in build 1139 of Freedom.

Cheers,
Eric
5.Re: Delimiter
Posted by eric on 2/12/2004 6:45:00 PM
Hanson,

I would try to reinstall askSam, when you do make sure you are logged in as the administrator. It sounds like you do not have access to the registry where askSam stores this information.

Cheers,
Eric
6.Re: servers
Posted by eric on 2/12/2004 5:40:38 PM
Aramis,

It will work with any Windows Webserver that can run CGI applications.

The askSam Web Publisher does not use ASP, PHP, or any other scripting language.

Cheers,
Eric
7.Re: Entry Form & SDK
Posted by eric on 2/12/2004 5:32:23 PM
Eise,

The answer is yes.

When saving a new entry form into the database set the document type to DT_ENTRY like so:

asksam.SaveDoc(0, DT_ENTRY, SD_END, FF_RTF, str)

Cheers,
Eric
8.Re: Search in two field in the same time
Posted by eric on 2/12/2004 5:28:55 PM
Rodrigo,

You need to combine your search criteria into one string like so:

txtNombreSearch =”Rodrigo”

txtDireccionSearch =”Puntaldia”

request = txtNombreSearch & " IN Nombre[ and " & txtDireccionSearch & " IN Direccion["

doc_handle = asksam.SearchFile(request, prev_doc)


Welcome,
Eric
9.Re: GetBlob
Posted by eric on 1/29/2004 9:21:18 AM
Bram,

This has been fixed in Freedom build 1137.

Cheers,
Eric
10.Updated Freedom XML Server Website
Posted by eric on 1/27/2004 11:50:07 AM
All,

Take a look at the new Freedom XML Server website at:
http://www.FreedomXML.com/

and get us some feedback.

Thanks,
Eric Sites, CTO
11.Re: AddBlob
Posted by eric on 1/26/2004 2:26:48 PM
Bram,

I have fixed these problems in build 1136 of Freedom.

The AddBlob function was only expecting the full path to the database and not just the database name. This has also been fixed plus a few memory leaks.

>p.s. nice job on the new build, seems to be more stable.

Thanks, it should be a lot more stable. If you are having any crashing problems please get them to me ASAP so I can take a look at them.

12.Re: AddBlob
Posted by eric on 1/27/2004 11:47:29 AM
Bram,

I just released build 1136 contact Jim at jwhartman@asksam.com for download instructions.

Cheers,
Eric
13.New Freedom Build 1136 Released
Posted by eric on 1/27/2004 11:45:46 AM
Freedom Beta Testers,

A new build of the Freedom beta as been released, build 1136.

Freedom XML Server - Fix Log

- Build 1136 - Fixes
* Fixed a few errors in the documentation
* asx:pack_database was not releasing the memory used for the index classes, Fixed
* Fixed a few problems with the Blob SOAP functions and a few blob memory leaks
* Changed the toggle-logging soap function to ToggleLogging

14.Re: Documentation & wsdl
Posted by eric on 1/26/2004 2:10:18 PM
Bram,

All of these have been fixed in build 1136 of Freedom. I am working to release a new build today.

Cheers,
Eric
15.Re: Welcome to Freedom..
Posted by eric on 1/22/2004 5:40:27 PM
Clemens & Anant,

Any SOAP client that can parse a wsdl file can access the Freedom XML Server. There are many GUI tools out there for doing development with SOAP/Web Services. Freedom XML Server is a Web Service, it also has a built in Web Server for accessing data and running queries.

Cheers,
Eric
16.Re: crash
Posted by eric on 1/20/2004 8:36:25 AM
Maarten & Bram,

I have fixed this in build 1135 of Freedom. I will release this new build later today or tomorrow.

Cheers,
Eric
17.Re: return data & asx:getmaxhits()
Posted by eric on 1/19/2004 5:38:17 PM
Bram,

return statements get evaluated in other cases like so:

let $b := 1
return $b

or

for $b in document("test")/books
return $b

It is only when you constain a return statement using a where that the return statement will not be called unless the where clause is true.

Eric
18.Re: return data & asx:getmaxhits()
Posted by eric on 1/14/2004 12:06:24 PM
Bram,

The problem is that the return statement only gets called if something is found by the where.

Here is a better building this XQuery:

let $hits :=
for $b in document("TestDB")/customer
where where $b/username = "Test"
return 1
return count($hits)

This creates a sequence aka array of values found using the where statement. The count function returns the ...
19.Re: Web services not working (WSDL problem loading)
Posted by eric on 1/14/2004 12:11:11 PM
Azmi,

Are you using the Freedom XML Server beta?

Eric
20.Re: Web services not working (WSDL problem loading)
Posted by eric on 1/14/2004 11:36:46 PM
This forums handles questions for the Freedom XML Database Server and not general WSDL or SOAP questions.

Eric
21.delete command
Posted by eric on 1/8/2004 2:06:50 PM
Change your XQuery request to

"for $b in document(\"timelog\")/user where $b/name = \"" + User_List.SelectedItem.Text + "\" delete doc(\"$b\")"

You need quotes around the $b when using the delete doc command.

I will fix the server to make sure it does not crash if a bad parameter is given to that function.

Eric
22.delete command
Posted by eric on 1/8/2004 2:06:50 PM
This has been fixed in build 1135 of the Freedom XML Server.

Eric
23.SDK and Java
Posted by eric on 1/8/2004 2:06:34 PM
The askSam 5 Professional version has a limited version of the Visual Basic Interface for the askSam 5 SDK. It does not include a Java Interface for free. The Java interface at this time in only available in the askSam 5 SDK.

Eric Sites, CTO
24.search result: list of indexed words in the found documents
Posted by eric on 1/8/2004 2:06:24 PM
This can not be done... You could use the remembered list feature to save your first search. Then refine it by using that rememeberd list in your search selection.

,Eric
Prev Next
       

Seaside Software Inc. DBA askSam Systems, P.O. Box 1428, Perry FL 32348
Telephone: 800-800-1997 / 850-584-6590   •   Email: info@askSam.com   •   Support: http://www.askSam.com/forums
© Copyright 1985-2008   •   Privacy Statement