Wscompile problem with xs:any

Trying to run jax-rpc wscompile on the wsdl below results in this error:
[exec] error: modeler error: unsupported schema type: "{http://www.blackpearl.com/schemas/types}complex"
The offending section looks like this:
<xs:complexType name="complex">
<xs:sequence>
<xs:any namespace="##any">
</xs:any>
</xs:sequence>
</xs:complexType>
This is [exec] JAX-RPC Standard Implementation (1.1.2, build R23)
Any ideas about what is wrong?
<?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns:tns="urn:ProcedureTest:pkg1"
xmlns:wsr="http://www.openuri.org/2002/10/soap/reliability/"
xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/"
xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:soap12enc="http://www.w3.org/2003/05/soap-encoding"
xmlns:conv="http://www.openuri.org/2002/04/wsdl/conversation/"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:s="http://www.w3.org/2001/XMLSchema"
xmlns="http://schemas.xmlsoap.org/wsdl/"
targetNamespace="urn:ProcedureTest:pkg1">
<types>
<xs:schema xmlns:bpt="http://www.blackpearl.com/schemas/types"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns="urn:ProcedureTest:pkg1"
elementFormDefault="unqualified"
targetNamespace="urn:ProcedureTest:pkg1">
<xs:import namespace="http://www.blackpearl.com/schemas/types">
</xs:import>
</xs:schema>
<xs:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns="http://www.blackpearl.com/schemas/types"
elementFormDefault="unqualified"
targetNamespace="http://www.blackpearl.com/schemas/types">
<xs:element type="essResultType"
name="essResult">
</xs:element>
<xs:element type="evidencesType"
name="evidences">
</xs:element>
<xs:element type="entitiesType"
name="entities">
</xs:element>
<xs:element type="entityType"
name="entity">
</xs:element>
<xs:element type="entityPropertyType"
name="entityProperty">
</xs:element>
<xs:element type="rulesType"
name="rules">
</xs:element>
<xs:element type="ruleType"
name="rule">
</xs:element>
<xs:element type="expressionsType"
name="expressions">
</xs:element>
<xs:element type="expressionType"
name="expression">
</xs:element>
<xs:element type="essEvidenceType"
name="essEvidence">
</xs:element>
<xs:element type="attributeModelsType"
name="attributeTypes">
</xs:element>
<xs:element type="attributeModelType"
name="attributeType">
</xs:element>
<xs:element type="possibleValuesType"
name="values">
</xs:element>
<xs:element type="attributesType"
name="attributes">
</xs:element>
<xs:element type="attributeGroupType"
name="attributeGroup">
</xs:element>
<xs:element type="attributeType"
name="attr">
</xs:element>
<xs:element type="stringArrayType"
name="stringArray">
</xs:element>
<xs:element type="intArrayType"
name="intArray">
</xs:element>
<xs:element type="booleanArrayType"
name="booleanArray">
</xs:element>
<xs:element type="longArrayType"
name="longArray">
</xs:element>
<xs:element type="floatArrayType"
name="floatArray">
</xs:element>
<xs:element type="decimalArrayType"
name="decimalArray">
</xs:element>
<xs:element type="doubleArrayType"
name="doubleArray">
</xs:element>
<xs:element type="dateArrayType"
name="dateArray">
</xs:element>
<xs:element type="timeArrayType"
name="timeArray">
</xs:element>
<xs:element type="dateTimeArrayType"
name="dateTimeArray">
</xs:element>
<xs:element type="durationArrayType"
name="durationArray">
</xs:element>
<xs:complexType name="complex">
<xs:sequence>
<xs:any namespace="##any">
</xs:any>
</xs:sequence>
</xs:complexType>
<xs:complexType name="essResultType">
<xs:sequence>
<xs:element minOccurs="0"
ref="evidences">
</xs:element>
<xs:element minOccurs="0"
ref="entities">
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="evidencesType">
<xs:sequence>
<xs:element type="xs:string"
name="evidence"
minOccurs="0"
maxOccurs="unbounded">
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="entitiesType">
<xs:sequence>
<xs:element minOccurs="0"
ref="entity"
maxOccurs="unbounded">
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="entityType">
<xs:sequence>
<xs:element type="xs:string"
name="documentation"
minOccurs="0">
</xs:element>
<xs:element type="xs:string"
name="id">
</xs:element>
<xs:element type="xs:string"
name="entityName">
</xs:element>
<xs:element minOccurs="0"
ref="entityProperty">
</xs:element>
<xs:element minOccurs="0"
ref="rules">
</xs:element>
<xs:element type="xs:decimal"
name="score">
</xs:element>
<xs:element minOccurs="0"
ref="entity"
maxOccurs="unbounded">
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="entityPropertyType">
<xs:sequence>
<xs:element type="xs:string"
name="documentation"
minOccurs="0">
</xs:element>
<xs:element type="xs:string"
name="foreignKey">
</xs:element>
<xs:element type="xs:string"
name="value">
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="rulesType">
<xs:sequence>
<xs:element minOccurs="0"
ref="rule"
maxOccurs="unbounded">
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="ruleType">
<xs:sequence>
<xs:element type="xs:string"
name="documentation"
minOccurs="0">
</xs:element>
<xs:element type="xs:string"
name="id">
</xs:element>
<xs:element ref="expressions">
</xs:element>
<xs:element type="xs:string"
name="resultExpression">
</xs:element>
<xs:element type="xs:string"
name="mustPass">
</xs:element>
<xs:element type="xs:string"
name="doNotPropagate">
</xs:element>
<xs:element type="xs:string"
name="modifiesRuleId"
minOccurs="0">
</xs:element>
<xs:element type="xs:string"
name="entityId">
</xs:element>
<xs:element type="xs:string"
name="additionalInfo"
minOccurs="0">
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="expressionsType">
<xs:sequence>
<xs:element minOccurs="0"
ref="expression"
maxOccurs="unbounded">
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="expressionType">
<xs:sequence>
<xs:element type="xs:string"
name="documentation"
minOccurs="0">
</xs:element>
<xs:element type="xs:string"
name="lhs">
</xs:element>
<xs:element type="xs:string"
name="operator">
</xs:element>
<xs:element type="xs:string"
name="rhs">
</xs:element>
<xs:element type="xs:string"
name="connector"
minOccurs="0">
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="essEvidenceType">
<xs:sequence>
<xs:element type="xs:string"
name="attribute">
</xs:element>
<xs:element type="xs:string"
name="value">
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="attributeModelsType">
<xs:sequence>
<xs:element minOccurs="0"
ref="attributeType"
maxOccurs="unbounded">
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="attributeModelType">
<xs:sequence>
<xs:element type="xs:string"
name="documentation"
minOccurs="0">
</xs:element>
<xs:element type="xs:string"
name="name">
</xs:element>
<xs:element type="xs:string"
name="dataType">
</xs:element>
<xs:element minOccurs="0"
ref="values">
</xs:element>
</xs:sequence>
<xs:attribute name="valueType"
default="string">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="decimal">
</xs:enumeration>
<xs:enumeration value="double">
</xs:enumeration>
<xs:enumeration value="string">
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:complexType>
<xs:complexType name="possibleValuesType">
<xs:sequence>
<xs:element type="xs:string"
name="value"
maxOccurs="unbounded">
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="attributesType">
<xs:sequence>
<xs:element minOccurs="0"
ref="attr"
maxOccurs="unbounded">
</xs:element>
<xs:element minOccurs="0"
ref="attributeGroup"
maxOccurs="unbounded">
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="attributeGroupType">
<xs:sequence>
<xs:element minOccurs="0"
ref="attr"
maxOccurs="unbounded">
</xs:element>
<xs:element minOccurs="0"
ref="attributeGroup"
maxOccurs="unbounded">
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="attributeType">
<xs:sequence>
<xs:element type="xs:string"
name="documentation"
minOccurs="0">
</xs:element>
<xs:element type="xs:string"
name="name">
</xs:element>
<xs:element type="xs:string"
name="dataType">
</xs:element>
<xs:element minOccurs="0"
ref="values">
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="stringArrayType">
<xs:sequence>
<xs:element type="xs:string"
name="string"
minOccurs="0"
form="qualified"
maxOccurs="unbounded">
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="intArrayType">
<xs:sequence>
<xs:element type="xs:int"
name="int"
minOccurs="0"
form="qualified"
maxOccurs="unbounded">
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="booleanArrayType">
<xs:sequence>
<xs:element type="xs:boolean"
name="boolean"
minOccurs="0"
form="qualified"
maxOccurs="unbounded">
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="longArrayType">
<xs:sequence>
<xs:element type="xs:long"
name="long"
minOccurs="0"
form="qualified"
maxOccurs="unbounded">
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="floatArrayType">
<xs:sequence>
<xs:element type="xs:float"
name="float"
minOccurs="0"
form="qualified"
maxOccurs="unbounded">
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="decimalArrayType">
<xs:sequence>
<xs:element type="xs:decimal"
name="decimal"
minOccurs="0"
form="qualified"
maxOccurs="unbounded">
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="doubleArrayType">
<xs:sequence>
<xs:element type="xs:double"
name="double"
minOccurs="0"
form="qualified"
maxOccurs="unbounded">
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="dateArrayType">
<xs:sequence>
<xs:element type="xs:date"
name="date"
minOccurs="0"
form="qualified"
maxOccurs="unbounded">
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="timeArrayType">
<xs:sequence>
<xs:element type="xs:time"
name="time"
minOccurs="0"
form="qualified"
maxOccurs="unbounded">
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="dateTimeArrayType">
<xs:sequence>
<xs:element type="xs:dateTime"
name="dateTime"
minOccurs="0"
form="qualified"
maxOccurs="unbounded">
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="durationArrayType">
<xs:sequence>
<xs:element type="xs:duration"
name="duration"
minOccurs="0"
form="qualified"
maxOccurs="unbounded">
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="complexArrayType">
<xs:sequence>
<xs:any namespace="##any"
minOccurs="0"
maxOccurs="unbounded"
processContents="skip">
</xs:any>
</xs:sequence>
</xs:complexType>
</xs:schema>
</types>
<message name="returnInt">
</message>
<message name="returnIntResponse">
<part xmlns:partns="http://www.w3.org/2001/XMLSchema"
type="partns:int"
name="int">
</part>
</message>
<message name="justTrace">
</message>
<message name="justTraceResponse">
<part xmlns:partns="http://www.w3.org/2001/XMLSchema"
type="partns:anyType"
name="result">
</part>
</message>
<message name="returnString">
</message>
<message name="returnStringResponse">
<part xmlns:partns="http://www.w3.org/2001/XMLSchema"
type="partns:anyType"
name="result">
</part>
</message>
<message name="BP_TestSQueryExpr">
<part xmlns:partns="http://www.w3.org/2001/XMLSchema"
type="partns:string"
name="expression">
</part>
</message>
<message name="BP_TestSQueryExprResponse">
<part xmlns:partns="http://www.blackpearl.com/schemas/types"
type="partns:complex"
name="result">
</part>
</message>
<portType name="pkg1">
<operation name="returnInt">
<input message="tns:returnInt">
</input>
<output message="tns:returnIntResponse">
</output>
</operation>
<operation name="justTrace">
<input message="tns:justTrace">
</input>
<output message="tns:justTraceResponse">
</output>
</operation>
<operation name="returnString">
<input message="tns:returnString">
</input>
<output message="tns:returnStringResponse">
</output>
</operation>
<operation name="BP_TestSQueryExpr">
<input message="tns:BP_TestSQueryExpr">
</input>
<output message="tns:BP_TestSQueryExprResponse">
</output>
</operation>
</portType>
<binding type="tns:pkg1"
name="pkg1">
<soap:binding style="rpc"
transport="http://schemas.xmlsoap.org/soap/http">
</soap:binding>
<operation name="returnInt">
<soap:operation style="rpc"
soapAction="">
</soap:operation>
<input>
<soap:body namespace="urn:ProcedureTest:pkg1"
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
use="encoded">
</soap:body>
</input>
<output>
<soap:body namespace="urn:ProcedureTest:pkg1"
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
use="encoded">
</soap:body>
</output>
</operation>
<operation name="justTrace">
<soap:operation style="rpc"
soapAction="">
</soap:operation>
<input>
<soap:body namespace="urn:ProcedureTest:pkg1"
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
use="encoded">
</soap:body>
</input>
<output>
<soap:body namespace="urn:ProcedureTest:pkg1"
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
use="encoded">
</soap:body>
</output>
</operation>
<operation name="returnString">
<soap:operation style="rpc"
soapAction="">
</soap:operation>
<input>
<soap:body namespace="urn:ProcedureTest:pkg1"
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
use="encoded">
</soap:body>
</input>
<output>
<soap:body namespace="urn:ProcedureTest:pkg1"
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
use="encoded">
</soap:body>
</output>
</operation>
<operation name="BP_TestSQueryExpr">
<soap:operation style="rpc"
soapAction="">
</soap:operation>
<input>
<soap:body namespace="urn:ProcedureTest:pkg1"
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
use="encoded">
</soap:body>
</input>
<output>
<soap:body namespace="urn:ProcedureTest:pkg1"
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
use="encoded">
</soap:body>
</output>
</operation>
</binding>
<service name="ProcedureTest_pkg1">
<port name="pkg1"
binding="tns:pkg1">
<soap:address location="http://kmoore-nb:7001/ProcedureTest/services/pkg1">
</soap:address>
</port>
</service>
</definitions>

