Re: [mapserver-users] select one column values from a table

2009-07-02 Thread meenu

can anybody help me ???


meenu wrote:
 
 hi friend thanksi tried mentioned code ...but am getting error like 
 msLayerGetNumFeatures(): Shapefile error. Not an inline layer
 in my map file i wrote the table structure for this specified matter is as
 follows...
 is this error comes  because of my table or not?
 
 
 LAYER
NAME n_123 
TYPE POINT
CONNECTIONTYPE OGR
CONNECTION n_123 .TAB
STATUS ON
LABELITEM PLO_900 
CLASS
   STYLE
   COLOR 255 0 0
   OUTLINECOLOR 0 0 0
   SYMBOL 'ball'
   END 
   LABEL
   COLOR 100 100 255
   FONT arial
   TYPE TRUETYPE
   SIZE 7
   POSITION LC
   WRAP  
   END#LABEL
   END# CLASS
   END#LAYER
 


-
Meenu
-- 
View this message in context: 
http://n2.nabble.com/select-one-column-values-from-a-table-tp2931342p3193894.html
Sent from the Mapserver - User mailing list archive at Nabble.com.

___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


Re: [mapserver-users] display map on aspx page

2009-05-21 Thread meenu

hi friend check this link...may helpful for u..
http://n2.nabble.com/how-can-i-create-mapserver-website-in-VS-2005-%28VB%29-td2516841.html#a2567804

-
Meenu
-- 
View this message in context: 
http://n2.nabble.com/display-map-on-aspx-page-tp2950436p2950701.html
Sent from the Mapserver - User mailing list archive at Nabble.com.

___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


[mapserver-users] tooltip information on point layers

2009-05-20 Thread meenu

dears ...can anybody help me to generate tooltip on features in mapserver
map...i need to generate tool tip information when the mouse is on the top
of this following  point layercan anybody help me...advance thanks

LAYER 
   NAME n_123  
   TYPE POINT 
   CONNECTIONTYPE OGR 
   CONNECTION n_123 .TAB 
   STATUS ON 
   LABELITEM PLO_900  
   CLASS 
  STYLE 
  COLOR 255 0 0 
  OUTLINECOLOR 0 0 0 
  SYMBOL 'ball' 
END 
LABEL 
COLOR 100 100 255 
FONT arial 
TYPE TRUETYPE 
SIZE 7 
POSITION LC 
WRAP   
END#LABEL 
  END# CLASS 
  END#LAYER

-
Meenu
-- 
View this message in context: 
http://n2.nabble.com/tooltip-information-on-point-layers-tp2945715p2945715.html
Sent from the Mapserver - User mailing list archive at Nabble.com.

___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


[mapserver-users] change mouse icon style on the specified layer

2009-05-20 Thread meenu

dears ...can anybody help me to change mouse pointer icon as handshape icon
when the mouse is on the top of the point layersis it possible?

LAYER 
   NAME n_123  
   TYPE POINT 
   CONNECTIONTYPE OGR 
   CONNECTION n_123 .TAB 
   STATUS ON 
   LABELITEM PLO_900  
   CLASS 
  STYLE 
  COLOR 255 0 0 
  OUTLINECOLOR 0 0 0 
  SYMBOL 'ball' 
END 
LABEL 
COLOR 100 100 255 
FONT arial 
TYPE TRUETYPE 
SIZE 7 
POSITION LC 
WRAP   
END#LABEL 
  END# CLASS 
  END#LAYER

-
Meenu
-- 
View this message in context: 
http://n2.nabble.com/change-mouse-icon-style-on-the-specified-layer-tp2945729p2945729.html
Sent from the Mapserver - User mailing list archive at Nabble.com.

___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


Re: [mapserver-users] select one column values from a table

2009-05-19 Thread meenu

hi friend...thanks for ur response...
let me desribe my requirement in detail...
i have one table n_123 and in that table i have 2 columns PLO_900,PLO_901.

PLO_900   PLO_900 
af  op_1
3f  op_2
h7 op_3

i need the result like as follows
af  
3f 
h7 

that means all the values from the first columnthe specified code u
mentioned  giving me only one recordcan u help me ?



   

