|
Hi all,
I have problem in running web service. When I run the web service , I got the error "Request format is unrecognized for URL unexpectedly ending in 'web method name'".
Even though I tried to put below code under system.web in web.config file. It doesn't work. Anybody can help?
<webservices>;
<protocols>;
<add name="HttpGet">;
<add name="HttpPost">;
<protocols>;
<webservices>;
flowerppk
|
|
|
|
|
Did you notice after posting this message that your code does not appear?
It's time for a new signature.
|
|
|
|
|
oops! so sorry.
here is the code again!
<webServices>
<protocols>
<add name = "HttpGet"/>
<add name = "HttpPost"/>
</protocols>
</webServices>
flowerppk
|
|
|
|
|
Hi,
I have a VB application to access a SQL database on the Server (24-hour operation), once a while I do have a Microsoft.NET Framework error dialog pop-up and my application hang-up!
1. I intend to delete this error & re-launch my application over automatically! I do have a VC++ Kill process to remove my application (succesfully remove all other applications) ... but it failed and can't remove this Pop-up dialog!
2. I notify that if I launch the Window Task Manager,when I select in Process tab my application, when I select Terminate/End button ... a new dialog pop-up and I have to select Terminate button one more time ... finally the Microsoft.NET Framework error dialog disappear!
Anyone know any application (or link) to perform Step #2 above automatically?
Thank to any help 
|
|
|
|
|
This may sound ridiculous, but wouldn't it be easier to fix the bug causing the error in the first place?? Why go through all the calisthenics and genuflecting?
|
|
|
|
|
Dagnabit. That's just crazy talk.
"WPF has many lovers. It's a veritable porn star!" - Josh Smith As Braveheart once said, "You can take our freedom but you'll never take our Hobnobs!" - Martin Hughes.
My blog | My articles | MoXAML PowerToys | Onyx
|
|
|
|
|
Dave Kreskowiak wrote: Why go through all the calisthenics and genuflecting?
to increase body strength and flexibility, that at least is what wikipedia says on the subject.
|
|
|
|
|
I will try to analyze the error this time, even the application required to continue immediately
Thank for the hint
|
|
|
|
|
1) What's the error?
2) Where does it occur? Because, depending on where it is, you could handle what's happening without the need for your application to restart.
|
|
|
|
|
Since the error happen when the application required to continue immediately, so I didn't have time to debug. But as you suggested, I have no choice to do it!
- I will wait for it happen again to analyzy it. I will ask for help again if I can't solve it myself
Thank for the guideline
|
|
|
|
|
I'm not sure if I'm posting this on the right board, but I'll give it a shot.
13 years ago we developed an expert system using VB6. It comprised of a standalone MDI-interface with a whole bunch of COM+ components.
As time advanced, our software needed an overhaul. The decision was made to move to .Net (C#) module by module. As we implemented the MDI in C# (.NET3.5), we started to see a memory leak when we replaced the old VB6-MDI. The .net MDI starts the existing COM+ components the same way as the old MDI did. The old application did not have memory leaks, so it must have started with the .net transition.
Now my question is, is there a way to hunt down that memory leak? What is the best tool to use and can that cool work with .net and com+ at the same time?
Thank in advance!
The consumer isn't a moron; she is your wife.
|
|
|
|
|
|
please share to me a working one..thanks..,.please everyone,,its been bothering me for months..
|
|
|
|
|
1. Please read the posting guidelines[^].
2. Post in the correct forum.
3. Please explain your problem more clearly.
It's time for a new signature.
|
|
|
|
|
thanks for a quick reply sir..sorry for posting it there instead of in MySql thread..
...i am dying to learn PLs and DBs...
|
|
|
|
|
RTFM[^] - it's at the bottom.
"WPF has many lovers. It's a veritable porn star!" - Josh Smith As Braveheart once said, "You can take our freedom but you'll never take our Hobnobs!" - Martin Hughes.
My blog | My articles | MoXAML PowerToys | Onyx
|
|
|
|
|
mm.. isn't it at the top instead?!?
A train station is where the train stops. A bus station is where the bus stops. On my desk, I have a work station....
_________________________________________________________
My programs never have bugs, they just develop random features.
|
|
|
|
|
No. The relevant section is about 6 paragraphs from the bottom.
"WPF has many lovers. It's a veritable porn star!" - Josh Smith As Braveheart once said, "You can take our freedom but you'll never take our Hobnobs!" - Martin Hughes.
My blog | My articles | MoXAML PowerToys | Onyx
|
|
|
|
|
Hey, all.
I met a problem, how can I write data to an Excel 2007 file by using VB.Net (3.5)? For example, the data in a TextBox will be written to the excel file every 30 seconds.
I searched on the Internet for a while, but none of the codes worked for me and the description is not clear not all. Please give me a hand with a piece of code to help me understand, I just started to learn VB for one month.
Thank you very much for your time in advance
|
|
|
|
|
This article might help you.
|
|
|
|
|
Hi everyone,
I need a base-10 data type, and was wondering if there is one for the environment that I'm using. I'm using C++ in Visual Studio 2008 (Standard Edition). I know there is one in vb.net and c#.
I've tried ::DECIMAL but it says this is undeclared.
Thanks.
|
|
|
|
|
either you are referring to C++/CLI, the managed C++ that is running in the .NET Framework, so you can use the decimal type same as in C# and VB.NET; or you are referring to unmanaged C++ and asking in the wrong forum.
One and the same Visual Studio can handle all four: C++, C++/CLI, C#, VB.NET (the latter 3 being .NET, the former not).
|
|
|
|
|
b-rad311 wrote: a base-10 data type
A what? Are you thinking of BCD[^]?
|
|
|
|
|
I was installing visual studio 2008 on my laptop(windows 7). But the installation stuck when it was trying to install sql server 2005. By googling I learned that sql server 2005 requires .net framework 3.5 to be installed on the system. Then I downloaded .net framework 3.5 sp1 and tried to install it. But the installation failed. My system is already having .net framework 4. How to install sql server successfully.
|
|
|
|
|
Were you given an error when it was trying to install SQL server? The prerequisites are checked pretty well in MS products, so if it couldn't install SQL server, it wouldn't have let you proceed.
|
|
|
|