The JAXRPC SI does not support xs:any in rpc/encoded mode. You can try to convert the WSDL to either rpc/literal or document/literal and it should work for you.
Post your JAX-RPC related questions to [email protected] for a quicker resolution.
Send an email to [email protected] to subscribe to the alias.
Send an mail to [email protected] for a complete list of help commands.

Similar Messages

  • After installing Snow Leopard problems with using any of my Helvetica fonts

    I've never really have a problem with any of apple's products until now.
    After installing Snow Leopard I've found problems with using any of my Helvetica fonts,
    which is a BIG problem if you work in DTP or print. You CAN'T remove the system version of Helvetica, and replace it with your own anymore.
    Also Flash CS4 seems to be a dead duck, as after about 5-6 seconds of loading the program it crashes with a "KERNPROTECTIONFAILURE".
    <title edited by host>

    Thanks Tom but the original post title was "Work in DTP, don't install snow leopard", but of course apple were unhappy with the title. I know the issue/problem has been discussed for months, the real problem is that it shouldn't be a problem which everyone has to find work arounds for.
    After 4 days of playing about, I've finally got flash CS4 working and Quarkxpress was also a big problem for a few months. Printer description (PPD) files which snow leopard doesn't like, but worked in tiger & leopard.....means I can't use my two A3 inkjets for proofing anymore.
    I'm just disappointed by snow leopard

  • Problems with autofocus, any suggestions?

    Recently got back from a Tanzania safari.  Bought a t3i to replae my old P&S. I'll be honest, I didn't take the time to learn how to use it properly, so I left it on auto mode 90% of the time.  Anyways, when I got home and downloaded all the photos, I noticed that about 50% of the photos had problem with focusing on the wrong thing (e.g. If I try to take a picture of an animal, it would focus on the small tree branch in front of the animal, so the animal would be blurred).  I was using autofocus on a tamron 18-270 lens.  Any suggestions on how to correct this in the future, or do I need to use manual focus? (I tried this, but even then my pictures ended up out of focus).  Thanks!

    By default the camera will use all 9 AF points, but you can tell it use a specific single point.
    If the camera is in the default (all 9 AF points active) mode, then it can't focus on all subjects at different distances simultaneously -- it has to choose a subject.  The camera is programmed to always choose the subject which can be focused at the NEAREST focusing distance.
    Much of the time, this would be exactly what the typical photographer wants.  But if you have anything nearer to the camera than your intended subject then it will tend to focus on that distracting element rather than your intended subject.
    The fix is to use single AF-point mode as this puts you in control of focus.  
    Tim Campbell
    5D II, 5D III, 60Da

  • Start up problems with G5- any ideas?

    Hi
    I have had recurring startup problems with my G5, the machine boots up everytime i.e you hear startup chime and fans etc.. but it can take 3-4 times turning on/off for anything to appear on screen.
    I have had this problem for over 3 months now, and i use it alot, i have tried using different monitor, bought new pram battery, done apple hardware test,had it checked at apple dealer and even bought latest OS 10.4.3 and erased everything on disk and started all over, and still the bugger doesn't work properly!
    I would greatly appreciate any ideas. The G5 is a 2004 model and i use it with apple keyboard,mouse.
    Look forward to any replies..

    I had the same problem with my dual 2.7 g5. I noticed that if I left the system unplugged for a while, the computer would start up on the first try. If it was running for a while and I turned it off or tried a restart, it would not boot up for the first 5-10 tries.
    The end result was to take it in 3 times to get everything on the inside replaced. That solved the problem. I think it would have been cheaper for Apple to have given me a new system. The fixes cost more than what I paid for the computer. This system is covered by Apple Care. I am good for the next 2.5 years.

  • Problem with displaying any picture at all.

    Hi there, one of my iMacs has a problem with displaying video.
    When I turn the computer on the screen shows a yellow-orange hue in the centre, and it's getting wider across the screen and bright, eventually it turns to a white screen. Now I know for a fact it's nothing to do with the logic board! I can control the computer with remote desktop and dim the screen or make it brighter. My question is, is it the cabling that is faulty or something else?
    If it's the cabling, how can I open the chrome neck and change it?
    Thanks you

    Did your testing include utilizing a second display and adapter to see
    how a mirrored output of the video would appear; to be sure this item
    is isolated to the wiring from the circuit boards to the attached LCD?
    There are components within the border of the iMac G4's display which
    may affect the image as they wear out and/or fail. The inverter, is one
    item that is in the panel along with the backlight and liquid crystal layer.
    Removing or replacing the wire harness between these components,
    the computer base and LCD panel, is a bit of work. This topic has been
    addressed in these forums at one time or another; and a few owners
    who contribute here have experience taking these apart. In the past,
    getting a known-good display with chrome arm and harness, from an-
    other iMac (perhaps one with logic board failure) and combine two,
    was an answer when the complete display & arm were known good;
    as this saved a fair amount of work on the upper end. Still, taking the
    lower orb shape apart is a significant task; to have it work right again.
    The cabling could be faulty; the inverter could be. And there may be
    yet another associated component failing which produces symptoms.
    Taking apart the chrome arm may not be such a good idea; I've seen
    the expanded view of one taken apart by a metal cutting saw, and it
    has a big spring inside, and a bit of tension. There also are friction pad
    parts inside that loose their ability to hold up the panel, so some owners
    sought to replace those to varying degrees of trouble.
    There should be a few step-by-step instructions. One of the contributors
    to the iMac G4 forums here was Mr Totes; one of his web pages had a
    few images of take-aparts he'd done. Other sites had basic stuff, such
    as replacing optical drive and hard disk drives, thermal paste, RAM, etc.
    If you were able to see the correct system images from a second display
    via the VGA adapter cable, in mirror mode, the attached unit certainly is
    suspect; and the computer is probably repairable. Otherwise, there is a
    video component on the logic board not considered a separate part; and
    if that fails, the usual fix is to get a reman logic board or another iMac.
    Have fun, whichever way it goes.
    Good luck & happy computing!

  • Yosemite Mail still has sync problems with Gmail - any solutions?

    I notice that Yosemite Mail still has sync problems with Gmail. After running for some hours, I noticed there were 6 emails in my Gmail account that had not synced over the past hour.
    In the meanwhile, for safety's sake (don't want to miss emails!) I'm back to Mailplane. But I wonder if anybody knows of a solution to this long term problem first introduced in Mavericks. Works fine in iOS Mail though.
    Thanks,
    doug

    I don't think we'll ever have a "best of both worlds" Doug. I've used Gmail since the week it launched the first beta in 2004, and it's always been a bit of a love-hate relationship for me (mostly love). With the demise of the Google Notifier for Mac, I went with Mailplane, but even it has problems. Like when I see my iPhone update with new mail and I'm looking at Mailplane and it won't update at times with even a forced refresh. I often have to close/reopen it to see new messages. But, it's hard to live without my Google Calendar only a tab click away, one of the primary reasons I use Mailplane, that plus changing view zoom sticks with Mailplane and won't with Gmail.
    For years I've thought Gmail labels were the perfect filing solution, but over the past few weeks I've been analyzing just how much I really use that feature, and for me...it's not all that much. I think I could simplify my life by putting everything into appropriate folders (as in all other email apps). Apple doesn't realize just how much money they're losing by not allowing people to use private domains with iCloud mail...which I would do in a heartbeat just because it would work perfectly with Mail.app. I would pay even more than I currently pay Google for this solution with Google Apps Business. So, I'm actually on the verge of moving my private domain to the best email service I can find and then using it with Mail.app. The problem here, of course, is I'll lose the best spam control on the planet (Gmail). So, as you say, there simply is not a "best" solution for all these things. I'll at least try a new email service first with some other domain to see how I like it before moving my primary email.
    Lastly, the other thing that incenses me is synching of flags between iOS and Apple Mail. It works fine between Gmail and iOS Mail, since all I care about is whether a message is starred/flagged or not.  But using Apple Mail, when I flag a message it will not show as flagged in their own iOS Mail, which is incomprehensible, given they built both apps.
    If you find a great solution or discover anything new...please post it here, Doug. Thanks.

  • IChatAV possibly problems with router, any ideas please?

    Can anyone please help me?
    I have spent a few days trying to work out what is wrong with my network/computer setup that prevents video chat working to computers that are not on my LAN. I have read just about every forum and post that looks meaningful but am struggling now.
    Once upon a time it all just worked (with tiger). Now that I have a use for it..... obviously it doesn't.
    My set-up is a little complicated but I can't believe its too unusual. I have a couple of macs and PCs running leopard with all the latest patches (although ichat had stopped working before the leopard upgrade). The LAN uses 192.168.1.0/24. I have a linux based router (openwrt-white russian 0.9 WRT-54GS) which runs amongst other things an asterisk SIP server (on port 5060). But while the versions of software have changed (mainly to try and get iChat working), it is still the same set up that used to work. There is an airport extreme on the LAN as well but that is in bridge mode and used as a 802.11n AP and printer server. My DSL modem is a Dlink DSL-302G which is running in half bridge mode which terminates the ASP's PPP session and presents IP packets addressed to the router which is provided with the PPP supplied IP address using DHCP. The router therefore is effectively connected directly to the ISP, there is no NAT in the DSL modem, only the router.
    My ISP now offers a SIP based VoIP service which I use via asterisk on the router. The asterisk server also uses several other SIP based providers for both incoming and outgoing calls but these have been there for a long time and still work fine, so the ISP isn't messing with SIP messages.
    As I have said this set-up once all worked fine with iChat over the internet. Now all that works is text.
    iChat does work between machines on my LAN where I can do text, audio, video and screen sharing. I assume that this means that ports to external co-ordinating entities are working through the router. Non of the LAN machines have a firewall configured on them.
    When I try and set up an AV chat with a remote machine I get to the "Starting video chat with..." and then after 10-15 seconds I get an error:-
    Disconnected from video chat because:
    Did not receive a response from xxxx xxxx
    When I try and set up an AV chat with appleu3test01 I get a different message saying "appleu3test01 cancelled the connection which I am assuming is just something timing out quicker on the bot and causing it to cancel the call before the setup protocol times out.
    I have messed with the router adding and removing different uPNP agents but as far as I can tell they are working. I can see that UDP port 16402 has been set up for forwarding to the my imac.
    When calling a friend, I have run network traces on the mac and both LAN and WAN ports of the router. I don't have any information on the AIM protocols to see if the problem is in there. I can provide the traces if this is useful. I do notice that SIP messages are being sent to my friends internet IP address but that they only contain my machine's LAN IP address ...
    INVITE sip:user@{friend's WAN IP addr}:16402 SIP/2.0
    Via: SIP/2.0/UDP 192.168.1.4:16402;branch=z9hG4bK1cf33cfb08dfaaca
    Max-Forwards: 70
    To: "{friend's name}@mac.com3" <sip:user@{friend's WAN IP addr}:16402>
    From: "my name" <sip:[email protected]:16402>;tag=149537885
    Call-ID: bcb4f7d8-d235-11dc-a3aa-b2953c604012@192-168-1-4
    CSeq: 1 INVITE
    Contact: <sip:[email protected]:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 736
    .....snip....
    Is this correct? UDP port 16402 has been upnp configured in the router to DNAT to 192.168.1.4:16402 which is the machine I made the call on. I do not receive a response to this message or any other SIP messages from my friend. I can see a upnp conversation between the mac and the router which asks for an external ip address which is provided. I can also see this external IP address being used in some AIM message fields.
    Any ideas gratefully received and I can send significantly more information if required.
    Thanks if you read this far.
    Steve

    Ralph, Thanks for replying. There where no received SIP messages at all just the INVITE being sent but I have made some more progress. The mini does indeed just work. I can do everything that you are supposed to do to other ichat users on the internet. Very nice.
    The imac is still playing up but I have got further. I had peerguardian2 installed which unknown to me doesn't need to be running to prevent you for accessing 'barred' IP addresses. snatmap.mac.com is barred in the lists! I discovered this when I saw one of your other posts showed how to turn on terminal logging for ichat. Now that I have turned off peerguardian2 (using the disable filters option) I can make calls to the testbot and see the adverts. I have even done a video conference with the two testbots. I will just uninstall peerguardian2.
    However, I can not get a AV chat working to a real user....
    In response to your suggestions:-
    I have tried all the options for quicktime streaming but will try 1.5Mb/s again.
    The ichat bandwidth limit is set to "none". I am in New Zealand and I have standard ADSL (not ADSL2+) 7.6M down 512K up. The mini config is also set to none.
    Internet sharing is off.
    I have had parallels on the machine but the two interfaces that it installed "Parallels Host-Guest" and "Parallels NAT" are configured 'off' and show as not connected. Is this enough? I will uninstall parallels and see if that helps since I don't use it. I also have VMware's thing installed but that doesn't seem to add any interfaces.
    I need to capture a full trace of the imac to other ichat user to see what is happening but will update when I have does your suggested changes or have a trace
    Thanks again

  • Problems with adding any targets

    hi people
    i have one big problem
    i can't add any targets (hosts) in the enterprise manager grid control console
    the following shows the status of an agent on a target host
    Last successful heartbeat to OMS : unknown
    D:\ORACLE_AGENT\agent10g\BIN>emctl status agent
    Oracle Enterprise Manager 10g Release 3 Grid Control 10.2.0.3.0.
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    Agent Version : 10.2.0.3.0
    OMS Version : 10.2.0.2.0
    Protocol Version : 10.2.0.2.0
    Agent Home : D:\ORACLE_AGENT\agent10g
    Agent binaries : D:\ORACLE_AGENT\agent10g
    Agent Process ID : 3808
    Agent URL : http://server.de:3872/emd/main/
    Repository URL : http://server:4889/em/upload/
    Started at : 2007-04-24 13:31:41
    Started by user : SYSTEM
    Last Reload : 2007-04-24 13:31:41
    Last successful upload : (none)
    Last attempted upload : (none)
    Total Megabytes of XML files uploaded so far : 0.00
    Number of XML files pending upload : 19
    Size of XML files pending upload(MB) : 5.45
    Available disk space on upload filesystem : 95.62%
    Last attempted heartbeat to OMS : 2007-04-24 13:48:07
    Last successful heartbeat to OMS : unknown
    Agent is Running and Ready
    D:\ORACLE_AGENT\agent10g\BIN>
    but the enterprise manager grid control console don't show me targets to add
    i dont't know how i can solve the problem or what the problem can be
    please help

    D:\ORACLE_AGENT\agent10g\BIN>emctl upload
    Oracle Enterprise Manager 10g Release 3 Grid Control 10.2.0.3.0.
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    EMD upload error: uploadXMLFiles skipped :: OMS version not checked yet..
    emagent.trc of the target host
    Thread-4788 ERROR pingManager: nmepm_pingReposURL: Did not receive a response header from repository
    the repository_url in the emd.properties of the target host show me the url for grid control
    but the emd_url in the emd.properties of the target host contains the target host name and not the hostname of the oms server
    yes i can ping the oms server

  • Problem with Infinity - Any help / advice apprecia...

    Hi all,
    Have had Infinity for around a month now and it was absolutely mega until about a week ago when it completely stopped working and the DSL light began flashing on the Openreach Modem.  I called support and they arranged for an engineer to call two days later.  After testing my installation he decided that the Openreach Modem was faulty and so replaced it like for like. 
    My problem is that before it broke I was averaging 37 Mbps and since it was repaired the best that I have been able to get is 27 Mbps, a drop of 10 Mbps.  Why has this happened and is there anything I can do to restore my original speed?  Any advice or help offered will be greatly appreciated!
    Thanks.

    Hi all,
    Have had Infinity for around a month now and it was absolutely mega until about a week ago when it completely stopped working and the DSL light began flashing on the Openreach Modem.  I called support and they arranged for an engineer to call two days later.  After testing my installation he decided that the Openreach Modem was faulty and so replaced it like for like. 
    My problem is that before it broke I was averaging 37 Mbps and since it was repaired the best that I have been able to get is 27 Mbps, a drop of 10 Mbps.  Why has this happened and is there anything I can do to restore my original speed?  Any advice or help offered will be greatly appreciated!
    Thanks.

  • Today whilst using FaceTime on my iPad 2 it went back to the apple logo. I then went onto my iPhone 4S to continue the conversation and a few minutes in it did the same thing. Clearly a problem with FaceTime any advise please.

    I then continued the conversation on my iPhone 4S and the same thing happened. Any suggestions?

    The Facetime server may have gone down when this happened. There's a link below that you can use to check outages.
    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime + iMessage: Setup, Use, and Troubleshooting
    http://tinyurl.com/a7odey8
    Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
    iOS: FaceTime is 'Unable to verify email because it is in use'
    http://support.apple.com/kb/TS3510
    Using FaceTime and iMessage behind a firewall
    http://support.apple.com/kb/HT4245
    iOS: About Messages
    http://support.apple.com/kb/HT3529
    Set up iMessage
    http://www.apple.com/ca/ios/messages/
    iOS 6 and OS X Mountain Lion: Link your phone number and Apple ID for use with FaceTime and iMessage
    http://support.apple.com/kb/HT5538
    How to Set Up & Use iMessage on iPhone, iPad, & iPod touch with iOS
    http://osxdaily.com/2011/10/18/set-up-imessage-on-iphone-ipad-ipod-touch-with-io s-5/
    Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    Troubleshooting iMessage Issues: Some Useful Tips You Should Try
    http://www.igeeksblog.com/troubleshooting-imessage-issues/
    Setting Up Multiple iOS Devices for iMessage and Facetime
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l
    FaceTime and iMessage not accepting Apple ID password
    http://www.ilounge.com/index.php/articles/comments/facetime-and-imessage-not-acc epting-apple-id-password/
    Unable to use FaceTime and iMessage with my apple ID
    https://discussions.apple.com/thread/4649373?tstart=90
    FaceTime, Game Center, Messages: Troubleshooting sign in issues
    http://support.apple.com/kb/TS3970
    How to Block Someone on FaceTime
    http://www.ehow.com/how_10033185_block-someone-facetime.html
    My Facetime Doesn't Ring
    https://discussions.apple.com/message/19087457
    To send messages to non-Apple devices, check out the TextFree app https://itunes.apple.com/us/app/text-free-textfree-sms-real/id399355755?mt=8
    How to Send SMS from iPad
    http://www.iskysoft.com/apple-ipad/send-sms-from-ipad.html
    You can check the status of the FaceTime/iMessage servers at this link.
    http://www.apple.com/support/systemstatus/
     Cheers, Tom

  • File IO basics more than 1 problem with streams any help?

    Have console program that i've built up in steps from reading args from the command line and displaying the text to now wanting to learn to read and write to a disk file.
    i know i have a number of errors but believe it's down to something i am not understanding with the use of datastreams.
    a snippit of code is below.
      if (args.length > 0)
                // Read what the use has entered and keep for later use
            for (int i=0; i < args.length; i++)
              text = text + args;
    try
    //path is define further up as c:\my projects\
    System.out.print (path);
    //create a file object to point to the file the user has given for reading to
    // the file and another to read the file back in
    File fileIn = new File (path,text);
    // File fileOut = new File (path,text);
    // Not sure if this is required!!
    fileIn.createNewFile();
    // thefileOut.createNewFile();
    //Thought this would be the right way of of creating the stream
    // DataOutputStream thefileIn = new DataOutputStream(new BufferedOutputStream(new FileOutputStream(fileIn)));
    // DataOutputStream thefileOut = new DataOutputStream(new BufferedOutputStream(new FileOutputStream(fileOut)));
    //errors on exists and delete methods
    if (fileIn.exists())
    fileIn.Delete();
    catch(IOException e)
    {            // also errors in the getmessage
    System.out.print("Error occured!"+ fileIn.getmessage());
    the errors i am getting are to do with the DELETE method
    The Getmessage method
    Exits method
    i have others but if i can get help with these then i might be able to fix the others.
    thanks

    complete program code below :)
    import java.io.*;
    public class mysimpleio
      String thefilename = "";
    //  String ToFile(String thefilename);
    //  String FromFile(String thefilename);
      public static void main(String[] args)
        String text = "";
        String path = "e:\\my_project\\crm\\";
        if (args.length == 0)
            System.out.println("No file name, Exiting program!");
        if (args.length > 0)
            for (int i=0; i < args.length; i++)
              text = text + args;
    try
    System.out.print (path);
    File fileIn = new File (path,text);
    // File fileOut = new File (path,text);
    fileIn.createNewFile();
    // thefileOut.createNewFile();
    // DataOutputStream thefileIn = new DataOutputStream(new
    BufferedOutputStream(new FileOutputStream(fileIn)));
    // DataOutputStream thefileOut = new DataOutputStream(new
    BufferedOutputStream(new FileOutputStream(fileOut)));
    if (fileIn.exists())
    fileIn.delete();
    catch(IOException e)
    System.out.print("Error occured!"+ fileIn.getmessage());
    ToFile(text);
    System.out.print("\n okay so you entered "+ text);
    if (!fileIn.exists())
    System.out.println("Sorry no file found matching " + text);
    else
    if (fileIn.exists())
    FromFile(text);
    // put data to a Disk File
    static void ToFile(String thefilename)
    // thefileOut.writeUTF(path);
    System.out.println("Data would be written to file Now! "
    +thefilename);
    //Read data From a Disk File
    static void FromFile(String thefilename)
    fileIn.readUTF(path);
    System.out.println(" Data would be Read From file Now! "
    +thefilename);
    Errors are....
    can not resolve symbol
    E:\my_project\crm>javac mysimpleio.java
    mysimpleio.java:43: cannot resolve symbol
    symbol : variable fileIn
    location: class mysimpleio
    System.out.print("Error occured!"+ fileIn.getmessage());
    ^
    mysimpleio.java:49: cannot resolve symbol
    symbol : variable fileIn
    location: class mysimpleio
    if (!fileIn.exists())
    ^
    mysimpleio.java:53: cannot resolve symbol
    symbol : variable fileIn
    location: class mysimpleio
    if (fileIn.exists())
    ^
    mysimpleio.java:70: cannot resolve symbol
    symbol : variable path
    location: class mysimpleio
    fileIn.readUTF(path);
    ^
    mysimpleio.java:70: cannot resolve symbol
    symbol : variable fileIn
    location: class mysimpleio
    fileIn.readUTF(path);
    ^
    5 errors
    E:\my_project\crm>

  • Need help with iphone 4s activation goes from hello to country to network and will not activate on network or itunes i am original owner with no  obvious problems with phone any ideas

    need any ideas on iphone trying to use again but now it goes from hello to country to network then tries to activate but on wifi and itunes both say sever unavailable any ideas?

    That message usually means that your phone was once connected to a different phone carrier than the one you're currently on.
    Then when you restore or updated the phone it locked back to the original phone carrier - this is caused when the phone was hacked to unlock it from the original phone carrier.
    Very rarely is the activation server unavailable.

  • [SOLVED] Problem with running GUI apps as root

    Hi,
    I have a serious problem with running any kind of software having GUI as root, which is indispensable for editing system files. For example I want to edit /etc/pacman.conf file with KWrite, and here's what I get
    [zbyszek@barca ~]$ xhost +
    access control disabled, clients can connect from any host
    [root@barca zbyszek]# kwrite /etc/pacman.conf
    kwrite(11282): Session bus not found
    KCrash: Application 'kwrite' crashing...
    KCrash: Attempting to start /usr/lib/kde4/libexec/drkonqi from kdeinit
    sock_file=/root/.kde4/socket-barca/kdeinit4__0
    Warning: connect() failed: : Nie ma takiego pliku ani katalogu
    KCrash: Attempting to start /usr/lib/kde4/libexec/drkonqi directly
    drkonqi(11284): Session bus not found
    Can anyone help me with this? Can anyone tell me how to login as root?
    Thank you in advance.
    Last edited by Zibi1981 (2010-10-05 19:30:20)

    O.K., but how to run KWrite as root on my account??? That was my main question
    karol wrote:
    Try running 'xhost +' as root.
    https://bbs.archlinux.org/viewtopic.php?pid=817674
    Maybe vim is in edit mode when you press 'i' but it doesn't show '-- INSERT --' at the bottom of the screen.
    Here you are
    [root@barca zbyszek]# xhost +
    access control disabled, clients can connect from any host
    [root@barca zbyszek]# kwrite /etc/pacman.conf
    kwrite(12941): Session bus not found
    KCrash: Application 'kwrite' crashing...
    KCrash: Attempting to start /usr/lib/kde4/libexec/drkonqi from kdeinit
    sock_file=/root/.kde4/socket-barca/kdeinit4__0
    Warning: connect() failed: : Nie ma takiego pliku ani katalogu
    KCrash: Attempting to start /usr/lib/kde4/libexec/drkonqi directly
    drkonqi(12942): Session bus not found
    Last edited by Zibi1981 (2010-09-25 10:19:50)

  • Gmail Problems with new imac 27"

    Hi all
    I am trying to find a discussion regarding the mail program with snow leopard operating system.
    Im having problems with gmail
    Any idea what discussion forum i should be in.
    I cant find one on mail problems.

    HI,
    Try the Mail Support page also. http://www.apple.com/support/mail/
    Carolyn

  • Problem with WSDL generated with wscompile JAX-RPC

    Ok well I have successfully built a Web Service (From an existing wsdl) and Static Stub Client they work perfectly. I then I tried to connect to it using a Delphi Web Service Client. The client cant change, the problem I am getting is it is requesting using the variable name I am using and the WSDL has String_1.
    Ie. it gives me:
    unexpected element name: expected=String_1, actual= {targetNameSpace} [Variable Name]
    I suspect this is a problem with how the WSDL is generated any suggestions?

    THanks for the response, I originally used axis WSDL2Java. And only used the interface class. I think this is where my whole thing fell down. Although this worked with a static stub client that I used.
    I have now generated the server side java files using wscompile and am l looking how to implement the server. It doesn't look like it has a implementation class there. And there isn't much information on how to do it.

Maybe you are looking for

  • HT202879 how can I open a Word document in Pages 09?

    How can I open a Word document using Pages 09 please? I am trying to open Word documents from a CD using both trying to open in Pages, nd dragging and dropping into the Pages icon in the dock. It tells me, every time, thast the document cannot be ope

  • Canon Eos 5D, Lightroom and RAW images

    After a series of tests I carried out with my Canon camera, do you agree with these conclusions on the raw format? Following an import in Lightroom of RAW pictures: Loss of image styles (portrait, landscape, B&W...) Loss of image style changes (+/- s

  • Socks Proxy with Gtalk?

    Is it possible to use a socks proxy with a Google Talk iChat account? I see the option for the AIM account but it's missing for Google Talk. I'm using iChat 4.0.7.

  • Selection screen block for IW29

    Dear friends, I want to change the selection screens in Transaction:IW29 from bottom to top.For example these are the different selection screens in IW29 1. Notification selection 2.General data/Administrative data 3.Malfunction data/System Availabil

  • Default Framework page Isolation method changed

    We changed the Isolation method to URL instead of embedded on all of the iviews in the Default Framework page. Now we cannot view the Portal Content Directory.  Is there any method to fix this by going to a URL. We tried - http://myServer:50000/irj/p