Paolo Corti wrote:
 
 
 
 meenu wrote:
 
 dears,in a mapserver website how can i retrve one column details from a
 tablefor eg in my map i have one table called n_123 ...in this table
 i have one column named PLO_900...i need to retrive value like as
 follows select PLO_900 from  n_123 ...i did the coding like as
 follows...but it is giving me the table field names...can anybody help me
 to solve this issue?
   
Dim layer As layerObj = Util.MSMap.getLayerByName(n_123 )
 If layer IsNot Nothing Then
 layer.open()
 For i As Integer = 0 To layer.numitems - 1
 Me.CmbS.Items.Add(layer.getItem(i))
 Next
 layer.close()
 
 
 In c# this code is accessing a feature's values:
 
 String results = ;
 layerObj layer = map.getLayerByName(mylayer);
 layer.open();
 shapeObj shape=layer.getFeature(shapeInd, -1);
 //iterate fields and getting values
 for(int i=0; ilayer.numitems; i++)
 {
   results += BR + layer.getItem(i) + = + shape.getValue(i);
 }
 layer.close();
 
 let me know if it works for you
 best regards
 
 Paolo
 
 
 
 
 


-
Meenu
-- 
View this message in context: 
http://n2.nabble.com/select-one-column-values-from-a-table-tp2931342p2938452.html
Sent from the Mapserver - User mailing list archive at Nabble.com.

___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


Re: [mapserver-users] select one column values from a table

2009-05-19 Thread meenu

hi friend...i am not using postrgis method for this...so am prefering the
first option...
in a while loop how can i check till the end of records( not fields)...
ur mentioned code is taking layer.numitems - 1 ...it is checking all the
field count...instead of that how i  cancheck record nos??




-
Meenu
-- 
View this message in context: 
http://n2.nabble.com/select-one-column-values-from-a-table-tp2931342p2938939.html
Sent from the Mapserver - User mailing list archive at Nabble.com.

___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


[mapserver-users] select one column values from a table

2009-05-18 Thread meenu

dears,in a mapserver website how can i retrve one column details from a
tablefor eg in my map i have one table called n_123 ...in this table i
have one column named PLO_900...i need to retrive value like as follows
select PLO_900 from  n_123 ...i did the coding like as follows...but it is
giving me the table field names...can anybody help me to solve this issue?
  
   Dim layer As layerObj = Util.MSMap.getLayerByName(n_123 )
If layer IsNot Nothing Then
layer.open()
For i As Integer = 0 To layer.numitems - 1
Me.CmbS.Items.Add(layer.getItem(i))
Next
layer.close()

-
Meenu
-- 
View this message in context: 
http://n2.nabble.com/select-one-column-values-from-a-table-tp2931342p2931342.html
Sent from the Mapserver - User mailing list archive at Nabble.com.

___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


[mapserver-users] mouse cursor need to change when the cursor is on the specified layer points

2009-05-17 Thread meenu

hi dears,advance thanks to allin a mapserver website i need to change the
mouse icon style when user will point to the specified layer pointsthat
means i have a layer called n_towns in a map..the coding for that layer is
as follows...

LAYER
   NAME n_towns
   TYPE POINT
   CONNECTIONTYPE OGR
   CONNECTION n_towns.TAB
   # MINSCALE 1000
   #MAXSCALE 588000
 #MINSCALE 0.06
 # MAXSCALE 36.54
   STATUS ON
   # This enables use of colors and styles from the source file.
   #STYLEITEM AUTO
   # Define an empty class that will be filled at runtime from the color and
   # styles read on each shape in the source file.
   #CLASSITEM TYPE
   LABELITEM NAME
   CLASS
#SIZE 10
STYLE
COLOR 255 0 0
OUTLINECOLOR 0 0 0
SYMBOL 'ball'
END #STYLE
#TEXT ([LABEL], [LABEL])
LABEL
COLOR 100 100 255
FONT arial
TYPE TRUETYPE
SIZE 7
POSITION LC
WRAP  
END#LABEL
  END# CLASS
  END#LAYER

in this layer i have 50 recordsnow my requirement is when the cursor is
on the top of this 50 records locations in map,that time need to change the
mouse cursor style as hand shape...is it possible?can anybody help me for
this...i did the website based on the tutorialmapserver project available
for reference?


-
Meenu
-- 
View this message in context: 
http://n2.nabble.com/mouse-cursor-need-to-change-when-the-cursor-is-on-the-specified-layer-points-tp2915495p2915495.html
Sent from the Mapserver - User mailing list archive at Nabble.com.

