Tina Shupe

Greenhorn
+ Follow
since Dec 27, 2002
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Tina Shupe

I have a boss that keeps asking me for my opinion on a project. I have told him my opinion at least 3 times, and my opinion has not changed. The problem is that he doesn’t agree with my opinion, so I think he keeps asking to make me change my opinion. Now he doesn’t know what to do with me because of my attitude (differing opinion) of the project. He asked for my opinion about the project last night, and I told him what I thought. Then he proceeded to ask me again today. I responded this time with “Do whatever you want”, and “I told you my opinion yesterday”. That made him angry. Should I lie and say that his idea is the BEST? Maybe he will quit asking; seeming that he really doesn’t care anyway. Does it work to just agree?
21 years ago
I was just reading this article on computer world web page
I checked out my position and the company type I work for, and either I am way underpaid or this survey was done on mars. Does this survey seem to coincide with what people are really making? Maybe it is time to jump the life raft I am on and find a cruise liner.
21 years ago
so in short my SOAP call should still work even through the targetNamespace can not be resolved.
21 years ago
I know that this may seem as a weird question but I cant' find anything that proves what I am thinking.
I have a WSDL that has
<definitions xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:s0="http://intranet.bts.wrbc/DWServices/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" targetNamespace="http://home.find/Services/" xmlns="http://schemas.xmlsoap.org/wsdl/">
And when I copy the targetNamespace into internet explorer like the rest I get a page not found. Am I wrong in thinking that this could be a major problem, and that the page should be found. This targetNamespace also carries over into the Soap

I was just wondering if it appears that I could have issues with the targetNamespace not resolving, or is it of little importance.
Thanks
[ February 13, 2003: Message edited by: Tena Shupe ]
21 years ago
I do have the code that Axis created for PoDocument. That is how I got the set_any method that accepts the array of MessageElement. My issue is that I have looked at the MessageElement API and I am unsure what I need to use. I need to be able to pass to the web service my xml document that is being "embeded" into the SOAP information. I relize that AXIS created the code that does the SOAP. I don't know what I need to do to take the xml doc that I have and pass that as an value to the web service.
I have included the error message that I am getting when I pass a null. However, I am unsure if it is because I am passing a null.
- Mapping Exception to AxisFault
AxisFault
faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException
faultSubcode:
faultString: org.xml.sax.SAXNotRecognizedException: Feature: http://xml.org/sax/properties/lexical-handler
faultActor: null
faultNode: null
faultDetail:
stackTrace: org.xml.sax.SAXNotRecognizedException: Feature: http://xml.org/sax/properties/lexical-handler
at org.apache.xerces.jaxp.SAXParserImpl.setProperty(SAXParserImpl.java:155)
at org.apache.axis.encoding.DeserializationContextImpl.parse(DeserializationContextImpl.java:235)
at org.apache.axis.SOAPPart.getAsSOAPEnvelope(SOAPPart.java:541)
at org.apache.axis.Message.getSOAPEnvelope(Message.java:379)
at org.apache.axis.client.Call.invokeEngine(Call.java:2395)
at org.apache.axis.client.Call.invoke(Call.java:2365)
at org.apache.axis.client.Call.invoke(Call.java:2062)
at org.apache.axis.client.Call.invoke(Call.java:1986)
at org.apache.axis.client.Call.invoke(Call.java:1509)
at nautilus.upload.DWImportSoapStub.submit(DWImportSoapStub.java:156)
at nautilus.upload.SubmitTest.main(SubmitTest.java:13)

org.xml.sax.SAXNotRecognizedException: Feature: http://xml.org/sax/properties/lexical-handler
org.xml.sax.SAXNotRecognizedException: Feature: http://xml.org/sax/properties/lexical-handler
at org.apache.xerces.jaxp.SAXParserImpl.setProperty(SAXParserImpl.java:155)
at org.apache.axis.encoding.DeserializationContextImpl.parse(DeserializationContextImpl.java:235)
at org.apache.axis.SOAPPart.getAsSOAPEnvelope(SOAPPart.java:541)
at org.apache.axis.Message.getSOAPEnvelope(Message.java:379)
at org.apache.axis.client.Call.invokeEngine(Call.java:2395)
at org.apache.axis.client.Call.invoke(Call.java:2365)
at org.apache.axis.client.Call.invoke(Call.java:2062)
at org.apache.axis.client.Call.invoke(Call.java:1986)
at org.apache.axis.client.Call.invoke(Call.java:1509)
at nautilus.upload.DWImportSoapStub.submit(DWImportSoapStub.java:156)
at nautilus.upload.SubmitTest.main(SubmitTest.java:13)
Am I clear on what I have stated?
[ February 12, 2003: Message edited by: Tena Shupe ]
21 years ago
I am having an issue that I can't solve. I have a decent understanding of SOAP,not a great understanding.
I have download Axis and have it working. I got WSDL from the company and created the code from that using Axis.
It did create the interface definition for the portType(DWImportSoap).
It also created the binding element, I have only one(DWImportSoapStub).
It also created the factory pattern style class(DWImportLocator).
It also create a PoDocument object that was derived from the name attribute of the complexType element.
I then created a class with a main(I do use a try-catch)

The part I am not getting is the PoDocument Object. I have to pass a PoDocument to the submit. The PoDocuement has a method of set_any(MessageElement[]) void PoDocument. I have looked at the MessageElement documentation, and I don't know where I would put an xml file. Our SOAP is to include an xml file that has all the data we are submiting to the Web Service.
Below is the part of the WSDL Axis got the PoDocument information from.

Any help would be good. Is this enough information? Am I in neverland?
21 years ago
Is it possible to embed a document into XML? Example… is it possible to take a pdf and embed it into a xml document, and then it can be read back as a pdf document.
We were informed that this is possible?!