___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


Re: [mapserver-users] hotspot information on point layers

2009-05-15 Thread meenu

pls help me to do the hotspot in mapif anybody knows the reference links
for this...pls forward me

-
Meenu
-- 
View this message in context: 
http://n2.nabble.com/hotspot-information-on-point-layers-tp2883485p2911368.html
Sent from the Mapserver - User mailing list archive at Nabble.com.

___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


Re: [mapserver-users] convertion from mapinfo to mapserver -one table is not getting

2009-05-14 Thread meenu

hi friends ,i found out my problem ,which is if the table has s more than one
type of features then it will retrive the type as OTHER.

-
Meenu
-- 
View this message in context: 
http://n2.nabble.com/convertion-from-mapinfo-to-mapserver--one-table-is-not-getting-tp2853077p2888456.html
Sent from the Mapserver - User mailing list archive at Nabble.com.

___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


Re: [mapserver-users] hotspot information on point layers

2009-05-14 Thread meenu

hi can anybody help me to do hotspot part.i did the mapserver website
usnig vs2005...

-
Meenu
-- 
View this message in context: 
http://n2.nabble.com/hotspot-information-on-point-layers-tp2883485p2888675.html
Sent from the Mapserver - User mailing list archive at Nabble.com.

___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


[mapserver-users] coding for pan the map

2009-05-14 Thread meenu

hi all

can anybody help me to do the coding for pan the map?
i did one website using the help of
TutorialMapServerSolution.zip(VS2005)

advance thanks
regards


-
Meenu
-- 
View this message in context: 
http://n2.nabble.com/coding-for-pan-the-map-tp2889881p2889881.html
Sent from the Mapserver - User mailing list archive at Nabble.com.

___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


[mapserver-users] is animated symbols possible in mapserver website?

2009-05-13 Thread meenu

dears,
how can i add animated symbols in mapserver map i need to add symbols
like this website(http://www.alovelyworld.com/)...is it possible...now am
using the symbol star like as follows...can anybody help me for this?

Symbol
Name 'star'
Type VECTOR
Filled TRUE
Points
0 .375
.35 .375
.5 0
.65 .375
1 .375
.75 .625
.875 1
.5 .75
.125 1
.25 .625
END
END 

-
Meenu
-- 
View this message in context: 
http://n2.nabble.com/is-animated-symbols-possible-in-mapserver-website--tp2879766p2879766.html
Sent from the Mapserver - User mailing list archive at Nabble.com.

___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


Re: [mapserver-users] is animated symbols possible in mapserver website?

2009-05-13 Thread meenu

dears..i did this part like as follows...but the animation is not
working...that means ball colour is not changing

SYMBOL
  NAME ball
  TYPE pixmap
  IMAGE \images\ball.gif
END


-
Meenu
-- 
View this message in context: 
http://n2.nabble.com/is-animated-symbols-possible-in-mapserver-website--tp2879766p2879909.html
Sent from the Mapserver - User mailing list archive at Nabble.com.

___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


Re: [mapserver-users] need to do the coding in VB using TutorialMapServerSolution.zip

2009-05-13 Thread meenu

dearsi solved my problem using the samples(ASPNET20Sample_50.zip)
available in  (http://www.coordinatesolutions.com/Samples.aspx).actually
am not familiar with c#...thats y changed coding language from c# to VB
regards


-
Meenu
-- 
View this message in context: 
http://n2.nabble.com/need-to-do-the-coding-in-VB-using--TutorialMapServerSolution.zip-tp2852968p2883259.html
Sent from the Mapserver - User mailing list archive at Nabble.com.

___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


[mapserver-users] hotspot information on point layers

2009-05-13 Thread meenu

hi ..advance thanks to all ,in a mapserver project how possible to do the
hotspot information of points...for eg i have one pointlocation table like
as follows...when the mouse is on the top of these points,need to generte
one hotspot information regarding this point with an image...can anybody
help me to do this part...regards
**
LAYER
   NAME n_twns
   TYPE POINT
   CONNECTIONTYPE OGR
   CONNECTION n_twns.TAB
STATUS ON
LABELITEM NAME
   CLASS
#SIZE 10
STYLE
COLOR 255 0 0
OUTLINECOLOR 0 0 0
SYMBOL 'ball'
END #STYLE
LABEL
COLOR 100 100 255
FONT arial
TYPE TRUETYPE
SIZE 7
POSITION LC
WRAP  
END#LABEL
  END# CLASS
  END#LAYER
*

-
Meenu
-- 
View this message in context: 
http://n2.nabble.com/hotspot-information-on-point-layers-tp2883485p2883485.html
Sent from the Mapserver - User mailing list archive at Nabble.com.

___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


Re: [mapserver-users] hotspot information on point layers

2009-05-13 Thread meenu

i got ur ideacan u tell me how can i do this in a mapserver website...or
can u give me a sample application link for this...withoout any reference it
is difficult to move...so pls help me



-
Meenu
-- 
View this message in context: 
http://n2.nabble.com/hotspot-information-on-point-layers-tp2883485p2888289.html
Sent from the Mapserver - User mailing list archive at Nabble.com.

___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


[mapserver-users] need to do the coding in VB using TutorialMapServerSolution.zip

2009-05-10 Thread meenu

dears...i created one mapserver website project in vs2005 based on mapserver
tutorial available in c#(TutorialMapServerSolution.zip)...all working fine
good under C#now my requirement is i need to do the further coding in VB
instead of C#...for that i added one default.aspx.vb page and converted
all c# code inside default.aspx.cs to default.aspx.vb ...now i want to know
is any other files is required to change for this?


-
Meenu
-- 
View this message in context: 
http://n2.nabble.com/need-to-do-the-coding-in-VB-using--TutorialMapServerSolution.zip-tp2852968p2852968.html
Sent from the Mapserver - User mailing list archive at Nabble.com.

___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


[mapserver-users] convertion from mapinfo to mapserver -one table is not getting

2009-05-10 Thread meenu

dears when i convert mapinfo file to mapserver script using wor2map.MBX all
tables from mapinfo coming perfectly in .map...but i have a problem with
converting one tablethat table is not getting in to the mapscript...when
the files converted in the message window Browsing
oman_road_uni_color(OTHER) like this message coming and this table is not
getting in mapscript...y the type is coming as OTHER...can anybody help me
for this...actually this table type is  a LINE

-
Meenu
-- 
View this message in context: 
http://n2.nabble.com/convertion-from-mapinfo-to-mapserver--one-table-is-not-getting-tp2853077p2853077.html
Sent from the Mapserver - User mailing list archive at Nabble.com.

___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


[mapserver-users] Unable to load DLL 'mapscript': Access is denied

2009-05-07 Thread meenu

hi friends...i created one mapserver website project in vs2005 based on
mapserver tutorial available in c#(TutorialMapServerSolution.zip)...all
working fine in my localhost...when i hosted website am getting an error
like as follows..pls help me to solve this issue

Unable to load DLL 'mapscript': Access is denied. (Exception from HRESULT:
0x80070005 (E_ACCESSDENIED)) 

Line 59:ibMap.ImageUrl = 
MapStream.aspx?ACTION=INITMAP;
Line 60://initialize controls
Line 61:mapObj map = new
mapObj(System.Configuration.ConfigurationSettings.AppSettings[mapFilePath].ToString());
Line 62://iterate the map layer to populate 
ddlLayer and cblLayer
Line 63:for(int i=0;imap.numlayers;i++)

-
Meenu
-- 
View this message in context: 
http://n2.nabble.com/Unable-to-load-DLL-%27mapscript%27%3A-Access-is-denied-tp2827731p2827731.html
Sent from the Mapserver - User mailing list archive at Nabble.com.

___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


Re: [mapserver-users] Unable to load DLL 'mapscript': Access is denied

2009-05-07 Thread meenu

hi friends,i solved my problems by giving following  permission to users...is
this one correct way or not?  

read
listfolders contents
read/execute


-
Meenu
-- 
View this message in context: 
http://n2.nabble.com/Unable-to-load-DLL-%27mapscript%27%3A-Access-is-denied-tp2827731p2827860.html
Sent from the Mapserver - User mailing list archive at Nabble.com.

___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


RE: [mapserver-users] hiow can i convert mapinfo workspace to mapserver mapfile?

2009-04-06 Thread meenu

hi friend i did this method and succeeded...i am facing one problem for 
allocating font and symbol set from mapinfo...in mapinfo i didnt findout any 
folder which is containing fonts.txt and  shade.sym...how can i solve this 
problem?

FONTSET ..\etc\fonts.txt
SYMBOLSET ..\etc\shade.sym




-
Meenu
-- 
View this message in context: 
http://n2.nabble.com/hiow-can-i-convert-mapinfo-workspace-to-mapserver-mapfile--tp2591481p2591585.html
Sent from the Mapserver - User mailing list archive at Nabble.com.

___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


RE: [mapserver-users] hiow can i convert mapinfo workspace to mapserver mapfile?

2009-04-06 Thread meenu

hi friend i did this method and succeeded...i am facing one problem for 
allocating font and symbol set from mapinfo...in mapinfo i didnt findout any 
folder which is containing fonts.txt and  shade.sym...how can i solve this 
problem? 

FONTSET ..\etc\fonts.txt 
SYMBOLSET ..\etc\shade.sym 


-
Meenu
-- 
View this message in context: 
http://n2.nabble.com/hiow-can-i-convert-mapinfo-workspace-to-mapserver-mapfile--tp2591481p2591594.html
Sent from the Mapserver - User mailing list archive at Nabble.com.

___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


[mapserver-users] visibility of the layer based on zoom extends

2009-04-05 Thread meenu

hi can anybody help to set the visibility of a layer based on zoom extends..the 
mapscript for the particular layer i added here as follows...

LAYER
   NAME n_towns
   TYPE POINT
   CONNECTIONTYPE OGR
   CONNECTION n_towns.TAB
   STATUS ON
   LABELITEM NAME
   CLASS
  SIZE 10
STYLE
  COLOR 100 100 100
  OUTLINECOLOR 0 0 0
  SYMBOL circle
END
LABEL
COLOR 100 100 100
FONT arial
TYPE TRUETYPE
SIZE 7
POSITION LC
WRAP  
END
END
END

-- 
View this message in context: 
http://n2.nabble.com/visibility-of-the-layer-based-on-zoom-extends-tp2588503p2588503.html
Sent from the Mapserver - User mailing list archive at Nabble.com.

___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


[mapserver-users] some doubts about mapserver website

2009-04-05 Thread meenu

hi all... 
can anybody help me to answer some questions about maserver website... 
i created one mapserver website using c#mapscript in vs2005 with the use of  
mapinfo .TAB files.web is loading fine with basic requirements...now i have 
some doubts... 

1.what is the format of gis data which is showing in to the website??? 
2.where is the database of gis data??whether the database is  data folder of 
mapinfo or not??? 
3.whther mapserver support arabic fonts done by mapinfo?? 
4.how this gisdata coming to mapserver website(using mapscript)??is any diagram 
available in net? 


regards 
meenu 
-- 
View this message in context: 
http://n2.nabble.com/some-doubts-about-mapserver-website-tp2591355p2591355.html
Sent from the Mapserver - User mailing list archive at Nabble.com.

___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


[mapserver-users] hiow can i convert mapinfo workspace to mapserver mapfile?

2009-04-05 Thread meenu

hi all...advance thanks...i downloaded wor2map.zip for converting mapinfo 
workspace to mapserver map file...but how can i use this wor2map for this 
convertion...in this folder 3 files is there .MBX,.MB,.DEF...how can use this 
files for converting my mapinfo files to mapserver mapfle??? 

-
Meenu
-- 
View this message in context: 
http://n2.nabble.com/hiow-can-i-convert-mapinfo-workspace-to-mapserver-mapfile--tp2591481p2591481.html
Sent from the Mapserver - User mailing list archive at Nabble.com.

___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


[mapserver-users] mapserver application for tour planner module

2009-04-04 Thread meenu

hi all.. 
our company is planning to do one tour planner project using mapserver in 
vs2005(c#) for tourism project...for that am asking ur suggestion about  ,Is 
any tourplanner mapserver application source available  which is compatable 
with vs2005(C#) and  mapinfo data files.
 
regards
meenu
-- 
View this message in context: 
http://n2.nabble.com/mapserver-application-for-%22tour-planner%22-module-tp2587614p2587614.html
Sent from the Mapserver - User mailing list archive at Nabble.com.

___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


RE: [mapserver-users] mapserver with mapinfo gis data file

2009-04-02 Thread meenu

hi ...this was the problem due to my faultbecause i forgot to change the 
extent value in map file...now i foundout extent value using 
ogrinfo.exechanged extent  values in map file...lt is working fine ..thank 
u so much for ur supportbut remember again i will come with my next issues 
for disturbing my brilliant friends..

regards and thanks
meenu



-- 
View this message in context: 
http://n2.nabble.com/mapserver-with-mapinfo-gis-data-file-tp2568491p2574618.html
Sent from the Mapserver - User mailing list archive at Nabble.com.

___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


Re: [mapserver-users] how can i create mapserver website in VS 2005 (VB)

2009-04-01 Thread meenu

dear friend,great article...lot of thanks for spending ur valuable time here to 
share ur brilliant knowledge to us...am beginner in mapserver projects...so lot 
of questions are raised in my mind...if u dont mind can u help me to clear my 
points...

i downloaded source files(TutorialMapServerSolution.zip,data.zip) and it is 
working fine for me in vs2005...now TutorialMapServerSolution project is 
working fine without any problem..i removed apache and ms4w from my 
machine...that time also TutorialMapServerSolution is working perfect...

from this tutorial i understood that 
1.not required to install mapserver(ms4w) in server machine if we use mapscript 
interface...is it correct???
2.if like that how it is connected with mapserver ??
3.if we use CGI then is it required to install ms4w in server
4.cgi or mapscript which is the better option for creating mapserver website in 
vs2005???
5.is it required to run swig.exe in server machine for this mapscript 
tutorial???
6.what is the supporting gis data format  in mapserver?
7.i have my own gis data created using mapinfo professional...how can i add 
that data in to this file...is it possible to call mapinfo .mws from this 
tutorial???

regards and thanks
-- 
View this message in context: 
http://n2.nabble.com/how-can-i-create-mapserver-website-in-VS-2005-%28VB%29-tp2516841p2567804.html
Sent from the Mapserver - User mailing list archive at Nabble.com.

___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


Re: [mapserver-users] how can i create mapserver website in VS 2005 (VB)

2009-04-01 Thread meenu

dear friend thank u very much for ur detailed reply...i got all ur 
points...shall i ask one more question...mapserver installation is not required 
in c: if we use both cgi or mapscript...then y in all mapscript documentaion 
they are telling to install ms4w and sample application and 
apache(http://spatialhorizons.com/2007/05/19/mapserver-1-10-minute-tutorial/)
-- 
View this message in context: 
http://n2.nabble.com/how-can-i-create-mapserver-website-in-VS-2005-%28VB%29-tp2516841p2568148.html
Sent from the Mapserver - User mailing list archive at Nabble.com.

___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


RE: [mapserver-users] how can i create mapserver website in VS 2005 (VB)

2009-04-01 Thread meenu

gr8 help guys ...thanks..
-- 
View this message in context: 
http://n2.nabble.com/how-can-i-create-mapserver-website-in-VS-2005-%28VB%29-tp2516841p2568485.html
Sent from the Mapserver - User mailing list archive at Nabble.com.

___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


[mapserver-users] mapserver with mapinfo gis data file

2009-04-01 Thread meenu

hi advance thanks to all...i did one website using vs2005 C#  using the 
available project TutorialMapServer...everything is working fine ...based on 
the available data folder...now my requirement is i have a set of gis data and 
map done by mapinfo professional...each layer have 4 
files(DAT,.ID,.MAP,.TAB),how can i add this layers in to this 
application...can anybody help me for this...
-- 
View this message in context: 
http://n2.nabble.com/mapserver-with-mapinfo-gis-data-file-tp2568491p2568491.html
Sent from the Mapserver - User mailing list archive at Nabble.com.

___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


Re: [mapserver-users] how can i create mapserver website in VS 2005 (VB)

2009-03-31 Thread meenu

without update cache now specified link is working perfecti did all steps 
specified in the link...am getting 4 errors like as follows...am using vs 
2005...can u help me to solve this issue...

the type or namespace name 'mapObj' could not be found (are you missing a using 
directive or an assembly reference?)
The type or namespace name 'rectObj' could not be found (are you missing a 
using directive or an assembly reference?)
The type or namespace name 'mapObj' could not be found (are you missing a using 
directive or an assembly reference?)
The type or namespace name 'pointObj' could not be found (are you missing a 
using directive or an assembly reference?)  
The type or namespace name 'pointObj' could not be found (are you missing a 
using directive or an assembly reference?)  
-- 
View this message in context: 
http://n2.nabble.com/how-can-i-create-mapserver-website-in-VS-2005-%28VB%29-tp2516841p2562350.html
Sent from the Mapserver - User mailing list archive at Nabble.com.

___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


Re: [mapserver-users] how can i create mapserver website in VS 2005 (VB)

2009-03-31 Thread meenu

hi friened.thanks for ur response...

i added mapscript_csharp.dll in to tutorialmapserver website folder...i added 
like as follows...
rightclick project...addrefernce-browse-select 
C:\ms4w\Apache\cgi-bin\mapscript\csharp-double click 
mapscript_csharp.dll...now this dll is added to bin folder of tutorial 
webfolder
this dlltype is a file not .net or .com...
i tried the way u last gavethre also am getting error in mapobj and 
layerobj regference

regards
meenu
-- 
View this message in context: 
http://n2.nabble.com/how-can-i-create-mapserver-website-in-VS-2005-%28VB%29-tp2516841p2567297.html
Sent from the Mapserver - User mailing list archive at Nabble.com.

___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


[mapserver-users] some doubts about mapserver...

2009-03-30 Thread meenu

hi friends...i installed ms4w successfullymapserver version is 5.2.1now 
when i type localhost in browser ms4w homepage is coming and installed 
applications is working finenow my requirement is 

1.i want to edit gmap module in visual studio 2005 based on my requirements.is 
it possible???
2.in gmap module i want to pass mapinfo tables  instead of the default 
gisdata.how it is possible?
3.is it possible to run mapserver without PHP ?
4.any sample application available for map server coded using c# or vb.net for 
mapping?
5.mapserver is working fine using apache...i did all the steps in the 
http://mapserver.org/installation/iis.html; link for setting up mapserver with 
iisbut it is giving me the error like  as follows...
how can i solve this issue???

The webpage cannot be found 
HTTP 400  
Most likely causes:
There might be a typing error in the address. 
If you clicked on a link, it may be out of date. 

 

all  mapserver help available is based on phpso am troubling lot for doing 
mapserver in vs2005 (vb.net)...
am using windows server 2003 and iis v6can anybody help me for solving my 
issues...am new in this mapserver work...so please help me...

-- 
View this message in context: 
http://n2.nabble.com/some-doubts-about-mapserver...-tp2557057p2557057.html
Sent from the Mapserver - User mailing list archive at Nabble.com.

___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


Re: [mapserver-users] how can i create mapserver website in VS 2005 (VB)

2009-03-30 Thread meenu

dear friend suggested link is not working
regards

-- 
View this message in context: 
http://n2.nabble.com/how-can-i-create-mapserver-website-in-VS-2005-%28VB%29-tp2516841p2557078.html
Sent from the Mapserver - User mailing list archive at Nabble.com.

___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


Re: [mapserver-users] how can i create mapserver website in VS 2005 (VB)

2009-03-30 Thread meenu

still suggested link is not getting

http://www.paolocorti.net/2006/09/20/mapserver-tutorial-for-c-mapscript-asp-net/

-- 
View this message in context: 
http://n2.nabble.com/how-can-i-create-mapserver-website-in-VS-2005-%28VB%29-tp2516841p2561308.html
Sent from the Mapserver - User mailing list archive at Nabble.com.

___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


[mapserver-users] mapserver

2009-03-22 Thread meenu


-- 
View this message in context: 
http://n2.nabble.com/mapserver-tp2516822p2516822.html
Sent from the Mapserver - User mailing list archive at Nabble.com.

___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


[mapserver-users] how can i create mapserver website in VS 2005 (VB)

2009-03-22 Thread meenu

dears..i planned  to make a website using mapserver platform...for that i
installed  osgeo4w-setup.exe in to my machine...now i want to know,how can i
start my work??any sample application is available for this???i am using
VS2005(VB)  for creating website

regards

-- 
View this message in context: 
http://n2.nabble.com/how-can-i-create-mapserver-website-in-VS-2005-%28VB%29-tp2516841p2516841.html
Sent from the Mapserver - User mailing list archive at Nabble.com.

___
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users